Lines Matching refs:opcode
102 uint8_t opcode; in GetInstructionSize() local
103 FETCH_BYTE(opcode); in GetInstructionSize()
114 switch (opcode) { in GetInstructionSize()
135 FETCH_BYTE(opcode); in GetInstructionSize()
144 if (x86_64 && opcode >= 0x40 && opcode <= 0x4f) { in GetInstructionSize()
145 FETCH_BYTE(opcode); in GetInstructionSize()
148 if (opcode == 0x0f) { in GetInstructionSize()
151 FETCH_BYTE(opcode); in GetInstructionSize()
157 switch (opcode) { in GetInstructionSize()
172 switch (opcode) { in GetInstructionSize()
208 immediate_size = (opcode == 0xf6) ? 1 : (operand_size_prefix ? 2 : 4); in GetInstructionSize()
230 VLOG(signals) << "Unhandled x86 instruction with opcode " << static_cast<int>(opcode); in GetInstructionSize()