* toplev.c (lang_independent_f_options): Remove
[official-gcc.git] / gcc / gencodes.c
blob3e14f39b8dbeeb4a5e3ed7657dba42c685bf018c
1 /* Generate from machine description:
2 - some macros CODE_FOR_... giving the insn_code_number value
3 for each of the defined standard insn names.
4 Copyright (C) 1987, 1991, 1995, 1998,
5 1999, 2000, 2001 Free Software Foundation, Inc.
7 This file is part of GNU CC.
9 GNU CC is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2, or (at your option)
12 any later version.
14 GNU CC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GNU CC; see the file COPYING. If not, write to
21 the Free Software Foundation, 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
25 #include "hconfig.h"
26 #include "system.h"
27 #include "rtl.h"
28 #include "errors.h"
29 #include "gensupport.h"
32 static int insn_code_number;
34 static void gen_insn PARAMS ((rtx));
35 static void output_predicate_decls PARAMS ((void));
36 static int print_md_constant PARAMS ((void **, void *));
38 static void
39 gen_insn (insn)
40 rtx insn;
42 /* Don't mention instructions whose names are the null string
43 or begin with '*'. They are in the machine description just
44 to be recognized. */
45 if (XSTR (insn, 0)[0] != 0 && XSTR (insn, 0)[0] != '*')
46 printf (" CODE_FOR_%s = %d,\n", XSTR (insn, 0),
47 insn_code_number);
50 /* Print out declarations for all predicates mentioned in
51 PREDICATE_CODES. */
53 static void
54 output_predicate_decls ()
56 #ifdef PREDICATE_CODES
57 static struct {
58 const char *name;
59 RTX_CODE codes[NUM_RTX_CODE];
60 } predicate[] = {
61 PREDICATE_CODES
63 size_t i;
65 putc ('\n', stdout);
66 puts ("struct rtx_def;\n#include \"machmode.h\"\n");
67 for (i = 0; i < sizeof predicate / sizeof *predicate; i++)
68 printf ("extern int %s PARAMS ((struct rtx_def *, enum machine_mode));\n",
69 predicate[i].name);
70 putc ('\n', stdout);
71 #endif
74 extern int main PARAMS ((int, char **));
76 int
77 main (argc, argv)
78 int argc;
79 char **argv;
81 rtx desc;
83 progname = "gencodes";
85 if (argc <= 1)
86 fatal ("No input file name.");
88 if (init_md_reader (argv[1]) != SUCCESS_EXIT_CODE)
89 return (FATAL_EXIT_CODE);
91 printf ("/* Generated automatically by the program `gencodes'\n\
92 from the machine description file `md'. */\n\n");
94 printf ("#ifndef MAX_INSN_CODE\n\n");
96 /* Read the machine description. */
98 insn_code_number = 0;
99 printf ("enum insn_code {\n");
101 while (1)
103 int line_no;
105 desc = read_md_rtx (&line_no, &insn_code_number);
106 if (desc == NULL)
107 break;
109 if (GET_CODE (desc) == DEFINE_INSN || GET_CODE (desc) == DEFINE_EXPAND)
110 gen_insn (desc);
113 printf (" CODE_FOR_nothing = %d };\n", insn_code_number + 1);
115 printf ("\n#define MAX_INSN_CODE ((int) CODE_FOR_nothing)\n\n");
117 traverse_md_constants (print_md_constant, stdout);
119 output_predicate_decls ();
121 printf ("\n#endif /* MAX_INSN_CODE */\n");
123 fflush (stdout);
124 return (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);
127 /* Define this so we can link with print-rtl.o to get debug_rtx function. */
129 const char *
130 get_insn_name (code)
131 int code ATTRIBUTE_UNUSED;
133 return NULL;
136 /* Called via traverse_md_constants; emit a #define for
137 the current constant definition. */
139 static int
140 print_md_constant (slot, info)
141 void **slot;
142 void *info;
144 struct md_constant *def = *slot;
145 FILE *file = info;
147 fprintf (file, "#define %s %s\n", def->name, def->value);
148 return 1;