Lines Matching refs:immediate_bytes
322 size_t immediate_bytes = 0; in DumpInstruction() local
352 case ax8_i8: opcode1 = #opname; ax = true; immediate_bytes = 1; byte_operand = true; break; \ in DumpInstruction()
353 case ax32_i32: opcode1 = #opname; ax = true; immediate_bytes = 4; break; in DumpInstruction()
411 case 0x68: opcode1 = "push"; immediate_bytes = 4; break; in DumpInstruction()
412 case 0x69: opcode1 = "imul"; load = true; has_modrm = true; immediate_bytes = 4; break; in DumpInstruction()
413 case 0x6A: opcode1 = "push"; immediate_bytes = 1; break; in DumpInstruction()
414 case 0x6B: opcode1 = "imul"; load = true; has_modrm = true; immediate_bytes = 1; break; in DumpInstruction()
674 immediate_bytes = 1; in DumpInstruction()
683 immediate_bytes = 1; in DumpInstruction()
691 immediate_bytes = 1; in DumpInstruction()
699 immediate_bytes = 1; in DumpInstruction()
707 immediate_bytes = 1; in DumpInstruction()
867 immediate_bytes = 1; in DumpInstruction()
874 immediate_bytes = 1; in DumpInstruction()
894 immediate_bytes = 1; in DumpInstruction()
910 immediate_bytes = 1; in DumpInstruction()
926 immediate_bytes = 1; in DumpInstruction()
1008 immediate_bytes = 1; in DumpInstruction()
1020 immediate_bytes = 1; in DumpInstruction()
1130 immediate_bytes = 1; in DumpInstruction()
1146 immediate_bytes = 1; in DumpInstruction()
1304 immediate_bytes = *instr == 0x81 ? 4 : 1; in DumpInstruction()
1346 immediate_bytes = 1; in DumpInstruction()
1354 immediate_bytes = 8; in DumpInstruction()
1359 immediate_bytes = 4; in DumpInstruction()
1370 immediate_bytes = ((*instr & 0xf0) == 0xc0) ? 1 : 0; in DumpInstruction()
1381 immediate_bytes = 1; in DumpInstruction()
1392 immediate_bytes = 4; in DumpInstruction()
1460 immediate_bytes = ((instr[1] & 0x38) == 0) ? (instr[0] == 0xF7 ? 4 : 1) : 0; in DumpInstruction()
1543 if (immediate_bytes > 0) { in DumpInstruction()
1547 if (immediate_bytes == 1) { in DumpInstruction()
1550 } else if (immediate_bytes == 4) { in DumpInstruction()
1559 CHECK_EQ(immediate_bytes, 8u); in DumpInstruction()