Various x86 disassembler fixes.
[oota-llvm.git] / lib / Target / X86 / Disassembler / X86DisassemblerDecoder.c
1 /*===-- X86DisassemblerDecoder.c - Disassembler decoder ------------*- C -*-===*
2  *
3  *                     The LLVM Compiler Infrastructure
4  *
5  * This file is distributed under the University of Illinois Open Source
6  * License. See LICENSE.TXT for details.
7  *
8  *===----------------------------------------------------------------------===*
9  *
10  * This file is part of the X86 Disassembler.
11  * It contains the implementation of the instruction decoder.
12  * Documentation for the disassembler can be found in X86Disassembler.h.
13  *
14  *===----------------------------------------------------------------------===*/
15
16 #include <stdarg.h>   /* for va_*()       */
17 #include <stdio.h>    /* for vsnprintf()  */
18 #include <stdlib.h>   /* for exit()       */
19 #include <string.h>   /* for memset()     */
20
21 #include "X86DisassemblerDecoder.h"
22
23 #include "X86GenDisassemblerTables.inc"
24
25 #define TRUE  1
26 #define FALSE 0
27
28 typedef int8_t bool;
29
30 #ifndef NDEBUG
31 #define debug(s) do { x86DisassemblerDebug(__FILE__, __LINE__, s); } while (0)
32 #else
33 #define debug(s) do { } while (0)
34 #endif
35
36
37 /*
38  * contextForAttrs - Client for the instruction context table.  Takes a set of
39  *   attributes and returns the appropriate decode context.
40  *
41  * @param attrMask  - Attributes, from the enumeration attributeBits.
42  * @return          - The InstructionContext to use when looking up an
43  *                    an instruction with these attributes.
44  */
45 static InstructionContext contextForAttrs(uint8_t attrMask) {
46   return CONTEXTS_SYM[attrMask];
47 }
48
49 /*
50  * modRMRequired - Reads the appropriate instruction table to determine whether
51  *   the ModR/M byte is required to decode a particular instruction.
52  *
53  * @param type        - The opcode type (i.e., how many bytes it has).
54  * @param insnContext - The context for the instruction, as returned by
55  *                      contextForAttrs.
56  * @param opcode      - The last byte of the instruction's opcode, not counting
57  *                      ModR/M extensions and escapes.
58  * @return            - TRUE if the ModR/M byte is required, FALSE otherwise.
59  */
60 static int modRMRequired(OpcodeType type,
61                          InstructionContext insnContext,
62                          uint8_t opcode) {
63   const struct ContextDecision* decision = 0;
64
65   switch (type) {
66   case ONEBYTE:
67     decision = &ONEBYTE_SYM;
68     break;
69   case TWOBYTE:
70     decision = &TWOBYTE_SYM;
71     break;
72   case THREEBYTE_38:
73     decision = &THREEBYTE38_SYM;
74     break;
75   case THREEBYTE_3A:
76     decision = &THREEBYTE3A_SYM;
77     break;
78   case THREEBYTE_A6:
79     decision = &THREEBYTEA6_SYM;
80     break;
81   case THREEBYTE_A7:
82     decision = &THREEBYTEA7_SYM;
83     break;
84   }
85
86   return decision->opcodeDecisions[insnContext].modRMDecisions[opcode].
87     modrm_type != MODRM_ONEENTRY;
88 }
89
90 /*
91  * decode - Reads the appropriate instruction table to obtain the unique ID of
92  *   an instruction.
93  *
94  * @param type        - See modRMRequired().
95  * @param insnContext - See modRMRequired().
96  * @param opcode      - See modRMRequired().
97  * @param modRM       - The ModR/M byte if required, or any value if not.
98  * @return            - The UID of the instruction, or 0 on failure.
99  */
100 static InstrUID decode(OpcodeType type,
101                        InstructionContext insnContext,
102                        uint8_t opcode,
103                        uint8_t modRM) {
104   const struct ModRMDecision* dec = 0;
105
106   switch (type) {
107   case ONEBYTE:
108     dec = &ONEBYTE_SYM.opcodeDecisions[insnContext].modRMDecisions[opcode];
109     break;
110   case TWOBYTE:
111     dec = &TWOBYTE_SYM.opcodeDecisions[insnContext].modRMDecisions[opcode];
112     break;
113   case THREEBYTE_38:
114     dec = &THREEBYTE38_SYM.opcodeDecisions[insnContext].modRMDecisions[opcode];
115     break;
116   case THREEBYTE_3A:
117     dec = &THREEBYTE3A_SYM.opcodeDecisions[insnContext].modRMDecisions[opcode];
118     break;
119   case THREEBYTE_A6:
120     dec = &THREEBYTEA6_SYM.opcodeDecisions[insnContext].modRMDecisions[opcode];
121     break;
122   case THREEBYTE_A7:
123     dec = &THREEBYTEA7_SYM.opcodeDecisions[insnContext].modRMDecisions[opcode];
124     break;
125   }
126
127   switch (dec->modrm_type) {
128   default:
129     debug("Corrupt table!  Unknown modrm_type");
130     return 0;
131   case MODRM_ONEENTRY:
132     return modRMTable[dec->instructionIDs];
133   case MODRM_SPLITRM:
134     if (modFromModRM(modRM) == 0x3)
135       return modRMTable[dec->instructionIDs+1];
136     return modRMTable[dec->instructionIDs];
137   case MODRM_SPLITREG:
138     if (modFromModRM(modRM) == 0x3)
139       return modRMTable[dec->instructionIDs+((modRM & 0x38) >> 3)+8];
140     return modRMTable[dec->instructionIDs+((modRM & 0x38) >> 3)];
141   case MODRM_SPLITMISC:
142     if (modFromModRM(modRM) == 0x3)
143       return modRMTable[dec->instructionIDs+(modRM & 0x3f)+8];
144     return modRMTable[dec->instructionIDs+((modRM & 0x38) >> 3)];
145   case MODRM_FULL:
146     return modRMTable[dec->instructionIDs+modRM];
147   }
148 }
149
150 /*
151  * specifierForUID - Given a UID, returns the name and operand specification for
152  *   that instruction.
153  *
154  * @param uid - The unique ID for the instruction.  This should be returned by
155  *              decode(); specifierForUID will not check bounds.
156  * @return    - A pointer to the specification for that instruction.
157  */
158 static const struct InstructionSpecifier *specifierForUID(InstrUID uid) {
159   return &INSTRUCTIONS_SYM[uid];
160 }
161
162 /*
163  * consumeByte - Uses the reader function provided by the user to consume one
164  *   byte from the instruction's memory and advance the cursor.
165  *
166  * @param insn  - The instruction with the reader function to use.  The cursor
167  *                for this instruction is advanced.
168  * @param byte  - A pointer to a pre-allocated memory buffer to be populated
169  *                with the data read.
170  * @return      - 0 if the read was successful; nonzero otherwise.
171  */
172 static int consumeByte(struct InternalInstruction* insn, uint8_t* byte) {
173   int ret = insn->reader(insn->readerArg, byte, insn->readerCursor);
174
175   if (!ret)
176     ++(insn->readerCursor);
177
178   return ret;
179 }
180
181 /*
182  * lookAtByte - Like consumeByte, but does not advance the cursor.
183  *
184  * @param insn  - See consumeByte().
185  * @param byte  - See consumeByte().
186  * @return      - See consumeByte().
187  */
188 static int lookAtByte(struct InternalInstruction* insn, uint8_t* byte) {
189   return insn->reader(insn->readerArg, byte, insn->readerCursor);
190 }
191
192 static void unconsumeByte(struct InternalInstruction* insn) {
193   insn->readerCursor--;
194 }
195
196 #define CONSUME_FUNC(name, type)                                  \
197   static int name(struct InternalInstruction* insn, type* ptr) {  \
198     type combined = 0;                                            \
199     unsigned offset;                                              \
200     for (offset = 0; offset < sizeof(type); ++offset) {           \
201       uint8_t byte;                                               \
202       int ret = insn->reader(insn->readerArg,                     \
203                              &byte,                               \
204                              insn->readerCursor + offset);        \
205       if (ret)                                                    \
206         return ret;                                               \
207       combined = combined | ((uint64_t)byte << (offset * 8));     \
208     }                                                             \
209     *ptr = combined;                                              \
210     insn->readerCursor += sizeof(type);                           \
211     return 0;                                                     \
212   }
213
214 /*
215  * consume* - Use the reader function provided by the user to consume data
216  *   values of various sizes from the instruction's memory and advance the
217  *   cursor appropriately.  These readers perform endian conversion.
218  *
219  * @param insn    - See consumeByte().
220  * @param ptr     - A pointer to a pre-allocated memory of appropriate size to
221  *                  be populated with the data read.
222  * @return        - See consumeByte().
223  */
224 CONSUME_FUNC(consumeInt8, int8_t)
225 CONSUME_FUNC(consumeInt16, int16_t)
226 CONSUME_FUNC(consumeInt32, int32_t)
227 CONSUME_FUNC(consumeUInt16, uint16_t)
228 CONSUME_FUNC(consumeUInt32, uint32_t)
229 CONSUME_FUNC(consumeUInt64, uint64_t)
230
231 /*
232  * dbgprintf - Uses the logging function provided by the user to log a single
233  *   message, typically without a carriage-return.
234  *
235  * @param insn    - The instruction containing the logging function.
236  * @param format  - See printf().
237  * @param ...     - See printf().
238  */
239 static void dbgprintf(struct InternalInstruction* insn,
240                       const char* format,
241                       ...) {
242   char buffer[256];
243   va_list ap;
244
245   if (!insn->dlog)
246     return;
247
248   va_start(ap, format);
249   (void)vsnprintf(buffer, sizeof(buffer), format, ap);
250   va_end(ap);
251
252   insn->dlog(insn->dlogArg, buffer);
253
254   return;
255 }
256
257 /*
258  * setPrefixPresent - Marks that a particular prefix is present at a particular
259  *   location.
260  *
261  * @param insn      - The instruction to be marked as having the prefix.
262  * @param prefix    - The prefix that is present.
263  * @param location  - The location where the prefix is located (in the address
264  *                    space of the instruction's reader).
265  */
266 static void setPrefixPresent(struct InternalInstruction* insn,
267                                     uint8_t prefix,
268                                     uint64_t location)
269 {
270   insn->prefixPresent[prefix] = 1;
271   insn->prefixLocations[prefix] = location;
272 }
273
274 /*
275  * isPrefixAtLocation - Queries an instruction to determine whether a prefix is
276  *   present at a given location.
277  *
278  * @param insn      - The instruction to be queried.
279  * @param prefix    - The prefix.
280  * @param location  - The location to query.
281  * @return          - Whether the prefix is at that location.
282  */
283 static BOOL isPrefixAtLocation(struct InternalInstruction* insn,
284                                uint8_t prefix,
285                                uint64_t location)
286 {
287   if (insn->prefixPresent[prefix] == 1 &&
288      insn->prefixLocations[prefix] == location)
289     return TRUE;
290   else
291     return FALSE;
292 }
293
294 /*
295  * readPrefixes - Consumes all of an instruction's prefix bytes, and marks the
296  *   instruction as having them.  Also sets the instruction's default operand,
297  *   address, and other relevant data sizes to report operands correctly.
298  *
299  * @param insn  - The instruction whose prefixes are to be read.
300  * @return      - 0 if the instruction could be read until the end of the prefix
301  *                bytes, and no prefixes conflicted; nonzero otherwise.
302  */
303 static int readPrefixes(struct InternalInstruction* insn) {
304   BOOL isPrefix = TRUE;
305   BOOL prefixGroups[4] = { FALSE };
306   uint64_t prefixLocation;
307   uint8_t byte = 0;
308   uint8_t nextByte;
309
310   BOOL hasAdSize = FALSE;
311   BOOL hasOpSize = FALSE;
312
313   dbgprintf(insn, "readPrefixes()");
314
315   while (isPrefix) {
316     prefixLocation = insn->readerCursor;
317
318     /* If we fail reading prefixes, just stop here and let the opcode reader deal with it */
319     if (consumeByte(insn, &byte))
320       break;
321
322     /*
323      * If the byte is a LOCK/REP/REPNE prefix and not a part of the opcode, then
324      * break and let it be disassembled as a normal "instruction".
325      */
326     if (insn->readerCursor - 1 == insn->startLocation && byte == 0xf0)
327       break;
328
329     if (insn->readerCursor - 1 == insn->startLocation
330         && (byte == 0xf2 || byte == 0xf3)
331         && !lookAtByte(insn, &nextByte))
332     {
333       /*
334        * If the byte is 0xf2 or 0xf3, and any of the following conditions are
335        * met:
336        * - it is followed by a LOCK (0xf0) prefix
337        * - it is followed by an xchg instruction
338        * then it should be disassembled as a xacquire/xrelease not repne/rep.
339        */
340       if ((byte == 0xf2 || byte == 0xf3) &&
341           ((nextByte == 0xf0) |
342           ((nextByte & 0xfe) == 0x86 || (nextByte & 0xf8) == 0x90)))
343         insn->xAcquireRelease = TRUE;
344       /*
345        * Also if the byte is 0xf3, and the following condition is met:
346        * - it is followed by a "mov mem, reg" (opcode 0x88/0x89) or
347        *                       "mov mem, imm" (opcode 0xc6/0xc7) instructions.
348        * then it should be disassembled as an xrelease not rep.
349        */
350       if (byte == 0xf3 &&
351           (nextByte == 0x88 || nextByte == 0x89 ||
352            nextByte == 0xc6 || nextByte == 0xc7))
353         insn->xAcquireRelease = TRUE;
354       if (insn->mode == MODE_64BIT && (nextByte & 0xf0) == 0x40) {
355         if (consumeByte(insn, &nextByte))
356           return -1;
357         if (lookAtByte(insn, &nextByte))
358           return -1;
359         unconsumeByte(insn);
360       }
361       if (nextByte != 0x0f && nextByte != 0x90)
362         break;
363     }
364
365     switch (byte) {
366     case 0xf0:  /* LOCK */
367     case 0xf2:  /* REPNE/REPNZ */
368     case 0xf3:  /* REP or REPE/REPZ */
369       if (prefixGroups[0])
370         dbgprintf(insn, "Redundant Group 1 prefix");
371       prefixGroups[0] = TRUE;
372       setPrefixPresent(insn, byte, prefixLocation);
373       break;
374     case 0x2e:  /* CS segment override -OR- Branch not taken */
375     case 0x36:  /* SS segment override -OR- Branch taken */
376     case 0x3e:  /* DS segment override */
377     case 0x26:  /* ES segment override */
378     case 0x64:  /* FS segment override */
379     case 0x65:  /* GS segment override */
380       switch (byte) {
381       case 0x2e:
382         insn->segmentOverride = SEG_OVERRIDE_CS;
383         break;
384       case 0x36:
385         insn->segmentOverride = SEG_OVERRIDE_SS;
386         break;
387       case 0x3e:
388         insn->segmentOverride = SEG_OVERRIDE_DS;
389         break;
390       case 0x26:
391         insn->segmentOverride = SEG_OVERRIDE_ES;
392         break;
393       case 0x64:
394         insn->segmentOverride = SEG_OVERRIDE_FS;
395         break;
396       case 0x65:
397         insn->segmentOverride = SEG_OVERRIDE_GS;
398         break;
399       default:
400         debug("Unhandled override");
401         return -1;
402       }
403       if (prefixGroups[1])
404         dbgprintf(insn, "Redundant Group 2 prefix");
405       prefixGroups[1] = TRUE;
406       setPrefixPresent(insn, byte, prefixLocation);
407       break;
408     case 0x66:  /* Operand-size override */
409       if (prefixGroups[2])
410         dbgprintf(insn, "Redundant Group 3 prefix");
411       prefixGroups[2] = TRUE;
412       hasOpSize = TRUE;
413       setPrefixPresent(insn, byte, prefixLocation);
414       break;
415     case 0x67:  /* Address-size override */
416       if (prefixGroups[3])
417         dbgprintf(insn, "Redundant Group 4 prefix");
418       prefixGroups[3] = TRUE;
419       hasAdSize = TRUE;
420       setPrefixPresent(insn, byte, prefixLocation);
421       break;
422     default:    /* Not a prefix byte */
423       isPrefix = FALSE;
424       break;
425     }
426
427     if (isPrefix)
428       dbgprintf(insn, "Found prefix 0x%hhx", byte);
429   }
430
431   insn->vexSize = 0;
432
433   if (byte == 0xc4) {
434     uint8_t byte1;
435
436     if (lookAtByte(insn, &byte1)) {
437       dbgprintf(insn, "Couldn't read second byte of VEX");
438       return -1;
439     }
440
441     if (insn->mode == MODE_64BIT || (byte1 & 0xc0) == 0xc0) {
442       insn->vexSize = 3;
443       insn->necessaryPrefixLocation = insn->readerCursor - 1;
444     }
445     else {
446       unconsumeByte(insn);
447       insn->necessaryPrefixLocation = insn->readerCursor - 1;
448     }
449
450     if (insn->vexSize == 3) {
451       insn->vexPrefix[0] = byte;
452       consumeByte(insn, &insn->vexPrefix[1]);
453       consumeByte(insn, &insn->vexPrefix[2]);
454
455       /* We simulate the REX prefix for simplicity's sake */
456
457       if (insn->mode == MODE_64BIT) {
458         insn->rexPrefix = 0x40
459                         | (wFromVEX3of3(insn->vexPrefix[2]) << 3)
460                         | (rFromVEX2of3(insn->vexPrefix[1]) << 2)
461                         | (xFromVEX2of3(insn->vexPrefix[1]) << 1)
462                         | (bFromVEX2of3(insn->vexPrefix[1]) << 0);
463       }
464
465       switch (ppFromVEX3of3(insn->vexPrefix[2]))
466       {
467       default:
468         break;
469       case VEX_PREFIX_66:
470         hasOpSize = TRUE;
471         break;
472       }
473
474       dbgprintf(insn, "Found VEX prefix 0x%hhx 0x%hhx 0x%hhx", insn->vexPrefix[0], insn->vexPrefix[1], insn->vexPrefix[2]);
475     }
476   }
477   else if (byte == 0xc5) {
478     uint8_t byte1;
479
480     if (lookAtByte(insn, &byte1)) {
481       dbgprintf(insn, "Couldn't read second byte of VEX");
482       return -1;
483     }
484
485     if (insn->mode == MODE_64BIT || (byte1 & 0xc0) == 0xc0) {
486       insn->vexSize = 2;
487     }
488     else {
489       unconsumeByte(insn);
490     }
491
492     if (insn->vexSize == 2) {
493       insn->vexPrefix[0] = byte;
494       consumeByte(insn, &insn->vexPrefix[1]);
495
496       if (insn->mode == MODE_64BIT) {
497         insn->rexPrefix = 0x40
498                         | (rFromVEX2of2(insn->vexPrefix[1]) << 2);
499       }
500
501       switch (ppFromVEX2of2(insn->vexPrefix[1]))
502       {
503       default:
504         break;
505       case VEX_PREFIX_66:
506         hasOpSize = TRUE;
507         break;
508       }
509
510       dbgprintf(insn, "Found VEX prefix 0x%hhx 0x%hhx", insn->vexPrefix[0], insn->vexPrefix[1]);
511     }
512   }
513   else {
514     if (insn->mode == MODE_64BIT) {
515       if ((byte & 0xf0) == 0x40) {
516         uint8_t opcodeByte;
517
518         if (lookAtByte(insn, &opcodeByte) || ((opcodeByte & 0xf0) == 0x40)) {
519           dbgprintf(insn, "Redundant REX prefix");
520           return -1;
521         }
522
523         insn->rexPrefix = byte;
524         insn->necessaryPrefixLocation = insn->readerCursor - 2;
525
526         dbgprintf(insn, "Found REX prefix 0x%hhx", byte);
527       } else {
528         unconsumeByte(insn);
529         insn->necessaryPrefixLocation = insn->readerCursor - 1;
530       }
531     } else {
532       unconsumeByte(insn);
533       insn->necessaryPrefixLocation = insn->readerCursor - 1;
534     }
535   }
536
537   if (insn->mode == MODE_16BIT) {
538     insn->registerSize       = (hasOpSize ? 4 : 2);
539     insn->addressSize        = (hasAdSize ? 4 : 2);
540     insn->displacementSize   = (hasAdSize ? 4 : 2);
541     insn->immediateSize      = (hasOpSize ? 4 : 2);
542   } else if (insn->mode == MODE_32BIT) {
543     insn->registerSize       = (hasOpSize ? 2 : 4);
544     insn->addressSize        = (hasAdSize ? 2 : 4);
545     insn->displacementSize   = (hasAdSize ? 2 : 4);
546     insn->immediateSize      = (hasOpSize ? 2 : 4);
547   } else if (insn->mode == MODE_64BIT) {
548     if (insn->rexPrefix && wFromREX(insn->rexPrefix)) {
549       insn->registerSize       = 8;
550       insn->addressSize        = (hasAdSize ? 4 : 8);
551       insn->displacementSize   = 4;
552       insn->immediateSize      = 4;
553     } else if (insn->rexPrefix) {
554       insn->registerSize       = (hasOpSize ? 2 : 4);
555       insn->addressSize        = (hasAdSize ? 4 : 8);
556       insn->displacementSize   = (hasOpSize ? 2 : 4);
557       insn->immediateSize      = (hasOpSize ? 2 : 4);
558     } else {
559       insn->registerSize       = (hasOpSize ? 2 : 4);
560       insn->addressSize        = (hasAdSize ? 4 : 8);
561       insn->displacementSize   = (hasOpSize ? 2 : 4);
562       insn->immediateSize      = (hasOpSize ? 2 : 4);
563     }
564   }
565
566   return 0;
567 }
568
569 /*
570  * readOpcode - Reads the opcode (excepting the ModR/M byte in the case of
571  *   extended or escape opcodes).
572  *
573  * @param insn  - The instruction whose opcode is to be read.
574  * @return      - 0 if the opcode could be read successfully; nonzero otherwise.
575  */
576 static int readOpcode(struct InternalInstruction* insn) {
577   /* Determine the length of the primary opcode */
578
579   uint8_t current;
580
581   dbgprintf(insn, "readOpcode()");
582
583   insn->opcodeType = ONEBYTE;
584
585   if (insn->vexSize == 3)
586   {
587     switch (mmmmmFromVEX2of3(insn->vexPrefix[1]))
588     {
589     default:
590       dbgprintf(insn, "Unhandled m-mmmm field for instruction (0x%hhx)", mmmmmFromVEX2of3(insn->vexPrefix[1]));
591       return -1;
592     case 0:
593       break;
594     case VEX_LOB_0F:
595       insn->twoByteEscape = 0x0f;
596       insn->opcodeType = TWOBYTE;
597       return consumeByte(insn, &insn->opcode);
598     case VEX_LOB_0F38:
599       insn->twoByteEscape = 0x0f;
600       insn->threeByteEscape = 0x38;
601       insn->opcodeType = THREEBYTE_38;
602       return consumeByte(insn, &insn->opcode);
603     case VEX_LOB_0F3A:
604       insn->twoByteEscape = 0x0f;
605       insn->threeByteEscape = 0x3a;
606       insn->opcodeType = THREEBYTE_3A;
607       return consumeByte(insn, &insn->opcode);
608     }
609   }
610   else if (insn->vexSize == 2)
611   {
612     insn->twoByteEscape = 0x0f;
613     insn->opcodeType = TWOBYTE;
614     return consumeByte(insn, &insn->opcode);
615   }
616
617   if (consumeByte(insn, &current))
618     return -1;
619
620   if (current == 0x0f) {
621     dbgprintf(insn, "Found a two-byte escape prefix (0x%hhx)", current);
622
623     insn->twoByteEscape = current;
624
625     if (consumeByte(insn, &current))
626       return -1;
627
628     if (current == 0x38) {
629       dbgprintf(insn, "Found a three-byte escape prefix (0x%hhx)", current);
630
631       insn->threeByteEscape = current;
632
633       if (consumeByte(insn, &current))
634         return -1;
635
636       insn->opcodeType = THREEBYTE_38;
637     } else if (current == 0x3a) {
638       dbgprintf(insn, "Found a three-byte escape prefix (0x%hhx)", current);
639
640       insn->threeByteEscape = current;
641
642       if (consumeByte(insn, &current))
643         return -1;
644
645       insn->opcodeType = THREEBYTE_3A;
646     } else if (current == 0xa6) {
647       dbgprintf(insn, "Found a three-byte escape prefix (0x%hhx)", current);
648
649       insn->threeByteEscape = current;
650
651       if (consumeByte(insn, &current))
652         return -1;
653
654       insn->opcodeType = THREEBYTE_A6;
655     } else if (current == 0xa7) {
656       dbgprintf(insn, "Found a three-byte escape prefix (0x%hhx)", current);
657
658       insn->threeByteEscape = current;
659
660       if (consumeByte(insn, &current))
661         return -1;
662
663       insn->opcodeType = THREEBYTE_A7;
664     } else {
665       dbgprintf(insn, "Didn't find a three-byte escape prefix");
666
667       insn->opcodeType = TWOBYTE;
668     }
669   }
670
671   /*
672    * At this point we have consumed the full opcode.
673    * Anything we consume from here on must be unconsumed.
674    */
675
676   insn->opcode = current;
677
678   return 0;
679 }
680
681 static int readModRM(struct InternalInstruction* insn);
682
683 /*
684  * getIDWithAttrMask - Determines the ID of an instruction, consuming
685  *   the ModR/M byte as appropriate for extended and escape opcodes,
686  *   and using a supplied attribute mask.
687  *
688  * @param instructionID - A pointer whose target is filled in with the ID of the
689  *                        instruction.
690  * @param insn          - The instruction whose ID is to be determined.
691  * @param attrMask      - The attribute mask to search.
692  * @return              - 0 if the ModR/M could be read when needed or was not
693  *                        needed; nonzero otherwise.
694  */
695 static int getIDWithAttrMask(uint16_t* instructionID,
696                              struct InternalInstruction* insn,
697                              uint8_t attrMask) {
698   BOOL hasModRMExtension;
699
700   uint8_t instructionClass;
701
702   instructionClass = contextForAttrs(attrMask);
703
704   hasModRMExtension = modRMRequired(insn->opcodeType,
705                                     instructionClass,
706                                     insn->opcode);
707
708   if (hasModRMExtension) {
709     if (readModRM(insn))
710       return -1;
711
712     *instructionID = decode(insn->opcodeType,
713                             instructionClass,
714                             insn->opcode,
715                             insn->modRM);
716   } else {
717     *instructionID = decode(insn->opcodeType,
718                             instructionClass,
719                             insn->opcode,
720                             0);
721   }
722
723   return 0;
724 }
725
726 /*
727  * is16BitEquivalent - Determines whether two instruction names refer to
728  * equivalent instructions but one is 16-bit whereas the other is not.
729  *
730  * @param orig  - The instruction that is not 16-bit
731  * @param equiv - The instruction that is 16-bit
732  */
733 static BOOL is16BitEquivalent(const char* orig, const char* equiv) {
734   off_t i;
735
736   for (i = 0;; i++) {
737     if (orig[i] == '\0' && equiv[i] == '\0')
738       return TRUE;
739     if (orig[i] == '\0' || equiv[i] == '\0')
740       return FALSE;
741     if (orig[i] != equiv[i]) {
742       if ((orig[i] == 'Q' || orig[i] == 'L') && equiv[i] == 'W')
743         continue;
744       if ((orig[i] == '6' || orig[i] == '3') && equiv[i] == '1')
745         continue;
746       if ((orig[i] == '4' || orig[i] == '2') && equiv[i] == '6')
747         continue;
748       return FALSE;
749     }
750   }
751 }
752
753 /*
754  * getID - Determines the ID of an instruction, consuming the ModR/M byte as
755  *   appropriate for extended and escape opcodes.  Determines the attributes and
756  *   context for the instruction before doing so.
757  *
758  * @param insn  - The instruction whose ID is to be determined.
759  * @return      - 0 if the ModR/M could be read when needed or was not needed;
760  *                nonzero otherwise.
761  */
762 static int getID(struct InternalInstruction* insn, const void *miiArg) {
763   uint8_t attrMask;
764   uint16_t instructionID;
765
766   dbgprintf(insn, "getID()");
767
768   attrMask = ATTR_NONE;
769
770   if (insn->mode == MODE_64BIT)
771     attrMask |= ATTR_64BIT;
772
773   if (insn->vexSize) {
774     attrMask |= ATTR_VEX;
775
776     if (insn->vexSize == 3) {
777       switch (ppFromVEX3of3(insn->vexPrefix[2])) {
778       case VEX_PREFIX_66:
779         attrMask |= ATTR_OPSIZE;
780         break;
781       case VEX_PREFIX_F3:
782         attrMask |= ATTR_XS;
783         break;
784       case VEX_PREFIX_F2:
785         attrMask |= ATTR_XD;
786         break;
787       }
788
789       if (lFromVEX3of3(insn->vexPrefix[2]))
790         attrMask |= ATTR_VEXL;
791     }
792     else if (insn->vexSize == 2) {
793       switch (ppFromVEX2of2(insn->vexPrefix[1])) {
794       case VEX_PREFIX_66:
795         attrMask |= ATTR_OPSIZE;
796         break;
797       case VEX_PREFIX_F3:
798         attrMask |= ATTR_XS;
799         break;
800       case VEX_PREFIX_F2:
801         attrMask |= ATTR_XD;
802         break;
803       }
804
805       if (lFromVEX2of2(insn->vexPrefix[1]))
806         attrMask |= ATTR_VEXL;
807     }
808     else {
809       return -1;
810     }
811   }
812   else {
813     if (isPrefixAtLocation(insn, 0x66, insn->necessaryPrefixLocation))
814       attrMask |= ATTR_OPSIZE;
815     else if (isPrefixAtLocation(insn, 0x67, insn->necessaryPrefixLocation))
816       attrMask |= ATTR_ADSIZE;
817     else if (isPrefixAtLocation(insn, 0xf3, insn->necessaryPrefixLocation))
818       attrMask |= ATTR_XS;
819     else if (isPrefixAtLocation(insn, 0xf2, insn->necessaryPrefixLocation))
820       attrMask |= ATTR_XD;
821   }
822
823   if (insn->rexPrefix & 0x08)
824     attrMask |= ATTR_REXW;
825
826   if (getIDWithAttrMask(&instructionID, insn, attrMask))
827     return -1;
828
829   /* The following clauses compensate for limitations of the tables. */
830
831   if (insn->prefixPresent[0x66] && !(attrMask & ATTR_OPSIZE)) {
832     /*
833      * The instruction tables make no distinction between instructions that
834      * allow OpSize anywhere (i.e., 16-bit operations) and that need it in a
835      * particular spot (i.e., many MMX operations).  In general we're
836      * conservative, but in the specific case where OpSize is present but not
837      * in the right place we check if there's a 16-bit operation.
838      */
839
840     const struct InstructionSpecifier *spec;
841     uint16_t instructionIDWithOpsize;
842     const char *specName, *specWithOpSizeName;
843
844     spec = specifierForUID(instructionID);
845
846     if (getIDWithAttrMask(&instructionIDWithOpsize,
847                           insn,
848                           attrMask | ATTR_OPSIZE)) {
849       /*
850        * ModRM required with OpSize but not present; give up and return version
851        * without OpSize set
852        */
853
854       insn->instructionID = instructionID;
855       insn->spec = spec;
856       return 0;
857     }
858
859     specName = x86DisassemblerGetInstrName(instructionID, miiArg);
860     specWithOpSizeName =
861       x86DisassemblerGetInstrName(instructionIDWithOpsize, miiArg);
862
863     if (is16BitEquivalent(specName, specWithOpSizeName)) {
864       insn->instructionID = instructionIDWithOpsize;
865       insn->spec = specifierForUID(instructionIDWithOpsize);
866     } else {
867       insn->instructionID = instructionID;
868       insn->spec = spec;
869     }
870     return 0;
871   }
872
873   if (insn->opcodeType == ONEBYTE && insn->opcode == 0x90 &&
874       insn->rexPrefix & 0x01) {
875     /*
876      * NOOP shouldn't decode as NOOP if REX.b is set. Instead
877      * it should decode as XCHG %r8, %eax.
878      */
879
880     const struct InstructionSpecifier *spec;
881     uint16_t instructionIDWithNewOpcode;
882     const struct InstructionSpecifier *specWithNewOpcode;
883
884     spec = specifierForUID(instructionID);
885
886     /* Borrow opcode from one of the other XCHGar opcodes */
887     insn->opcode = 0x91;
888
889     if (getIDWithAttrMask(&instructionIDWithNewOpcode,
890                           insn,
891                           attrMask)) {
892       insn->opcode = 0x90;
893
894       insn->instructionID = instructionID;
895       insn->spec = spec;
896       return 0;
897     }
898
899     specWithNewOpcode = specifierForUID(instructionIDWithNewOpcode);
900
901     /* Change back */
902     insn->opcode = 0x90;
903
904     insn->instructionID = instructionIDWithNewOpcode;
905     insn->spec = specWithNewOpcode;
906
907     return 0;
908   }
909
910   insn->instructionID = instructionID;
911   insn->spec = specifierForUID(insn->instructionID);
912
913   return 0;
914 }
915
916 /*
917  * readSIB - Consumes the SIB byte to determine addressing information for an
918  *   instruction.
919  *
920  * @param insn  - The instruction whose SIB byte is to be read.
921  * @return      - 0 if the SIB byte was successfully read; nonzero otherwise.
922  */
923 static int readSIB(struct InternalInstruction* insn) {
924   SIBIndex sibIndexBase = 0;
925   SIBBase sibBaseBase = 0;
926   uint8_t index, base;
927
928   dbgprintf(insn, "readSIB()");
929
930   if (insn->consumedSIB)
931     return 0;
932
933   insn->consumedSIB = TRUE;
934
935   switch (insn->addressSize) {
936   case 2:
937     dbgprintf(insn, "SIB-based addressing doesn't work in 16-bit mode");
938     return -1;
939     break;
940   case 4:
941     sibIndexBase = SIB_INDEX_EAX;
942     sibBaseBase = SIB_BASE_EAX;
943     break;
944   case 8:
945     sibIndexBase = SIB_INDEX_RAX;
946     sibBaseBase = SIB_BASE_RAX;
947     break;
948   }
949
950   if (consumeByte(insn, &insn->sib))
951     return -1;
952
953   index = indexFromSIB(insn->sib) | (xFromREX(insn->rexPrefix) << 3);
954
955   switch (index) {
956   case 0x4:
957     insn->sibIndex = SIB_INDEX_NONE;
958     break;
959   default:
960     insn->sibIndex = (SIBIndex)(sibIndexBase + index);
961     if (insn->sibIndex == SIB_INDEX_sib ||
962         insn->sibIndex == SIB_INDEX_sib64)
963       insn->sibIndex = SIB_INDEX_NONE;
964     break;
965   }
966
967   switch (scaleFromSIB(insn->sib)) {
968   case 0:
969     insn->sibScale = 1;
970     break;
971   case 1:
972     insn->sibScale = 2;
973     break;
974   case 2:
975     insn->sibScale = 4;
976     break;
977   case 3:
978     insn->sibScale = 8;
979     break;
980   }
981
982   base = baseFromSIB(insn->sib) | (bFromREX(insn->rexPrefix) << 3);
983
984   switch (base) {
985   case 0x5:
986     switch (modFromModRM(insn->modRM)) {
987     case 0x0:
988       insn->eaDisplacement = EA_DISP_32;
989       insn->sibBase = SIB_BASE_NONE;
990       break;
991     case 0x1:
992       insn->eaDisplacement = EA_DISP_8;
993       insn->sibBase = (insn->addressSize == 4 ?
994                        SIB_BASE_EBP : SIB_BASE_RBP);
995       break;
996     case 0x2:
997       insn->eaDisplacement = EA_DISP_32;
998       insn->sibBase = (insn->addressSize == 4 ?
999                        SIB_BASE_EBP : SIB_BASE_RBP);
1000       break;
1001     case 0x3:
1002       debug("Cannot have Mod = 0b11 and a SIB byte");
1003       return -1;
1004     }
1005     break;
1006   default:
1007     insn->sibBase = (SIBBase)(sibBaseBase + base);
1008     break;
1009   }
1010
1011   return 0;
1012 }
1013
1014 /*
1015  * readDisplacement - Consumes the displacement of an instruction.
1016  *
1017  * @param insn  - The instruction whose displacement is to be read.
1018  * @return      - 0 if the displacement byte was successfully read; nonzero
1019  *                otherwise.
1020  */
1021 static int readDisplacement(struct InternalInstruction* insn) {
1022   int8_t d8;
1023   int16_t d16;
1024   int32_t d32;
1025
1026   dbgprintf(insn, "readDisplacement()");
1027
1028   if (insn->consumedDisplacement)
1029     return 0;
1030
1031   insn->consumedDisplacement = TRUE;
1032   insn->displacementOffset = insn->readerCursor - insn->startLocation;
1033
1034   switch (insn->eaDisplacement) {
1035   case EA_DISP_NONE:
1036     insn->consumedDisplacement = FALSE;
1037     break;
1038   case EA_DISP_8:
1039     if (consumeInt8(insn, &d8))
1040       return -1;
1041     insn->displacement = d8;
1042     break;
1043   case EA_DISP_16:
1044     if (consumeInt16(insn, &d16))
1045       return -1;
1046     insn->displacement = d16;
1047     break;
1048   case EA_DISP_32:
1049     if (consumeInt32(insn, &d32))
1050       return -1;
1051     insn->displacement = d32;
1052     break;
1053   }
1054
1055   insn->consumedDisplacement = TRUE;
1056   return 0;
1057 }
1058
1059 /*
1060  * readModRM - Consumes all addressing information (ModR/M byte, SIB byte, and
1061  *   displacement) for an instruction and interprets it.
1062  *
1063  * @param insn  - The instruction whose addressing information is to be read.
1064  * @return      - 0 if the information was successfully read; nonzero otherwise.
1065  */
1066 static int readModRM(struct InternalInstruction* insn) {
1067   uint8_t mod, rm, reg;
1068
1069   dbgprintf(insn, "readModRM()");
1070
1071   if (insn->consumedModRM)
1072     return 0;
1073
1074   if (consumeByte(insn, &insn->modRM))
1075     return -1;
1076   insn->consumedModRM = TRUE;
1077
1078   mod     = modFromModRM(insn->modRM);
1079   rm      = rmFromModRM(insn->modRM);
1080   reg     = regFromModRM(insn->modRM);
1081
1082   /*
1083    * This goes by insn->registerSize to pick the correct register, which messes
1084    * up if we're using (say) XMM or 8-bit register operands.  That gets fixed in
1085    * fixupReg().
1086    */
1087   switch (insn->registerSize) {
1088   case 2:
1089     insn->regBase = MODRM_REG_AX;
1090     insn->eaRegBase = EA_REG_AX;
1091     break;
1092   case 4:
1093     insn->regBase = MODRM_REG_EAX;
1094     insn->eaRegBase = EA_REG_EAX;
1095     break;
1096   case 8:
1097     insn->regBase = MODRM_REG_RAX;
1098     insn->eaRegBase = EA_REG_RAX;
1099     break;
1100   }
1101
1102   reg |= rFromREX(insn->rexPrefix) << 3;
1103   rm  |= bFromREX(insn->rexPrefix) << 3;
1104
1105   insn->reg = (Reg)(insn->regBase + reg);
1106
1107   switch (insn->addressSize) {
1108   case 2:
1109     insn->eaBaseBase = EA_BASE_BX_SI;
1110
1111     switch (mod) {
1112     case 0x0:
1113       if (rm == 0x6) {
1114         insn->eaBase = EA_BASE_NONE;
1115         insn->eaDisplacement = EA_DISP_16;
1116         if (readDisplacement(insn))
1117           return -1;
1118       } else {
1119         insn->eaBase = (EABase)(insn->eaBaseBase + rm);
1120         insn->eaDisplacement = EA_DISP_NONE;
1121       }
1122       break;
1123     case 0x1:
1124       insn->eaBase = (EABase)(insn->eaBaseBase + rm);
1125       insn->eaDisplacement = EA_DISP_8;
1126       if (readDisplacement(insn))
1127         return -1;
1128       break;
1129     case 0x2:
1130       insn->eaBase = (EABase)(insn->eaBaseBase + rm);
1131       insn->eaDisplacement = EA_DISP_16;
1132       if (readDisplacement(insn))
1133         return -1;
1134       break;
1135     case 0x3:
1136       insn->eaBase = (EABase)(insn->eaRegBase + rm);
1137       if (readDisplacement(insn))
1138         return -1;
1139       break;
1140     }
1141     break;
1142   case 4:
1143   case 8:
1144     insn->eaBaseBase = (insn->addressSize == 4 ? EA_BASE_EAX : EA_BASE_RAX);
1145
1146     switch (mod) {
1147     case 0x0:
1148       insn->eaDisplacement = EA_DISP_NONE; /* readSIB may override this */
1149       switch (rm) {
1150       case 0x4:
1151       case 0xc:   /* in case REXW.b is set */
1152         insn->eaBase = (insn->addressSize == 4 ?
1153                         EA_BASE_sib : EA_BASE_sib64);
1154         readSIB(insn);
1155         if (readDisplacement(insn))
1156           return -1;
1157         break;
1158       case 0x5:
1159         insn->eaBase = EA_BASE_NONE;
1160         insn->eaDisplacement = EA_DISP_32;
1161         if (readDisplacement(insn))
1162           return -1;
1163         break;
1164       default:
1165         insn->eaBase = (EABase)(insn->eaBaseBase + rm);
1166         break;
1167       }
1168       break;
1169     case 0x1:
1170     case 0x2:
1171       insn->eaDisplacement = (mod == 0x1 ? EA_DISP_8 : EA_DISP_32);
1172       switch (rm) {
1173       case 0x4:
1174       case 0xc:   /* in case REXW.b is set */
1175         insn->eaBase = EA_BASE_sib;
1176         readSIB(insn);
1177         if (readDisplacement(insn))
1178           return -1;
1179         break;
1180       default:
1181         insn->eaBase = (EABase)(insn->eaBaseBase + rm);
1182         if (readDisplacement(insn))
1183           return -1;
1184         break;
1185       }
1186       break;
1187     case 0x3:
1188       insn->eaDisplacement = EA_DISP_NONE;
1189       insn->eaBase = (EABase)(insn->eaRegBase + rm);
1190       break;
1191     }
1192     break;
1193   } /* switch (insn->addressSize) */
1194
1195   return 0;
1196 }
1197
1198 #define GENERIC_FIXUP_FUNC(name, base, prefix)            \
1199   static uint8_t name(struct InternalInstruction *insn,   \
1200                       OperandType type,                   \
1201                       uint8_t index,                      \
1202                       uint8_t *valid) {                   \
1203     *valid = 1;                                           \
1204     switch (type) {                                       \
1205     default:                                              \
1206       debug("Unhandled register type");                   \
1207       *valid = 0;                                         \
1208       return 0;                                           \
1209     case TYPE_Rv:                                         \
1210       return base + index;                                \
1211     case TYPE_R8:                                         \
1212       if (insn->rexPrefix &&                              \
1213          index >= 4 && index <= 7) {                      \
1214         return prefix##_SPL + (index - 4);                \
1215       } else {                                            \
1216         return prefix##_AL + index;                       \
1217       }                                                   \
1218     case TYPE_R16:                                        \
1219       return prefix##_AX + index;                         \
1220     case TYPE_R32:                                        \
1221       return prefix##_EAX + index;                        \
1222     case TYPE_R64:                                        \
1223       return prefix##_RAX + index;                        \
1224     case TYPE_XMM512:                                     \
1225       return prefix##_ZMM0 + index;                       \
1226     case TYPE_XMM256:                                     \
1227       return prefix##_YMM0 + index;                       \
1228     case TYPE_XMM128:                                     \
1229     case TYPE_XMM64:                                      \
1230     case TYPE_XMM32:                                      \
1231     case TYPE_XMM:                                        \
1232       return prefix##_XMM0 + index;                       \
1233     case TYPE_MM64:                                       \
1234     case TYPE_MM32:                                       \
1235     case TYPE_MM:                                         \
1236       if (index > 7)                                      \
1237         *valid = 0;                                       \
1238       return prefix##_MM0 + index;                        \
1239     case TYPE_SEGMENTREG:                                 \
1240       if (index > 5)                                      \
1241         *valid = 0;                                       \
1242       return prefix##_ES + index;                         \
1243     case TYPE_DEBUGREG:                                   \
1244       if (index > 7)                                      \
1245         *valid = 0;                                       \
1246       return prefix##_DR0 + index;                        \
1247     case TYPE_CONTROLREG:                                 \
1248       if (index > 8)                                      \
1249         *valid = 0;                                       \
1250       return prefix##_CR0 + index;                        \
1251     }                                                     \
1252   }
1253
1254 /*
1255  * fixup*Value - Consults an operand type to determine the meaning of the
1256  *   reg or R/M field.  If the operand is an XMM operand, for example, an
1257  *   operand would be XMM0 instead of AX, which readModRM() would otherwise
1258  *   misinterpret it as.
1259  *
1260  * @param insn  - The instruction containing the operand.
1261  * @param type  - The operand type.
1262  * @param index - The existing value of the field as reported by readModRM().
1263  * @param valid - The address of a uint8_t.  The target is set to 1 if the
1264  *                field is valid for the register class; 0 if not.
1265  * @return      - The proper value.
1266  */
1267 GENERIC_FIXUP_FUNC(fixupRegValue, insn->regBase,    MODRM_REG)
1268 GENERIC_FIXUP_FUNC(fixupRMValue,  insn->eaRegBase,  EA_REG)
1269
1270 /*
1271  * fixupReg - Consults an operand specifier to determine which of the
1272  *   fixup*Value functions to use in correcting readModRM()'ss interpretation.
1273  *
1274  * @param insn  - See fixup*Value().
1275  * @param op    - The operand specifier.
1276  * @return      - 0 if fixup was successful; -1 if the register returned was
1277  *                invalid for its class.
1278  */
1279 static int fixupReg(struct InternalInstruction *insn,
1280                     const struct OperandSpecifier *op) {
1281   uint8_t valid;
1282
1283   dbgprintf(insn, "fixupReg()");
1284
1285   switch ((OperandEncoding)op->encoding) {
1286   default:
1287     debug("Expected a REG or R/M encoding in fixupReg");
1288     return -1;
1289   case ENCODING_VVVV:
1290     insn->vvvv = (Reg)fixupRegValue(insn,
1291                                     (OperandType)op->type,
1292                                     insn->vvvv,
1293                                     &valid);
1294     if (!valid)
1295       return -1;
1296     break;
1297   case ENCODING_REG:
1298     insn->reg = (Reg)fixupRegValue(insn,
1299                                    (OperandType)op->type,
1300                                    insn->reg - insn->regBase,
1301                                    &valid);
1302     if (!valid)
1303       return -1;
1304     break;
1305   case ENCODING_RM:
1306     if (insn->eaBase >= insn->eaRegBase) {
1307       insn->eaBase = (EABase)fixupRMValue(insn,
1308                                           (OperandType)op->type,
1309                                           insn->eaBase - insn->eaRegBase,
1310                                           &valid);
1311       if (!valid)
1312         return -1;
1313     }
1314     break;
1315   }
1316
1317   return 0;
1318 }
1319
1320 /*
1321  * readOpcodeModifier - Reads an operand from the opcode field of an
1322  *   instruction.  Handles AddRegFrm instructions.
1323  *
1324  * @param insn    - The instruction whose opcode field is to be read.
1325  * @param inModRM - Indicates that the opcode field is to be read from the
1326  *                  ModR/M extension; useful for escape opcodes
1327  * @return        - 0 on success; nonzero otherwise.
1328  */
1329 static int readOpcodeModifier(struct InternalInstruction* insn) {
1330   dbgprintf(insn, "readOpcodeModifier()");
1331
1332   if (insn->consumedOpcodeModifier)
1333     return 0;
1334
1335   insn->consumedOpcodeModifier = TRUE;
1336
1337   switch (insn->spec->modifierType) {
1338   default:
1339     debug("Unknown modifier type.");
1340     return -1;
1341   case MODIFIER_NONE:
1342     debug("No modifier but an operand expects one.");
1343     return -1;
1344   case MODIFIER_OPCODE:
1345     insn->opcodeModifier = insn->opcode - insn->spec->modifierBase;
1346     return 0;
1347   case MODIFIER_MODRM:
1348     insn->opcodeModifier = insn->modRM - insn->spec->modifierBase;
1349     return 0;
1350   }
1351 }
1352
1353 /*
1354  * readOpcodeRegister - Reads an operand from the opcode field of an
1355  *   instruction and interprets it appropriately given the operand width.
1356  *   Handles AddRegFrm instructions.
1357  *
1358  * @param insn  - See readOpcodeModifier().
1359  * @param size  - The width (in bytes) of the register being specified.
1360  *                1 means AL and friends, 2 means AX, 4 means EAX, and 8 means
1361  *                RAX.
1362  * @return      - 0 on success; nonzero otherwise.
1363  */
1364 static int readOpcodeRegister(struct InternalInstruction* insn, uint8_t size) {
1365   dbgprintf(insn, "readOpcodeRegister()");
1366
1367   if (readOpcodeModifier(insn))
1368     return -1;
1369
1370   if (size == 0)
1371     size = insn->registerSize;
1372
1373   switch (size) {
1374   case 1:
1375     insn->opcodeRegister = (Reg)(MODRM_REG_AL + ((bFromREX(insn->rexPrefix) << 3)
1376                                                   | insn->opcodeModifier));
1377     if (insn->rexPrefix &&
1378         insn->opcodeRegister >= MODRM_REG_AL + 0x4 &&
1379         insn->opcodeRegister < MODRM_REG_AL + 0x8) {
1380       insn->opcodeRegister = (Reg)(MODRM_REG_SPL
1381                                    + (insn->opcodeRegister - MODRM_REG_AL - 4));
1382     }
1383
1384     break;
1385   case 2:
1386     insn->opcodeRegister = (Reg)(MODRM_REG_AX
1387                                  + ((bFromREX(insn->rexPrefix) << 3)
1388                                     | insn->opcodeModifier));
1389     break;
1390   case 4:
1391     insn->opcodeRegister = (Reg)(MODRM_REG_EAX
1392                                  + ((bFromREX(insn->rexPrefix) << 3)
1393                                     | insn->opcodeModifier));
1394     break;
1395   case 8:
1396     insn->opcodeRegister = (Reg)(MODRM_REG_RAX
1397                                  + ((bFromREX(insn->rexPrefix) << 3)
1398                                     | insn->opcodeModifier));
1399     break;
1400   }
1401
1402   return 0;
1403 }
1404
1405 /*
1406  * readImmediate - Consumes an immediate operand from an instruction, given the
1407  *   desired operand size.
1408  *
1409  * @param insn  - The instruction whose operand is to be read.
1410  * @param size  - The width (in bytes) of the operand.
1411  * @return      - 0 if the immediate was successfully consumed; nonzero
1412  *                otherwise.
1413  */
1414 static int readImmediate(struct InternalInstruction* insn, uint8_t size) {
1415   uint8_t imm8;
1416   uint16_t imm16;
1417   uint32_t imm32;
1418   uint64_t imm64;
1419
1420   dbgprintf(insn, "readImmediate()");
1421
1422   if (insn->numImmediatesConsumed == 2) {
1423     debug("Already consumed two immediates");
1424     return -1;
1425   }
1426
1427   if (size == 0)
1428     size = insn->immediateSize;
1429   else
1430     insn->immediateSize = size;
1431   insn->immediateOffset = insn->readerCursor - insn->startLocation;
1432
1433   switch (size) {
1434   case 1:
1435     if (consumeByte(insn, &imm8))
1436       return -1;
1437     insn->immediates[insn->numImmediatesConsumed] = imm8;
1438     break;
1439   case 2:
1440     if (consumeUInt16(insn, &imm16))
1441       return -1;
1442     insn->immediates[insn->numImmediatesConsumed] = imm16;
1443     break;
1444   case 4:
1445     if (consumeUInt32(insn, &imm32))
1446       return -1;
1447     insn->immediates[insn->numImmediatesConsumed] = imm32;
1448     break;
1449   case 8:
1450     if (consumeUInt64(insn, &imm64))
1451       return -1;
1452     insn->immediates[insn->numImmediatesConsumed] = imm64;
1453     break;
1454   }
1455
1456   insn->numImmediatesConsumed++;
1457
1458   return 0;
1459 }
1460
1461 /*
1462  * readVVVV - Consumes vvvv from an instruction if it has a VEX prefix.
1463  *
1464  * @param insn  - The instruction whose operand is to be read.
1465  * @return      - 0 if the vvvv was successfully consumed; nonzero
1466  *                otherwise.
1467  */
1468 static int readVVVV(struct InternalInstruction* insn) {
1469   dbgprintf(insn, "readVVVV()");
1470
1471   if (insn->vexSize == 3)
1472     insn->vvvv = vvvvFromVEX3of3(insn->vexPrefix[2]);
1473   else if (insn->vexSize == 2)
1474     insn->vvvv = vvvvFromVEX2of2(insn->vexPrefix[1]);
1475   else
1476     return -1;
1477
1478   if (insn->mode != MODE_64BIT)
1479     insn->vvvv &= 0x7;
1480
1481   return 0;
1482 }
1483
1484 /*
1485  * readOperands - Consults the specifier for an instruction and consumes all
1486  *   operands for that instruction, interpreting them as it goes.
1487  *
1488  * @param insn  - The instruction whose operands are to be read and interpreted.
1489  * @return      - 0 if all operands could be read; nonzero otherwise.
1490  */
1491 static int readOperands(struct InternalInstruction* insn) {
1492   int index;
1493   int hasVVVV, needVVVV;
1494   int sawRegImm = 0;
1495
1496   dbgprintf(insn, "readOperands()");
1497
1498   /* If non-zero vvvv specified, need to make sure one of the operands
1499      uses it. */
1500   hasVVVV = !readVVVV(insn);
1501   needVVVV = hasVVVV && (insn->vvvv != 0);
1502
1503   for (index = 0; index < X86_MAX_OPERANDS; ++index) {
1504     switch (x86OperandSets[insn->spec->operands][index].encoding) {
1505     case ENCODING_NONE:
1506       break;
1507     case ENCODING_REG:
1508     case ENCODING_RM:
1509       if (readModRM(insn))
1510         return -1;
1511       if (fixupReg(insn, &x86OperandSets[insn->spec->operands][index]))
1512         return -1;
1513       break;
1514     case ENCODING_CB:
1515     case ENCODING_CW:
1516     case ENCODING_CD:
1517     case ENCODING_CP:
1518     case ENCODING_CO:
1519     case ENCODING_CT:
1520       dbgprintf(insn, "We currently don't hande code-offset encodings");
1521       return -1;
1522     case ENCODING_IB:
1523       if (sawRegImm) {
1524         /* Saw a register immediate so don't read again and instead split the
1525            previous immediate.  FIXME: This is a hack. */
1526         insn->immediates[insn->numImmediatesConsumed] =
1527           insn->immediates[insn->numImmediatesConsumed - 1] & 0xf;
1528         ++insn->numImmediatesConsumed;
1529         break;
1530       }
1531       if (readImmediate(insn, 1))
1532         return -1;
1533       if (x86OperandSets[insn->spec->operands][index].type == TYPE_IMM3 &&
1534           insn->immediates[insn->numImmediatesConsumed - 1] > 7)
1535         return -1;
1536       if (x86OperandSets[insn->spec->operands][index].type == TYPE_IMM5 &&
1537           insn->immediates[insn->numImmediatesConsumed - 1] > 31)
1538         return -1;
1539       if (x86OperandSets[insn->spec->operands][index].type == TYPE_XMM128 ||
1540           x86OperandSets[insn->spec->operands][index].type == TYPE_XMM256)
1541         sawRegImm = 1;
1542       break;
1543     case ENCODING_IW:
1544       if (readImmediate(insn, 2))
1545         return -1;
1546       break;
1547     case ENCODING_ID:
1548       if (readImmediate(insn, 4))
1549         return -1;
1550       break;
1551     case ENCODING_IO:
1552       if (readImmediate(insn, 8))
1553         return -1;
1554       break;
1555     case ENCODING_Iv:
1556       if (readImmediate(insn, insn->immediateSize))
1557         return -1;
1558       break;
1559     case ENCODING_Ia:
1560       if (readImmediate(insn, insn->addressSize))
1561         return -1;
1562       break;
1563     case ENCODING_RB:
1564       if (readOpcodeRegister(insn, 1))
1565         return -1;
1566       break;
1567     case ENCODING_RW:
1568       if (readOpcodeRegister(insn, 2))
1569         return -1;
1570       break;
1571     case ENCODING_RD:
1572       if (readOpcodeRegister(insn, 4))
1573         return -1;
1574       break;
1575     case ENCODING_RO:
1576       if (readOpcodeRegister(insn, 8))
1577         return -1;
1578       break;
1579     case ENCODING_Rv:
1580       if (readOpcodeRegister(insn, 0))
1581         return -1;
1582       break;
1583     case ENCODING_I:
1584       if (readOpcodeModifier(insn))
1585         return -1;
1586       break;
1587     case ENCODING_VVVV:
1588       needVVVV = 0; /* Mark that we have found a VVVV operand. */
1589       if (!hasVVVV)
1590         return -1;
1591       if (fixupReg(insn, &x86OperandSets[insn->spec->operands][index]))
1592         return -1;
1593       break;
1594     case ENCODING_DUP:
1595       break;
1596     default:
1597       dbgprintf(insn, "Encountered an operand with an unknown encoding.");
1598       return -1;
1599     }
1600   }
1601
1602   /* If we didn't find ENCODING_VVVV operand, but non-zero vvvv present, fail */
1603   if (needVVVV) return -1;
1604
1605   return 0;
1606 }
1607
1608 /*
1609  * decodeInstruction - Reads and interprets a full instruction provided by the
1610  *   user.
1611  *
1612  * @param insn      - A pointer to the instruction to be populated.  Must be
1613  *                    pre-allocated.
1614  * @param reader    - The function to be used to read the instruction's bytes.
1615  * @param readerArg - A generic argument to be passed to the reader to store
1616  *                    any internal state.
1617  * @param logger    - If non-NULL, the function to be used to write log messages
1618  *                    and warnings.
1619  * @param loggerArg - A generic argument to be passed to the logger to store
1620  *                    any internal state.
1621  * @param startLoc  - The address (in the reader's address space) of the first
1622  *                    byte in the instruction.
1623  * @param mode      - The mode (real mode, IA-32e, or IA-32e in 64-bit mode) to
1624  *                    decode the instruction in.
1625  * @return          - 0 if the instruction's memory could be read; nonzero if
1626  *                    not.
1627  */
1628 int decodeInstruction(struct InternalInstruction* insn,
1629                       byteReader_t reader,
1630                       const void* readerArg,
1631                       dlog_t logger,
1632                       void* loggerArg,
1633                       const void* miiArg,
1634                       uint64_t startLoc,
1635                       DisassemblerMode mode) {
1636   memset(insn, 0, sizeof(struct InternalInstruction));
1637
1638   insn->reader = reader;
1639   insn->readerArg = readerArg;
1640   insn->dlog = logger;
1641   insn->dlogArg = loggerArg;
1642   insn->startLocation = startLoc;
1643   insn->readerCursor = startLoc;
1644   insn->mode = mode;
1645   insn->numImmediatesConsumed = 0;
1646
1647   if (readPrefixes(insn)       ||
1648       readOpcode(insn)         ||
1649       getID(insn, miiArg)      ||
1650       insn->instructionID == 0 ||
1651       readOperands(insn))
1652     return -1;
1653
1654   insn->operands = &x86OperandSets[insn->spec->operands][0];
1655
1656   insn->length = insn->readerCursor - insn->startLocation;
1657
1658   dbgprintf(insn, "Read from 0x%llx to 0x%llx: length %zu",
1659             startLoc, insn->readerCursor, insn->length);
1660
1661   if (insn->length > 15)
1662     dbgprintf(insn, "Instruction exceeds 15-byte limit");
1663
1664   return 0;
1665 }