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