Lines Matching refs:bytecode
106 Bytecode bytecode = Bytecodes::FromByte(bytecode_start[0]); in Decode() local
109 if (Bytecodes::IsPrefixScalingBytecode(bytecode)) { in Decode()
111 operand_scale = Bytecodes::PrefixBytecodeToOperandScale(bytecode); in Decode()
112 bytecode = Bytecodes::FromByte(bytecode_start[1]); in Decode()
121 int bytecode_size = Bytecodes::Size(bytecode, operand_scale); in Decode()
132 os << Bytecodes::ToString(bytecode, operand_scale) << " "; in Decode()
135 if (Bytecodes::IsDebugBreak(bytecode)) return os; in Decode()
137 int number_of_operands = Bytecodes::NumberOfOperands(bytecode); in Decode()
139 OperandType op_type = Bytecodes::GetOperandType(bytecode, i); in Decode()
141 Bytecodes::GetOperandOffset(bytecode, i, operand_scale); in Decode()
200 DCHECK_EQ(Bytecodes::GetOperandType(bytecode, i + 1), in Decode()
203 Bytecodes::GetOperandOffset(bytecode, i + 1, operand_scale); in Decode()