2009-12-15 H.J. Lu <hongjiu.lu@intel.com>
[deliverable/binutils-gdb.git] / opcodes / i386-opc.h
CommitLineData
0b1cf022 1/* Declarations for Intel 80386 opcode table
0bfee649 2 Copyright 2007, 2008, 2009
0b1cf022
L
3 Free Software Foundation, Inc.
4
9b201bb5 5 This file is part of the GNU opcodes library.
0b1cf022 6
9b201bb5 7 This library is free software; you can redistribute it and/or modify
0b1cf022 8 it under the terms of the GNU General Public License as published by
9b201bb5 9 the Free Software Foundation; either version 3, or (at your option)
0b1cf022
L
10 any later version.
11
9b201bb5
NC
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.
0b1cf022
L
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"
40fb9820
L
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
52a6c1fe
L
33enum
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 Instuction support required */
48 CpuClflush,
49 /* SYSCALL Instuctions support required */
50 CpuSYSCALL,
51 /* Floating point support required */
52 Cpu8087,
53 /* i287 support required */
54 Cpu287,
55 /* i387 support required */
56 Cpu387,
57 /* i686 and floating point support required */
58 Cpu687,
59 /* SSE3 and floating point support required */
60 CpuFISTTP,
61 /* MMX support required */
62 CpuMMX,
63 /* SSE support required */
64 CpuSSE,
65 /* SSE2 support required */
66 CpuSSE2,
67 /* 3dnow! support required */
68 Cpu3dnow,
69 /* 3dnow! Extensions support required */
70 Cpu3dnowA,
71 /* SSE3 support required */
72 CpuSSE3,
73 /* VIA PadLock required */
74 CpuPadLock,
75 /* AMD Secure Virtual Machine Ext-s required */
76 CpuSVME,
77 /* VMX Instructions required */
78 CpuVMX,
79 /* SMX Instructions required */
80 CpuSMX,
81 /* SSSE3 support required */
82 CpuSSSE3,
83 /* SSE4a support required */
84 CpuSSE4a,
85 /* ABM New Instructions required */
86 CpuABM,
87 /* SSE4.1 support required */
88 CpuSSE4_1,
89 /* SSE4.2 support required */
90 CpuSSE4_2,
91 /* AVX support required */
92 CpuAVX,
93 /* Intel L1OM support required */
94 CpuL1OM,
95 /* Xsave/xrstor New Instuctions support required */
96 CpuXsave,
97 /* AES support required */
98 CpuAES,
99 /* PCLMUL support required */
100 CpuPCLMUL,
101 /* FMA support required */
102 CpuFMA,
103 /* FMA4 support required */
104 CpuFMA4,
5dd85c99
SP
105 /* XOP support required */
106 CpuXOP,
f88c9eb0
SP
107 /* LWP support required */
108 CpuLWP,
52a6c1fe
L
109 /* MOVBE Instuction support required */
110 CpuMovbe,
111 /* EPT Instructions required */
112 CpuEPT,
113 /* RDTSCP Instuction support required */
114 CpuRdtscp,
115 /* 64bit support available, used by -march= in assembler. */
116 CpuLM,
117 /* 64bit support required */
118 Cpu64,
119 /* Not supported in the 64bit mode */
120 CpuNo64,
121 /* The last bitfield in i386_cpu_flags. */
122 CpuMax = CpuNo64
123};
40fb9820
L
124
125#define CpuNumOfUints \
126 (CpuMax / sizeof (unsigned int) / CHAR_BIT + 1)
127#define CpuNumOfBits \
128 (CpuNumOfUints * sizeof (unsigned int) * CHAR_BIT)
129
130/* If you get a compiler error for zero width of the unused field,
131 comment it out. */
8c6c9809 132#define CpuUnused (CpuMax + 1)
40fb9820
L
133
134/* We can check if an instruction is available with array instead
135 of bitfield. */
136typedef union i386_cpu_flags
137{
138 struct
139 {
140 unsigned int cpui186:1;
141 unsigned int cpui286:1;
142 unsigned int cpui386:1;
143 unsigned int cpui486:1;
144 unsigned int cpui586:1;
145 unsigned int cpui686:1;
bd5295b2
L
146 unsigned int cpuclflush:1;
147 unsigned int cpusyscall:1;
309d3373
JB
148 unsigned int cpu8087:1;
149 unsigned int cpu287:1;
150 unsigned int cpu387:1;
151 unsigned int cpu687:1;
152 unsigned int cpufisttp:1;
40fb9820 153 unsigned int cpummx:1;
40fb9820
L
154 unsigned int cpusse:1;
155 unsigned int cpusse2:1;
156 unsigned int cpua3dnow:1;
157 unsigned int cpua3dnowa:1;
158 unsigned int cpusse3:1;
159 unsigned int cpupadlock:1;
160 unsigned int cpusvme:1;
161 unsigned int cpuvmx:1;
47dd174c 162 unsigned int cpusmx:1;
40fb9820
L
163 unsigned int cpussse3:1;
164 unsigned int cpusse4a:1;
165 unsigned int cpuabm:1;
166 unsigned int cpusse4_1:1;
167 unsigned int cpusse4_2:1;
c0f3af97 168 unsigned int cpuavx:1;
8a9036a4 169 unsigned int cpul1om:1;
475a2301 170 unsigned int cpuxsave:1;
c0f3af97 171 unsigned int cpuaes:1;
594ab6a3 172 unsigned int cpupclmul:1;
c0f3af97 173 unsigned int cpufma:1;
922d8de8 174 unsigned int cpufma4:1;
5dd85c99 175 unsigned int cpuxop:1;
f88c9eb0 176 unsigned int cpulwp:1;
f1f8f695
L
177 unsigned int cpumovbe:1;
178 unsigned int cpuept:1;
1b7f3fb0 179 unsigned int cpurdtscp:1;
40fb9820
L
180 unsigned int cpulm:1;
181 unsigned int cpu64:1;
182 unsigned int cpuno64:1;
183#ifdef CpuUnused
184 unsigned int unused:(CpuNumOfBits - CpuUnused);
185#endif
186 } bitfield;
187 unsigned int array[CpuNumOfUints];
188} i386_cpu_flags;
189
190/* Position of opcode_modifier bits. */
191
52a6c1fe
L
192enum
193{
194 /* has direction bit. */
195 D = 0,
196 /* set if operands can be words or dwords encoded the canonical way */
197 W,
198 /* Skip the current insn and use the next insn in i386-opc.tbl to swap
199 operand in encoding. */
200 S,
201 /* insn has a modrm byte. */
202 Modrm,
203 /* register is in low 3 bits of opcode */
204 ShortForm,
205 /* special case for jump insns. */
206 Jump,
207 /* call and jump */
208 JumpDword,
209 /* loop and jecxz */
210 JumpByte,
211 /* special case for intersegment leaps/calls */
212 JumpInterSegment,
213 /* FP insn memory format bit, sized by 0x4 */
214 FloatMF,
215 /* src/dest swap for floats. */
216 FloatR,
217 /* has float insn direction bit. */
218 FloatD,
219 /* needs size prefix if in 32-bit mode */
220 Size16,
221 /* needs size prefix if in 16-bit mode */
222 Size32,
223 /* needs size prefix if in 64-bit mode */
224 Size64,
225 /* instruction ignores operand size prefix and in Intel mode ignores
226 mnemonic size suffix check. */
227 IgnoreSize,
228 /* default insn size depends on mode */
229 DefaultSize,
230 /* b suffix on instruction illegal */
231 No_bSuf,
232 /* w suffix on instruction illegal */
233 No_wSuf,
234 /* l suffix on instruction illegal */
235 No_lSuf,
236 /* s suffix on instruction illegal */
237 No_sSuf,
238 /* q suffix on instruction illegal */
239 No_qSuf,
240 /* long double suffix on instruction illegal */
241 No_ldSuf,
242 /* instruction needs FWAIT */
243 FWait,
244 /* quick test for string instructions */
245 IsString,
c32fa91d
L
246 /* quick test for lockable instructions */
247 IsLockable,
52a6c1fe
L
248 /* fake an extra reg operand for clr, imul and special register
249 processing for some instructions. */
250 RegKludge,
251 /* The first operand must be xmm0 */
252 FirstXmm0,
253 /* An implicit xmm0 as the first operand */
254 Implicit1stXmm0,
255 /* BYTE is OK in Intel syntax. */
256 ByteOkIntel,
257 /* Convert to DWORD */
258 ToDword,
259 /* Convert to QWORD */
260 ToQword,
261 /* Address prefix changes operand 0 */
262 AddrPrefixOp0,
263 /* opcode is a prefix */
264 IsPrefix,
265 /* instruction has extension in 8 bit imm */
266 ImmExt,
267 /* instruction don't need Rex64 prefix. */
268 NoRex64,
269 /* instruction require Rex64 prefix. */
270 Rex64,
271 /* deprecated fp insn, gets a warning */
272 Ugh,
273 /* insn has VEX prefix:
2bf05e57
L
274 1: 128bit VEX prefix.
275 2: 256bit VEX prefix.
52a6c1fe 276 */
e3c58833
L
277#define VEX128 1
278#define VEX256 2
52a6c1fe
L
279 Vex,
280 /* insn has VEX NDS. Register-only source is encoded in Vex prefix.
281 We use VexNDS on insns with VEX DDS since the register-only source
282 is the second source register. */
283 VexNDS,
284 /* insn has VEX NDD. Register destination is encoded in Vex prefix. */
285 VexNDD,
f88c9eb0
SP
286 /* insn has VEX NDD. Register destination is encoded in Vex prefix
287 and one of the operands can access a memory location. */
288 VexLWP,
52a6c1fe
L
289 /* insn has VEX W0. */
290 VexW0,
291 /* insn has VEX W1. */
292 VexW1,
293 /* insn has VEX 0x0F opcode prefix. */
294 Vex0F,
295 /* insn has VEX 0x0F38 opcode prefix. */
296 Vex0F38,
297 /* insn has VEX 0x0F3A opcode prefix. */
298 Vex0F3A,
5dd85c99
SP
299 /* insn has XOP 0x08 opcode prefix. */
300 XOP08,
f88c9eb0
SP
301 /* insn has XOP 0x09 opcode prefix. */
302 XOP09,
303 /* insn has XOP 0x0A opcode prefix. */
304 XOP0A,
5dd85c99
SP
305 /* insn has VEX prefix with 2 sources. */
306 Vex2Sources,
307 /* insn has VEX prefix with 3 sources. */
52a6c1fe
L
308 Vex3Sources,
309 /* instruction has VEX 8 bit imm */
310 VexImmExt,
311 /* SSE to AVX support required */
312 SSE2AVX,
313 /* No AVX equivalent */
314 NoAVX,
315 /* Compatible with old (<= 2.8.1) versions of gcc */
316 OldGcc,
317 /* AT&T mnemonic. */
318 ATTMnemonic,
319 /* AT&T syntax. */
320 ATTSyntax,
321 /* Intel syntax. */
322 IntelSyntax,
323 /* The last bitfield in i386_opcode_modifier. */
324 Opcode_Modifier_Max
325};
40fb9820
L
326
327typedef struct i386_opcode_modifier
328{
329 unsigned int d:1;
330 unsigned int w:1;
b6169b20 331 unsigned int s:1;
40fb9820
L
332 unsigned int modrm:1;
333 unsigned int shortform:1;
334 unsigned int jump:1;
335 unsigned int jumpdword:1;
336 unsigned int jumpbyte:1;
337 unsigned int jumpintersegment:1;
338 unsigned int floatmf:1;
339 unsigned int floatr:1;
340 unsigned int floatd:1;
341 unsigned int size16:1;
342 unsigned int size32:1;
343 unsigned int size64:1;
344 unsigned int ignoresize:1;
345 unsigned int defaultsize:1;
346 unsigned int no_bsuf:1;
347 unsigned int no_wsuf:1;
348 unsigned int no_lsuf:1;
349 unsigned int no_ssuf:1;
350 unsigned int no_qsuf:1;
7ce189b3 351 unsigned int no_ldsuf:1;
40fb9820
L
352 unsigned int fwait:1;
353 unsigned int isstring:1;
c32fa91d 354 unsigned int islockable:1;
40fb9820 355 unsigned int regkludge:1;
e2ec9d29 356 unsigned int firstxmm0:1;
c0f3af97 357 unsigned int implicit1stxmm0:1;
ca61edf2
L
358 unsigned int byteokintel:1;
359 unsigned int todword:1;
360 unsigned int toqword:1;
361 unsigned int addrprefixop0:1;
40fb9820
L
362 unsigned int isprefix:1;
363 unsigned int immext:1;
364 unsigned int norex64:1;
365 unsigned int rex64:1;
366 unsigned int ugh:1;
2bf05e57 367 unsigned int vex:2;
c0f3af97
L
368 unsigned int vexnds:1;
369 unsigned int vexndd:1;
f88c9eb0 370 unsigned int vexlwp:1;
c0f3af97
L
371 unsigned int vexw0:1;
372 unsigned int vexw1:1;
373 unsigned int vex0f:1;
374 unsigned int vex0f38:1;
375 unsigned int vex0f3a:1;
5dd85c99 376 unsigned int xop08:1;
f88c9eb0
SP
377 unsigned int xop09:1;
378 unsigned int xop0a:1;
5dd85c99 379 unsigned int vex2sources:1;
c0f3af97
L
380 unsigned int vex3sources:1;
381 unsigned int veximmext:1;
382 unsigned int sse2avx:1;
81f8a913 383 unsigned int noavx:1;
1efbbeb4
L
384 unsigned int oldgcc:1;
385 unsigned int attmnemonic:1;
e1d4d893 386 unsigned int attsyntax:1;
5c07affc 387 unsigned int intelsyntax:1;
40fb9820
L
388} i386_opcode_modifier;
389
390/* Position of operand_type bits. */
391
52a6c1fe
L
392enum
393{
394 /* 8bit register */
395 Reg8 = 0,
396 /* 16bit register */
397 Reg16,
398 /* 32bit register */
399 Reg32,
400 /* 64bit register */
401 Reg64,
402 /* Floating pointer stack register */
403 FloatReg,
404 /* MMX register */
405 RegMMX,
406 /* SSE register */
407 RegXMM,
408 /* AVX registers */
409 RegYMM,
410 /* Control register */
411 Control,
412 /* Debug register */
413 Debug,
414 /* Test register */
415 Test,
416 /* 2 bit segment register */
417 SReg2,
418 /* 3 bit segment register */
419 SReg3,
420 /* 1 bit immediate */
421 Imm1,
422 /* 8 bit immediate */
423 Imm8,
424 /* 8 bit immediate sign extended */
425 Imm8S,
426 /* 16 bit immediate */
427 Imm16,
428 /* 32 bit immediate */
429 Imm32,
430 /* 32 bit immediate sign extended */
431 Imm32S,
432 /* 64 bit immediate */
433 Imm64,
434 /* 8bit/16bit/32bit displacements are used in different ways,
435 depending on the instruction. For jumps, they specify the
436 size of the PC relative displacement, for instructions with
437 memory operand, they specify the size of the offset relative
438 to the base register, and for instructions with memory offset
439 such as `mov 1234,%al' they specify the size of the offset
440 relative to the segment base. */
441 /* 8 bit displacement */
442 Disp8,
443 /* 16 bit displacement */
444 Disp16,
445 /* 32 bit displacement */
446 Disp32,
447 /* 32 bit signed displacement */
448 Disp32S,
449 /* 64 bit displacement */
450 Disp64,
451 /* Accumulator %al/%ax/%eax/%rax */
452 Acc,
453 /* Floating pointer top stack register %st(0) */
454 FloatAcc,
455 /* Register which can be used for base or index in memory operand. */
456 BaseIndex,
457 /* Register to hold in/out port addr = dx */
458 InOutPortReg,
459 /* Register to hold shift count = cl */
460 ShiftCount,
461 /* Absolute address for jump. */
462 JumpAbsolute,
463 /* String insn operand with fixed es segment */
464 EsSeg,
465 /* RegMem is for instructions with a modrm byte where the register
466 destination operand should be encoded in the mod and regmem fields.
467 Normally, it will be encoded in the reg field. We add a RegMem
468 flag to the destination register operand to indicate that it should
469 be encoded in the regmem field. */
470 RegMem,
471 /* Memory. */
472 Mem,
473 /* BYTE memory. */
474 Byte,
475 /* WORD memory. 2 byte */
476 Word,
477 /* DWORD memory. 4 byte */
478 Dword,
479 /* FWORD memory. 6 byte */
480 Fword,
481 /* QWORD memory. 8 byte */
482 Qword,
483 /* TBYTE memory. 10 byte */
484 Tbyte,
485 /* XMMWORD memory. */
486 Xmmword,
487 /* YMMWORD memory. */
488 Ymmword,
489 /* Unspecified memory size. */
490 Unspecified,
491 /* Any memory size. */
492 Anysize,
40fb9820 493
52a6c1fe
L
494 /* The last bitfield in i386_operand_type. */
495 OTMax
496};
40fb9820
L
497
498#define OTNumOfUints \
499 (OTMax / sizeof (unsigned int) / CHAR_BIT + 1)
500#define OTNumOfBits \
501 (OTNumOfUints * sizeof (unsigned int) * CHAR_BIT)
502
503/* If you get a compiler error for zero width of the unused field,
504 comment it out. */
8c6c9809 505#define OTUnused (OTMax + 1)
40fb9820
L
506
507typedef union i386_operand_type
508{
509 struct
510 {
511 unsigned int reg8:1;
512 unsigned int reg16:1;
513 unsigned int reg32:1;
514 unsigned int reg64:1;
7d5e4556
L
515 unsigned int floatreg:1;
516 unsigned int regmmx:1;
517 unsigned int regxmm:1;
c0f3af97 518 unsigned int regymm:1;
7d5e4556
L
519 unsigned int control:1;
520 unsigned int debug:1;
521 unsigned int test:1;
522 unsigned int sreg2:1;
523 unsigned int sreg3:1;
524 unsigned int imm1:1;
40fb9820
L
525 unsigned int imm8:1;
526 unsigned int imm8s:1;
527 unsigned int imm16:1;
528 unsigned int imm32:1;
529 unsigned int imm32s:1;
530 unsigned int imm64:1;
40fb9820
L
531 unsigned int disp8:1;
532 unsigned int disp16:1;
533 unsigned int disp32:1;
534 unsigned int disp32s:1;
535 unsigned int disp64:1;
7d5e4556
L
536 unsigned int acc:1;
537 unsigned int floatacc:1;
538 unsigned int baseindex:1;
40fb9820
L
539 unsigned int inoutportreg:1;
540 unsigned int shiftcount:1;
40fb9820 541 unsigned int jumpabsolute:1;
40fb9820
L
542 unsigned int esseg:1;
543 unsigned int regmem:1;
5c07affc 544 unsigned int mem:1;
7d5e4556
L
545 unsigned int byte:1;
546 unsigned int word:1;
547 unsigned int dword:1;
548 unsigned int fword:1;
549 unsigned int qword:1;
550 unsigned int tbyte:1;
551 unsigned int xmmword:1;
c0f3af97 552 unsigned int ymmword:1;
7d5e4556
L
553 unsigned int unspecified:1;
554 unsigned int anysize:1;
40fb9820
L
555#ifdef OTUnused
556 unsigned int unused:(OTNumOfBits - OTUnused);
557#endif
558 } bitfield;
559 unsigned int array[OTNumOfUints];
560} i386_operand_type;
0b1cf022 561
d3ce72d0 562typedef struct insn_template
0b1cf022
L
563{
564 /* instruction name sans width suffix ("mov" for movl insns) */
565 char *name;
566
567 /* how many operands */
568 unsigned int operands;
569
570 /* base_opcode is the fundamental opcode byte without optional
571 prefix(es). */
572 unsigned int base_opcode;
573#define Opcode_D 0x2 /* Direction bit:
574 set if Reg --> Regmem;
575 unset if Regmem --> Reg. */
576#define Opcode_FloatR 0x8 /* Bit to swap src/dest for float insns. */
577#define Opcode_FloatD 0x400 /* Direction bit for float insns. */
578
579 /* extension_opcode is the 3 bit extension for group <n> insns.
580 This field is also used to store the 8-bit opcode suffix for the
581 AMD 3DNow! instructions.
85f10a01 582 If this template has no extension opcode (the usual case) use None
c1e679ec 583 Instructions */
0b1cf022
L
584 unsigned int extension_opcode;
585#define None 0xffff /* If no extension_opcode is possible. */
586
4dffcebc
L
587 /* Opcode length. */
588 unsigned char opcode_length;
589
0b1cf022 590 /* cpu feature flags */
40fb9820 591 i386_cpu_flags cpu_flags;
0b1cf022
L
592
593 /* the bits in opcode_modifier are used to generate the final opcode from
594 the base_opcode. These bits also are used to detect alternate forms of
595 the same instruction */
40fb9820 596 i386_opcode_modifier opcode_modifier;
0b1cf022
L
597
598 /* operand_types[i] describes the type of operand i. This is made
599 by OR'ing together all of the possible type masks. (e.g.
600 'operand_types[i] = Reg|Imm' specifies that operand i can be
601 either a register or an immediate operand. */
40fb9820 602 i386_operand_type operand_types[MAX_OPERANDS];
0b1cf022 603}
d3ce72d0 604insn_template;
0b1cf022 605
d3ce72d0 606extern const insn_template i386_optab[];
0b1cf022
L
607
608/* these are for register name --> number & type hash lookup */
609typedef struct
610{
611 char *reg_name;
40fb9820 612 i386_operand_type reg_type;
a60de03c 613 unsigned char reg_flags;
0b1cf022
L
614#define RegRex 0x1 /* Extended register. */
615#define RegRex64 0x2 /* Extended 8 bit register. */
a60de03c
JB
616 unsigned char reg_num;
617#define RegRip ((unsigned char ) ~0)
9a04903e 618#define RegEip (RegRip - 1)
db51cc60 619/* EIZ and RIZ are fake index registers. */
9a04903e 620#define RegEiz (RegEip - 1)
db51cc60 621#define RegRiz (RegEiz - 1)
b7240065
JB
622/* FLAT is a fake segment register (Intel mode). */
623#define RegFlat ((unsigned char) ~0)
a60de03c
JB
624 signed char dw2_regnum[2];
625#define Dw2Inval (-1)
0b1cf022
L
626}
627reg_entry;
628
629/* Entries in i386_regtab. */
630#define REGNAM_AL 1
631#define REGNAM_AX 25
632#define REGNAM_EAX 41
633
634extern const reg_entry i386_regtab[];
c3fe08fa 635extern const unsigned int i386_regtab_size;
0b1cf022
L
636
637typedef struct
638{
639 char *seg_name;
640 unsigned int seg_prefix;
641}
642seg_entry;
643
644extern const seg_entry cs;
645extern const seg_entry ds;
646extern const seg_entry ss;
647extern const seg_entry es;
648extern const seg_entry fs;
649extern const seg_entry gs;
This page took 0.216332 seconds and 4 git commands to generate.