1 /* Declarations for Intel 80386 opcode table
2 Copyright 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
5 This file is part of the GNU opcodes library.
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)
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.
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
22 #include "opcode/i386.h"
31 /* Position of cpu flags bitfiled. */
35 /* i186 or better required */
37 /* i286 or better required */
39 /* i386 or better required */
41 /* i486 or better required */
43 /* i585 or better required */
45 /* i686 or better 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 /* ABM New Instructions required */
89 /* SSE4.1 support required */
91 /* SSE4.2 support required */
93 /* AVX support required */
95 /* Intel L1OM support required */
97 /* Xsave/xrstor New Instructions support required */
99 /* Xsaveopt New Instructions support required */
101 /* AES support required */
103 /* PCLMUL support required */
105 /* FMA support required */
107 /* FMA4 support required */
109 /* XOP support required */
111 /* LWP support required */
113 /* BMI support required */
115 /* MOVBE Instruction support required */
117 /* EPT Instructions required */
119 /* RDTSCP Instruction support required */
121 /* FSGSBASE Instructions required */
123 /* RDRND Instructions required */
125 /* F16C Instructions required */
127 /* 64bit support available, used by -march= in assembler. */
129 /* 64bit support required */
131 /* Not supported in the 64bit mode */
133 /* The last bitfield in i386_cpu_flags. */
137 #define CpuNumOfUints \
138 (CpuMax / sizeof (unsigned int) / CHAR_BIT + 1)
139 #define CpuNumOfBits \
140 (CpuNumOfUints * sizeof (unsigned int) * CHAR_BIT)
142 /* If you get a compiler error for zero width of the unused field,
144 #define CpuUnused (CpuMax + 1)
146 /* We can check if an instruction is available with array instead
148 typedef union i386_cpu_flags
152 unsigned int cpui186
:1;
153 unsigned int cpui286
:1;
154 unsigned int cpui386
:1;
155 unsigned int cpui486
:1;
156 unsigned int cpui586
:1;
157 unsigned int cpui686
:1;
158 unsigned int cpuclflush
:1;
159 unsigned int cpunop
:1;
160 unsigned int cpusyscall
:1;
161 unsigned int cpu8087
:1;
162 unsigned int cpu287
:1;
163 unsigned int cpu387
:1;
164 unsigned int cpu687
:1;
165 unsigned int cpufisttp
:1;
166 unsigned int cpummx
:1;
167 unsigned int cpusse
:1;
168 unsigned int cpusse2
:1;
169 unsigned int cpua3dnow
:1;
170 unsigned int cpua3dnowa
:1;
171 unsigned int cpusse3
:1;
172 unsigned int cpupadlock
:1;
173 unsigned int cpusvme
:1;
174 unsigned int cpuvmx
:1;
175 unsigned int cpusmx
:1;
176 unsigned int cpussse3
:1;
177 unsigned int cpusse4a
:1;
178 unsigned int cpuabm
:1;
179 unsigned int cpusse4_1
:1;
180 unsigned int cpusse4_2
:1;
181 unsigned int cpuavx
:1;
182 unsigned int cpul1om
:1;
183 unsigned int cpuxsave
:1;
184 unsigned int cpuxsaveopt
:1;
185 unsigned int cpuaes
:1;
186 unsigned int cpupclmul
:1;
187 unsigned int cpufma
:1;
188 unsigned int cpufma4
:1;
189 unsigned int cpuxop
:1;
190 unsigned int cpulwp
:1;
191 unsigned int cpubmi
:1;
192 unsigned int cpumovbe
:1;
193 unsigned int cpuept
:1;
194 unsigned int cpurdtscp
:1;
195 unsigned int cpufsgsbase
:1;
196 unsigned int cpurdrnd
:1;
197 unsigned int cpuf16c
:1;
198 unsigned int cpulm
:1;
199 unsigned int cpu64
:1;
200 unsigned int cpuno64
:1;
202 unsigned int unused
:(CpuNumOfBits
- CpuUnused
);
205 unsigned int array
[CpuNumOfUints
];
208 /* Position of opcode_modifier bits. */
212 /* has direction bit. */
214 /* set if operands can be words or dwords encoded the canonical way */
216 /* Skip the current insn and use the next insn in i386-opc.tbl to swap
217 operand in encoding. */
219 /* insn has a modrm byte. */
221 /* register is in low 3 bits of opcode */
223 /* special case for jump insns. */
229 /* special case for intersegment leaps/calls */
231 /* FP insn memory format bit, sized by 0x4 */
233 /* src/dest swap for floats. */
235 /* has float insn direction bit. */
237 /* needs size prefix if in 32-bit mode */
239 /* needs size prefix if in 16-bit mode */
241 /* needs size prefix if in 64-bit mode */
243 /* check register size. */
245 /* instruction ignores operand size prefix and in Intel mode ignores
246 mnemonic size suffix check. */
248 /* default insn size depends on mode */
250 /* b suffix on instruction illegal */
252 /* w suffix on instruction illegal */
254 /* l suffix on instruction illegal */
256 /* s suffix on instruction illegal */
258 /* q suffix on instruction illegal */
260 /* long double suffix on instruction illegal */
262 /* instruction needs FWAIT */
264 /* quick test for string instructions */
266 /* quick test for lockable instructions */
268 /* fake an extra reg operand for clr, imul and special register
269 processing for some instructions. */
271 /* The first operand must be xmm0 */
273 /* An implicit xmm0 as the first operand */
275 /* Convert to DWORD */
277 /* Convert to QWORD */
279 /* Address prefix changes operand 0 */
281 /* opcode is a prefix */
283 /* instruction has extension in 8 bit imm */
285 /* instruction don't need Rex64 prefix. */
287 /* instruction require Rex64 prefix. */
289 /* deprecated fp insn, gets a warning */
291 /* insn has VEX prefix:
292 1: 128bit VEX prefix.
293 2: 256bit VEX prefix.
294 3: Scalar VEX prefix.
300 /* How to encode VEX.vvvv:
301 0: VEX.vvvv must be 1111b.
302 1: VEX.NDS. Register-only source is encoded in VEX.vvvv where
303 the content of source registers will be preserved.
304 VEX.DDS. The second register operand is encoded in VEX.vvvv
305 where the content of first source register will be overwritten
307 For assembler, there are no difference between VEX.NDS and
309 2. VEX.NDD. Register destination is encoded in VEX.vvvv.
310 3. VEX.LWP. Register destination is encoded in VEX.vvvv and one
311 of the operands can access a memory location.
317 /* How the VEX.W bit is used:
318 0: Set by the REX.W bit.
319 1: VEX.W0. Should always be 0.
320 2: VEX.W1. Should always be 1.
325 /* VEX opcode prefix:
326 0: VEX 0x0F opcode prefix.
327 1: VEX 0x0F38 opcode prefix.
328 2: VEX 0x0F3A opcode prefix
329 3: XOP 0x08 opcode prefix.
330 4: XOP 0x09 opcode prefix
331 5: XOP 0x0A opcode prefix.
340 /* number of VEX source operands:
341 0: <= 2 source operands.
342 1: 2 XOP source operands.
343 2: 3 source operands.
345 #define XOP2SOURCES 1
346 #define VEX3SOURCES 2
348 /* instruction has VEX 8 bit imm */
350 /* SSE to AVX support required */
352 /* No AVX equivalent */
354 /* Compatible with old (<= 2.8.1) versions of gcc */
362 /* The last bitfield in i386_opcode_modifier. */
366 typedef struct i386_opcode_modifier
371 unsigned int modrm
:1;
372 unsigned int shortform
:1;
374 unsigned int jumpdword
:1;
375 unsigned int jumpbyte
:1;
376 unsigned int jumpintersegment
:1;
377 unsigned int floatmf
:1;
378 unsigned int floatr
:1;
379 unsigned int floatd
:1;
380 unsigned int size16
:1;
381 unsigned int size32
:1;
382 unsigned int size64
:1;
383 unsigned int checkregsize
:1;
384 unsigned int ignoresize
:1;
385 unsigned int defaultsize
:1;
386 unsigned int no_bsuf
:1;
387 unsigned int no_wsuf
:1;
388 unsigned int no_lsuf
:1;
389 unsigned int no_ssuf
:1;
390 unsigned int no_qsuf
:1;
391 unsigned int no_ldsuf
:1;
392 unsigned int fwait
:1;
393 unsigned int isstring
:1;
394 unsigned int islockable
:1;
395 unsigned int regkludge
:1;
396 unsigned int firstxmm0
:1;
397 unsigned int implicit1stxmm0
:1;
398 unsigned int todword
:1;
399 unsigned int toqword
:1;
400 unsigned int addrprefixop0
:1;
401 unsigned int isprefix
:1;
402 unsigned int immext
:1;
403 unsigned int norex64
:1;
404 unsigned int rex64
:1;
407 unsigned int vexvvvv
:2;
409 unsigned int vexopcode
:3;
410 unsigned int vexsources
:2;
411 unsigned int veximmext
:1;
412 unsigned int sse2avx
:1;
413 unsigned int noavx
:1;
414 unsigned int oldgcc
:1;
415 unsigned int attmnemonic
:1;
416 unsigned int attsyntax
:1;
417 unsigned int intelsyntax
:1;
418 } i386_opcode_modifier
;
420 /* Position of operand_type bits. */
432 /* Floating pointer stack register */
440 /* Control register */
446 /* 2 bit segment register */
448 /* 3 bit segment register */
450 /* 1 bit immediate */
452 /* 8 bit immediate */
454 /* 8 bit immediate sign extended */
456 /* 16 bit immediate */
458 /* 32 bit immediate */
460 /* 32 bit immediate sign extended */
462 /* 64 bit immediate */
464 /* 8bit/16bit/32bit displacements are used in different ways,
465 depending on the instruction. For jumps, they specify the
466 size of the PC relative displacement, for instructions with
467 memory operand, they specify the size of the offset relative
468 to the base register, and for instructions with memory offset
469 such as `mov 1234,%al' they specify the size of the offset
470 relative to the segment base. */
471 /* 8 bit displacement */
473 /* 16 bit displacement */
475 /* 32 bit displacement */
477 /* 32 bit signed displacement */
479 /* 64 bit displacement */
481 /* Accumulator %al/%ax/%eax/%rax */
483 /* Floating pointer top stack register %st(0) */
485 /* Register which can be used for base or index in memory operand. */
487 /* Register to hold in/out port addr = dx */
489 /* Register to hold shift count = cl */
491 /* Absolute address for jump. */
493 /* String insn operand with fixed es segment */
495 /* RegMem is for instructions with a modrm byte where the register
496 destination operand should be encoded in the mod and regmem fields.
497 Normally, it will be encoded in the reg field. We add a RegMem
498 flag to the destination register operand to indicate that it should
499 be encoded in the regmem field. */
505 /* WORD memory. 2 byte */
507 /* DWORD memory. 4 byte */
509 /* FWORD memory. 6 byte */
511 /* QWORD memory. 8 byte */
513 /* TBYTE memory. 10 byte */
515 /* XMMWORD memory. */
517 /* YMMWORD memory. */
519 /* Unspecified memory size. */
521 /* Any memory size. */
524 /* Vector 4 bit immediate. */
527 /* The last bitfield in i386_operand_type. */
531 #define OTNumOfUints \
532 (OTMax / sizeof (unsigned int) / CHAR_BIT + 1)
533 #define OTNumOfBits \
534 (OTNumOfUints * sizeof (unsigned int) * CHAR_BIT)
536 /* If you get a compiler error for zero width of the unused field,
538 #define OTUnused (OTMax + 1)
540 typedef union i386_operand_type
545 unsigned int reg16
:1;
546 unsigned int reg32
:1;
547 unsigned int reg64
:1;
548 unsigned int floatreg
:1;
549 unsigned int regmmx
:1;
550 unsigned int regxmm
:1;
551 unsigned int regymm
:1;
552 unsigned int control
:1;
553 unsigned int debug
:1;
555 unsigned int sreg2
:1;
556 unsigned int sreg3
:1;
559 unsigned int imm8s
:1;
560 unsigned int imm16
:1;
561 unsigned int imm32
:1;
562 unsigned int imm32s
:1;
563 unsigned int imm64
:1;
564 unsigned int disp8
:1;
565 unsigned int disp16
:1;
566 unsigned int disp32
:1;
567 unsigned int disp32s
:1;
568 unsigned int disp64
:1;
570 unsigned int floatacc
:1;
571 unsigned int baseindex
:1;
572 unsigned int inoutportreg
:1;
573 unsigned int shiftcount
:1;
574 unsigned int jumpabsolute
:1;
575 unsigned int esseg
:1;
576 unsigned int regmem
:1;
580 unsigned int dword
:1;
581 unsigned int fword
:1;
582 unsigned int qword
:1;
583 unsigned int tbyte
:1;
584 unsigned int xmmword
:1;
585 unsigned int ymmword
:1;
586 unsigned int unspecified
:1;
587 unsigned int anysize
:1;
588 unsigned int vec_imm4
:1;
590 unsigned int unused
:(OTNumOfBits
- OTUnused
);
593 unsigned int array
[OTNumOfUints
];
596 typedef struct insn_template
598 /* instruction name sans width suffix ("mov" for movl insns) */
601 /* how many operands */
602 unsigned int operands
;
604 /* base_opcode is the fundamental opcode byte without optional
606 unsigned int base_opcode
;
607 #define Opcode_D 0x2 /* Direction bit:
608 set if Reg --> Regmem;
609 unset if Regmem --> Reg. */
610 #define Opcode_FloatR 0x8 /* Bit to swap src/dest for float insns. */
611 #define Opcode_FloatD 0x400 /* Direction bit for float insns. */
613 /* extension_opcode is the 3 bit extension for group <n> insns.
614 This field is also used to store the 8-bit opcode suffix for the
615 AMD 3DNow! instructions.
616 If this template has no extension opcode (the usual case) use None
618 unsigned int extension_opcode
;
619 #define None 0xffff /* If no extension_opcode is possible. */
622 unsigned char opcode_length
;
624 /* cpu feature flags */
625 i386_cpu_flags cpu_flags
;
627 /* the bits in opcode_modifier are used to generate the final opcode from
628 the base_opcode. These bits also are used to detect alternate forms of
629 the same instruction */
630 i386_opcode_modifier opcode_modifier
;
632 /* operand_types[i] describes the type of operand i. This is made
633 by OR'ing together all of the possible type masks. (e.g.
634 'operand_types[i] = Reg|Imm' specifies that operand i can be
635 either a register or an immediate operand. */
636 i386_operand_type operand_types
[MAX_OPERANDS
];
640 extern const insn_template i386_optab
[];
642 /* these are for register name --> number & type hash lookup */
646 i386_operand_type reg_type
;
647 unsigned char reg_flags
;
648 #define RegRex 0x1 /* Extended register. */
649 #define RegRex64 0x2 /* Extended 8 bit register. */
650 unsigned char reg_num
;
651 #define RegRip ((unsigned char ) ~0)
652 #define RegEip (RegRip - 1)
653 /* EIZ and RIZ are fake index registers. */
654 #define RegEiz (RegEip - 1)
655 #define RegRiz (RegEiz - 1)
656 /* FLAT is a fake segment register (Intel mode). */
657 #define RegFlat ((unsigned char) ~0)
658 signed char dw2_regnum
[2];
659 #define Dw2Inval (-1)
663 /* Entries in i386_regtab. */
666 #define REGNAM_EAX 41
668 extern const reg_entry i386_regtab
[];
669 extern const unsigned int i386_regtab_size
;
674 unsigned int seg_prefix
;
678 extern const seg_entry cs
;
679 extern const seg_entry ds
;
680 extern const seg_entry ss
;
681 extern const seg_entry es
;
682 extern const seg_entry fs
;
683 extern const seg_entry gs
;