Home
last modified time | relevance | path

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

/external/v8/src/interpreter/
Dbytecode-array-iterator.cc66 Bytecodes::GetOperandType(current_bytecode(), operand_index)); in GetUnsignedOperand()
82 Bytecodes::GetOperandType(current_bytecode(), operand_index)); in GetSignedOperand()
94 DCHECK_EQ(Bytecodes::GetOperandType(current_bytecode(), operand_index), in GetFlagOperand()
100 DCHECK_EQ(Bytecodes::GetOperandType(current_bytecode(), operand_index), in GetImmediateOperand()
107 DCHECK_EQ(Bytecodes::GetOperandType(current_bytecode(), operand_index), in GetRegisterCountOperand()
114 Bytecodes::GetOperandType(current_bytecode(), operand_index); in GetIndexOperand()
121 Bytecodes::GetOperandType(current_bytecode(), operand_index); in GetRegisterOperand()
147 Bytecodes::GetOperandType(current_bytecode(), operand_index); in GetRuntimeIdOperand()
156 Bytecodes::GetOperandType(current_bytecode(), operand_index); in GetIntrinsicIdOperand()
Dbytecode-pipeline.cc101 Bytecodes::GetOperandType(new_bytecode, 0) == in Transform()
102 Bytecodes::GetOperandType(bytecode(), 0)); in Transform()
104 Bytecodes::GetOperandType(new_bytecode, 1) == in Transform()
105 Bytecodes::GetOperandType(bytecode(), 1)); in Transform()
107 Bytecodes::GetOperandType(new_bytecode, 2) == in Transform()
108 Bytecodes::GetOperandType(bytecode(), 2)); in Transform()
Dinterpreter-assembler.cc294 Bytecodes::GetOperandType(bytecode_, operand_index))); in BytecodeSignedOperand()
311 Bytecodes::GetOperandType(bytecode_, operand_index))); in BytecodeUnsignedOperand()
327 Bytecodes::GetOperandType(bytecode_, operand_index)); in BytecodeOperandCount()
335 Bytecodes::GetOperandType(bytecode_, operand_index)); in BytecodeOperandFlag()
344 Bytecodes::GetOperandType(bytecode_, operand_index)); in BytecodeOperandImm()
352 Bytecodes::GetOperandType(bytecode_, operand_index)); in BytecodeOperandIdx()
360 Bytecodes::GetOperandType(bytecode_, operand_index))); in BytecodeOperandReg()
368 Bytecodes::GetOperandType(bytecode_, operand_index)); in BytecodeOperandRuntimeId()
377 Bytecodes::GetOperandType(bytecode_, operand_index)); in BytecodeOperandIntrinsicId()
Dbytecode-peephole-optimizer.cc84 DCHECK_EQ(Bytecodes::GetOperandType(node->bytecode(), 0), OperandType::kIdx); in GetConstantForIndexOperand()
Dbytecode-register-optimizer.cc567 Bytecodes::GetOperandType(bytecode, index))); in GetRegisterInputOperand()
576 Bytecodes::GetOperandType(bytecode, index))); in GetRegisterOutputOperand()
Dbytecodes.cc306 OperandType Bytecodes::GetOperandType(Bytecode bytecode, int i) { in GetOperandType() function in v8::internal::interpreter::Bytecodes
729 OperandType op_type = GetOperandType(bytecode, i); in Decode()
Dbytecodes.h514 static OperandType GetOperandType(Bytecode bytecode, int i);
/external/v8/src/runtime/
Druntime-interpreter.cc75 interpreter::Bytecodes::GetOperandType(bytecode, operand_index); in PrintRegisters()
/external/v8/test/cctest/interpreter/
Dbytecode-expectations-printer.cc105 OperandType op_type = Bytecodes::GetOperandType(bytecode, op_index); in PrintBytecodeOperand()
/external/v8/test/unittests/interpreter/
Dinterpreter-assembler-unittest.cc397 interpreter::Bytecodes::GetOperandType(bytecode, i); in TARGET_TEST_F()
400 switch (interpreter::Bytecodes::GetOperandType(bytecode, i)) { in TARGET_TEST_F()
/external/v8/src/compiler/
Dinstruction.h1104 MachineType GetOperandType(size_t index) const { in GetOperandType() function
1149 return values_.GetOperandType(index); in GetType()