Home
last modified time | relevance | path

Searched refs:GetOperandType (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/interpreter/
Dbytecode-pipeline.h221 Bytecodes::GetOperandType(new_bytecode, 0) == in NON_EXPORTED_BASE()
222 Bytecodes::GetOperandType(bytecode(), 0)); in NON_EXPORTED_BASE()
224 Bytecodes::GetOperandType(new_bytecode, 1) == in NON_EXPORTED_BASE()
225 Bytecodes::GetOperandType(bytecode(), 1)); in NON_EXPORTED_BASE()
227 Bytecodes::GetOperandType(new_bytecode, 2) == in NON_EXPORTED_BASE()
228 Bytecodes::GetOperandType(bytecode(), 2)); in NON_EXPORTED_BASE()
285 DCHECK_EQ(Bytecodes::GetOperandType(bytecode, 0), operand0_type); in NON_EXPORTED_BASE()
295 DCHECK_EQ(Bytecodes::GetOperandType(bytecode, 0), operand0_type); in NON_EXPORTED_BASE()
296 DCHECK_EQ(Bytecodes::GetOperandType(bytecode, 1), operand1_type); in NON_EXPORTED_BASE()
309 DCHECK_EQ(Bytecodes::GetOperandType(bytecode, 0), operand0_type); in NON_EXPORTED_BASE()
[all …]
Dbytecode-array-accessor.cc67 Bytecodes::GetOperandType(current_bytecode(), operand_index)); in GetUnsignedOperand()
83 Bytecodes::GetOperandType(current_bytecode(), operand_index)); in GetSignedOperand()
95 DCHECK_EQ(Bytecodes::GetOperandType(current_bytecode(), operand_index), in GetFlagOperand()
102 DCHECK_EQ(Bytecodes::GetOperandType(current_bytecode(), operand_index), in GetUnsignedImmediateOperand()
108 DCHECK_EQ(Bytecodes::GetOperandType(current_bytecode(), operand_index), in GetImmediateOperand()
115 DCHECK_EQ(Bytecodes::GetOperandType(current_bytecode(), operand_index), in GetRegisterCountOperand()
122 Bytecodes::GetOperandType(current_bytecode(), operand_index); in GetIndexOperand()
129 Bytecodes::GetOperandType(current_bytecode(), operand_index); in GetRegisterOperand()
155 Bytecodes::GetOperandType(current_bytecode(), operand_index); in GetRuntimeIdOperand()
164 Bytecodes::GetOperandType(current_bytecode(), operand_index); in GetIntrinsicIdOperand()
Dbytecode-decoder.cc124 OperandType op_type = Bytecodes::GetOperandType(bytecode, i); in Decode()
179 DCHECK_EQ(Bytecodes::GetOperandType(bytecode, i + 1), in Decode()
Dinterpreter-assembler.cc379 Bytecodes::GetOperandType(bytecode_, operand_index))); in BytecodeSignedOperand()
396 Bytecodes::GetOperandType(bytecode_, operand_index))); in BytecodeUnsignedOperand()
412 Bytecodes::GetOperandType(bytecode_, operand_index)); in BytecodeOperandCount()
420 Bytecodes::GetOperandType(bytecode_, operand_index)); in BytecodeOperandFlag()
429 Bytecodes::GetOperandType(bytecode_, operand_index)); in BytecodeOperandUImm()
441 Bytecodes::GetOperandType(bytecode_, operand_index)); in BytecodeOperandImm()
457 Bytecodes::GetOperandType(bytecode_, operand_index)); in BytecodeOperandIdx()
470 Bytecodes::GetOperandType(bytecode_, operand_index))); in BytecodeOperandReg()
479 Bytecodes::GetOperandType(bytecode_, operand_index)); in BytecodeOperandRuntimeId()
488 Bytecodes::GetOperandType(bytecode_, operand_index)); in BytecodeOperandIntrinsicId()
Dbytecode-array-writer.cc180 DCHECK_EQ(Bytecodes::GetOperandType(jump_bytecode, 0), OperandType::kUImm); in PatchJumpWith8BitOperand()
208 DCHECK_EQ(Bytecodes::GetOperandType(jump_bytecode, 0), OperandType::kUImm); in PatchJumpWith16BitOperand()
Dbytecodes.h658 static OperandType GetOperandType(Bytecode bytecode, int i) { in GetOperandType() function
/external/v8/src/runtime/
Druntime-interpreter.cc83 interpreter::Bytecodes::GetOperandType(bytecode, operand_index); in PrintRegisters()