#include "src/interpreter/bytecode-operands.h"
#include <iomanip>
namespace v8 {
namespace internal {
namespace interpreter {
namespace {
const char* ImplicitRegisterUseToString(
ImplicitRegisterUse implicit_register_use) { … }
const char* OperandTypeToString(OperandType operand_type) { … }
const char* OperandScaleToString(OperandScale operand_scale) { … }
const char* OperandSizeToString(OperandSize operand_size) { … }
}
std::ostream& operator<<(std::ostream& os, const ImplicitRegisterUse& use) { … }
std::ostream& operator<<(std::ostream& os, const OperandSize& operand_size) { … }
std::ostream& operator<<(std::ostream& os, const OperandScale& operand_scale) { … }
std::ostream& operator<<(std::ostream& os, const OperandType& operand_type) { … }
}
}
}