Lines Matching refs:byte_operand
69 bool byte_operand, uint8_t size_override) { in DumpReg0() argument
72 if (byte_operand) { in DumpReg0()
84 bool byte_operand, uint8_t size_override, RegFile reg_file) { in DumpAnyReg() argument
86 DumpReg0(os, rex, reg, byte_operand, size_override); in DumpAnyReg()
95 bool byte_operand, uint8_t size_override, RegFile reg_file) { in DumpReg() argument
98 DumpAnyReg(os, rex, reg_num, byte_operand, size_override, reg_file); in DumpReg()
102 bool byte_operand, uint8_t size_override, RegFile reg_file) { in DumpRmReg() argument
105 DumpAnyReg(os, rex, reg_num, byte_operand, size_override, reg_file); in DumpRmReg()
123 bool byte_operand, uint8_t size_override) { in DumpOpcodeReg() argument
126 DumpReg0(os, rex, reg_num, byte_operand, size_override); in DumpOpcodeReg()
161 bool no_ops, bool byte_operand, bool byte_second_operand, in DumpAddress() argument
227 DumpRmReg(address, rex_w, rm, byte_operand || byte_second_operand, in DumpAddress()
300 bool byte_operand = false; // true when the opcode is dealing with byte operands in DumpInstruction() local
316 case rm8_r8: opcode1 = #opname; store = true; has_modrm = true; byte_operand = true; break; \ in DumpInstruction()
318 case r8_rm8: opcode1 = #opname; load = true; has_modrm = true; byte_operand = true; break; \ in DumpInstruction()
320 case ax8_i8: opcode1 = #opname; ax = true; immediate_bytes = 1; byte_operand = true; break; \ in DumpInstruction()
397 byte_operand = (*instr == 0x86); in DumpInstruction()
399 case 0x88: opcode1 = "mov"; store = true; has_modrm = true; byte_operand = true; break; in DumpInstruction()
401 case 0x8A: opcode1 = "mov"; load = true; has_modrm = true; byte_operand = true; break; in DumpInstruction()
1088 byte_operand = (*instr & 1) == 0; in DumpInstruction()
1095 byte_operand = (*instr & 1) == 0; in DumpInstruction()
1126 byte_operand = true; in DumpInstruction()
1128 byte_operand = true; in DumpInstruction()
1151 byte_operand = (*instr == 0xC0); in DumpInstruction()
1163 byte_operand = true; in DumpInstruction()
1270 DumpOpcodeReg(args, rex_w, *instr & 0x7, byte_operand, prefix[2]); in DumpInstruction()
1280 std::string address = DumpAddress(mod, rm, rex64, rex_w, no_ops, byte_operand, in DumpInstruction()
1289 if (byte_operand) { in DumpInstruction()
1299 DumpReg(args, rex, reg_or_opcode, byte_operand, prefix[2], dst_reg_file); in DumpInstruction()
1310 DumpReg(args, rex, reg_or_opcode, byte_operand, prefix[2], src_reg_file); in DumpInstruction()
1316 DumpReg(args, rex, 0 /* EAX */, byte_operand, prefix[2], GPR); in DumpInstruction()