Lines Matching refs:opcode
113 uint8_t opcode = *pc; in GetInstructionSize() local
125 switch (opcode) { in GetInstructionSize()
146 opcode = *pc; in GetInstructionSize()
156 if (x86_64 && opcode >= 0x40 && opcode <= 0x4f) { in GetInstructionSize()
157 opcode = *pc; in GetInstructionSize()
161 if (opcode == 0x0f) { in GetInstructionSize()
164 opcode = *pc; in GetInstructionSize()
171 switch (opcode) { in GetInstructionSize()
187 switch (opcode) { in GetInstructionSize()
227 immediate_size = (opcode == 0xf6) ? 1 : (operand_size_prefix ? 2 : 4); in GetInstructionSize()
249 VLOG(signals) << "Unhandled x86 instruction with opcode " << static_cast<int>(opcode); in GetInstructionSize()