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