Lines Matching refs:bytecode
97 Bytecode bytecode = Bytecodes::FromByte(bytecode_start[0]); in Decode() local
100 if (Bytecodes::IsPrefixScalingBytecode(bytecode)) { in Decode()
102 operand_scale = Bytecodes::PrefixBytecodeToOperandScale(bytecode); in Decode()
103 bytecode = Bytecodes::FromByte(bytecode_start[1]); in Decode()
112 int bytecode_size = Bytecodes::Size(bytecode, operand_scale); in Decode()
123 os << Bytecodes::ToString(bytecode, operand_scale) << " "; in Decode()
126 if (Bytecodes::IsDebugBreak(bytecode)) return os; in Decode()
128 int number_of_operands = Bytecodes::NumberOfOperands(bytecode); in Decode()
130 OperandType op_type = Bytecodes::GetOperandType(bytecode, i); in Decode()
132 Bytecodes::GetOperandOffset(bytecode, i, operand_scale); in Decode()
192 DCHECK_EQ(Bytecodes::GetOperandType(bytecode, i + 1), in Decode()
195 Bytecodes::GetOperandOffset(bytecode, i + 1, operand_scale); in Decode()