* varray.h (VARRAY_TOP_GENERIC_PTR): Remove spurious parameter.
[official-gcc.git] / gcc / gencodes.c
blob7e4f964426316adb4dad2c8a296bed7576558669
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 puts ("/* Generated automatically by the program `gencodes'");
92 puts (" from the machine description file `md'. */\n");
93 puts ("#ifndef GCC_INSN_CODES_H");
94 puts ("#define GCC_INSN_CODES_H\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 puts("\n#endif /* GCC_INSN_CODES_H */");
123 if (ferror (stdout) || fflush (stdout) || fclose (stdout))
124 return FATAL_EXIT_CODE;
126 return SUCCESS_EXIT_CODE;
129 /* Define this so we can link with print-rtl.o to get debug_rtx function. */
131 const char *
132 get_insn_name (code)
133 int code ATTRIBUTE_UNUSED;
135 return NULL;
138 /* Called via traverse_md_constants; emit a #define for
139 the current constant definition. */
141 static int
142 print_md_constant (slot, info)
143 void **slot;
144 void *info;
146 struct md_constant *def = *slot;
147 FILE *file = info;
149 fprintf (file, "#define %s %s\n", def->name, def->value);
150 return 1;