HomeSort by relevance Sort by last modified time
    Searched refs:operand_type (Results 1 - 22 of 22) sorted by null

  /external/v8/src/interpreter/
bytecode-decoder.h 22 OperandType operand_type,
28 OperandType operand_type,
33 OperandType operand_type,
38 OperandType operand_type,
bytecode-array-iterator.cc 63 int operand_index, OperandType operand_type) const {
66 DCHECK_EQ(operand_type,
68 DCHECK(Bytecodes::IsUnsignedOperandType(operand_type));
74 return BytecodeDecoder::DecodeUnsignedOperand(operand_start, operand_type,
79 int operand_index, OperandType operand_type) const {
82 DCHECK_EQ(operand_type,
84 DCHECK(!Bytecodes::IsUnsignedOperandType(operand_type));
90 return BytecodeDecoder::DecodeSignedOperand(operand_start, operand_type,
121 OperandType operand_type = local
123 DCHECK_EQ(operand_type, OperandType::kIdx)
128 OperandType operand_type = local
143 OperandType operand_type = operand_types[operand_index]; local
154 OperandType operand_type = local
163 OperandType operand_type = local
    [all...]
bytecode-operands.cc 30 const char* OperandTypeToString(OperandType operand_type) {
31 switch (operand_type) {
83 std::ostream& operator<<(std::ostream& os, const OperandType& operand_type) {
84 return os << OperandTypeToString(operand_type);
bytecode-array-iterator.h 52 OperandType operand_type) const;
53 int32_t GetSignedOperand(int operand_index, OperandType operand_type) const;
bytecode-decoder.cc 17 OperandType operand_type,
19 DCHECK(Bytecodes::IsRegisterOperandType(operand_type));
21 DecodeSignedOperand(operand_start, operand_type, operand_scale);
27 const uint8_t* operand_start, uint32_t count, OperandType operand_type,
30 DecodeRegisterOperand(operand_start, operand_type, operand_scale);
36 OperandType operand_type,
38 DCHECK(!Bytecodes::IsUnsignedOperandType(operand_type));
39 switch (Bytecodes::SizeOfOperand(operand_type, operand_scale)) {
54 OperandType operand_type,
56 DCHECK(Bytecodes::IsUnsignedOperandType(operand_type));
    [all...]
bytecodes.cc 153 bool Bytecodes::IsRegisterOperandType(OperandType operand_type) {
154 switch (operand_type) {
170 bool Bytecodes::IsRegisterInputOperandType(OperandType operand_type) {
171 switch (operand_type) {
188 bool Bytecodes::IsRegisterOutputOperandType(OperandType operand_type) {
189 switch (operand_type) {
248 bool Bytecodes::IsUnsignedOperandType(OperandType operand_type) {
249 switch (operand_type) {
261 OperandSize Bytecodes::SizeOfOperand(OperandType operand_type,
263 DCHECK_LE(operand_type, OperandType::kLast)
    [all...]
bytecode-traits.h 46 template <OperandType operand_type, OperandScale operand_scale>
62 Helper<OperandTraits<operand_type>::TypeInfoTraits::kIsScalable,
63 OperandTraits<operand_type>::TypeInfoTraits::kUnscaledSize,
bytecodes.h     [all...]
bytecode-operands.h 126 std::ostream& operator<<(std::ostream& os, const OperandType& operand_type);
  /toolchain/binutils/binutils-2.25/gas/config/
tc-tic30.c 267 operand *operand_type[MAX_OPERANDS]; member in struct:tic30_insn
647 operand *operand_type[2][MAX_OPERANDS]; member in struct:tic30_par_insn
808 p_insn.operand_type[found_separator][p_insn.operands[found_separator] - 1] =
811 if (!p_insn.operand_type[found_separator][p_insn.operands[found_separator] - 1])
853 temp_op = p_insn.operand_type[0][i];
854 p_insn.operand_type[0][i] = p_insn.operand_type[1][i];
855 p_insn.operand_type[1][i] = temp_op;
885 if ((p_insn.operand_type[count][i]->op_type &
898 if ((p_insn.operand_type[count][i]->op_type & Rn) && i < 2
    [all...]
tc-crx.c 146 static argtype get_optype (operand_type);
147 static int get_opbits (operand_type);
148 static int get_opflags (operand_type);
174 get_opbits (operand_type op)
185 get_optype (operand_type op)
196 get_opflags (operand_type op)
    [all...]
tc-cr16.c 271 get_opbits (operand_type op)
282 get_optype (operand_type op)
293 get_opflags (operand_type op)
    [all...]
tc-i386.c 1704 enum operand_type enum
    [all...]
  /external/vixl/tools/test_generator/
generator.py 177 [(operand_type.name, variant) for variant in operand_type.variants]
178 if operand_type.name in self.operand_names
179 else [(operand_type.name, operand_type.default)]
180 for operand_type in operand_types.unwrap()
  /external/libunwind/src/dwarf/
Gexpr.c 125 unw_word_t *addr, int operand_type, unw_word_t *val, void *arg)
133 if (operand_type == ADDR)
136 case 1: operand_type = VAL8; break;
137 case 2: operand_type = VAL16; break;
138 case 4: operand_type = VAL32; break;
139 case 8: operand_type = VAL64; break;
143 switch (operand_type)
183 Debug (1, "Unexpected operand type %d\n", operand_type);
  /toolchain/binutils/binutils-2.25/include/opcode/
cr16.h 155 operand_type; typedef in typeref:enum:__anon108774
244 operand_type op_type;
crx.h 151 operand_type; typedef in typeref:enum:__anon108787
248 operand_type op_type;
m88k.h 384 enum operand_type enum
415 enum operand_type type;
  /external/v8/src/runtime/
runtime-interpreter.cc 77 interpreter::OperandType operand_type = local
81 ? interpreter::Bytecodes::IsRegisterInputOperandType(operand_type)
82 : interpreter::Bytecodes::IsRegisterOutputOperandType(operand_type);
  /toolchain/binutils/binutils-2.25/opcodes/
crx-dis.c 102 static argtype getargtype (operand_type);
103 static int getbits (operand_type);
135 getbits (operand_type op)
146 getargtype (operand_type op)
cr16-dis.c 139 getbits (operand_type op)
150 getargtype (operand_type op)
  /system/core/libpixelflinger/codeflinger/
Arm64Assembler.h 187 uint32_t operand_type, uint32_t size = 32);

Completed in 1133 milliseconds