Searched refs:opname (Results 1 – 2 of 2) sorted by relevance
/art/compiler/dex/quick/x86/ |
D | assemble_x86.cc | 30 #define ENCODING_MAP(opname, mem_use, reg_def, uses_ccodes, \ argument 37 …opname ## 8MR, kMemReg, mem_use | IS_TERTIARY_OP | REG_USE02 | SETS_CCODES | uses_cc… 38 …opname ## 8AR, kArrayReg, mem_use | IS_QUIN_OP | REG_USE014 | SETS_CCODES | uses_cc… 39 …opname ## 8TR, kThreadReg, mem_use | IS_BINARY_OP | REG_USE1 | SETS_CCODES | uses_cc… 40 …opname ## 8RR, kRegReg, IS_BINARY_OP | reg_def | REG_USE01 | SETS_CCODES | uses_cc… 41 …opname ## 8RM, kRegMem, IS_LOAD | IS_TERTIARY_OP | reg_def | REG_USE01 | SETS_CCODES | uses_cc… 42 …opname ## 8RA, kRegArray, IS_LOAD | IS_QUIN_OP | reg_def | REG_USE012 | SETS_CCODES | uses_cc… 43 …opname ## 8RT, kRegThread, IS_LOAD | IS_BINARY_OP | reg_def | REG_USE0 | SETS_CCODES | uses_cc… 44 …opname ## 8RI, kRegImm, IS_BINARY_OP | reg_def | REG_USE0 | SETS_CCODES | uses_cc… 45 …opname ## 8MI, kMemImm, mem_use | IS_TERTIARY_OP | REG_USE0 | SETS_CCODES | uses_cc… [all …]
|
/art/disassembler/ |
D | disassembler_x86.cc | 215 #define DISASSEMBLER_ENTRY(opname, \ in DumpInstruction() argument 219 case rm8_r8: opcode << #opname; store = true; has_modrm = true; byte_operand = true; break; \ in DumpInstruction() 220 case rm32_r32: opcode << #opname; store = true; has_modrm = true; break; \ in DumpInstruction() 221 case r8_rm8: opcode << #opname; load = true; has_modrm = true; byte_operand = true; break; \ in DumpInstruction() 222 case r32_rm32: opcode << #opname; load = true; has_modrm = true; break; \ in DumpInstruction() 223 case ax8_i8: opcode << #opname; ax = true; immediate_bytes = 1; byte_operand = true; break; \ in DumpInstruction() 224 case ax32_i32: opcode << #opname; ax = true; immediate_bytes = 4; break; in DumpInstruction()
|