Home | History | Annotate | Download | only in disassembler

Lines Matching refs:REX_W

64 constexpr uint8_t REX_W = 8U /* 0b1000 */;
72 bool rex_w = (rex & REX_W) != 0;
75 } else if (rex_w) {
161 std::string DisassemblerX86::DumpAddress(uint8_t mod, uint8_t rm, uint8_t rex64, uint8_t rex_w,
228 DumpRmReg(address, rex_w, rm, byte_operand || byte_second_operand,
400 if ((rex & REX_W) != 0) {
1111 rex |= (rex == 0 ? 0 : REX_W);
1352 if ((rex & REX_W) != 0) {
1488 uint8_t rex_w = (supports_rex_ && target_specific) ? (rex | 0x48) : rex;
1491 DumpOpcodeReg(args, rex_w, *instr & 0x7, byte_operand, prefix[2]);
1501 std::string address = DumpAddress(mod, rm, rex64, rex_w, no_ops, byte_operand,
1512 } else if ((rex & REX_W) != 0) {