1 /* Declarations for Intel 80386 opcode table
2 Copyright (C) 2007-2022 Free Software Foundation, Inc.
4 This file is part of the GNU opcodes library.
6 This library is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
11 It is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
14 License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to the Free
18 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
21 #include "opcode/i386.h"
27 /* Position of cpu flags bitfiled. */
31 /* i186 or better required */
33 /* i286 or better required */
35 /* i386 or better required */
37 /* i486 or better required */
39 /* i585 or better required */
41 /* i686 or better required */
43 /* CMOV Instruction support required */
45 /* FXSR Instruction support required */
47 /* CLFLUSH Instruction support required */
49 /* NOP Instruction support required */
51 /* SYSCALL Instructions support required */
53 /* Floating point support required */
55 /* i287 support required */
57 /* i387 support required */
59 /* i686 and floating point support required */
61 /* SSE3 and floating point support required */
63 /* MMX support required */
65 /* SSE support required */
67 /* SSE2 support required */
69 /* 3dnow! support required */
71 /* 3dnow! Extensions support required */
73 /* SSE3 support required */
75 /* VIA PadLock required */
77 /* AMD Secure Virtual Machine Ext-s required */
79 /* VMX Instructions required */
81 /* SMX Instructions required */
83 /* SSSE3 support required */
85 /* SSE4a support required */
87 /* LZCNT support required */
89 /* POPCNT support required */
91 /* SSE4.1 support required */
93 /* SSE4.2 support required */
95 /* AVX support required */
97 /* AVX2 support required */
99 /* Intel AVX-512 Foundation Instructions support required */
101 /* Intel AVX-512 Conflict Detection Instructions support required */
103 /* Intel AVX-512 Exponential and Reciprocal Instructions support
106 /* Intel AVX-512 Prefetch Instructions support required */
108 /* Intel AVX-512 VL Instructions support required. */
110 /* Intel AVX-512 DQ Instructions support required. */
112 /* Intel AVX-512 BW Instructions support required. */
114 /* Intel L1OM support required */
116 /* Intel K1OM support required */
118 /* Intel IAMCU support required */
120 /* Xsave/xrstor New Instructions support required */
122 /* Xsaveopt New Instructions support required */
124 /* AES support required */
126 /* PCLMUL support required */
128 /* FMA support required */
130 /* FMA4 support required */
132 /* XOP support required */
134 /* LWP support required */
136 /* BMI support required */
138 /* TBM support required */
140 /* MOVBE Instruction support required */
142 /* CMPXCHG16B instruction support required. */
144 /* EPT Instructions required */
146 /* RDTSCP Instruction support required */
148 /* FSGSBASE Instructions required */
150 /* RDRND Instructions required */
152 /* F16C Instructions required */
154 /* Intel BMI2 support required */
156 /* HLE support required */
158 /* RTM support required */
160 /* INVPCID Instructions required */
162 /* VMFUNC Instruction required */
164 /* Intel MPX Instructions required */
166 /* 64bit support available, used by -march= in assembler. */
168 /* RDRSEED instruction required. */
170 /* Multi-presisionn add-carry instructions are required. */
172 /* Supports prefetchw and prefetch instructions. */
174 /* SMAP instructions required. */
176 /* SHA instructions required. */
178 /* CLFLUSHOPT instruction required */
180 /* XSAVES/XRSTORS instruction required */
182 /* XSAVEC instruction required */
184 /* PREFETCHWT1 instruction required */
186 /* SE1 instruction required */
188 /* CLWB instruction required */
190 /* Intel AVX-512 IFMA Instructions support required. */
192 /* Intel AVX-512 VBMI Instructions support required. */
194 /* Intel AVX-512 4FMAPS Instructions support required. */
196 /* Intel AVX-512 4VNNIW Instructions support required. */
198 /* Intel AVX-512 VPOPCNTDQ Instructions support required. */
200 /* Intel AVX-512 VBMI2 Instructions support required. */
202 /* Intel AVX-512 VNNI Instructions support required. */
204 /* Intel AVX-512 BITALG Instructions support required. */
206 /* Intel AVX-512 BF16 Instructions support required. */
208 /* Intel AVX-512 VP2INTERSECT Instructions support required. */
209 CpuAVX512_VP2INTERSECT,
210 /* TDX Instructions support required. */
212 /* Intel AVX VNNI Instructions support required. */
214 /* Intel AVX-512 FP16 Instructions support required. */
216 /* mwaitx instruction required */
218 /* Clzero instruction required */
220 /* OSPKE instruction required */
222 /* RDPID instruction required */
224 /* PTWRITE instruction required */
226 /* CET instructions support required */
229 /* AMX-INT8 instructions required */
231 /* AMX-BF16 instructions required */
233 /* AMX-TILE instructions required */
235 /* GFNI instructions required */
237 /* VAES instructions required */
239 /* VPCLMULQDQ instructions required */
241 /* WBNOINVD instructions required */
243 /* PCONFIG instructions required */
245 /* WAITPKG instructions required */
247 /* UINTR instructions required */
249 /* CLDEMOTE instruction required */
251 /* MOVDIRI instruction support required */
253 /* MOVDIRR64B instruction required */
255 /* ENQCMD instruction required */
257 /* SERIALIZE instruction required */
259 /* RDPRU instruction required */
261 /* MCOMMIT instruction required */
263 /* SEV-ES instruction(s) required */
265 /* TSXLDTRK instruction required */
267 /* KL instruction support required */
269 /* WideKL instruction support required */
271 /* HRESET instruction required */
273 /* INVLPGB instructions required */
275 /* TLBSYNC instructions required */
277 /* SNP instructions required */
279 /* 64bit support required */
281 /* Not supported in the 64bit mode */
283 /* The last bitfield in i386_cpu_flags. */
287 #define CpuNumOfUints \
288 (CpuMax / sizeof (unsigned int) / CHAR_BIT + 1)
289 #define CpuNumOfBits \
290 (CpuNumOfUints * sizeof (unsigned int) * CHAR_BIT)
292 /* If you get a compiler error for zero width of the unused field,
294 #define CpuUnused (CpuMax + 1)
296 /* We can check if an instruction is available with array instead
298 typedef union i386_cpu_flags
302 unsigned int cpui186:1;
303 unsigned int cpui286:1;
304 unsigned int cpui386:1;
305 unsigned int cpui486:1;
306 unsigned int cpui586:1;
307 unsigned int cpui686:1;
308 unsigned int cpucmov:1;
309 unsigned int cpufxsr:1;
310 unsigned int cpuclflush:1;
311 unsigned int cpunop:1;
312 unsigned int cpusyscall:1;
313 unsigned int cpu8087:1;
314 unsigned int cpu287:1;
315 unsigned int cpu387:1;
316 unsigned int cpu687:1;
317 unsigned int cpufisttp:1;
318 unsigned int cpummx:1;
319 unsigned int cpusse:1;
320 unsigned int cpusse2:1;
321 unsigned int cpua3dnow:1;
322 unsigned int cpua3dnowa:1;
323 unsigned int cpusse3:1;
324 unsigned int cpupadlock:1;
325 unsigned int cpusvme:1;
326 unsigned int cpuvmx:1;
327 unsigned int cpusmx:1;
328 unsigned int cpussse3:1;
329 unsigned int cpusse4a:1;
330 unsigned int cpulzcnt:1;
331 unsigned int cpupopcnt:1;
332 unsigned int cpusse4_1:1;
333 unsigned int cpusse4_2:1;
334 unsigned int cpuavx:1;
335 unsigned int cpuavx2:1;
336 unsigned int cpuavx512f:1;
337 unsigned int cpuavx512cd:1;
338 unsigned int cpuavx512er:1;
339 unsigned int cpuavx512pf:1;
340 unsigned int cpuavx512vl:1;
341 unsigned int cpuavx512dq:1;
342 unsigned int cpuavx512bw:1;
343 unsigned int cpul1om:1;
344 unsigned int cpuk1om:1;
345 unsigned int cpuiamcu:1;
346 unsigned int cpuxsave:1;
347 unsigned int cpuxsaveopt:1;
348 unsigned int cpuaes:1;
349 unsigned int cpupclmul:1;
350 unsigned int cpufma:1;
351 unsigned int cpufma4:1;
352 unsigned int cpuxop:1;
353 unsigned int cpulwp:1;
354 unsigned int cpubmi:1;
355 unsigned int cputbm:1;
356 unsigned int cpumovbe:1;
357 unsigned int cpucx16:1;
358 unsigned int cpuept:1;
359 unsigned int cpurdtscp:1;
360 unsigned int cpufsgsbase:1;
361 unsigned int cpurdrnd:1;
362 unsigned int cpuf16c:1;
363 unsigned int cpubmi2:1;
364 unsigned int cpuhle:1;
365 unsigned int cpurtm:1;
366 unsigned int cpuinvpcid:1;
367 unsigned int cpuvmfunc:1;
368 unsigned int cpumpx:1;
369 unsigned int cpulm:1;
370 unsigned int cpurdseed:1;
371 unsigned int cpuadx:1;
372 unsigned int cpuprfchw:1;
373 unsigned int cpusmap:1;
374 unsigned int cpusha:1;
375 unsigned int cpuclflushopt:1;
376 unsigned int cpuxsaves:1;
377 unsigned int cpuxsavec:1;
378 unsigned int cpuprefetchwt1:1;
379 unsigned int cpuse1:1;
380 unsigned int cpuclwb:1;
381 unsigned int cpuavx512ifma:1;
382 unsigned int cpuavx512vbmi:1;
383 unsigned int cpuavx512_4fmaps:1;
384 unsigned int cpuavx512_4vnniw:1;
385 unsigned int cpuavx512_vpopcntdq:1;
386 unsigned int cpuavx512_vbmi2:1;
387 unsigned int cpuavx512_vnni:1;
388 unsigned int cpuavx512_bitalg:1;
389 unsigned int cpuavx512_bf16:1;
390 unsigned int cpuavx512_vp2intersect:1;
391 unsigned int cputdx:1;
392 unsigned int cpuavx_vnni:1;
393 unsigned int cpuavx512_fp16:1;
394 unsigned int cpumwaitx:1;
395 unsigned int cpuclzero:1;
396 unsigned int cpuospke:1;
397 unsigned int cpurdpid:1;
398 unsigned int cpuptwrite:1;
399 unsigned int cpuibt:1;
400 unsigned int cpushstk:1;
401 unsigned int cpuamx_int8:1;
402 unsigned int cpuamx_bf16:1;
403 unsigned int cpuamx_tile:1;
404 unsigned int cpugfni:1;
405 unsigned int cpuvaes:1;
406 unsigned int cpuvpclmulqdq:1;
407 unsigned int cpuwbnoinvd:1;
408 unsigned int cpupconfig:1;
409 unsigned int cpuwaitpkg:1;
410 unsigned int cpuuintr:1;
411 unsigned int cpucldemote:1;
412 unsigned int cpumovdiri:1;
413 unsigned int cpumovdir64b:1;
414 unsigned int cpuenqcmd:1;
415 unsigned int cpuserialize:1;
416 unsigned int cpurdpru:1;
417 unsigned int cpumcommit:1;
418 unsigned int cpusev_es:1;
419 unsigned int cputsxldtrk:1;
420 unsigned int cpukl:1;
421 unsigned int cpuwidekl:1;
422 unsigned int cpuhreset:1;
423 unsigned int cpuinvlpgb:1;
424 unsigned int cputlbsync:1;
425 unsigned int cpusnp:1;
426 unsigned int cpu64:1;
427 unsigned int cpuno64:1;
429 unsigned int unused:(CpuNumOfBits - CpuUnused);
432 unsigned int array[CpuNumOfUints];
435 /* Position of opcode_modifier bits. */
439 /* has direction bit. */
441 /* set if operands can be both bytes and words/dwords/qwords, encoded the
442 canonical way; the base_opcode field should hold the encoding for byte
445 /* load form instruction. Must be placed before store form. */
447 /* insn has a modrm byte. */
449 /* special case for jump insns; value has to be 1 */
455 /* special case for intersegment leaps/calls */
456 #define JUMP_INTERSEGMENT 4
457 /* absolute address for jump */
458 #define JUMP_ABSOLUTE 5
460 /* FP insn memory format bit, sized by 0x4 */
462 /* src/dest swap for floats. */
464 /* needs size prefix if in 32-bit mode */
466 /* needs size prefix if in 16-bit mode */
468 /* needs size prefix if in 64-bit mode */
471 /* check register size. */
473 /* Instrucion requires that destination must be distinct from source
476 /* instruction ignores operand size prefix and in Intel mode ignores
477 mnemonic size suffix check. */
479 /* default insn size depends on mode */
480 #define DEFAULTSIZE 2
482 /* any memory size */
484 /* b suffix on instruction illegal */
486 /* w suffix on instruction illegal */
488 /* l suffix on instruction illegal */
490 /* s suffix on instruction illegal */
492 /* q suffix on instruction illegal */
494 /* long double suffix on instruction illegal */
496 /* instruction needs FWAIT */
498 /* IsString provides for a quick test for string instructions, and
499 its actual value also indicates which of the operands (if any)
500 requires use of the %es segment. */
501 #define IS_STRING_ES_OP0 2
502 #define IS_STRING_ES_OP1 3
504 /* RegMem is for instructions with a modrm byte where the register
505 destination operand should be encoded in the mod and regmem fields.
506 Normally, it will be encoded in the reg field. We add a RegMem
507 flag to indicate that it should be encoded in the regmem field. */
509 /* quick test if branch instruction is MPX supported */
511 /* fake an extra reg operand for clr, imul and special register
512 processing for some instructions. */
514 /* An implicit xmm0 as the first operand */
518 #define PrefixHLERelease 2 /* Okay with an XRELEASE (0xf3) prefix. */
519 #define PrefixNoTrack 3
520 /* Prefixes implying "LOCK okay" must come after Lock. All others have
523 #define PrefixHLELock 5 /* Okay with a LOCK prefix. */
524 #define PrefixHLEAny 6 /* Okay with or without a LOCK prefix. */
526 /* Convert to DWORD */
528 /* Convert to QWORD */
530 /* Address prefix changes register operand */
532 /* opcode is a prefix */
534 /* instruction has extension in 8 bit imm */
536 /* instruction don't need Rex64 prefix. */
538 /* deprecated fp insn, gets a warning */
540 /* Intel AVX Instructions support via {vex} prefix */
542 /* insn has VEX prefix:
543 1: 128bit VEX prefix (or operand dependent).
544 2: 256bit VEX prefix.
545 3: Scalar VEX prefix.
551 /* How to encode VEX.vvvv:
552 0: VEX.vvvv must be 1111b.
553 1: VEX.NDS. Register-only source is encoded in VEX.vvvv where
554 the content of source registers will be preserved.
555 VEX.DDS. The second register operand is encoded in VEX.vvvv
556 where the content of first source register will be overwritten
558 VEX.NDD2. The second destination register operand is encoded in
559 VEX.vvvv for instructions with 2 destination register operands.
560 For assembler, there are no difference between VEX.NDS, VEX.DDS
562 2. VEX.NDD. Register destination is encoded in VEX.vvvv for
563 instructions with 1 destination register operand.
564 3. VEX.LWP. Register destination is encoded in VEX.vvvv and one
565 of the operands can access a memory location.
571 /* How the VEX.W bit is used:
572 0: Set by the REX.W bit.
573 1: VEX.W0. Should always be 0.
574 2: VEX.W1. Should always be 1.
575 3: VEX.WIG. The VEX.W bit is ignored.
581 /* Opcode encoding space (values chosen to be usable directly in
582 VEX/XOP mmmmm and EVEX mm fields):
583 0: Base opcode space.
584 1: 0F opcode prefix / space.
585 2: 0F38 opcode prefix / space.
586 3: 0F3A opcode prefix / space.
587 5: EVEXMAP5 opcode prefix / space.
588 6: EVEXMAP6 opcode prefix / space.
589 8: XOP 08 opcode space.
590 9: XOP 09 opcode space.
591 A: XOP 0A opcode space.
597 #define SPACE_EVEXMAP5 5
598 #define SPACE_EVEXMAP6 6
599 #define SPACE_XOP08 8
600 #define SPACE_XOP09 9
601 #define SPACE_XOP0A 0xA
603 /* Opcode prefix (values chosen to be usable directly in
604 VEX/XOP/EVEX pp fields):
606 1: Add 0x66 opcode prefix.
607 2: Add 0xf3 opcode prefix.
608 3: Add 0xf2 opcode prefix.
610 #define PREFIX_NONE 0
611 #define PREFIX_0X66 1
612 #define PREFIX_0XF3 2
613 #define PREFIX_0XF2 3
615 /* number of VEX source operands:
616 0: <= 2 source operands.
617 1: 2 XOP source operands.
618 2: 3 source operands.
620 #define XOP2SOURCES 1
621 #define VEX3SOURCES 2
623 /* Instruction with a mandatory SIB byte:
624 1: 128bit vector register.
625 2: 256bit vector register.
626 3: 512bit vector register.
634 /* SSE to AVX support required */
637 /* insn has EVEX prefix:
638 1: 512bit EVEX prefix.
639 2: 128bit EVEX prefix.
640 3: 256bit EVEX prefix.
641 4: Length-ignored (LIG) EVEX prefix.
642 5: Length determined from actual operands.
651 /* AVX512 masking support:
652 1: Zeroing or merging masking depending on operands.
654 3: Both zeroing and merging masking.
656 #define DYNAMIC_MASKING 1
657 #define MERGING_MASKING 2
658 #define BOTH_MASKING 3
661 /* AVX512 broadcast support. The number of bytes to broadcast is
662 1 << (Broadcast - 1):
668 #define BYTE_BROADCAST 1
669 #define WORD_BROADCAST 2
670 #define DWORD_BROADCAST 3
671 #define QWORD_BROADCAST 4
674 /* Static rounding control is supported. */
677 /* Supress All Exceptions is supported. */
680 /* Compressed Disp8*N attribute. */
681 #define DISP8_SHIFT_VL 7
684 /* Default mask isn't allowed. */
687 /* The second operand must be a vector register, {x,y,z}mmN, where N is a multiple of 4.
688 It implicitly denotes the register group of {x,y,z}mmN - {x,y,z}mm(N + 3).
692 /* Two source operands are swapped. */
695 /* Support encoding optimization. */
704 /* ISA64: Don't change the order without other code adjustments.
705 0: Common to AMD64 and Intel64.
712 #define INTEL64ONLY 3
714 /* The last bitfield in i386_opcode_modifier. */
718 typedef struct i386_opcode_modifier
723 unsigned int modrm:1;
725 unsigned int floatmf:1;
726 unsigned int floatr:1;
728 unsigned int checkregsize:1;
729 unsigned int distinctdest:1;
730 unsigned int mnemonicsize:2;
731 unsigned int anysize:1;
732 unsigned int no_bsuf:1;
733 unsigned int no_wsuf:1;
734 unsigned int no_lsuf:1;
735 unsigned int no_ssuf:1;
736 unsigned int no_qsuf:1;
737 unsigned int no_ldsuf:1;
738 unsigned int fwait:1;
739 unsigned int isstring:2;
740 unsigned int regmem:1;
741 unsigned int bndprefixok:1;
742 unsigned int regkludge:1;
743 unsigned int implicit1stxmm0:1;
744 unsigned int prefixok:3;
745 unsigned int todword:1;
746 unsigned int toqword:1;
747 unsigned int addrprefixopreg:1;
748 unsigned int isprefix:1;
749 unsigned int immext:1;
750 unsigned int norex64:1;
752 unsigned int pseudovexprefix:1;
754 unsigned int vexvvvv:2;
756 unsigned int opcodespace:4;
757 unsigned int opcodeprefix:2;
758 unsigned int vexsources:2;
760 unsigned int sse2avx:1;
762 unsigned int masking:2;
763 unsigned int broadcast:3;
764 unsigned int staticrounding:1;
766 unsigned int disp8memshift:3;
767 unsigned int nodefmask:1;
768 unsigned int implicitquadgroup:1;
769 unsigned int swapsources:1;
770 unsigned int optimize:1;
771 unsigned int attmnemonic:1;
772 unsigned int attsyntax:1;
773 unsigned int intelsyntax:1;
774 unsigned int isa64:2;
775 } i386_opcode_modifier;
777 /* Operand classes. */
779 #define CLASS_WIDTH 4
783 Reg, /* GPRs and FP regs, distinguished by operand size */
784 SReg, /* Segment register */
785 RegCR, /* Control register */
786 RegDR, /* Debug register */
787 RegTR, /* Test register */
788 RegMMX, /* MMX register */
789 RegSIMD, /* XMM/YMM/ZMM registers, distinguished by operand size */
790 RegMask, /* Vector Mask register */
791 RegBND, /* Bound register */
794 /* Special operand instances. */
796 #define INSTANCE_WIDTH 3
797 enum operand_instance
800 Accum, /* Accumulator %al/%ax/%eax/%rax/%st(0)/%xmm0 */
801 RegC, /* %cl / %cx / %ecx / %rcx, e.g. register to hold shift count */
802 RegD, /* %dl / %dx / %edx / %rdx, e.g. register to hold I/O port addr */
803 RegB, /* %bl / %bx / %ebx / %rbx */
806 /* Position of operand_type bits. */
810 /* Class and Instance */
811 ClassInstance = CLASS_WIDTH + INSTANCE_WIDTH - 1,
812 /* 1 bit immediate */
814 /* 8 bit immediate */
816 /* 8 bit immediate sign extended */
818 /* 16 bit immediate */
820 /* 32 bit immediate */
822 /* 32 bit immediate sign extended */
824 /* 64 bit immediate */
826 /* 8bit/16bit/32bit displacements are used in different ways,
827 depending on the instruction. For jumps, they specify the
828 size of the PC relative displacement, for instructions with
829 memory operand, they specify the size of the offset relative
830 to the base register, and for instructions with memory offset
831 such as `mov 1234,%al' they specify the size of the offset
832 relative to the segment base. */
833 /* 8 bit displacement */
835 /* 16 bit displacement */
837 /* 32 bit displacement */
839 /* 32 bit signed displacement */
841 /* 64 bit displacement */
843 /* Register which can be used for base or index in memory operand. */
847 /* WORD size. 2 byte */
849 /* DWORD size. 4 byte */
851 /* FWORD size. 6 byte */
853 /* QWORD size. 8 byte */
855 /* TBYTE size. 10 byte */
865 /* Unspecified memory size. */
868 /* The number of bits in i386_operand_type. */
872 #define OTNumOfUints \
873 ((OTNum - 1) / sizeof (unsigned int) / CHAR_BIT + 1)
874 #define OTNumOfBits \
875 (OTNumOfUints * sizeof (unsigned int) * CHAR_BIT)
877 /* If you get a compiler error for zero width of the unused field,
879 #define OTUnused OTNum
881 typedef union i386_operand_type
885 unsigned int class:CLASS_WIDTH;
886 unsigned int instance:INSTANCE_WIDTH;
889 unsigned int imm8s:1;
890 unsigned int imm16:1;
891 unsigned int imm32:1;
892 unsigned int imm32s:1;
893 unsigned int imm64:1;
894 unsigned int disp8:1;
895 unsigned int disp16:1;
896 unsigned int disp32:1;
897 unsigned int disp32s:1;
898 unsigned int disp64:1;
899 unsigned int baseindex:1;
902 unsigned int dword:1;
903 unsigned int fword:1;
904 unsigned int qword:1;
905 unsigned int tbyte:1;
906 unsigned int xmmword:1;
907 unsigned int ymmword:1;
908 unsigned int zmmword:1;
909 unsigned int tmmword:1;
910 unsigned int unspecified:1;
912 unsigned int unused:(OTNumOfBits - OTUnused);
915 unsigned int array[OTNumOfUints];
918 typedef struct insn_template
920 /* instruction name sans width suffix ("mov" for movl insns) */
923 /* base_opcode is the fundamental opcode byte without optional
925 unsigned int base_opcode:16;
926 #define Opcode_D 0x2 /* Direction bit:
927 set if Reg --> Regmem;
928 unset if Regmem --> Reg. */
929 #define Opcode_FloatR 0x8 /* Bit to swap src/dest for float insns. */
930 #define Opcode_FloatD 0x400 /* Direction bit for float insns. */
931 #define Opcode_SIMD_FloatD 0x1 /* Direction bit for SIMD fp insns. */
932 #define Opcode_SIMD_IntD 0x10 /* Direction bit for SIMD int insns. */
934 /* (Fake) base opcode value for pseudo prefixes. */
935 #define PSEUDO_PREFIX 0
937 /* extension_opcode is the 3 bit extension for group <n> insns.
938 This field is also used to store the 8-bit opcode suffix for the
939 AMD 3DNow! instructions.
940 If this template has no extension opcode (the usual case) use None
942 signed int extension_opcode:9;
943 #define None (-1) /* If no extension_opcode is possible. */
945 /* Pseudo prefixes. */
946 #define Prefix_Disp8 0 /* {disp8} */
947 #define Prefix_Disp16 1 /* {disp16} */
948 #define Prefix_Disp32 2 /* {disp32} */
949 #define Prefix_Load 3 /* {load} */
950 #define Prefix_Store 4 /* {store} */
951 #define Prefix_VEX 5 /* {vex} */
952 #define Prefix_VEX3 6 /* {vex3} */
953 #define Prefix_EVEX 7 /* {evex} */
954 #define Prefix_REX 8 /* {rex} */
955 #define Prefix_NoOptimize 9 /* {nooptimize} */
957 /* how many operands */
958 unsigned int operands:3;
960 /* the bits in opcode_modifier are used to generate the final opcode from
961 the base_opcode. These bits also are used to detect alternate forms of
962 the same instruction */
963 i386_opcode_modifier opcode_modifier;
965 /* cpu feature flags */
966 i386_cpu_flags cpu_flags;
968 /* operand_types[i] describes the type of operand i. This is made
969 by OR'ing together all of the possible type masks. (e.g.
970 'operand_types[i] = Reg|Imm' specifies that operand i can be
971 either a register or an immediate operand. */
972 i386_operand_type operand_types[MAX_OPERANDS];
976 extern const insn_template i386_optab[];
978 /* these are for register name --> number & type hash lookup */
981 const char *reg_name;
982 i386_operand_type reg_type;
983 unsigned char reg_flags;
984 #define RegRex 0x1 /* Extended register. */
985 #define RegRex64 0x2 /* Extended 8 bit register. */
986 #define RegVRex 0x4 /* Extended vector register. */
987 unsigned char reg_num;
988 #define RegIP ((unsigned char ) ~0)
989 /* EIZ and RIZ are fake index registers. */
990 #define RegIZ (RegIP - 1)
991 /* FLAT is a fake segment register (Intel mode). */
992 #define RegFlat ((unsigned char) ~0)
993 signed char dw2_regnum[2];
994 #define Dw2Inval (-1)
998 extern const reg_entry i386_regtab[];
999 extern const unsigned int i386_regtab_size;
1000 extern const unsigned char i386_seg_prefixes[6];