Home
last modified time | relevance | path

Searched refs:opname (Results 1 – 2 of 2) sorted by relevance

/art/compiler/dex/quick/x86/
Dassemble_x86.cc30 #define ENCODING_MAP(opname, mem_use, reg_def, uses_ccodes, \ argument
37opname ## 8MR, kMemReg, mem_use | IS_TERTIARY_OP | REG_USE02 | SETS_CCODES | uses_cc…
38opname ## 8AR, kArrayReg, mem_use | IS_QUIN_OP | REG_USE014 | SETS_CCODES | uses_cc…
39opname ## 8TR, kThreadReg, mem_use | IS_BINARY_OP | REG_USE1 | SETS_CCODES | uses_cc…
40opname ## 8RR, kRegReg, IS_BINARY_OP | reg_def | REG_USE01 | SETS_CCODES | uses_cc…
41opname ## 8RM, kRegMem, IS_LOAD | IS_TERTIARY_OP | reg_def | REG_USE01 | SETS_CCODES | uses_cc…
42opname ## 8RA, kRegArray, IS_LOAD | IS_QUIN_OP | reg_def | REG_USE012 | SETS_CCODES | uses_cc…
43opname ## 8RT, kRegThread, IS_LOAD | IS_BINARY_OP | reg_def | REG_USE0 | SETS_CCODES | uses_cc…
44opname ## 8RI, kRegImm, IS_BINARY_OP | reg_def | REG_USE0 | SETS_CCODES | uses_cc…
45opname ## 8MI, kMemImm, mem_use | IS_TERTIARY_OP | REG_USE0 | SETS_CCODES | uses_cc…
[all …]
/art/disassembler/
Ddisassembler_x86.cc215 #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()