Lines Matching refs:byte_operand

70                      bool byte_operand, uint8_t size_override) {  in DumpReg0()  argument
73 if (byte_operand) { in DumpReg0()
85 bool byte_operand, uint8_t size_override, RegFile reg_file) { in DumpAnyReg() argument
87 DumpReg0(os, rex, reg, byte_operand, size_override); in DumpAnyReg()
96 bool byte_operand, uint8_t size_override, RegFile reg_file) { in DumpReg() argument
99 DumpAnyReg(os, rex, reg_num, byte_operand, size_override, reg_file); in DumpReg()
103 bool byte_operand, uint8_t size_override, RegFile reg_file) { in DumpRmReg() argument
106 DumpAnyReg(os, rex, reg_num, byte_operand, size_override, reg_file); in DumpRmReg()
124 bool byte_operand, uint8_t size_override) { in DumpOpcodeReg() argument
127 DumpReg0(os, rex, reg_num, byte_operand, size_override); in DumpOpcodeReg()
162 bool no_ops, bool byte_operand, bool byte_second_operand, in DumpAddress() argument
228 DumpRmReg(address, rex_w, rm, byte_operand || byte_second_operand, in DumpAddress()
332 bool byte_operand = false; // true when the opcode is dealing with byte operands in DumpInstruction() local
348 case rm8_r8: opcode1 = #opname; store = true; has_modrm = true; byte_operand = true; break; \ in DumpInstruction()
350 case r8_rm8: opcode1 = #opname; load = true; has_modrm = true; byte_operand = true; break; \ in DumpInstruction()
352 case ax8_i8: opcode1 = #opname; ax = true; immediate_bytes = 1; byte_operand = true; break; \ in DumpInstruction()
429 byte_operand = (*instr == 0x86); in DumpInstruction()
431 case 0x88: opcode1 = "mov"; store = true; has_modrm = true; byte_operand = true; break; in DumpInstruction()
433 case 0x8A: opcode1 = "mov"; load = true; has_modrm = true; byte_operand = true; break; in DumpInstruction()
1218 byte_operand = (*instr & 1) == 0; in DumpInstruction()
1225 byte_operand = (*instr & 1) == 0; in DumpInstruction()
1262 byte_operand = true; in DumpInstruction()
1264 byte_operand = true; in DumpInstruction()
1287 byte_operand = (*instr == 0xC0); in DumpInstruction()
1299 byte_operand = true; in DumpInstruction()
1406 DumpOpcodeReg(args, rex_w, *instr & 0x7, byte_operand, prefix[2]); in DumpInstruction()
1416 std::string address = DumpAddress(mod, rm, rex64, rex_w, no_ops, byte_operand, in DumpInstruction()
1425 if (byte_operand) { in DumpInstruction()
1435 DumpReg(args, rex, reg_or_opcode, byte_operand, prefix[2], dst_reg_file); in DumpInstruction()
1446 DumpReg(args, rex, reg_or_opcode, byte_operand, prefix[2], src_reg_file); in DumpInstruction()
1452 DumpReg(args, rex, 0 /* EAX */, byte_operand, prefix[2], GPR); in DumpInstruction()