Lines Matching refs:byte_operand

67                      bool byte_operand, uint8_t size_override) {  in DumpReg0()  argument
70 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()
129 bool byte_operand, uint8_t size_override) { in DumpOpcodeReg() argument
132 DumpReg0(os, rex, reg_num, byte_operand, size_override); in DumpOpcodeReg()
205 bool byte_operand = false; // true when the opcode is dealing with byte operands in DumpInstruction() local
219 case rm8_r8: opcode << #opname; store = true; has_modrm = true; byte_operand = true; break; \ in DumpInstruction()
221 case r8_rm8: opcode << #opname; load = true; has_modrm = true; byte_operand = true; break; \ in DumpInstruction()
223 case ax8_i8: opcode << #opname; ax = true; immediate_bytes = 1; byte_operand = true; break; \ in DumpInstruction()
298 byte_operand = (*instr == 0x86); in DumpInstruction()
300 case 0x88: opcode << "mov"; store = true; has_modrm = true; byte_operand = true; break; in DumpInstruction()
302 case 0x8A: opcode << "mov"; load = true; has_modrm = true; byte_operand = true; break; in DumpInstruction()
920 byte_operand = (*instr & 1) == 0; in DumpInstruction()
927 byte_operand = (*instr & 1) == 0; in DumpInstruction()
957 byte_operand = true; in DumpInstruction()
959 byte_operand = true; in DumpInstruction()
982 byte_operand = (*instr == 0xC0); in DumpInstruction()
992 byte_operand = true; in DumpInstruction()
1084 DumpOpcodeReg(args, rex_w, *instr & 0x7, byte_operand, prefix[2]); in DumpInstruction()
1144 DumpRmReg(address, rex_w, rm, byte_operand || byte_second_operand, in DumpInstruction()
1166 if (byte_operand) { in DumpInstruction()
1176 DumpReg(args, rex, reg_or_opcode, byte_operand, prefix[2], dst_reg_file); in DumpInstruction()
1187 DumpReg(args, rex, reg_or_opcode, byte_operand, prefix[2], src_reg_file); in DumpInstruction()
1193 DumpReg(args, rex, 0 /* EAX */, byte_operand, prefix[2], GPR); in DumpInstruction()