Home
last modified time | relevance | path

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

/art/compiler/dex/quick/x86/
Dassemble_x86.cc36 #define ENCODING_MAP(opname, mem_use, reg_def, uses_ccodes, \ argument
43opname ## 8MR, kMemReg, mem_use | IS_TERTIARY_OP | REG_USE02 | SETS_CCODES | uses_cc…
44opname ## 8AR, kArrayReg, mem_use | IS_QUIN_OP | REG_USE014 | SETS_CCODES | uses_cc…
45opname ## 8TR, kThreadReg, mem_use | IS_BINARY_OP | REG_USE1 | SETS_CCODES | uses_cc…
46opname ## 8RR, kRegReg, IS_BINARY_OP | reg_def | REG_USE01 | SETS_CCODES | uses_cc…
47opname ## 8RM, kRegMem, IS_LOAD | IS_TERTIARY_OP | reg_def | REG_USE01 | SETS_CCODES | uses_cc…
48opname ## 8RA, kRegArray, IS_LOAD | IS_QUIN_OP | reg_def | REG_USE012 | SETS_CCODES | uses_cc…
49opname ## 8RT, kRegThread, IS_LOAD | IS_BINARY_OP | reg_def | REG_USE0 | SETS_CCODES | uses_cc…
50opname ## 8RI, kRegImm, IS_BINARY_OP | reg_def | REG_USE0 | SETS_CCODES | uses_cc…
51opname ## 8MI, kMemImm, mem_use | IS_TERTIARY_OP | REG_USE0 | SETS_CCODES | uses_cc…
[all …]
/art/disassembler/
Ddisassembler_x86.cc312 #define DISASSEMBLER_ENTRY(opname, \ in DumpInstruction() argument
316 case rm8_r8: opcode1 = #opname; store = true; has_modrm = true; byte_operand = true; break; \ in DumpInstruction()
317 case rm32_r32: opcode1 = #opname; store = true; has_modrm = true; break; \ in DumpInstruction()
318 case r8_rm8: opcode1 = #opname; load = true; has_modrm = true; byte_operand = true; break; \ in DumpInstruction()
319 case r32_rm32: opcode1 = #opname; load = true; has_modrm = true; break; \ in DumpInstruction()
320 case ax8_i8: opcode1 = #opname; ax = true; immediate_bytes = 1; byte_operand = true; break; \ in DumpInstruction()
321 case ax32_i32: opcode1 = #opname; ax = true; immediate_bytes = 4; break; in DumpInstruction()