Lines Matching defs:opcode
102 uint8_t opcode = *pc++;
113 switch (opcode) {
134 opcode = *pc++;
143 if (x86_64 && opcode >= 0x40 && opcode <= 0x4f) {
144 opcode = *pc++;
147 if (opcode == 0x0f) {
148 // Two byte opcode
150 opcode = *pc++;
156 switch (opcode) {
171 switch (opcode) {
208 VLOG(signals) << "Unhandled x86 instruction with opcode " << static_cast<int>(opcode);