]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - opcodes/i386-opc.h
Automatic date update in version.in
[thirdparty/binutils-gdb.git] / opcodes / i386-opc.h
CommitLineData
0b1cf022 1/* Declarations for Intel 80386 opcode table
fd67aa11 2 Copyright (C) 2007-2024 Free Software Foundation, Inc.
0b1cf022 3
9b201bb5 4 This file is part of the GNU opcodes library.
0b1cf022 5
9b201bb5 6 This library is free software; you can redistribute it and/or modify
0b1cf022 7 it under the terms of the GNU General Public License as published by
9b201bb5 8 the Free Software Foundation; either version 3, or (at your option)
0b1cf022
L
9 any later version.
10
9b201bb5
NC
11 It is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
14 License for more details.
0b1cf022
L
15
16 You should have received a copy of the GNU General Public License
17 along with GAS; see the file COPYING. If not, write to the Free
18 Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
19 02110-1301, USA. */
20
21#include "opcode/i386.h"
40fb9820 22#include <limits.h>
40fb9820
L
23#ifndef CHAR_BIT
24#define CHAR_BIT 8
25#endif
26
27/* Position of cpu flags bitfiled. */
28
734dfd1c 29enum i386_cpu
52a6c1fe
L
30{
31 /* i186 or better required */
32 Cpu186 = 0,
33 /* i286 or better required */
34 Cpu286,
35 /* i386 or better required */
36 Cpu386,
37 /* i486 or better required */
38 Cpu486,
39 /* i585 or better required */
40 Cpu586,
41 /* i686 or better required */
42 Cpu686,
d871f3f4
L
43 /* CMOV Instruction support required */
44 CpuCMOV,
45 /* FXSR Instruction support required */
46 CpuFXSR,
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,
52a6c1fe
L
55 /* i686 and floating point support required */
56 Cpu687,
57 /* SSE3 and floating point support required */
58 CpuFISTTP,
59 /* MMX support required */
60 CpuMMX,
61 /* SSE support required */
62 CpuSSE,
63 /* SSE2 support required */
64 CpuSSE2,
52a6c1fe
L
65 /* SSE3 support required */
66 CpuSSE3,
67 /* VIA PadLock required */
68 CpuPadLock,
69 /* AMD Secure Virtual Machine Ext-s required */
70 CpuSVME,
71 /* VMX Instructions required */
72 CpuVMX,
73 /* SMX Instructions required */
74 CpuSMX,
75 /* SSSE3 support required */
76 CpuSSSE3,
77 /* SSE4a support required */
78 CpuSSE4a,
272a84b1
L
79 /* LZCNT support required */
80 CpuLZCNT,
81 /* POPCNT support required */
82 CpuPOPCNT,
cafa5ef7
JB
83 /* MONITOR support required */
84 CpuMONITOR,
52a6c1fe
L
85 /* SSE4.1 support required */
86 CpuSSE4_1,
87 /* SSE4.2 support required */
88 CpuSSE4_2,
6c30d220
L
89 /* AVX2 support required */
90 CpuAVX2,
43234a1e
L
91 /* Intel AVX-512 Conflict Detection Instructions support required */
92 CpuAVX512CD,
93 /* Intel AVX-512 Exponential and Reciprocal Instructions support
94 required */
95 CpuAVX512ER,
96 /* Intel AVX-512 Prefetch Instructions support required */
97 CpuAVX512PF,
90a915bf
IT
98 /* Intel AVX-512 DQ Instructions support required. */
99 CpuAVX512DQ,
1ba585e8
IT
100 /* Intel AVX-512 BW Instructions support required. */
101 CpuAVX512BW,
7b6d09fb
L
102 /* Intel IAMCU support required */
103 CpuIAMCU,
b49dfb4a 104 /* Xsave/xrstor New Instructions support required */
52a6c1fe 105 CpuXsave,
b49dfb4a 106 /* Xsaveopt New Instructions support required */
c7b8aa3a 107 CpuXsaveopt,
52a6c1fe
L
108 /* AES support required */
109 CpuAES,
d54678eb
JB
110 /* PCLMULQDQ support required */
111 CpuPCLMULQDQ,
52a6c1fe
L
112 /* FMA support required */
113 CpuFMA,
114 /* FMA4 support required */
115 CpuFMA4,
5dd85c99
SP
116 /* XOP support required */
117 CpuXOP,
f88c9eb0
SP
118 /* LWP support required */
119 CpuLWP,
f12dc422
L
120 /* BMI support required */
121 CpuBMI,
2a2a0f38
QN
122 /* TBM support required */
123 CpuTBM,
b49dfb4a 124 /* MOVBE Instruction support required */
52a6c1fe 125 CpuMovbe,
60aa667e
L
126 /* CMPXCHG16B instruction support required. */
127 CpuCX16,
c3bb24f5
JB
128 /* LAHF/SAHF instruction support required (in 64-bit mode). */
129 CpuLAHF_SAHF,
52a6c1fe
L
130 /* EPT Instructions required */
131 CpuEPT,
b49dfb4a 132 /* RDTSCP Instruction support required */
52a6c1fe 133 CpuRdtscp,
77321f53 134 /* FSGSBASE Instructions required */
c7b8aa3a
L
135 CpuFSGSBase,
136 /* RDRND Instructions required */
137 CpuRdRnd,
138 /* F16C Instructions required */
139 CpuF16C,
6c30d220
L
140 /* Intel BMI2 support required */
141 CpuBMI2,
42164a71
L
142 /* RTM support required */
143 CpuRTM,
6c30d220
L
144 /* INVPCID Instructions required */
145 CpuINVPCID,
8729a6f6
L
146 /* VMFUNC Instruction required */
147 CpuVMFUNC,
7e8b059b
L
148 /* Intel MPX Instructions required */
149 CpuMPX,
e2e1fcde
L
150 /* RDRSEED instruction required. */
151 CpuRDSEED,
152 /* Multi-presisionn add-carry instructions are required. */
153 CpuADX,
7b458c12 154 /* Supports prefetchw and prefetch instructions. */
e2e1fcde 155 CpuPRFCHW,
5c111e37
L
156 /* SMAP instructions required. */
157 CpuSMAP,
a0046408
L
158 /* SHA instructions required. */
159 CpuSHA,
b5c37946
SJ
160 /* SHA512 instructions required. */
161 CpuSHA512,
162 /* SM3 instructions required. */
163 CpuSM3,
164 /* SM4 instructions required. */
165 CpuSM4,
963f3586
IT
166 /* CLFLUSHOPT instruction required */
167 CpuClflushOpt,
168 /* XSAVES/XRSTORS instruction required */
169 CpuXSAVES,
170 /* XSAVEC instruction required */
171 CpuXSAVEC,
dcf893b5
IT
172 /* PREFETCHWT1 instruction required */
173 CpuPREFETCHWT1,
2cf200a4
IT
174 /* SE1 instruction required */
175 CpuSE1,
c5e7287a
IT
176 /* CLWB instruction required */
177 CpuCLWB,
2cc1b5aa
IT
178 /* Intel AVX-512 IFMA Instructions support required. */
179 CpuAVX512IFMA,
14f195c9
IT
180 /* Intel AVX-512 VBMI Instructions support required. */
181 CpuAVX512VBMI,
920d2ddc
IT
182 /* Intel AVX-512 4FMAPS Instructions support required. */
183 CpuAVX512_4FMAPS,
47acf0bd
IT
184 /* Intel AVX-512 4VNNIW Instructions support required. */
185 CpuAVX512_4VNNIW,
620214f7
IT
186 /* Intel AVX-512 VPOPCNTDQ Instructions support required. */
187 CpuAVX512_VPOPCNTDQ,
53467f57
IT
188 /* Intel AVX-512 VBMI2 Instructions support required. */
189 CpuAVX512_VBMI2,
8cfcb765
IT
190 /* Intel AVX-512 VNNI Instructions support required. */
191 CpuAVX512_VNNI,
ee6872be
IT
192 /* Intel AVX-512 BITALG Instructions support required. */
193 CpuAVX512_BITALG,
d6aab7a1
XG
194 /* Intel AVX-512 BF16 Instructions support required. */
195 CpuAVX512_BF16,
9186c494
L
196 /* Intel AVX-512 VP2INTERSECT Instructions support required. */
197 CpuAVX512_VP2INTERSECT,
81d54bb7
CL
198 /* TDX Instructions support required. */
199 CpuTDX,
58bf9b6a
L
200 /* Intel AVX VNNI Instructions support required. */
201 CpuAVX_VNNI,
0cc78721
CL
202 /* Intel AVX-512 FP16 Instructions support required. */
203 CpuAVX512_FP16,
ef07be45
CL
204 /* PREFETCHI instruction required */
205 CpuPREFETCHI,
4321af3e
HW
206 /* Intel AVX IFMA Instructions support required. */
207 CpuAVX_IFMA,
23ae61ad
CL
208 /* Intel AVX VNNI-INT8 Instructions support required. */
209 CpuAVX_VNNI_INT8,
b5c37946
SJ
210 /* Intel AVX VNNI-INT16 Instructions support required. */
211 CpuAVX_VNNI_INT16,
a93e3234
HJ
212 /* Intel CMPccXADD instructions support required. */
213 CpuCMPCCXADD,
941f0833
HL
214 /* Intel WRMSRNS Instructions support required */
215 CpuWRMSRNS,
2188d6ea
HL
216 /* Intel MSRLIST Instructions support required. */
217 CpuMSRLIST,
01d8ce74 218 /* Intel AVX NE CONVERT Instructions support required. */
219 CpuAVX_NE_CONVERT,
b06311ad
KL
220 /* Intel RAO INT Instructions support required. */
221 CpuRAO_INT,
c88ed92f
ZJ
222 /* fred instruction required */
223 CpuFRED,
224 /* lkgs instruction required */
225 CpuLKGS,
8170af78
HL
226 /* Intel USER_MSR Instruction support required. */
227 CpuUSER_MSR,
9916071f
AP
228 /* mwaitx instruction required */
229 CpuMWAITX,
43e65147 230 /* Clzero instruction required */
029f3522 231 CpuCLZERO,
8eab4136
L
232 /* OSPKE instruction required */
233 CpuOSPKE,
8bc52696
AF
234 /* RDPID instruction required */
235 CpuRDPID,
6b40c462
L
236 /* PTWRITE instruction required */
237 CpuPTWRITE,
d777820b
IT
238 /* CET instructions support required */
239 CpuIBT,
240 CpuSHSTK,
260cd341
LC
241 /* AMX-INT8 instructions required */
242 CpuAMX_INT8,
243 /* AMX-BF16 instructions required */
244 CpuAMX_BF16,
68830fba
CL
245 /* AMX-FP16 instructions required */
246 CpuAMX_FP16,
d100d8c1
HJ
247 /* AMX-COMPLEX instructions required. */
248 CpuAMX_COMPLEX,
260cd341
LC
249 /* AMX-TILE instructions required */
250 CpuAMX_TILE,
48521003
IT
251 /* GFNI instructions required */
252 CpuGFNI,
8dcf1fad
IT
253 /* VAES instructions required */
254 CpuVAES,
ff1982d5
IT
255 /* VPCLMULQDQ instructions required */
256 CpuVPCLMULQDQ,
3233d7d0
IT
257 /* WBNOINVD instructions required */
258 CpuWBNOINVD,
be3a8dca
IT
259 /* PCONFIG instructions required */
260 CpuPCONFIG,
b5c37946
SJ
261 /* PBNDKB instructions required. */
262 CpuPBNDKB,
de89d0a3
IT
263 /* WAITPKG instructions required */
264 CpuWAITPKG,
f64c42a9
LC
265 /* UINTR instructions required */
266 CpuUINTR,
c48935d7
IT
267 /* CLDEMOTE instruction required */
268 CpuCLDEMOTE,
c0a30a9f
L
269 /* MOVDIRI instruction support required */
270 CpuMOVDIRI,
271 /* MOVDIRR64B instruction required */
272 CpuMOVDIR64B,
5d79adc4
L
273 /* ENQCMD instruction required */
274 CpuENQCMD,
4b27d27c
L
275 /* SERIALIZE instruction required */
276 CpuSERIALIZE,
142861df
JB
277 /* RDPRU instruction required */
278 CpuRDPRU,
279 /* MCOMMIT instruction required */
280 CpuMCOMMIT,
a847e322
JB
281 /* SEV-ES instruction(s) required */
282 CpuSEV_ES,
bb651e8b
CL
283 /* TSXLDTRK instruction required */
284 CpuTSXLDTRK,
c4694f17
TG
285 /* KL instruction support required */
286 CpuKL,
287 /* WideKL instruction support required */
288 CpuWideKL,
c1fa250a
LC
289 /* HRESET instruction required */
290 CpuHRESET,
646cc3e0
GG
291 /* INVLPGB instructions required */
292 CpuINVLPGB,
293 /* TLBSYNC instructions required */
294 CpuTLBSYNC,
295 /* SNP instructions required */
296 CpuSNP,
b0e8fa7f
TJ
297 /* RMPQUERY instruction required */
298 CpuRMPQUERY,
13ed231a 299
734dfd1c
JB
300 /* NOTE: These items, which can be combined with other ISA flags above, need
301 to remain second to last and in sync with CPU_FLAGS_COMMON. */
13ed231a 302
734dfd1c
JB
303 /* i287 support required */
304 Cpu287,
305 CpuAttrEnums = Cpu287,
306 /* i387 support required */
307 Cpu387,
308 /* 3dnow! support required */
309 Cpu3dnow,
310 /* 3dnow! Extensions support required */
311 Cpu3dnowA,
da5f9eb4
JB
312 /* 64bit support required */
313 Cpu64,
734dfd1c
JB
314 /* AVX support required */
315 CpuAVX,
316 /* HLE support required */
317 CpuHLE,
318 /* Intel AVX-512 Foundation Instructions support required */
319 CpuAVX512F,
320 /* Intel AVX-512 VL Instructions support required. */
321 CpuAVX512VL,
80d61d8d
CL
322 /* Intel APX_F Instructions support required. */
323 CpuAPX_F,
52a6c1fe
L
324 /* Not supported in the 64bit mode */
325 CpuNo64,
734dfd1c
JB
326
327 /* NOTE: This item needs to remain last. */
328
52a6c1fe 329 /* The last bitfield in i386_cpu_flags. */
e92bae62 330 CpuMax = CpuNo64
52a6c1fe 331};
40fb9820
L
332
333#define CpuNumOfUints \
334 (CpuMax / sizeof (unsigned int) / CHAR_BIT + 1)
335#define CpuNumOfBits \
336 (CpuNumOfUints * sizeof (unsigned int) * CHAR_BIT)
337
734dfd1c
JB
338#define CpuIsaBits 8
339#define CpuAttrNumOfUints \
340 ((CpuIsaBits + CpuMax - CpuAttrEnums) / sizeof (unsigned int) / CHAR_BIT + 1)
341#define CpuAttrNumOfBits \
342 (CpuAttrNumOfUints * sizeof (unsigned int) * CHAR_BIT)
343
344/* If you get a compiler error for zero width of an unused field,
345 comment the respective one out. */
a93e3234 346#define CpuUnused (CpuMax + 1)
734dfd1c
JB
347#define CpuAttrUnused (CpuIsaBits + CpuMax + 1 - CpuAttrEnums)
348
349#define CPU_FLAGS_COMMON \
350 unsigned int cpu287:1, \
351 cpu387:1, \
352 cpu3dnow:1, \
353 cpu3dnowa:1, \
da5f9eb4 354 cpu64:1, \
734dfd1c
JB
355 cpuavx:1, \
356 cpuhle:1, \
357 cpuavx512f:1, \
358 cpuavx512vl:1, \
80d61d8d 359 cpuapx_f:1, \
da5f9eb4 360 /* NOTE: This field needs to remain last. */ \
734dfd1c
JB
361 cpuno64:1
362
363typedef union i386_cpu_attr
364{
365 struct
366 {
367 unsigned int isa:CpuIsaBits;
368 CPU_FLAGS_COMMON;
369#ifdef CpuAttrUnused
370 unsigned int unused:(CpuAttrNumOfBits - CpuAttrUnused);
371#endif
372 } bitfield;
373 unsigned int array[CpuAttrNumOfUints];
374} i386_cpu_attr;
53467f57 375
40fb9820
L
376/* We can check if an instruction is available with array instead
377 of bitfield. */
378typedef union i386_cpu_flags
379{
380 struct
381 {
382 unsigned int cpui186:1;
383 unsigned int cpui286:1;
384 unsigned int cpui386:1;
385 unsigned int cpui486:1;
386 unsigned int cpui586:1;
387 unsigned int cpui686:1;
d871f3f4
L
388 unsigned int cpucmov:1;
389 unsigned int cpufxsr:1;
bd5295b2 390 unsigned int cpuclflush:1;
22109423 391 unsigned int cpunop:1;
bd5295b2 392 unsigned int cpusyscall:1;
309d3373 393 unsigned int cpu8087:1;
309d3373
JB
394 unsigned int cpu687:1;
395 unsigned int cpufisttp:1;
40fb9820 396 unsigned int cpummx:1;
40fb9820
L
397 unsigned int cpusse:1;
398 unsigned int cpusse2:1;
40fb9820
L
399 unsigned int cpusse3:1;
400 unsigned int cpupadlock:1;
401 unsigned int cpusvme:1;
402 unsigned int cpuvmx:1;
47dd174c 403 unsigned int cpusmx:1;
40fb9820
L
404 unsigned int cpussse3:1;
405 unsigned int cpusse4a:1;
272a84b1
L
406 unsigned int cpulzcnt:1;
407 unsigned int cpupopcnt:1;
cafa5ef7 408 unsigned int cpumonitor:1;
40fb9820
L
409 unsigned int cpusse4_1:1;
410 unsigned int cpusse4_2:1;
6c30d220 411 unsigned int cpuavx2:1;
43234a1e
L
412 unsigned int cpuavx512cd:1;
413 unsigned int cpuavx512er:1;
414 unsigned int cpuavx512pf:1;
90a915bf 415 unsigned int cpuavx512dq:1;
1ba585e8 416 unsigned int cpuavx512bw:1;
7b6d09fb 417 unsigned int cpuiamcu:1;
475a2301 418 unsigned int cpuxsave:1;
c7b8aa3a 419 unsigned int cpuxsaveopt:1;
c0f3af97 420 unsigned int cpuaes:1;
d54678eb 421 unsigned int cpupclmulqdq:1;
c0f3af97 422 unsigned int cpufma:1;
922d8de8 423 unsigned int cpufma4:1;
5dd85c99 424 unsigned int cpuxop:1;
f88c9eb0 425 unsigned int cpulwp:1;
f12dc422 426 unsigned int cpubmi:1;
2a2a0f38 427 unsigned int cputbm:1;
f1f8f695 428 unsigned int cpumovbe:1;
60aa667e 429 unsigned int cpucx16:1;
c3bb24f5 430 unsigned int cpulahf_sahf:1;
f1f8f695 431 unsigned int cpuept:1;
1b7f3fb0 432 unsigned int cpurdtscp:1;
c7b8aa3a
L
433 unsigned int cpufsgsbase:1;
434 unsigned int cpurdrnd:1;
435 unsigned int cpuf16c:1;
6c30d220 436 unsigned int cpubmi2:1;
42164a71 437 unsigned int cpurtm:1;
6c30d220 438 unsigned int cpuinvpcid:1;
8729a6f6 439 unsigned int cpuvmfunc:1;
7e8b059b 440 unsigned int cpumpx:1;
e2e1fcde
L
441 unsigned int cpurdseed:1;
442 unsigned int cpuadx:1;
443 unsigned int cpuprfchw:1;
5c111e37 444 unsigned int cpusmap:1;
a0046408 445 unsigned int cpusha:1;
b5c37946
SJ
446 unsigned int cpusha512:1;
447 unsigned int cpusm3:1;
448 unsigned int cpusm4:1;
963f3586
IT
449 unsigned int cpuclflushopt:1;
450 unsigned int cpuxsaves:1;
451 unsigned int cpuxsavec:1;
dcf893b5 452 unsigned int cpuprefetchwt1:1;
2cf200a4 453 unsigned int cpuse1:1;
c5e7287a 454 unsigned int cpuclwb:1;
2cc1b5aa 455 unsigned int cpuavx512ifma:1;
14f195c9 456 unsigned int cpuavx512vbmi:1;
920d2ddc 457 unsigned int cpuavx512_4fmaps:1;
47acf0bd 458 unsigned int cpuavx512_4vnniw:1;
620214f7 459 unsigned int cpuavx512_vpopcntdq:1;
53467f57 460 unsigned int cpuavx512_vbmi2:1;
8cfcb765 461 unsigned int cpuavx512_vnni:1;
ee6872be 462 unsigned int cpuavx512_bitalg:1;
d6aab7a1 463 unsigned int cpuavx512_bf16:1;
9186c494 464 unsigned int cpuavx512_vp2intersect:1;
81d54bb7 465 unsigned int cputdx:1;
58bf9b6a 466 unsigned int cpuavx_vnni:1;
0cc78721 467 unsigned int cpuavx512_fp16:1;
ef07be45 468 unsigned int cpuprefetchi:1;
4321af3e 469 unsigned int cpuavx_ifma:1;
23ae61ad 470 unsigned int cpuavx_vnni_int8:1;
b5c37946 471 unsigned int cpuavx_vnni_int16:1;
a93e3234 472 unsigned int cpucmpccxadd:1;
941f0833 473 unsigned int cpuwrmsrns:1;
2188d6ea 474 unsigned int cpumsrlist:1;
01d8ce74 475 unsigned int cpuavx_ne_convert:1;
b06311ad 476 unsigned int cpurao_int:1;
c88ed92f
ZJ
477 unsigned int cpufred:1;
478 unsigned int cpulkgs:1;
8170af78 479 unsigned int cpuuser_msr:1;
9916071f 480 unsigned int cpumwaitx:1;
029f3522 481 unsigned int cpuclzero:1;
8eab4136 482 unsigned int cpuospke:1;
8bc52696 483 unsigned int cpurdpid:1;
6b40c462 484 unsigned int cpuptwrite:1;
d777820b
IT
485 unsigned int cpuibt:1;
486 unsigned int cpushstk:1;
260cd341
LC
487 unsigned int cpuamx_int8:1;
488 unsigned int cpuamx_bf16:1;
68830fba 489 unsigned int cpuamx_fp16:1;
d100d8c1 490 unsigned int cpuamx_complex:1;
260cd341 491 unsigned int cpuamx_tile:1;
48521003 492 unsigned int cpugfni:1;
8dcf1fad 493 unsigned int cpuvaes:1;
ff1982d5 494 unsigned int cpuvpclmulqdq:1;
3233d7d0 495 unsigned int cpuwbnoinvd:1;
be3a8dca 496 unsigned int cpupconfig:1;
b5c37946 497 unsigned int cpupbndkb:1;
de89d0a3 498 unsigned int cpuwaitpkg:1;
f64c42a9 499 unsigned int cpuuintr:1;
c48935d7 500 unsigned int cpucldemote:1;
c0a30a9f
L
501 unsigned int cpumovdiri:1;
502 unsigned int cpumovdir64b:1;
5d79adc4 503 unsigned int cpuenqcmd:1;
4b27d27c 504 unsigned int cpuserialize:1;
142861df
JB
505 unsigned int cpurdpru:1;
506 unsigned int cpumcommit:1;
a847e322 507 unsigned int cpusev_es:1;
bb651e8b 508 unsigned int cputsxldtrk:1;
c4694f17
TG
509 unsigned int cpukl:1;
510 unsigned int cpuwidekl:1;
c1fa250a 511 unsigned int cpuhreset:1;
646cc3e0
GG
512 unsigned int cpuinvlpgb:1;
513 unsigned int cputlbsync:1;
514 unsigned int cpusnp:1;
b0e8fa7f 515 unsigned int cpurmpquery:1;
734dfd1c 516 CPU_FLAGS_COMMON;
40fb9820
L
517#ifdef CpuUnused
518 unsigned int unused:(CpuNumOfBits - CpuUnused);
519#endif
520 } bitfield;
521 unsigned int array[CpuNumOfUints];
522} i386_cpu_flags;
523
524/* Position of opcode_modifier bits. */
525
52a6c1fe
L
526enum
527{
528 /* has direction bit. */
529 D = 0,
507916b8
JB
530 /* set if operands can be both bytes and words/dwords/qwords, encoded the
531 canonical way; the base_opcode field should hold the encoding for byte
532 operands */
52a6c1fe 533 W,
86fa6981
L
534 /* load form instruction. Must be placed before store form. */
535 Load,
52a6c1fe
L
536 /* insn has a modrm byte. */
537 Modrm,
0cfa3eb3
JB
538 /* special case for jump insns; value has to be 1 */
539#define JUMP 1
52a6c1fe 540 /* call and jump */
0cfa3eb3 541#define JUMP_DWORD 2
52a6c1fe 542 /* loop and jecxz */
0cfa3eb3 543#define JUMP_BYTE 3
52a6c1fe 544 /* special case for intersegment leaps/calls */
0cfa3eb3 545#define JUMP_INTERSEGMENT 4
6f2f06be 546 /* absolute address for jump */
0cfa3eb3
JB
547#define JUMP_ABSOLUTE 5
548 Jump,
52a6c1fe
L
549 /* FP insn memory format bit, sized by 0x4 */
550 FloatMF,
52a6c1fe 551 /* needs size prefix if in 32-bit mode */
673fe0f0 552#define SIZE16 1
52a6c1fe 553 /* needs size prefix if in 16-bit mode */
673fe0f0 554#define SIZE32 2
52a6c1fe 555 /* needs size prefix if in 64-bit mode */
673fe0f0
JB
556#define SIZE64 3
557 Size,
9c19e9ec
JB
558 /* Check that operand sizes match. */
559 CheckOperandSize,
255571cd
JB
560 /* any memory size */
561#define ANY_SIZE 1
562 /* fake an extra reg operand for clr, imul and special register
563 processing for some instructions. */
564#define REG_KLUDGE 2
565 /* deprecated fp insn, gets a warning */
566#define UGH 3
567 /* An implicit xmm0 as the first operand */
568#define IMPLICIT_1ST_XMM0 4
569 /* The second operand must be a vector register, {x,y,z}mmN, where N is a multiple of 4.
570 It implicitly denotes the register group of {x,y,z}mmN - {x,y,z}mm(N + 3).
571 */
572#define IMPLICIT_QUAD_GROUP 5
255571cd 573 /* Default mask isn't allowed. */
0820c9f5 574#define NO_DEFAULT_MASK 6
255571cd 575 /* Address prefix changes register operand */
0820c9f5 576#define ADDR_PREFIX_OP_REG 7
0cc78721
CL
577 /* Instrucion requires that destination must be distinct from source
578 registers. */
0820c9f5 579#define DISTINCT_DEST 8
448cf9e6 580 /* Instruction updates stack pointer implicitly. */
0820c9f5 581#define IMPLICIT_STACK_OP 9
255571cd 582 OperandConstraint,
52a6c1fe
L
583 /* instruction ignores operand size prefix and in Intel mode ignores
584 mnemonic size suffix check. */
3cd7f3e3 585#define IGNORESIZE 1
52a6c1fe 586 /* default insn size depends on mode */
3cd7f3e3
L
587#define DEFAULTSIZE 2
588 MnemonicSize,
52a6c1fe
L
589 /* b suffix on instruction illegal */
590 No_bSuf,
591 /* w suffix on instruction illegal */
592 No_wSuf,
593 /* l suffix on instruction illegal */
594 No_lSuf,
595 /* s suffix on instruction illegal */
596 No_sSuf,
597 /* q suffix on instruction illegal */
598 No_qSuf,
52a6c1fe
L
599 /* instruction needs FWAIT */
600 FWait,
51c8edf6
JB
601 /* IsString provides for a quick test for string instructions, and
602 its actual value also indicates which of the operands (if any)
603 requires use of the %es segment. */
604#define IS_STRING_ES_OP0 2
605#define IS_STRING_ES_OP1 3
52a6c1fe 606 IsString,
dfd69174
JB
607 /* RegMem is for instructions with a modrm byte where the register
608 destination operand should be encoded in the mod and regmem fields.
609 Normally, it will be encoded in the reg field. We add a RegMem
610 flag to indicate that it should be encoded in the regmem field. */
611 RegMem,
7e8b059b
L
612 /* quick test if branch instruction is MPX supported */
613 BNDPrefixOk,
742732c7
JB
614#define PrefixNone 0
615#define PrefixRep 1
616#define PrefixHLERelease 2 /* Okay with an XRELEASE (0xf3) prefix. */
617#define PrefixNoTrack 3
618 /* Prefixes implying "LOCK okay" must come after Lock. All others have
619 to come before. */
620#define PrefixLock 4
621#define PrefixHLELock 5 /* Okay with a LOCK prefix. */
622#define PrefixHLEAny 6 /* Okay with or without a LOCK prefix. */
623 PrefixOk,
52a6c1fe
L
624 /* opcode is a prefix */
625 IsPrefix,
626 /* instruction has extension in 8 bit imm */
627 ImmExt,
628 /* instruction don't need Rex64 prefix. */
629 NoRex64,
52a6c1fe 630 /* insn has VEX prefix:
10c17abd 631 1: 128bit VEX prefix (or operand dependent).
2bf05e57 632 2: 256bit VEX prefix.
712366da 633 3: Scalar VEX prefix.
52a6c1fe 634 */
712366da
L
635#define VEX128 1
636#define VEX256 2
637#define VEXScalar 3
52a6c1fe 638 Vex,
2426c15f 639 /* How to encode VEX.vvvv:
f2a3a881 640 1: VEX.vvvv encodes the src1 register operand.
0820c9f5 641 2: VEX.vvvv encodes the src2 register operand.
f2a3a881 642 3: VEX.vvvv encodes the dest register operand.
2426c15f 643 */
f2a3a881 644#define VexVVVV_SRC1 1
0820c9f5 645#define VexVVVV_SRC2 2
f2a3a881
CL
646#define VexVVVV_DST 3
647
2426c15f 648 VexVVVV,
1ef99a7b
L
649 /* How the VEX.W bit is used:
650 0: Set by the REX.W bit.
651 1: VEX.W0. Should always be 0.
652 2: VEX.W1. Should always be 1.
6865c043 653 3: VEX.WIG. The VEX.W bit is ignored.
1ef99a7b
L
654 */
655#define VEXW0 1
656#define VEXW1 2
6865c043 657#define VEXWIG 3
1ef99a7b 658 VexW,
b933fa4b
JB
659 /* Opcode prefix (values chosen to be usable directly in
660 VEX/XOP/EVEX pp fields):
7b47a312
L
661 0: None
662 1: Add 0x66 opcode prefix.
b933fa4b
JB
663 2: Add 0xf3 opcode prefix.
664 3: Add 0xf2 opcode prefix.
7b47a312
L
665 */
666#define PREFIX_NONE 0
667#define PREFIX_0X66 1
b933fa4b
JB
668#define PREFIX_0XF3 2
669#define PREFIX_0XF2 3
7b47a312 670 OpcodePrefix,
63112cd6 671 /* Instruction with a mandatory SIB byte:
6c30d220
L
672 1: 128bit vector register.
673 2: 256bit vector register.
43234a1e 674 3: 512bit vector register.
6c30d220 675 */
63112cd6
L
676#define VECSIB128 1
677#define VECSIB256 2
678#define VECSIB512 3
260cd341 679#define SIBMEM 4
63112cd6 680 SIB,
260cd341 681
52a6c1fe
L
682 /* SSE to AVX support required */
683 SSE2AVX,
43234a1e
L
684
685 /* insn has EVEX prefix:
686 1: 512bit EVEX prefix.
687 2: 128bit EVEX prefix.
688 3: 256bit EVEX prefix.
689 4: Length-ignored (LIG) EVEX prefix.
e771e7c9 690 5: Length determined from actual operands.
d0c2e3ec 691 6: L'L = 3 (reserved, .insn only)
43234a1e
L
692 */
693#define EVEX512 1
694#define EVEX128 2
695#define EVEX256 3
696#define EVEXLIG 4
e771e7c9 697#define EVEXDYN 5
d0c2e3ec 698#define EVEX_L3 6
43234a1e
L
699 EVex,
700
b1c79256 701 /* AVX512 masking support */
43234a1e
L
702 Masking,
703
4a1b91ea
L
704 /* AVX512 broadcast support. The number of bytes to broadcast is
705 1 << (Broadcast - 1):
706 1: Byte broadcast.
707 2: Word broadcast.
708 3: Dword broadcast.
709 4: Qword broadcast.
710 */
711#define BYTE_BROADCAST 1
712#define WORD_BROADCAST 2
713#define DWORD_BROADCAST 3
714#define QWORD_BROADCAST 4
43234a1e
L
715 Broadcast,
716
717 /* Static rounding control is supported. */
718 StaticRounding,
719
720 /* Supress All Exceptions is supported. */
721 SAE,
722
7091c612
JB
723 /* Compressed Disp8*N attribute. */
724#define DISP8_SHIFT_VL 7
43234a1e
L
725 Disp8MemShift,
726
b6f8c7c4
L
727 /* Support encoding optimization. */
728 Optimize,
729
35266cb1
JB
730 /* Language dialect. NOTE: Order matters! */
731#define INTEL_SYNTAX 1
732#define ATT_SYNTAX 2
733#define ATT_MNEMONIC 3
734 Dialect,
735
b83021de
JB
736 /* Mnemonic suffix permitted in Intel syntax. */
737 IntelSuffix,
738
4b5aaf5f
L
739 /* ISA64: Don't change the order without other code adjustments.
740 0: Common to AMD64 and Intel64.
741 1: AMD64.
742 2: Intel64.
743 3: Only in Intel64.
744 */
745#define AMD64 1
746#define INTEL64 2
747#define INTEL64ONLY 3
748 ISA64,
80d61d8d
CL
749
750 /* egprs (r16-r31) on instruction illegal. We also use it to judge
751 whether the instruction supports pseudo-prefix {rex2}. */
752 NoEgpr,
753
6177c84d
CL
754 /* No CSPAZO flags update indication. */
755 NF,
756
3037cefe
IB
757 /* Instrucion requires REX2 prefix. */
758 Rex2,
759
bbe8d019
CL
760 /* Support zero upper */
761 ZU,
762
52a6c1fe 763 /* The last bitfield in i386_opcode_modifier. */
1d942ae9 764 Opcode_Modifier_Num
52a6c1fe 765};
40fb9820
L
766
767typedef struct i386_opcode_modifier
768{
769 unsigned int d:1;
770 unsigned int w:1;
86fa6981 771 unsigned int load:1;
40fb9820 772 unsigned int modrm:1;
0cfa3eb3 773 unsigned int jump:3;
40fb9820 774 unsigned int floatmf:1;
673fe0f0 775 unsigned int size:2;
9c19e9ec 776 unsigned int checkoperandsize:1;
255571cd 777 unsigned int operandconstraint:4;
3cd7f3e3 778 unsigned int mnemonicsize:2;
40fb9820
L
779 unsigned int no_bsuf:1;
780 unsigned int no_wsuf:1;
781 unsigned int no_lsuf:1;
782 unsigned int no_ssuf:1;
783 unsigned int no_qsuf:1;
40fb9820 784 unsigned int fwait:1;
51c8edf6 785 unsigned int isstring:2;
dfd69174 786 unsigned int regmem:1;
7e8b059b 787 unsigned int bndprefixok:1;
742732c7 788 unsigned int prefixok:3;
40fb9820
L
789 unsigned int isprefix:1;
790 unsigned int immext:1;
791 unsigned int norex64:1;
2bf05e57 792 unsigned int vex:2;
3083f376 793 unsigned int vexvvvv:2;
1ef99a7b 794 unsigned int vexw:2;
441f6aca 795 unsigned int opcodeprefix:2;
260cd341 796 unsigned int sib:3;
c0f3af97 797 unsigned int sse2avx:1;
43234a1e 798 unsigned int evex:3;
b1c79256 799 unsigned int masking:1;
4a1b91ea 800 unsigned int broadcast:3;
43234a1e
L
801 unsigned int staticrounding:1;
802 unsigned int sae:1;
803 unsigned int disp8memshift:3;
b6f8c7c4 804 unsigned int optimize:1;
35266cb1 805 unsigned int dialect:2;
b83021de 806 unsigned int intelsuffix:1;
4b5aaf5f 807 unsigned int isa64:2;
80d61d8d 808 unsigned int noegpr:1;
6177c84d 809 unsigned int nf:1;
3037cefe 810 unsigned int rex2:1;
bbe8d019 811 unsigned int zu:1;
40fb9820
L
812} i386_opcode_modifier;
813
bab6aec1
JB
814/* Operand classes. */
815
816#define CLASS_WIDTH 4
817enum operand_class
818{
819 ClassNone,
820 Reg, /* GPRs and FP regs, distinguished by operand size */
00cee14f 821 SReg, /* Segment register */
4a5c67ed
JB
822 RegCR, /* Control register */
823 RegDR, /* Debug register */
824 RegTR, /* Test register */
3528c362
JB
825 RegMMX, /* MMX register */
826 RegSIMD, /* XMM/YMM/ZMM registers, distinguished by operand size */
f74a6307
JB
827 RegMask, /* Vector Mask register */
828 RegBND, /* Bound register */
bab6aec1
JB
829};
830
75e5731b
JB
831/* Special operand instances. */
832
833#define INSTANCE_WIDTH 3
834enum operand_instance
835{
836 InstanceNone,
837 Accum, /* Accumulator %al/%ax/%eax/%rax/%st(0)/%xmm0 */
474da251
JB
838 RegC, /* %cl / %cx / %ecx / %rcx, e.g. register to hold shift count */
839 RegD, /* %dl / %dx / %edx / %rdx, e.g. register to hold I/O port addr */
840 RegB, /* %bl / %bx / %ebx / %rbx */
75e5731b
JB
841};
842
40fb9820
L
843/* Position of operand_type bits. */
844
52a6c1fe
L
845enum
846{
75e5731b
JB
847 /* Class and Instance */
848 ClassInstance = CLASS_WIDTH + INSTANCE_WIDTH - 1,
52a6c1fe
L
849 /* 1 bit immediate */
850 Imm1,
851 /* 8 bit immediate */
852 Imm8,
853 /* 8 bit immediate sign extended */
854 Imm8S,
855 /* 16 bit immediate */
856 Imm16,
857 /* 32 bit immediate */
858 Imm32,
859 /* 32 bit immediate sign extended */
860 Imm32S,
861 /* 64 bit immediate */
862 Imm64,
863 /* 8bit/16bit/32bit displacements are used in different ways,
864 depending on the instruction. For jumps, they specify the
865 size of the PC relative displacement, for instructions with
866 memory operand, they specify the size of the offset relative
867 to the base register, and for instructions with memory offset
868 such as `mov 1234,%al' they specify the size of the offset
869 relative to the segment base. */
870 /* 8 bit displacement */
871 Disp8,
872 /* 16 bit displacement */
873 Disp16,
a775efc8 874 /* 32 bit displacement (64-bit: sign-extended) */
52a6c1fe 875 Disp32,
52a6c1fe
L
876 /* 64 bit displacement */
877 Disp64,
52a6c1fe
L
878 /* Register which can be used for base or index in memory operand. */
879 BaseIndex,
11a322db 880 /* BYTE size. */
52a6c1fe 881 Byte,
11a322db 882 /* WORD size. 2 byte */
52a6c1fe 883 Word,
11a322db 884 /* DWORD size. 4 byte */
52a6c1fe 885 Dword,
11a322db 886 /* FWORD size. 6 byte */
52a6c1fe 887 Fword,
11a322db 888 /* QWORD size. 8 byte */
52a6c1fe 889 Qword,
11a322db 890 /* TBYTE size. 10 byte */
52a6c1fe 891 Tbyte,
11a322db 892 /* XMMWORD size. */
52a6c1fe 893 Xmmword,
11a322db 894 /* YMMWORD size. */
52a6c1fe 895 Ymmword,
11a322db 896 /* ZMMWORD size. */
43234a1e 897 Zmmword,
260cd341
LC
898 /* TMMWORD size. */
899 Tmmword,
52a6c1fe
L
900 /* Unspecified memory size. */
901 Unspecified,
40fb9820 902
bab6aec1 903 /* The number of bits in i386_operand_type. */
f0a85b07 904 OTNum
52a6c1fe 905};
40fb9820
L
906
907#define OTNumOfUints \
f0a85b07 908 ((OTNum - 1) / sizeof (unsigned int) / CHAR_BIT + 1)
40fb9820
L
909#define OTNumOfBits \
910 (OTNumOfUints * sizeof (unsigned int) * CHAR_BIT)
911
912/* If you get a compiler error for zero width of the unused field,
601e8564 913 comment it out. */
f0a85b07 914#define OTUnused OTNum
40fb9820
L
915
916typedef union i386_operand_type
917{
918 struct
919 {
bab6aec1 920 unsigned int class:CLASS_WIDTH;
75e5731b 921 unsigned int instance:INSTANCE_WIDTH;
7d5e4556 922 unsigned int imm1:1;
40fb9820
L
923 unsigned int imm8:1;
924 unsigned int imm8s:1;
925 unsigned int imm16:1;
926 unsigned int imm32:1;
927 unsigned int imm32s:1;
928 unsigned int imm64:1;
40fb9820
L
929 unsigned int disp8:1;
930 unsigned int disp16:1;
931 unsigned int disp32:1;
40fb9820 932 unsigned int disp64:1;
7d5e4556 933 unsigned int baseindex:1;
7d5e4556
L
934 unsigned int byte:1;
935 unsigned int word:1;
936 unsigned int dword:1;
937 unsigned int fword:1;
938 unsigned int qword:1;
939 unsigned int tbyte:1;
940 unsigned int xmmword:1;
c0f3af97 941 unsigned int ymmword:1;
43234a1e 942 unsigned int zmmword:1;
260cd341 943 unsigned int tmmword:1;
7d5e4556 944 unsigned int unspecified:1;
40fb9820
L
945#ifdef OTUnused
946 unsigned int unused:(OTNumOfBits - OTUnused);
947#endif
948 } bitfield;
949 unsigned int array[OTNumOfUints];
950} i386_operand_type;
0b1cf022 951
d3ce72d0 952typedef struct insn_template
0b1cf022
L
953{
954 /* instruction name sans width suffix ("mov" for movl insns) */
5c139202 955 unsigned int mnem_off;
0b1cf022 956
37cea588
JB
957 /* Bitfield arrangement is such that individual fields can be easily
958 extracted (in native builds at least) - either by at most a masking
959 operation (base_opcode, operands), or by just a (signed) right shift
960 (extension_opcode). Please try to maintain this property. */
961
0b1cf022
L
962 /* base_opcode is the fundamental opcode byte without optional
963 prefix(es). */
9df6f676 964 unsigned int base_opcode:16;
0b1cf022
L
965#define Opcode_D 0x2 /* Direction bit:
966 set if Reg --> Regmem;
967 unset if Regmem --> Reg. */
bd782808
JB
968#define Opcode_FloatR 0x8 /* ModR/M bit to swap src/dest for float insns. */
969#define Opcode_FloatD 0x4 /* Direction bit for float insns. */
2c735193 970#define Opcode_ExtD 0x1 /* Direction bit for extended opcode space insns. */
dbbc8b7e 971#define Opcode_SIMD_IntD 0x10 /* Direction bit for SIMD int insns. */
8bd915b7
JB
972/* The next value is arbitrary, as long as it's non-zero and distinct
973 from all other values above. */
974#define Opcode_VexW 0xf /* Operand order controlled by VEX.W. */
0b1cf022 975
37cea588
JB
976 /* how many operands */
977 unsigned int operands:3;
978
ddb62495
JB
979 /* opcode space */
980 unsigned int opcode_space:4;
981 /* Opcode encoding space (values chosen to be usable directly in
982 VEX/XOP mmmmm and EVEX mm fields):
983 0: Base opcode space.
984 1: 0F opcode prefix / space.
985 2: 0F38 opcode prefix / space.
986 3: 0F3A opcode prefix / space.
6177c84d 987 4: EVEXMAP4 opcode prefix / space.
ddb62495
JB
988 5: EVEXMAP5 opcode prefix / space.
989 6: EVEXMAP6 opcode prefix / space.
8170af78 990 7: VEXMAP7 opcode prefix / space.
ddb62495
JB
991 8: XOP 08 opcode space.
992 9: XOP 09 opcode space.
993 A: XOP 0A opcode space.
994 */
995#define SPACE_BASE 0
996#define SPACE_0F 1
997#define SPACE_0F38 2
998#define SPACE_0F3A 3
6177c84d 999#define SPACE_EVEXMAP4 4
ddb62495
JB
1000#define SPACE_EVEXMAP5 5
1001#define SPACE_EVEXMAP6 6
8170af78 1002#define SPACE_VEXMAP7 7
ddb62495
JB
1003#define SPACE_XOP08 8
1004#define SPACE_XOP09 9
1005#define SPACE_XOP0A 0xA
37cea588 1006
31184569
JB
1007/* (Fake) base opcode value for pseudo prefixes. */
1008#define PSEUDO_PREFIX 0
1009
1010 /* extension_opcode is the 3 bit extension for group <n> insns.
1011 This field is also used to store the 8-bit opcode suffix for the
1012 AMD 3DNow! instructions.
1013 If this template has no extension opcode (the usual case) use None
1014 Instructions */
9df6f676
JB
1015 signed int extension_opcode:9;
1016#define None (-1) /* If no extension_opcode is possible. */
31184569 1017
41eb8e88
L
1018/* Pseudo prefixes. */
1019#define Prefix_Disp8 0 /* {disp8} */
1020#define Prefix_Disp16 1 /* {disp16} */
1021#define Prefix_Disp32 2 /* {disp32} */
1022#define Prefix_Load 3 /* {load} */
1023#define Prefix_Store 4 /* {store} */
1024#define Prefix_VEX 5 /* {vex} */
1025#define Prefix_VEX3 6 /* {vex3} */
1026#define Prefix_EVEX 7 /* {evex} */
1027#define Prefix_REX 8 /* {rex} */
80d61d8d
CL
1028#define Prefix_REX2 9 /* {rex2} */
1029#define Prefix_NoOptimize 10 /* {nooptimize} */
dd74a603 1030#define Prefix_NF 11 /* {nf} */
41eb8e88 1031
0b1cf022
L
1032 /* the bits in opcode_modifier are used to generate the final opcode from
1033 the base_opcode. These bits also are used to detect alternate forms of
1034 the same instruction */
40fb9820 1035 i386_opcode_modifier opcode_modifier;
0b1cf022 1036
734dfd1c 1037 /* cpu feature attributes */
a5e91879 1038 i386_cpu_attr cpu, cpu_any;
dac10fb0 1039
0b1cf022
L
1040 /* operand_types[i] describes the type of operand i. This is made
1041 by OR'ing together all of the possible type masks. (e.g.
1042 'operand_types[i] = Reg|Imm' specifies that operand i can be
1043 either a register or an immediate operand. */
40fb9820 1044 i386_operand_type operand_types[MAX_OPERANDS];
0b1cf022 1045}
d3ce72d0 1046insn_template;
0b1cf022 1047
0b1cf022
L
1048/* these are for register name --> number & type hash lookup */
1049typedef struct
1050{
edf77258 1051 char reg_name[8];
40fb9820 1052 i386_operand_type reg_type;
a60de03c 1053 unsigned char reg_flags;
0b1cf022
L
1054#define RegRex 0x1 /* Extended register. */
1055#define RegRex64 0x2 /* Extended 8 bit register. */
43234a1e 1056#define RegVRex 0x4 /* Extended vector register. */
80d61d8d 1057#define RegRex2 0x8 /* Extended GPRs R16–R31 register. */
a60de03c 1058 unsigned char reg_num;
e968fc9b 1059#define RegIP ((unsigned char ) ~0)
db51cc60 1060/* EIZ and RIZ are fake index registers. */
e968fc9b 1061#define RegIZ (RegIP - 1)
b7240065
JB
1062/* FLAT is a fake segment register (Intel mode). */
1063#define RegFlat ((unsigned char) ~0)
066673f6
JB
1064 unsigned char dw2_regnum[2];
1065#define Dw2Inval 0xff
0b1cf022
L
1066}
1067reg_entry;