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