Lines Matching refs:bytecode
5 #include "src/interpreter/bytecode-decoder.h"
97 Bytecode bytecode = Bytecodes::FromByte(bytecode_start[0]);
100 if (Bytecodes::IsPrefixScalingBytecode(bytecode)) {
102 operand_scale = Bytecodes::PrefixBytecodeToOperandScale(bytecode);
103 bytecode = Bytecodes::FromByte(bytecode_start[1]);
106 // Prepare to print bytecode and operands as hex digits.
112 int bytecode_size = Bytecodes::Size(bytecode, operand_scale);
123 os << Bytecodes::ToString(bytecode, operand_scale) << " ";
126 if (Bytecodes::IsDebugBreak(bytecode)) return os;
128 int number_of_operands = Bytecodes::NumberOfOperands(bytecode);
130 OperandType op_type = Bytecodes::GetOperandType(bytecode, i);
132 Bytecodes::GetOperandOffset(bytecode, i, operand_scale);
192 DCHECK_EQ(Bytecodes::GetOperandType(bytecode, i + 1),
195 Bytecodes::GetOperandOffset(bytecode, i + 1, operand_scale);