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