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