Home
last modified time | relevance | path

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

/external/v8/src/interpreter/
Dbytecode-array-iterator.cc41 OperandType operand_type) const { in GetRawOperand()
44 DCHECK_EQ(operand_type, in GetRawOperand()
49 switch (Bytecodes::SizeOfOperand(operand_type)) { in GetRawOperand()
78 OperandType operand_type = in GetIndexOperand() local
80 DCHECK(operand_type == OperandType::kIdx8 || in GetIndexOperand()
81 operand_type == OperandType::kIdx16); in GetIndexOperand()
82 uint32_t operand = GetRawOperand(operand_index, operand_type); in GetIndexOperand()
88 OperandType operand_type = in GetRegisterOperand() local
90 DCHECK(operand_type == OperandType::kReg8 || in GetRegisterOperand()
91 operand_type == OperandType::kRegPair8 || in GetRegisterOperand()
[all …]
Dbytecodes.cc30 const char* Bytecodes::OperandTypeToString(OperandType operand_type) { in OperandTypeToString() argument
31 switch (operand_type) { in OperandTypeToString()
148 OperandSize Bytecodes::SizeOfOperand(OperandType operand_type) { in SizeOfOperand() argument
149 switch (operand_type) { in SizeOfOperand()
336 std::ostream& operator<<(std::ostream& os, const OperandType& operand_type) { in operator <<() argument
337 return os << Bytecodes::OperandTypeToString(operand_type); in operator <<()
Dbytecode-array-iterator.h37 uint32_t GetRawOperand(int operand_index, OperandType operand_type) const;
Dbytecodes.h338 static const char* OperandTypeToString(OperandType operand_type);
412 std::ostream& operator<<(std::ostream& os, const OperandType& operand_type);
413 std::ostream& operator<<(std::ostream& os, const OperandSize& operand_type);
Dbytecode-array-builder.cc1234 OperandType operand_type = Bytecodes::GetOperandType(bytecode, operand_index); in OperandIsValid() local
1235 switch (operand_type) { in OperandIsValid()
/external/libunwind/src/dwarf/
DGexpr.c125 unw_word_t *addr, int operand_type, unw_word_t *val, void *arg) in read_operand() argument
133 if (operand_type == ADDR) in read_operand()
136 case 1: operand_type = VAL8; break; in read_operand()
137 case 2: operand_type = VAL16; break; in read_operand()
138 case 4: operand_type = VAL32; break; in read_operand()
139 case 8: operand_type = VAL64; break; in read_operand()
143 switch (operand_type) in read_operand()
183 Debug (1, "Unexpected operand type %d\n", operand_type); in read_operand()
/external/v8/test/cctest/interpreter/
Dtest-bytecode-generator.cc222 OperandType operand_type = Bytecodes::GetOperandType(bytecode, j); in CheckBytecodeArrayEqual() local
224 i += static_cast<int>(Bytecodes::SizeOfOperand(operand_type)); in CheckBytecodeArrayEqual()
225 uint32_t raw_operand = iterator.GetRawOperand(j, operand_type); in CheckBytecodeArrayEqual()
227 switch (Bytecodes::SizeOfOperand(operand_type)) { in CheckBytecodeArrayEqual()