Home
last modified time | relevance | path

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

/art/disassembler/
Ddisassembler_x86.h30 : Disassembler(options), supports_rex_(supports_rex) {} in DisassemblerX86()
44 const bool supports_rex_; variable
Ddisassembler_x86.cc178 if (!supports_rex_) { // Absolute address. in DumpAddress()
325 uint8_t rex = (supports_rex_ && (*instr >= 0x40) && (*instr <= 0x4F)) ? *instr : 0; in DumpInstruction()
1502 uint8_t rex64 = supports_rex_ ? (rex | 0x40) : rex; in DumpInstruction()
1504 uint8_t rex_w = (supports_rex_ && target_specific) ? (rex | 0x48) : rex; in DumpInstruction()
1595 if (prefix[1] == kFs && !supports_rex_) { in DumpInstruction()
1599 if (prefix[1] == kGs && supports_rex_) { in DumpInstruction()