Lines Matching refs:immediate_bytes

334   size_t immediate_bytes = 0;  in DumpInstruction()  local
366 case ax8_i8: opcode1 = #opname; ax = true; immediate_bytes = 1; byte_operand = true; break; \ in DumpInstruction()
367 case ax32_i32: opcode1 = #opname; ax = true; immediate_bytes = 4; break; in DumpInstruction()
426 case 0x68: opcode1 = "push"; immediate_bytes = 4; break; in DumpInstruction()
427 case 0x69: opcode1 = "imul"; load = true; has_modrm = true; immediate_bytes = 4; break; in DumpInstruction()
428 case 0x6A: opcode1 = "push"; immediate_bytes = 1; break; in DumpInstruction()
429 case 0x6B: opcode1 = "imul"; load = true; has_modrm = true; immediate_bytes = 1; break; in DumpInstruction()
689 immediate_bytes = 1; in DumpInstruction()
698 immediate_bytes = 1; in DumpInstruction()
706 immediate_bytes = 1; in DumpInstruction()
714 immediate_bytes = 1; in DumpInstruction()
722 immediate_bytes = 1; in DumpInstruction()
882 immediate_bytes = 1; in DumpInstruction()
889 immediate_bytes = 1; in DumpInstruction()
909 immediate_bytes = 1; in DumpInstruction()
925 immediate_bytes = 1; in DumpInstruction()
941 immediate_bytes = 1; in DumpInstruction()
1023 immediate_bytes = 1; in DumpInstruction()
1035 immediate_bytes = 1; in DumpInstruction()
1145 immediate_bytes = 1; in DumpInstruction()
1161 immediate_bytes = 1; in DumpInstruction()
1319 immediate_bytes = *instr == 0x81 ? 4 : 1; in DumpInstruction()
1361 immediate_bytes = 1; in DumpInstruction()
1369 immediate_bytes = 8; in DumpInstruction()
1374 immediate_bytes = 4; in DumpInstruction()
1385 immediate_bytes = ((*instr & 0xf0) == 0xc0) ? 1 : 0; in DumpInstruction()
1397 immediate_bytes = 1; in DumpInstruction()
1408 immediate_bytes = 4; in DumpInstruction()
1476 immediate_bytes = ((instr[1] & 0x38) == 0) ? (instr[0] == 0xF7 ? 4 : 1) : 0; in DumpInstruction()
1560 if (immediate_bytes > 0) { in DumpInstruction()
1564 if (immediate_bytes == 1) { in DumpInstruction()
1567 } else if (immediate_bytes == 4) { in DumpInstruction()
1576 CHECK_EQ(immediate_bytes, 8u); in DumpInstruction()