* doc/as.texinfo: Add mention of RX port and inclusion of RX
[binutils.git] / opcodes / i386-gen.c
blob337f93cc41b19e80479f2d1f43b7ee526d98296d
1 /* Copyright 2007, 2008, 2009
2 Free Software Foundation, Inc.
4 This file is part of the GNU opcodes library.
6 This library is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
9 any later version.
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.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
21 #include "sysdep.h"
22 #include <stdio.h>
23 #include <errno.h>
24 #include "getopt.h"
25 #include "libiberty.h"
26 #include "hashtab.h"
27 #include "safe-ctype.h"
29 #include "i386-opc.h"
31 #include <libintl.h>
32 #define _(String) gettext (String)
34 static const char *program_name = NULL;
35 static int debug = 0;
37 typedef struct initializer
39 const char *name;
40 const char *init;
41 } initializer;
43 static initializer cpu_flag_init[] =
45 { "CPU_UNKNOWN_FLAGS",
46 "~CpuL1OM" },
47 { "CPU_GENERIC32_FLAGS",
48 "Cpu186|Cpu286|Cpu386" },
49 { "CPU_GENERIC64_FLAGS",
50 "Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuClflush|Cpu387|Cpu687|CpuMMX|CpuSSE|CpuSSE2|CpuLM" },
51 { "CPU_NONE_FLAGS",
52 "0" },
53 { "CPU_I186_FLAGS",
54 "Cpu186" },
55 { "CPU_I286_FLAGS",
56 "Cpu186|Cpu286" },
57 { "CPU_I386_FLAGS",
58 "Cpu186|Cpu286|Cpu386" },
59 { "CPU_I486_FLAGS",
60 "Cpu186|Cpu286|Cpu386|Cpu486" },
61 { "CPU_I586_FLAGS",
62 "Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu387" },
63 { "CPU_I686_FLAGS",
64 "Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|Cpu387|Cpu687" },
65 { "CPU_P2_FLAGS",
66 "Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|Cpu387|Cpu687|CpuMMX" },
67 { "CPU_P3_FLAGS",
68 "Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|Cpu387|Cpu687|CpuMMX|CpuSSE" },
69 { "CPU_P4_FLAGS",
70 "Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuClflush|Cpu387|Cpu687|CpuMMX|CpuSSE|CpuSSE2" },
71 { "CPU_NOCONA_FLAGS",
72 "Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuClflush|Cpu387|Cpu687|CpuFISTTP|CpuMMX|CpuSSE|CpuSSE2|CpuSSE3|CpuLM" },
73 { "CPU_CORE_FLAGS",
74 "Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuClflush|Cpu387|Cpu687|CpuFISTTP|CpuMMX|CpuSSE|CpuSSE2|CpuSSE3" },
75 { "CPU_CORE2_FLAGS",
76 "Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuClflush|Cpu387|Cpu687|CpuFISTTP|CpuMMX|CpuSSE|CpuSSE2|CpuSSE3|CpuSSSE3|CpuLM" },
77 { "CPU_COREI7_FLAGS",
78 "Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuClflush|Cpu387|Cpu687|CpuFISTTP|CpuMMX|CpuSSE|CpuSSE2|CpuSSE3|CpuSSSE3|CpuSSE4_1|CpuSSE4_2|CpuRdtscp|CpuLM" },
79 { "CPU_K6_FLAGS",
80 "Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|CpuSYSCALL|Cpu387|CpuMMX" },
81 { "CPU_K6_2_FLAGS",
82 "Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|CpuSYSCALL|Cpu387|CpuMMX|Cpu3dnow" },
83 { "CPU_ATHLON_FLAGS",
84 "Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuSYSCALL|Cpu387|Cpu687|CpuMMX|Cpu3dnow|Cpu3dnowA" },
85 { "CPU_K8_FLAGS",
86 "Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuSYSCALL|CpuRdtscp|Cpu387|Cpu687|CpuMMX|Cpu3dnow|Cpu3dnowA|CpuSSE|CpuSSE2|CpuLM" },
87 { "CPU_AMDFAM10_FLAGS",
88 "Cpu186|Cpu286|Cpu386|Cpu486|Cpu586|Cpu686|CpuSYSCALL|CpuRdtscp|Cpu387|Cpu687|CpuFISTTP|CpuMMX|Cpu3dnow|Cpu3dnowA|CpuSSE|CpuSSE2|CpuSSE3|CpuSSE4a|CpuABM|CpuLM" },
89 { "CPU_8087_FLAGS",
90 "Cpu8087" },
91 { "CPU_287_FLAGS",
92 "Cpu287" },
93 { "CPU_387_FLAGS",
94 "Cpu387" },
95 { "CPU_ANY87_FLAGS",
96 "Cpu8087|Cpu287|Cpu387|Cpu687|CpuFISTTP" },
97 { "CPU_CLFLUSH_FLAGS",
98 "CpuClflush" },
99 { "CPU_SYSCALL_FLAGS",
100 "CpuSYSCALL" },
101 { "CPU_MMX_FLAGS",
102 "CpuMMX" },
103 { "CPU_SSE_FLAGS",
104 "CpuMMX|CpuSSE" },
105 { "CPU_SSE2_FLAGS",
106 "CpuMMX|CpuSSE|CpuSSE2" },
107 { "CPU_SSE3_FLAGS",
108 "CpuMMX|CpuSSE|CpuSSE2|CpuSSE3" },
109 { "CPU_SSSE3_FLAGS",
110 "CpuMMX|CpuSSE|CpuSSE2|CpuSSE3|CpuSSSE3" },
111 { "CPU_SSE4_1_FLAGS",
112 "CpuMMX|CpuSSE|CpuSSE2|CpuSSE3|CpuSSSE3|CpuSSE4_1" },
113 { "CPU_SSE4_2_FLAGS",
114 "CpuMMX|CpuSSE|CpuSSE2|CpuSSE3|CpuSSSE3|CpuSSE4_1|CpuSSE4_2" },
115 { "CPU_ANY_SSE_FLAGS",
116 "CpuSSE|CpuSSE2|CpuSSE3|CpuSSSE3|CpuSSE4_1|CpuSSE4_2|CpuSSE4a|CpuAVX" },
117 { "CPU_VMX_FLAGS",
118 "CpuVMX" },
119 { "CPU_SMX_FLAGS",
120 "CpuSMX" },
121 { "CPU_XSAVE_FLAGS",
122 "CpuXsave" },
123 { "CPU_AES_FLAGS",
124 "CpuMMX|CpuSSE|CpuSSE2|CpuSSE3|CpuSSSE3|CpuSSE4_1|CpuSSE4_2|CpuAES" },
125 { "CPU_PCLMUL_FLAGS",
126 "CpuMMX|CpuSSE|CpuSSE2|CpuSSE3|CpuSSSE3|CpuSSE4_1|CpuSSE4_2|CpuPCLMUL" },
127 { "CPU_FMA_FLAGS",
128 "CpuMMX|CpuSSE|CpuSSE2|CpuSSE3|CpuSSSE3|CpuSSE4_1|CpuSSE4_2|CpuAVX|CpuFMA" },
129 { "CPU_FMA4_FLAGS",
130 "CpuMMX|CpuSSE|CpuSSE2|CpuSSE3|CpuSSSE3|CpuSSE4_1|CpuSSE4_2|CpuAVX|CpuFMA4" },
131 { "CPU_MOVBE_FLAGS",
132 "CpuMovbe" },
133 { "CPU_RDTSCP_FLAGS",
134 "CpuRdtscp" },
135 { "CPU_EPT_FLAGS",
136 "CpuEPT" },
137 { "CPU_3DNOW_FLAGS",
138 "CpuMMX|Cpu3dnow" },
139 { "CPU_3DNOWA_FLAGS",
140 "CpuMMX|Cpu3dnow|Cpu3dnowA" },
141 { "CPU_PADLOCK_FLAGS",
142 "CpuPadLock" },
143 { "CPU_SVME_FLAGS",
144 "CpuSVME" },
145 { "CPU_SSE4A_FLAGS",
146 "CpuMMX|CpuSSE|CpuSSE2|CpuSSE3|CpuSSE4a" },
147 { "CPU_ABM_FLAGS",
148 "CpuABM" },
149 { "CPU_AVX_FLAGS",
150 "CpuMMX|CpuSSE|CpuSSE2|CpuSSE3|CpuSSSE3|CpuSSE4_1|CpuSSE4_2|CpuAVX" },
151 { "CPU_ANY_AVX_FLAGS",
152 "CpuAVX" },
153 { "CPU_L1OM_FLAGS",
154 "unknown" },
157 static initializer operand_type_init[] =
159 { "OPERAND_TYPE_NONE",
160 "0" },
161 { "OPERAND_TYPE_REG8",
162 "Reg8" },
163 { "OPERAND_TYPE_REG16",
164 "Reg16" },
165 { "OPERAND_TYPE_REG32",
166 "Reg32" },
167 { "OPERAND_TYPE_REG64",
168 "Reg64" },
169 { "OPERAND_TYPE_IMM1",
170 "Imm1" },
171 { "OPERAND_TYPE_IMM8",
172 "Imm8" },
173 { "OPERAND_TYPE_IMM8S",
174 "Imm8S" },
175 { "OPERAND_TYPE_IMM16",
176 "Imm16" },
177 { "OPERAND_TYPE_IMM32",
178 "Imm32" },
179 { "OPERAND_TYPE_IMM32S",
180 "Imm32S" },
181 { "OPERAND_TYPE_IMM64",
182 "Imm64" },
183 { "OPERAND_TYPE_BASEINDEX",
184 "BaseIndex" },
185 { "OPERAND_TYPE_DISP8",
186 "Disp8" },
187 { "OPERAND_TYPE_DISP16",
188 "Disp16" },
189 { "OPERAND_TYPE_DISP32",
190 "Disp32" },
191 { "OPERAND_TYPE_DISP32S",
192 "Disp32S" },
193 { "OPERAND_TYPE_DISP64",
194 "Disp64" },
195 { "OPERAND_TYPE_INOUTPORTREG",
196 "InOutPortReg" },
197 { "OPERAND_TYPE_SHIFTCOUNT",
198 "ShiftCount" },
199 { "OPERAND_TYPE_CONTROL",
200 "Control" },
201 { "OPERAND_TYPE_TEST",
202 "Test" },
203 { "OPERAND_TYPE_DEBUG",
204 "FloatReg" },
205 { "OPERAND_TYPE_FLOATREG",
206 "FloatReg" },
207 { "OPERAND_TYPE_FLOATACC",
208 "FloatAcc" },
209 { "OPERAND_TYPE_SREG2",
210 "SReg2" },
211 { "OPERAND_TYPE_SREG3",
212 "SReg3" },
213 { "OPERAND_TYPE_ACC",
214 "Acc" },
215 { "OPERAND_TYPE_JUMPABSOLUTE",
216 "JumpAbsolute" },
217 { "OPERAND_TYPE_REGMMX",
218 "RegMMX" },
219 { "OPERAND_TYPE_REGXMM",
220 "RegXMM" },
221 { "OPERAND_TYPE_REGYMM",
222 "RegYMM" },
223 { "OPERAND_TYPE_ESSEG",
224 "EsSeg" },
225 { "OPERAND_TYPE_ACC32",
226 "Reg32|Acc|Dword" },
227 { "OPERAND_TYPE_ACC64",
228 "Reg64|Acc|Qword" },
229 { "OPERAND_TYPE_INOUTPORTREG",
230 "InOutPortReg" },
231 { "OPERAND_TYPE_REG16_INOUTPORTREG",
232 "Reg16|InOutPortReg" },
233 { "OPERAND_TYPE_DISP16_32",
234 "Disp16|Disp32" },
235 { "OPERAND_TYPE_ANYDISP",
236 "Disp8|Disp16|Disp32|Disp32S|Disp64" },
237 { "OPERAND_TYPE_IMM16_32",
238 "Imm16|Imm32" },
239 { "OPERAND_TYPE_IMM16_32S",
240 "Imm16|Imm32S" },
241 { "OPERAND_TYPE_IMM16_32_32S",
242 "Imm16|Imm32|Imm32S" },
243 { "OPERAND_TYPE_IMM32_32S_DISP32",
244 "Imm32|Imm32S|Disp32" },
245 { "OPERAND_TYPE_IMM64_DISP64",
246 "Imm64|Disp64" },
247 { "OPERAND_TYPE_IMM32_32S_64_DISP32",
248 "Imm32|Imm32S|Imm64|Disp32" },
249 { "OPERAND_TYPE_IMM32_32S_64_DISP32_64",
250 "Imm32|Imm32S|Imm64|Disp32|Disp64" },
253 typedef struct bitfield
255 int position;
256 int value;
257 const char *name;
258 } bitfield;
260 #define BITFIELD(n) { n, 0, #n }
262 static bitfield cpu_flags[] =
264 BITFIELD (Cpu186),
265 BITFIELD (Cpu286),
266 BITFIELD (Cpu386),
267 BITFIELD (Cpu486),
268 BITFIELD (Cpu586),
269 BITFIELD (Cpu686),
270 BITFIELD (CpuClflush),
271 BITFIELD (CpuSYSCALL),
272 BITFIELD (Cpu8087),
273 BITFIELD (Cpu287),
274 BITFIELD (Cpu387),
275 BITFIELD (Cpu687),
276 BITFIELD (CpuFISTTP),
277 BITFIELD (CpuMMX),
278 BITFIELD (CpuSSE),
279 BITFIELD (CpuSSE2),
280 BITFIELD (CpuSSE3),
281 BITFIELD (CpuSSSE3),
282 BITFIELD (CpuSSE4_1),
283 BITFIELD (CpuSSE4_2),
284 BITFIELD (CpuAVX),
285 BITFIELD (CpuL1OM),
286 BITFIELD (CpuSSE4a),
287 BITFIELD (Cpu3dnow),
288 BITFIELD (Cpu3dnowA),
289 BITFIELD (CpuPadLock),
290 BITFIELD (CpuSVME),
291 BITFIELD (CpuVMX),
292 BITFIELD (CpuSMX),
293 BITFIELD (CpuABM),
294 BITFIELD (CpuXsave),
295 BITFIELD (CpuAES),
296 BITFIELD (CpuPCLMUL),
297 BITFIELD (CpuFMA),
298 BITFIELD (CpuFMA4),
299 BITFIELD (CpuLM),
300 BITFIELD (CpuMovbe),
301 BITFIELD (CpuEPT),
302 BITFIELD (CpuRdtscp),
303 BITFIELD (Cpu64),
304 BITFIELD (CpuNo64),
305 #ifdef CpuUnused
306 BITFIELD (CpuUnused),
307 #endif
310 static bitfield opcode_modifiers[] =
312 BITFIELD (D),
313 BITFIELD (W),
314 BITFIELD (S),
315 BITFIELD (Modrm),
316 BITFIELD (ShortForm),
317 BITFIELD (Jump),
318 BITFIELD (JumpDword),
319 BITFIELD (JumpByte),
320 BITFIELD (JumpInterSegment),
321 BITFIELD (FloatMF),
322 BITFIELD (FloatR),
323 BITFIELD (FloatD),
324 BITFIELD (Size16),
325 BITFIELD (Size32),
326 BITFIELD (Size64),
327 BITFIELD (IgnoreSize),
328 BITFIELD (DefaultSize),
329 BITFIELD (No_bSuf),
330 BITFIELD (No_wSuf),
331 BITFIELD (No_lSuf),
332 BITFIELD (No_sSuf),
333 BITFIELD (No_qSuf),
334 BITFIELD (No_ldSuf),
335 BITFIELD (FWait),
336 BITFIELD (IsString),
337 BITFIELD (RegKludge),
338 BITFIELD (FirstXmm0),
339 BITFIELD (Implicit1stXmm0),
340 BITFIELD (ByteOkIntel),
341 BITFIELD (ToDword),
342 BITFIELD (ToQword),
343 BITFIELD (AddrPrefixOp0),
344 BITFIELD (IsPrefix),
345 BITFIELD (ImmExt),
346 BITFIELD (NoRex64),
347 BITFIELD (Rex64),
348 BITFIELD (Ugh),
349 BITFIELD (Vex),
350 BITFIELD (VexNDS),
351 BITFIELD (VexNDD),
352 BITFIELD (VexW0),
353 BITFIELD (VexW1),
354 BITFIELD (Vex0F),
355 BITFIELD (Vex0F38),
356 BITFIELD (Vex0F3A),
357 BITFIELD (Vex3Sources),
358 BITFIELD (VexImmExt),
359 BITFIELD (SSE2AVX),
360 BITFIELD (NoAVX),
361 BITFIELD (OldGcc),
362 BITFIELD (ATTMnemonic),
363 BITFIELD (ATTSyntax),
364 BITFIELD (IntelSyntax),
367 static bitfield operand_types[] =
369 BITFIELD (Reg8),
370 BITFIELD (Reg16),
371 BITFIELD (Reg32),
372 BITFIELD (Reg64),
373 BITFIELD (FloatReg),
374 BITFIELD (RegMMX),
375 BITFIELD (RegXMM),
376 BITFIELD (RegYMM),
377 BITFIELD (Imm8),
378 BITFIELD (Imm8S),
379 BITFIELD (Imm16),
380 BITFIELD (Imm32),
381 BITFIELD (Imm32S),
382 BITFIELD (Imm64),
383 BITFIELD (Imm1),
384 BITFIELD (BaseIndex),
385 BITFIELD (Disp8),
386 BITFIELD (Disp16),
387 BITFIELD (Disp32),
388 BITFIELD (Disp32S),
389 BITFIELD (Disp64),
390 BITFIELD (InOutPortReg),
391 BITFIELD (ShiftCount),
392 BITFIELD (Control),
393 BITFIELD (Debug),
394 BITFIELD (Test),
395 BITFIELD (SReg2),
396 BITFIELD (SReg3),
397 BITFIELD (Acc),
398 BITFIELD (FloatAcc),
399 BITFIELD (JumpAbsolute),
400 BITFIELD (EsSeg),
401 BITFIELD (RegMem),
402 BITFIELD (Mem),
403 BITFIELD (Byte),
404 BITFIELD (Word),
405 BITFIELD (Dword),
406 BITFIELD (Fword),
407 BITFIELD (Qword),
408 BITFIELD (Tbyte),
409 BITFIELD (Xmmword),
410 BITFIELD (Ymmword),
411 BITFIELD (Unspecified),
412 BITFIELD (Anysize),
413 #ifdef OTUnused
414 BITFIELD (OTUnused),
415 #endif
418 static const char *filename;
420 static int
421 compare (const void *x, const void *y)
423 const bitfield *xp = (const bitfield *) x;
424 const bitfield *yp = (const bitfield *) y;
425 return xp->position - yp->position;
428 static void
429 fail (const char *message, ...)
431 va_list args;
433 va_start (args, message);
434 fprintf (stderr, _("%s: Error: "), program_name);
435 vfprintf (stderr, message, args);
436 va_end (args);
437 xexit (1);
440 static void
441 process_copyright (FILE *fp)
443 fprintf (fp, "/* This file is automatically generated by i386-gen. Do not edit! */\n\
444 /* Copyright 2007, 2008, 2009\n\
445 Free Software Foundation, Inc.\n\
447 This file is part of the GNU opcodes library.\n\
449 This library is free software; you can redistribute it and/or modify\n\
450 it under the terms of the GNU General Public License as published by\n\
451 the Free Software Foundation; either version 3, or (at your option)\n\
452 any later version.\n\
454 It is distributed in the hope that it will be useful, but WITHOUT\n\
455 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\n\
456 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public\n\
457 License for more details.\n\
459 You should have received a copy of the GNU General Public License\n\
460 along with this program; if not, write to the Free Software\n\
461 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,\n\
462 MA 02110-1301, USA. */\n");
465 /* Remove leading white spaces. */
467 static char *
468 remove_leading_whitespaces (char *str)
470 while (ISSPACE (*str))
471 str++;
472 return str;
475 /* Remove trailing white spaces. */
477 static void
478 remove_trailing_whitespaces (char *str)
480 size_t last = strlen (str);
482 if (last == 0)
483 return;
487 last--;
488 if (ISSPACE (str [last]))
489 str[last] = '\0';
490 else
491 break;
493 while (last != 0);
496 /* Find next field separated by SEP and terminate it. Return a
497 pointer to the one after it. */
499 static char *
500 next_field (char *str, char sep, char **next, char *last)
502 char *p;
504 p = remove_leading_whitespaces (str);
505 for (str = p; *str != sep && *str != '\0'; str++);
507 *str = '\0';
508 remove_trailing_whitespaces (p);
510 *next = str + 1;
512 if (p >= last)
513 abort ();
515 return p;
518 static void
519 set_bitfield (const char *f, bitfield *array, int value,
520 unsigned int size, int lineno)
522 unsigned int i;
524 if (strcmp (f, "CpuFP") == 0)
526 set_bitfield("Cpu387", array, value, size, lineno);
527 set_bitfield("Cpu287", array, value, size, lineno);
528 f = "Cpu8087";
530 else if (strcmp (f, "Mmword") == 0)
531 f= "Qword";
532 else if (strcmp (f, "Oword") == 0)
533 f= "Xmmword";
535 for (i = 0; i < size; i++)
536 if (strcasecmp (array[i].name, f) == 0)
538 array[i].value = value;
539 return;
542 if (value)
544 const char *v = strchr (f, '=');
546 if (v)
548 size_t n = v - f;
549 char *end;
551 for (i = 0; i < size; i++)
552 if (strncasecmp (array[i].name, f, n) == 0)
554 value = strtol (v + 1, &end, 0);
555 if (*end == '\0')
557 array[i].value = value;
558 return;
560 break;
565 if (lineno != -1)
566 fail (_("%s: %d: Unknown bitfield: %s\n"), filename, lineno, f);
567 else
568 fail (_("Unknown bitfield: %s\n"), f);
571 static void
572 output_cpu_flags (FILE *table, bitfield *flags, unsigned int size,
573 int macro, const char *comma, const char *indent)
575 unsigned int i;
577 fprintf (table, "%s{ { ", indent);
579 for (i = 0; i < size - 1; i++)
581 fprintf (table, "%d, ", flags[i].value);
582 if (((i + 1) % 20) == 0)
584 /* We need \\ for macro. */
585 if (macro)
586 fprintf (table, " \\\n %s", indent);
587 else
588 fprintf (table, "\n %s", indent);
592 fprintf (table, "%d } }%s\n", flags[i].value, comma);
595 static void
596 process_i386_cpu_flag (FILE *table, char *flag, int macro,
597 const char *comma, const char *indent,
598 int lineno)
600 char *str, *next, *last;
601 unsigned int i;
602 bitfield flags [ARRAY_SIZE (cpu_flags)];
604 /* Copy the default cpu flags. */
605 memcpy (flags, cpu_flags, sizeof (cpu_flags));
607 if (strcasecmp (flag, "unknown") == 0)
609 /* We turn on everything except for cpu64 in case of
610 CPU_UNKNOWN_FLAGS. */
611 for (i = 0; i < ARRAY_SIZE (flags); i++)
612 if (flags[i].position != Cpu64)
613 flags[i].value = 1;
615 else if (flag[0] == '~')
617 last = flag + strlen (flag);
619 if (flag[1] == '(')
621 last -= 1;
622 next = flag + 2;
623 if (*last != ')')
624 fail (_("%s: %d: Missing `)' in bitfield: %s\n"), filename,
625 lineno, flag);
626 *last = '\0';
628 else
629 next = flag + 1;
631 /* First we turn on everything except for cpu64. */
632 for (i = 0; i < ARRAY_SIZE (flags); i++)
633 if (flags[i].position != Cpu64)
634 flags[i].value = 1;
636 /* Turn off selective bits. */
637 for (; next && next < last; )
639 str = next_field (next, '|', &next, last);
640 if (str)
641 set_bitfield (str, flags, 0, ARRAY_SIZE (flags), lineno);
644 else if (strcmp (flag, "0"))
646 /* Turn on selective bits. */
647 last = flag + strlen (flag);
648 for (next = flag; next && next < last; )
650 str = next_field (next, '|', &next, last);
651 if (str)
652 set_bitfield (str, flags, 1, ARRAY_SIZE (flags), lineno);
656 output_cpu_flags (table, flags, ARRAY_SIZE (flags), macro,
657 comma, indent);
660 static void
661 output_opcode_modifier (FILE *table, bitfield *modifier, unsigned int size)
663 unsigned int i;
665 fprintf (table, " { ");
667 for (i = 0; i < size - 1; i++)
669 fprintf (table, "%d, ", modifier[i].value);
670 if (((i + 1) % 20) == 0)
671 fprintf (table, "\n ");
674 fprintf (table, "%d },\n", modifier[i].value);
677 static void
678 process_i386_opcode_modifier (FILE *table, char *mod, int lineno)
680 char *str, *next, *last;
681 bitfield modifiers [ARRAY_SIZE (opcode_modifiers)];
683 /* Copy the default opcode modifier. */
684 memcpy (modifiers, opcode_modifiers, sizeof (modifiers));
686 if (strcmp (mod, "0"))
688 last = mod + strlen (mod);
689 for (next = mod; next && next < last; )
691 str = next_field (next, '|', &next, last);
692 if (str)
693 set_bitfield (str, modifiers, 1, ARRAY_SIZE (modifiers),
694 lineno);
697 output_opcode_modifier (table, modifiers, ARRAY_SIZE (modifiers));
700 static void
701 output_operand_type (FILE *table, bitfield *types, unsigned int size,
702 int macro, const char *indent)
704 unsigned int i;
706 fprintf (table, "{ { ");
708 for (i = 0; i < size - 1; i++)
710 fprintf (table, "%d, ", types[i].value);
711 if (((i + 1) % 20) == 0)
713 /* We need \\ for macro. */
714 if (macro)
715 fprintf (table, "\\\n%s", indent);
716 else
717 fprintf (table, "\n%s", indent);
721 fprintf (table, "%d } }", types[i].value);
724 static void
725 process_i386_operand_type (FILE *table, char *op, int macro,
726 const char *indent, int lineno)
728 char *str, *next, *last;
729 bitfield types [ARRAY_SIZE (operand_types)];
731 /* Copy the default operand type. */
732 memcpy (types, operand_types, sizeof (types));
734 if (strcmp (op, "0"))
736 last = op + strlen (op);
737 for (next = op; next && next < last; )
739 str = next_field (next, '|', &next, last);
740 if (str)
741 set_bitfield (str, types, 1, ARRAY_SIZE (types), lineno);
744 output_operand_type (table, types, ARRAY_SIZE (types), macro,
745 indent);
748 static void
749 output_i386_opcode (FILE *table, const char *name, char *str,
750 char *last, int lineno)
752 unsigned int i;
753 char *operands, *base_opcode, *extension_opcode, *opcode_length;
754 char *cpu_flags, *opcode_modifier, *operand_types [MAX_OPERANDS];
756 /* Find number of operands. */
757 operands = next_field (str, ',', &str, last);
759 /* Find base_opcode. */
760 base_opcode = next_field (str, ',', &str, last);
762 /* Find extension_opcode. */
763 extension_opcode = next_field (str, ',', &str, last);
765 /* Find opcode_length. */
766 opcode_length = next_field (str, ',', &str, last);
768 /* Find cpu_flags. */
769 cpu_flags = next_field (str, ',', &str, last);
771 /* Find opcode_modifier. */
772 opcode_modifier = next_field (str, ',', &str, last);
774 /* Remove the first {. */
775 str = remove_leading_whitespaces (str);
776 if (*str != '{')
777 abort ();
778 str = remove_leading_whitespaces (str + 1);
780 i = strlen (str);
782 /* There are at least "X}". */
783 if (i < 2)
784 abort ();
786 /* Remove trailing white spaces and }. */
789 i--;
790 if (ISSPACE (str[i]) || str[i] == '}')
791 str[i] = '\0';
792 else
793 break;
795 while (i != 0);
797 last = str + i;
799 /* Find operand_types. */
800 for (i = 0; i < ARRAY_SIZE (operand_types); i++)
802 if (str >= last)
804 operand_types [i] = NULL;
805 break;
808 operand_types [i] = next_field (str, ',', &str, last);
809 if (*operand_types[i] == '0')
811 if (i != 0)
812 operand_types[i] = NULL;
813 break;
817 fprintf (table, " { \"%s\", %s, %s, %s, %s,\n",
818 name, operands, base_opcode, extension_opcode,
819 opcode_length);
821 process_i386_cpu_flag (table, cpu_flags, 0, ",", " ", lineno);
823 process_i386_opcode_modifier (table, opcode_modifier, lineno);
825 fprintf (table, " { ");
827 for (i = 0; i < ARRAY_SIZE (operand_types); i++)
829 if (operand_types[i] == NULL || *operand_types[i] == '0')
831 if (i == 0)
832 process_i386_operand_type (table, "0", 0, "\t ", lineno);
833 break;
836 if (i != 0)
837 fprintf (table, ",\n ");
839 process_i386_operand_type (table, operand_types[i], 0,
840 "\t ", lineno);
842 fprintf (table, " } },\n");
845 struct opcode_hash_entry
847 struct opcode_hash_entry *next;
848 char *name;
849 char *opcode;
850 int lineno;
853 /* Calculate the hash value of an opcode hash entry P. */
855 static hashval_t
856 opcode_hash_hash (const void *p)
858 struct opcode_hash_entry *entry = (struct opcode_hash_entry *) p;
859 return htab_hash_string (entry->name);
862 /* Compare a string Q against an opcode hash entry P. */
864 static int
865 opcode_hash_eq (const void *p, const void *q)
867 struct opcode_hash_entry *entry = (struct opcode_hash_entry *) p;
868 const char *name = (const char *) q;
869 return strcmp (name, entry->name) == 0;
872 static void
873 process_i386_opcodes (FILE *table)
875 FILE *fp;
876 char buf[2048];
877 unsigned int i, j;
878 char *str, *p, *last, *name;
879 struct opcode_hash_entry **hash_slot, **entry, *next;
880 htab_t opcode_hash_table;
881 struct opcode_hash_entry **opcode_array;
882 unsigned int opcode_array_size = 1024;
883 int lineno = 0;
885 filename = "i386-opc.tbl";
886 fp = fopen (filename, "r");
888 if (fp == NULL)
889 fail (_("can't find i386-opc.tbl for reading, errno = %s\n"),
890 xstrerror (errno));
892 i = 0;
893 opcode_array = (struct opcode_hash_entry **)
894 xmalloc (sizeof (*opcode_array) * opcode_array_size);
896 opcode_hash_table = htab_create_alloc (16, opcode_hash_hash,
897 opcode_hash_eq, NULL,
898 xcalloc, free);
900 fprintf (table, "\n/* i386 opcode table. */\n\n");
901 fprintf (table, "const insn_template i386_optab[] =\n{\n");
903 /* Put everything on opcode array. */
904 while (!feof (fp))
906 if (fgets (buf, sizeof (buf), fp) == NULL)
907 break;
909 lineno++;
911 p = remove_leading_whitespaces (buf);
913 /* Skip comments. */
914 str = strstr (p, "//");
915 if (str != NULL)
916 str[0] = '\0';
918 /* Remove trailing white spaces. */
919 remove_trailing_whitespaces (p);
921 switch (p[0])
923 case '#':
924 /* Ignore comments. */
925 case '\0':
926 continue;
927 break;
928 default:
929 break;
932 last = p + strlen (p);
934 /* Find name. */
935 name = next_field (p, ',', &str, last);
937 /* Get the slot in hash table. */
938 hash_slot = (struct opcode_hash_entry **)
939 htab_find_slot_with_hash (opcode_hash_table, name,
940 htab_hash_string (name),
941 INSERT);
943 if (*hash_slot == NULL)
945 /* It is the new one. Put it on opcode array. */
946 if (i >= opcode_array_size)
948 /* Grow the opcode array when needed. */
949 opcode_array_size += 1024;
950 opcode_array = (struct opcode_hash_entry **)
951 xrealloc (opcode_array,
952 sizeof (*opcode_array) * opcode_array_size);
955 opcode_array[i] = (struct opcode_hash_entry *)
956 xmalloc (sizeof (struct opcode_hash_entry));
957 opcode_array[i]->next = NULL;
958 opcode_array[i]->name = xstrdup (name);
959 opcode_array[i]->opcode = xstrdup (str);
960 opcode_array[i]->lineno = lineno;
961 *hash_slot = opcode_array[i];
962 i++;
964 else
966 /* Append it to the existing one. */
967 entry = hash_slot;
968 while ((*entry) != NULL)
969 entry = &(*entry)->next;
970 *entry = (struct opcode_hash_entry *)
971 xmalloc (sizeof (struct opcode_hash_entry));
972 (*entry)->next = NULL;
973 (*entry)->name = (*hash_slot)->name;
974 (*entry)->opcode = xstrdup (str);
975 (*entry)->lineno = lineno;
979 /* Process opcode array. */
980 for (j = 0; j < i; j++)
982 for (next = opcode_array[j]; next; next = next->next)
984 name = next->name;
985 str = next->opcode;
986 lineno = next->lineno;
987 last = str + strlen (str);
988 output_i386_opcode (table, name, str, last, lineno);
992 fclose (fp);
994 fprintf (table, " { NULL, 0, 0, 0, 0,\n");
996 process_i386_cpu_flag (table, "0", 0, ",", " ", -1);
998 process_i386_opcode_modifier (table, "0", -1);
1000 fprintf (table, " { ");
1001 process_i386_operand_type (table, "0", 0, "\t ", -1);
1002 fprintf (table, " } }\n");
1004 fprintf (table, "};\n");
1007 static void
1008 process_i386_registers (FILE *table)
1010 FILE *fp;
1011 char buf[2048];
1012 char *str, *p, *last;
1013 char *reg_name, *reg_type, *reg_flags, *reg_num;
1014 char *dw2_32_num, *dw2_64_num;
1015 int lineno = 0;
1017 filename = "i386-reg.tbl";
1018 fp = fopen (filename, "r");
1019 if (fp == NULL)
1020 fail (_("can't find i386-reg.tbl for reading, errno = %s\n"),
1021 xstrerror (errno));
1023 fprintf (table, "\n/* i386 register table. */\n\n");
1024 fprintf (table, "const reg_entry i386_regtab[] =\n{\n");
1026 while (!feof (fp))
1028 if (fgets (buf, sizeof (buf), fp) == NULL)
1029 break;
1031 lineno++;
1033 p = remove_leading_whitespaces (buf);
1035 /* Skip comments. */
1036 str = strstr (p, "//");
1037 if (str != NULL)
1038 str[0] = '\0';
1040 /* Remove trailing white spaces. */
1041 remove_trailing_whitespaces (p);
1043 switch (p[0])
1045 case '#':
1046 fprintf (table, "%s\n", p);
1047 case '\0':
1048 continue;
1049 break;
1050 default:
1051 break;
1054 last = p + strlen (p);
1056 /* Find reg_name. */
1057 reg_name = next_field (p, ',', &str, last);
1059 /* Find reg_type. */
1060 reg_type = next_field (str, ',', &str, last);
1062 /* Find reg_flags. */
1063 reg_flags = next_field (str, ',', &str, last);
1065 /* Find reg_num. */
1066 reg_num = next_field (str, ',', &str, last);
1068 fprintf (table, " { \"%s\",\n ", reg_name);
1070 process_i386_operand_type (table, reg_type, 0, "\t", lineno);
1072 /* Find 32-bit Dwarf2 register number. */
1073 dw2_32_num = next_field (str, ',', &str, last);
1075 /* Find 64-bit Dwarf2 register number. */
1076 dw2_64_num = next_field (str, ',', &str, last);
1078 fprintf (table, ",\n %s, %s, { %s, %s } },\n",
1079 reg_flags, reg_num, dw2_32_num, dw2_64_num);
1082 fclose (fp);
1084 fprintf (table, "};\n");
1086 fprintf (table, "\nconst unsigned int i386_regtab_size = ARRAY_SIZE (i386_regtab);\n");
1089 static void
1090 process_i386_initializers (void)
1092 unsigned int i;
1093 FILE *fp = fopen ("i386-init.h", "w");
1094 char *init;
1096 if (fp == NULL)
1097 fail (_("can't create i386-init.h, errno = %s\n"),
1098 xstrerror (errno));
1100 process_copyright (fp);
1102 for (i = 0; i < ARRAY_SIZE (cpu_flag_init); i++)
1104 fprintf (fp, "\n#define %s \\\n", cpu_flag_init[i].name);
1105 init = xstrdup (cpu_flag_init[i].init);
1106 process_i386_cpu_flag (fp, init, 1, "", " ", -1);
1107 free (init);
1110 for (i = 0; i < ARRAY_SIZE (operand_type_init); i++)
1112 fprintf (fp, "\n\n#define %s \\\n ", operand_type_init[i].name);
1113 init = xstrdup (operand_type_init[i].init);
1114 process_i386_operand_type (fp, init, 1, " ", -1);
1115 free (init);
1117 fprintf (fp, "\n");
1119 fclose (fp);
1122 /* Program options. */
1123 #define OPTION_SRCDIR 200
1125 struct option long_options[] =
1127 {"srcdir", required_argument, NULL, OPTION_SRCDIR},
1128 {"debug", no_argument, NULL, 'd'},
1129 {"version", no_argument, NULL, 'V'},
1130 {"help", no_argument, NULL, 'h'},
1131 {0, no_argument, NULL, 0}
1134 static void
1135 print_version (void)
1137 printf ("%s: version 1.0\n", program_name);
1138 xexit (0);
1141 static void
1142 usage (FILE * stream, int status)
1144 fprintf (stream, "Usage: %s [-V | --version] [-d | --debug] [--srcdir=dirname] [--help]\n",
1145 program_name);
1146 xexit (status);
1150 main (int argc, char **argv)
1152 extern int chdir (char *);
1153 char *srcdir = NULL;
1154 int c;
1155 FILE *table;
1157 program_name = *argv;
1158 xmalloc_set_program_name (program_name);
1160 while ((c = getopt_long (argc, argv, "vVdh", long_options, 0)) != EOF)
1161 switch (c)
1163 case OPTION_SRCDIR:
1164 srcdir = optarg;
1165 break;
1166 case 'V':
1167 case 'v':
1168 print_version ();
1169 break;
1170 case 'd':
1171 debug = 1;
1172 break;
1173 case 'h':
1174 case '?':
1175 usage (stderr, 0);
1176 default:
1177 case 0:
1178 break;
1181 if (optind != argc)
1182 usage (stdout, 1);
1184 if (srcdir != NULL)
1185 if (chdir (srcdir) != 0)
1186 fail (_("unable to change directory to \"%s\", errno = %s\n"),
1187 srcdir, xstrerror (errno));
1189 /* Check the unused bitfield in i386_cpu_flags. */
1190 #ifndef CpuUnused
1191 c = CpuNumOfBits - CpuMax - 1;
1192 if (c)
1193 fail (_("%d unused bits in i386_cpu_flags.\n"), c);
1194 #endif
1196 /* Check the unused bitfield in i386_operand_type. */
1197 #ifndef OTUnused
1198 c = OTNumOfBits - OTMax - 1;
1199 if (c)
1200 fail (_("%d unused bits in i386_operand_type.\n"), c);
1201 #endif
1203 qsort (cpu_flags, ARRAY_SIZE (cpu_flags), sizeof (cpu_flags [0]),
1204 compare);
1206 qsort (opcode_modifiers, ARRAY_SIZE (opcode_modifiers),
1207 sizeof (opcode_modifiers [0]), compare);
1209 qsort (operand_types, ARRAY_SIZE (operand_types),
1210 sizeof (operand_types [0]), compare);
1212 table = fopen ("i386-tbl.h", "w");
1213 if (table == NULL)
1214 fail (_("can't create i386-tbl.h, errno = %s\n"),
1215 xstrerror (errno));
1217 process_copyright (table);
1219 process_i386_opcodes (table);
1220 process_i386_registers (table);
1221 process_i386_initializers ();
1223 fclose (table);
1225 exit (0);