Add support for CPUID PREFETCHWT1
[external/binutils.git] / opcodes / i386-opc.h
1 /* Declarations for Intel 80386 opcode table
2    Copyright 2007, 2008, 2009, 2010, 2012
3    Free Software Foundation, Inc.
4
5    This file is part of the GNU opcodes library.
6
7    This library is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3, or (at your option)
10    any later version.
11
12    It is distributed in the hope that it will be useful, but WITHOUT
13    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14    or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
15    License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with GAS; see the file COPYING.  If not, write to the Free
19    Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
20    02110-1301, USA.  */
21
22 #include "opcode/i386.h"
23 #ifdef HAVE_LIMITS_H
24 #include <limits.h>
25 #endif
26
27 #ifndef CHAR_BIT
28 #define CHAR_BIT 8
29 #endif
30
31 /* Position of cpu flags bitfiled.  */
32
33 enum
34 {
35   /* i186 or better required */
36   Cpu186 = 0,
37   /* i286 or better required */
38   Cpu286,
39   /* i386 or better required */
40   Cpu386,
41   /* i486 or better required */
42   Cpu486,
43   /* i585 or better required */
44   Cpu586,
45   /* i686 or better required */
46   Cpu686,
47   /* CLFLUSH Instruction support required */
48   CpuClflush,
49   /* NOP Instruction support required */
50   CpuNop,
51   /* SYSCALL Instructions support required */
52   CpuSYSCALL,
53   /* Floating point support required */
54   Cpu8087,
55   /* i287 support required */
56   Cpu287,
57   /* i387 support required */
58   Cpu387,
59   /* i686 and floating point support required */
60   Cpu687,
61   /* SSE3 and floating point support required */
62   CpuFISTTP,
63   /* MMX support required */
64   CpuMMX,
65   /* SSE support required */
66   CpuSSE,
67   /* SSE2 support required */
68   CpuSSE2,
69   /* 3dnow! support required */
70   Cpu3dnow,
71   /* 3dnow! Extensions support required */
72   Cpu3dnowA,
73   /* SSE3 support required */
74   CpuSSE3,
75   /* VIA PadLock required */
76   CpuPadLock,
77   /* AMD Secure Virtual Machine Ext-s required */
78   CpuSVME,
79   /* VMX Instructions required */
80   CpuVMX,
81   /* SMX Instructions required */
82   CpuSMX,
83   /* SSSE3 support required */
84   CpuSSSE3,
85   /* SSE4a support required */
86   CpuSSE4a,
87   /* ABM New Instructions required */
88   CpuABM,
89   /* SSE4.1 support required */
90   CpuSSE4_1,
91   /* SSE4.2 support required */
92   CpuSSE4_2,
93   /* AVX support required */
94   CpuAVX,
95   /* AVX2 support required */
96   CpuAVX2,
97   /* Intel AVX-512 Foundation Instructions support required */
98   CpuAVX512F,
99   /* Intel AVX-512 Conflict Detection Instructions support required */
100   CpuAVX512CD,
101   /* Intel AVX-512 Exponential and Reciprocal Instructions support
102      required */
103   CpuAVX512ER,
104   /* Intel AVX-512 Prefetch Instructions support required */
105   CpuAVX512PF,
106   /* Intel L1OM support required */
107   CpuL1OM,
108   /* Intel K1OM support required */
109   CpuK1OM,
110   /* Xsave/xrstor New Instructions support required */
111   CpuXsave,
112   /* Xsaveopt New Instructions support required */
113   CpuXsaveopt,
114   /* AES support required */
115   CpuAES,
116   /* PCLMUL support required */
117   CpuPCLMUL,
118   /* FMA support required */
119   CpuFMA,
120   /* FMA4 support required */
121   CpuFMA4,
122   /* XOP support required */
123   CpuXOP,
124   /* LWP support required */
125   CpuLWP,
126   /* BMI support required */
127   CpuBMI,
128   /* TBM support required */
129   CpuTBM,
130   /* MOVBE Instruction support required */
131   CpuMovbe,
132   /* CMPXCHG16B instruction support required.  */
133   CpuCX16,
134   /* EPT Instructions required */
135   CpuEPT,
136   /* RDTSCP Instruction support required */
137   CpuRdtscp,
138   /* FSGSBASE Instructions required */
139   CpuFSGSBase,
140   /* RDRND Instructions required */
141   CpuRdRnd,
142   /* F16C Instructions required */
143   CpuF16C,
144   /* Intel BMI2 support required */
145   CpuBMI2,
146   /* LZCNT support required */
147   CpuLZCNT,
148   /* HLE support required */
149   CpuHLE,
150   /* RTM support required */
151   CpuRTM,
152   /* INVPCID Instructions required */
153   CpuINVPCID,
154   /* VMFUNC Instruction required */
155   CpuVMFUNC,
156   /* Intel MPX Instructions required  */
157   CpuMPX,
158   /* 64bit support available, used by -march= in assembler.  */
159   CpuLM,
160   /* RDRSEED instruction required.  */
161   CpuRDSEED,
162   /* Multi-presisionn add-carry instructions are required.  */
163   CpuADX,
164   /* Supports prefetchw and prefetch instructions.  */
165   CpuPRFCHW,
166   /* SMAP instructions required.  */
167   CpuSMAP,
168   /* SHA instructions required.  */
169   CpuSHA,
170   /* VREX support required  */
171   CpuVREX,
172   /* CLFLUSHOPT instruction required */
173   CpuClflushOpt,
174   /* XSAVES/XRSTORS instruction required */
175   CpuXSAVES,
176   /* XSAVEC instruction required */
177   CpuXSAVEC,
178   /* PREFETCHWT1 instruction required */
179   CpuPREFETCHWT1,
180   /* 64bit support required  */
181   Cpu64,
182   /* Not supported in the 64bit mode  */
183   CpuNo64,
184   /* The last bitfield in i386_cpu_flags.  */
185   CpuMax = CpuNo64
186 };
187
188 #define CpuNumOfUints \
189   (CpuMax / sizeof (unsigned int) / CHAR_BIT + 1)
190 #define CpuNumOfBits \
191   (CpuNumOfUints * sizeof (unsigned int) * CHAR_BIT)
192
193 /* If you get a compiler error for zero width of the unused field,
194    comment it out.  */
195 #define CpuUnused       (CpuMax + 1)
196
197 /* We can check if an instruction is available with array instead
198    of bitfield. */
199 typedef union i386_cpu_flags
200 {
201   struct
202     {
203       unsigned int cpui186:1;
204       unsigned int cpui286:1;
205       unsigned int cpui386:1;
206       unsigned int cpui486:1;
207       unsigned int cpui586:1;
208       unsigned int cpui686:1;
209       unsigned int cpuclflush:1;
210       unsigned int cpunop:1;
211       unsigned int cpusyscall:1;
212       unsigned int cpu8087:1;
213       unsigned int cpu287:1;
214       unsigned int cpu387:1;
215       unsigned int cpu687:1;
216       unsigned int cpufisttp:1;
217       unsigned int cpummx:1;
218       unsigned int cpusse:1;
219       unsigned int cpusse2:1;
220       unsigned int cpua3dnow:1;
221       unsigned int cpua3dnowa:1;
222       unsigned int cpusse3:1;
223       unsigned int cpupadlock:1;
224       unsigned int cpusvme:1;
225       unsigned int cpuvmx:1;
226       unsigned int cpusmx:1;
227       unsigned int cpussse3:1;
228       unsigned int cpusse4a:1;
229       unsigned int cpuabm:1;
230       unsigned int cpusse4_1:1;
231       unsigned int cpusse4_2:1;
232       unsigned int cpuavx:1;
233       unsigned int cpuavx2:1;
234       unsigned int cpuavx512f:1;
235       unsigned int cpuavx512cd:1;
236       unsigned int cpuavx512er:1;
237       unsigned int cpuavx512pf:1;
238       unsigned int cpul1om:1;
239       unsigned int cpuk1om:1;
240       unsigned int cpuxsave:1;
241       unsigned int cpuxsaveopt:1;
242       unsigned int cpuaes:1;
243       unsigned int cpupclmul:1;
244       unsigned int cpufma:1;
245       unsigned int cpufma4:1;
246       unsigned int cpuxop:1;
247       unsigned int cpulwp:1;
248       unsigned int cpubmi:1;
249       unsigned int cputbm:1;
250       unsigned int cpumovbe:1;
251       unsigned int cpucx16:1;
252       unsigned int cpuept:1;
253       unsigned int cpurdtscp:1;
254       unsigned int cpufsgsbase:1;
255       unsigned int cpurdrnd:1;
256       unsigned int cpuf16c:1;
257       unsigned int cpubmi2:1;
258       unsigned int cpulzcnt:1;
259       unsigned int cpuhle:1;
260       unsigned int cpurtm:1;
261       unsigned int cpuinvpcid:1;
262       unsigned int cpuvmfunc:1;
263       unsigned int cpumpx:1;
264       unsigned int cpulm:1;
265       unsigned int cpurdseed:1;
266       unsigned int cpuadx:1;
267       unsigned int cpuprfchw:1;
268       unsigned int cpusmap:1;
269       unsigned int cpusha:1;
270       unsigned int cpuvrex:1;
271       unsigned int cpuclflushopt:1;
272       unsigned int cpuxsaves:1;
273       unsigned int cpuxsavec:1;
274       unsigned int cpuprefetchwt1:1;
275       unsigned int cpu64:1;
276       unsigned int cpuno64:1;
277 #ifdef CpuUnused
278       unsigned int unused:(CpuNumOfBits - CpuUnused);
279 #endif
280     } bitfield;
281   unsigned int array[CpuNumOfUints];
282 } i386_cpu_flags;
283
284 /* Position of opcode_modifier bits.  */
285
286 enum
287 {
288   /* has direction bit. */
289   D = 0,
290   /* set if operands can be words or dwords encoded the canonical way */
291   W,
292   /* Skip the current insn and use the next insn in i386-opc.tbl to swap
293      operand in encoding.  */
294   S,
295   /* insn has a modrm byte. */
296   Modrm,
297   /* register is in low 3 bits of opcode */
298   ShortForm,
299   /* special case for jump insns.  */
300   Jump,
301   /* call and jump */
302   JumpDword,
303   /* loop and jecxz */
304   JumpByte,
305   /* special case for intersegment leaps/calls */
306   JumpInterSegment,
307   /* FP insn memory format bit, sized by 0x4 */
308   FloatMF,
309   /* src/dest swap for floats. */
310   FloatR,
311   /* has float insn direction bit. */
312   FloatD,
313   /* needs size prefix if in 32-bit mode */
314   Size16,
315   /* needs size prefix if in 16-bit mode */
316   Size32,
317   /* needs size prefix if in 64-bit mode */
318   Size64,
319   /* check register size.  */
320   CheckRegSize,
321   /* instruction ignores operand size prefix and in Intel mode ignores
322      mnemonic size suffix check.  */
323   IgnoreSize,
324   /* default insn size depends on mode */
325   DefaultSize,
326   /* b suffix on instruction illegal */
327   No_bSuf,
328   /* w suffix on instruction illegal */
329   No_wSuf,
330   /* l suffix on instruction illegal */
331   No_lSuf,
332   /* s suffix on instruction illegal */
333   No_sSuf,
334   /* q suffix on instruction illegal */
335   No_qSuf,
336   /* long double suffix on instruction illegal */
337   No_ldSuf,
338   /* instruction needs FWAIT */
339   FWait,
340   /* quick test for string instructions */
341   IsString,
342   /* quick test if branch instruction is MPX supported */
343   BNDPrefixOk,
344   /* quick test for lockable instructions */
345   IsLockable,
346   /* fake an extra reg operand for clr, imul and special register
347      processing for some instructions.  */
348   RegKludge,
349   /* The first operand must be xmm0 */
350   FirstXmm0,
351   /* An implicit xmm0 as the first operand */
352   Implicit1stXmm0,
353   /* The HLE prefix is OK:
354      1. With a LOCK prefix.
355      2. With or without a LOCK prefix.
356      3. With a RELEASE (0xf3) prefix.
357    */
358 #define HLEPrefixNone           0
359 #define HLEPrefixLock           1
360 #define HLEPrefixAny            2
361 #define HLEPrefixRelease        3
362   HLEPrefixOk,
363   /* An instruction on which a "rep" prefix is acceptable.  */
364   RepPrefixOk,
365   /* Convert to DWORD */
366   ToDword,
367   /* Convert to QWORD */
368   ToQword,
369   /* Address prefix changes operand 0 */
370   AddrPrefixOp0,
371   /* opcode is a prefix */
372   IsPrefix,
373   /* instruction has extension in 8 bit imm */
374   ImmExt,
375   /* instruction don't need Rex64 prefix.  */
376   NoRex64,
377   /* instruction require Rex64 prefix.  */
378   Rex64,
379   /* deprecated fp insn, gets a warning */
380   Ugh,
381   /* insn has VEX prefix:
382         1: 128bit VEX prefix.
383         2: 256bit VEX prefix.
384         3: Scalar VEX prefix.
385    */
386 #define VEX128          1
387 #define VEX256          2
388 #define VEXScalar       3
389   Vex,
390   /* How to encode VEX.vvvv:
391      0: VEX.vvvv must be 1111b.
392      1: VEX.NDS.  Register-only source is encoded in VEX.vvvv where
393         the content of source registers will be preserved.
394         VEX.DDS.  The second register operand is encoded in VEX.vvvv
395         where the content of first source register will be overwritten
396         by the result.
397         VEX.NDD2.  The second destination register operand is encoded in
398         VEX.vvvv for instructions with 2 destination register operands.
399         For assembler, there are no difference between VEX.NDS, VEX.DDS
400         and VEX.NDD2.
401      2. VEX.NDD.  Register destination is encoded in VEX.vvvv for
402      instructions with 1 destination register operand.
403      3. VEX.LWP.  Register destination is encoded in VEX.vvvv and one
404         of the operands can access a memory location.
405    */
406 #define VEXXDS  1
407 #define VEXNDD  2
408 #define VEXLWP  3
409   VexVVVV,
410   /* How the VEX.W bit is used:
411      0: Set by the REX.W bit.
412      1: VEX.W0.  Should always be 0.
413      2: VEX.W1.  Should always be 1.
414    */
415 #define VEXW0   1
416 #define VEXW1   2
417   VexW,
418   /* VEX opcode prefix:
419      0: VEX 0x0F opcode prefix.
420      1: VEX 0x0F38 opcode prefix.
421      2: VEX 0x0F3A opcode prefix
422      3: XOP 0x08 opcode prefix.
423      4: XOP 0x09 opcode prefix
424      5: XOP 0x0A opcode prefix.
425    */
426 #define VEX0F           0
427 #define VEX0F38         1
428 #define VEX0F3A         2
429 #define XOP08           3
430 #define XOP09           4
431 #define XOP0A           5
432   VexOpcode,
433   /* number of VEX source operands:
434      0: <= 2 source operands.
435      1: 2 XOP source operands.
436      2: 3 source operands.
437    */
438 #define XOP2SOURCES     1
439 #define VEX3SOURCES     2
440   VexSources,
441   /* instruction has VEX 8 bit imm */
442   VexImmExt,
443   /* Instruction with vector SIB byte:
444         1: 128bit vector register.
445         2: 256bit vector register.
446         3: 512bit vector register.
447    */
448 #define VecSIB128       1
449 #define VecSIB256       2
450 #define VecSIB512       3
451   VecSIB,
452   /* SSE to AVX support required */
453   SSE2AVX,
454   /* No AVX equivalent */
455   NoAVX,
456
457   /* insn has EVEX prefix:
458         1: 512bit EVEX prefix.
459         2: 128bit EVEX prefix.
460         3: 256bit EVEX prefix.
461         4: Length-ignored (LIG) EVEX prefix.
462    */
463 #define EVEX512                1
464 #define EVEX128                2
465 #define EVEX256                3
466 #define EVEXLIG                4
467   EVex,
468
469   /* AVX512 masking support:
470         1: Zeroing-masking.
471         2: Merging-masking.
472         3: Both zeroing and merging masking.
473    */
474 #define ZEROING_MASKING 1
475 #define MERGING_MASKING 2
476 #define BOTH_MASKING    3
477   Masking,
478
479   /* Input element size of vector insn:
480         0: 32bit.
481         1: 64bit.
482    */
483   VecESize,
484
485   /* Broadcast factor.
486         0: No broadcast.
487         1: 1to16 broadcast.
488         2: 1to8 broadcast.
489    */
490 #define NO_BROADCAST    0
491 #define BROADCAST_1TO16 1
492 #define BROADCAST_1TO8  2
493   Broadcast,
494
495   /* Static rounding control is supported.  */
496   StaticRounding,
497
498   /* Supress All Exceptions is supported.  */
499   SAE,
500
501   /* Copressed Disp8*N attribute.  */
502   Disp8MemShift,
503
504   /* Default mask isn't allowed.  */
505   NoDefMask,
506
507   /* Compatible with old (<= 2.8.1) versions of gcc  */
508   OldGcc,
509   /* AT&T mnemonic.  */
510   ATTMnemonic,
511   /* AT&T syntax.  */
512   ATTSyntax,
513   /* Intel syntax.  */
514   IntelSyntax,
515   /* The last bitfield in i386_opcode_modifier.  */
516   Opcode_Modifier_Max
517 };
518
519 typedef struct i386_opcode_modifier
520 {
521   unsigned int d:1;
522   unsigned int w:1;
523   unsigned int s:1;
524   unsigned int modrm:1;
525   unsigned int shortform:1;
526   unsigned int jump:1;
527   unsigned int jumpdword:1;
528   unsigned int jumpbyte:1;
529   unsigned int jumpintersegment:1;
530   unsigned int floatmf:1;
531   unsigned int floatr:1;
532   unsigned int floatd:1;
533   unsigned int size16:1;
534   unsigned int size32:1;
535   unsigned int size64:1;
536   unsigned int checkregsize:1;
537   unsigned int ignoresize:1;
538   unsigned int defaultsize:1;
539   unsigned int no_bsuf:1;
540   unsigned int no_wsuf:1;
541   unsigned int no_lsuf:1;
542   unsigned int no_ssuf:1;
543   unsigned int no_qsuf:1;
544   unsigned int no_ldsuf:1;
545   unsigned int fwait:1;
546   unsigned int isstring:1;
547   unsigned int bndprefixok:1;
548   unsigned int islockable:1;
549   unsigned int regkludge:1;
550   unsigned int firstxmm0:1;
551   unsigned int implicit1stxmm0:1;
552   unsigned int hleprefixok:2;
553   unsigned int repprefixok:1;
554   unsigned int todword:1;
555   unsigned int toqword:1;
556   unsigned int addrprefixop0:1;
557   unsigned int isprefix:1;
558   unsigned int immext:1;
559   unsigned int norex64:1;
560   unsigned int rex64:1;
561   unsigned int ugh:1;
562   unsigned int vex:2;
563   unsigned int vexvvvv:2;
564   unsigned int vexw:2;
565   unsigned int vexopcode:3;
566   unsigned int vexsources:2;
567   unsigned int veximmext:1;
568   unsigned int vecsib:2;
569   unsigned int sse2avx:1;
570   unsigned int noavx:1;
571   unsigned int evex:3;
572   unsigned int masking:2;
573   unsigned int vecesize:1;
574   unsigned int broadcast:3;
575   unsigned int staticrounding:1;
576   unsigned int sae:1;
577   unsigned int disp8memshift:3;
578   unsigned int nodefmask:1;
579   unsigned int oldgcc:1;
580   unsigned int attmnemonic:1;
581   unsigned int attsyntax:1;
582   unsigned int intelsyntax:1;
583 } i386_opcode_modifier;
584
585 /* Position of operand_type bits.  */
586
587 enum
588 {
589   /* 8bit register */
590   Reg8 = 0,
591   /* 16bit register */
592   Reg16,
593   /* 32bit register */
594   Reg32,
595   /* 64bit register */
596   Reg64,
597   /* Floating pointer stack register */
598   FloatReg,
599   /* MMX register */
600   RegMMX,
601   /* SSE register */
602   RegXMM,
603   /* AVX registers */
604   RegYMM,
605   /* AVX512 registers */
606   RegZMM,
607   /* Vector Mask registers */
608   RegMask,
609   /* Control register */
610   Control,
611   /* Debug register */
612   Debug,
613   /* Test register */
614   Test,
615   /* 2 bit segment register */
616   SReg2,
617   /* 3 bit segment register */
618   SReg3,
619   /* 1 bit immediate */
620   Imm1,
621   /* 8 bit immediate */
622   Imm8,
623   /* 8 bit immediate sign extended */
624   Imm8S,
625   /* 16 bit immediate */
626   Imm16,
627   /* 32 bit immediate */
628   Imm32,
629   /* 32 bit immediate sign extended */
630   Imm32S,
631   /* 64 bit immediate */
632   Imm64,
633   /* 8bit/16bit/32bit displacements are used in different ways,
634      depending on the instruction.  For jumps, they specify the
635      size of the PC relative displacement, for instructions with
636      memory operand, they specify the size of the offset relative
637      to the base register, and for instructions with memory offset
638      such as `mov 1234,%al' they specify the size of the offset
639      relative to the segment base.  */
640   /* 8 bit displacement */
641   Disp8,
642   /* 16 bit displacement */
643   Disp16,
644   /* 32 bit displacement */
645   Disp32,
646   /* 32 bit signed displacement */
647   Disp32S,
648   /* 64 bit displacement */
649   Disp64,
650   /* Accumulator %al/%ax/%eax/%rax */
651   Acc,
652   /* Floating pointer top stack register %st(0) */
653   FloatAcc,
654   /* Register which can be used for base or index in memory operand.  */
655   BaseIndex,
656   /* Register to hold in/out port addr = dx */
657   InOutPortReg,
658   /* Register to hold shift count = cl */
659   ShiftCount,
660   /* Absolute address for jump.  */
661   JumpAbsolute,
662   /* String insn operand with fixed es segment */
663   EsSeg,
664   /* RegMem is for instructions with a modrm byte where the register
665      destination operand should be encoded in the mod and regmem fields.
666      Normally, it will be encoded in the reg field. We add a RegMem
667      flag to the destination register operand to indicate that it should
668      be encoded in the regmem field.  */
669   RegMem,
670   /* Memory.  */
671   Mem,
672   /* BYTE memory. */
673   Byte,
674   /* WORD memory. 2 byte */
675   Word,
676   /* DWORD memory. 4 byte */
677   Dword,
678   /* FWORD memory. 6 byte */
679   Fword,
680   /* QWORD memory. 8 byte */
681   Qword,
682   /* TBYTE memory. 10 byte */
683   Tbyte,
684   /* XMMWORD memory. */
685   Xmmword,
686   /* YMMWORD memory. */
687   Ymmword,
688   /* ZMMWORD memory.  */
689   Zmmword,
690   /* Unspecified memory size.  */
691   Unspecified,
692   /* Any memory size.  */
693   Anysize,
694
695   /* Vector 4 bit immediate.  */
696   Vec_Imm4,
697
698   /* Bound register.  */
699   RegBND,
700
701   /* Vector 8bit displacement */
702   Vec_Disp8,
703
704   /* The last bitfield in i386_operand_type.  */
705   OTMax
706 };
707
708 #define OTNumOfUints \
709   (OTMax / sizeof (unsigned int) / CHAR_BIT + 1)
710 #define OTNumOfBits \
711   (OTNumOfUints * sizeof (unsigned int) * CHAR_BIT)
712
713 /* If you get a compiler error for zero width of the unused field,
714    comment it out.  */
715 #define OTUnused                (OTMax + 1)
716
717 typedef union i386_operand_type
718 {
719   struct
720     {
721       unsigned int reg8:1;
722       unsigned int reg16:1;
723       unsigned int reg32:1;
724       unsigned int reg64:1;
725       unsigned int floatreg:1;
726       unsigned int regmmx:1;
727       unsigned int regxmm:1;
728       unsigned int regymm:1;
729       unsigned int regzmm:1;
730       unsigned int regmask:1;
731       unsigned int control:1;
732       unsigned int debug:1;
733       unsigned int test:1;
734       unsigned int sreg2:1;
735       unsigned int sreg3:1;
736       unsigned int imm1:1;
737       unsigned int imm8:1;
738       unsigned int imm8s:1;
739       unsigned int imm16:1;
740       unsigned int imm32:1;
741       unsigned int imm32s:1;
742       unsigned int imm64:1;
743       unsigned int disp8:1;
744       unsigned int disp16:1;
745       unsigned int disp32:1;
746       unsigned int disp32s:1;
747       unsigned int disp64:1;
748       unsigned int acc:1;
749       unsigned int floatacc:1;
750       unsigned int baseindex:1;
751       unsigned int inoutportreg:1;
752       unsigned int shiftcount:1;
753       unsigned int jumpabsolute:1;
754       unsigned int esseg:1;
755       unsigned int regmem:1;
756       unsigned int mem:1;
757       unsigned int byte:1;
758       unsigned int word:1;
759       unsigned int dword:1;
760       unsigned int fword:1;
761       unsigned int qword:1;
762       unsigned int tbyte:1;
763       unsigned int xmmword:1;
764       unsigned int ymmword:1;
765       unsigned int zmmword:1;
766       unsigned int unspecified:1;
767       unsigned int anysize:1;
768       unsigned int vec_imm4:1;
769       unsigned int regbnd:1;
770       unsigned int vec_disp8:1;
771 #ifdef OTUnused
772       unsigned int unused:(OTNumOfBits - OTUnused);
773 #endif
774     } bitfield;
775   unsigned int array[OTNumOfUints];
776 } i386_operand_type;
777
778 typedef struct insn_template
779 {
780   /* instruction name sans width suffix ("mov" for movl insns) */
781   char *name;
782
783   /* how many operands */
784   unsigned int operands;
785
786   /* base_opcode is the fundamental opcode byte without optional
787      prefix(es).  */
788   unsigned int base_opcode;
789 #define Opcode_D        0x2 /* Direction bit:
790                                set if Reg --> Regmem;
791                                unset if Regmem --> Reg. */
792 #define Opcode_FloatR   0x8 /* Bit to swap src/dest for float insns. */
793 #define Opcode_FloatD 0x400 /* Direction bit for float insns. */
794
795   /* extension_opcode is the 3 bit extension for group <n> insns.
796      This field is also used to store the 8-bit opcode suffix for the
797      AMD 3DNow! instructions.
798      If this template has no extension opcode (the usual case) use None
799      Instructions */
800   unsigned int extension_opcode;
801 #define None 0xffff             /* If no extension_opcode is possible.  */
802
803   /* Opcode length.  */
804   unsigned char opcode_length;
805
806   /* cpu feature flags */
807   i386_cpu_flags cpu_flags;
808
809   /* the bits in opcode_modifier are used to generate the final opcode from
810      the base_opcode.  These bits also are used to detect alternate forms of
811      the same instruction */
812   i386_opcode_modifier opcode_modifier;
813
814   /* operand_types[i] describes the type of operand i.  This is made
815      by OR'ing together all of the possible type masks.  (e.g.
816      'operand_types[i] = Reg|Imm' specifies that operand i can be
817      either a register or an immediate operand.  */
818   i386_operand_type operand_types[MAX_OPERANDS];
819 }
820 insn_template;
821
822 extern const insn_template i386_optab[];
823
824 /* these are for register name --> number & type hash lookup */
825 typedef struct
826 {
827   char *reg_name;
828   i386_operand_type reg_type;
829   unsigned char reg_flags;
830 #define RegRex      0x1  /* Extended register.  */
831 #define RegRex64    0x2  /* Extended 8 bit register.  */
832 #define RegVRex     0x4  /* Extended vector register.  */
833   unsigned char reg_num;
834 #define RegRip  ((unsigned char ) ~0)
835 #define RegEip  (RegRip - 1)
836 /* EIZ and RIZ are fake index registers.  */
837 #define RegEiz  (RegEip - 1)
838 #define RegRiz  (RegEiz - 1)
839 /* FLAT is a fake segment register (Intel mode).  */
840 #define RegFlat     ((unsigned char) ~0)
841   signed char dw2_regnum[2];
842 #define Dw2Inval (-1)
843 }
844 reg_entry;
845
846 /* Entries in i386_regtab.  */
847 #define REGNAM_AL 1
848 #define REGNAM_AX 25
849 #define REGNAM_EAX 41
850
851 extern const reg_entry i386_regtab[];
852 extern const unsigned int i386_regtab_size;
853
854 typedef struct
855 {
856   char *seg_name;
857   unsigned int seg_prefix;
858 }
859 seg_entry;
860
861 extern const seg_entry cs;
862 extern const seg_entry ds;
863 extern const seg_entry ss;
864 extern const seg_entry es;
865 extern const seg_entry fs;
866 extern const seg_entry gs;