Cutover various gen*.c files to using system.h:
[gcc.git] / gcc / gencodes.c
1 /* Generate from machine description:
2
3 - some macros CODE_FOR_... giving the insn_code_number value
4 for each of the defined standard insn names.
5 Copyright (C) 1987, 1991, 1995 Free Software Foundation, Inc.
6
7 This file is part of GNU CC.
8
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.
13
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.
18
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. */
23
24
25 #include "hconfig.h"
26 #include "system.h"
27 #include "rtl.h"
28 #include "obstack.h"
29
30 static struct obstack obstack;
31 struct obstack *rtl_obstack = &obstack;
32
33 #define obstack_chunk_alloc xmalloc
34 #define obstack_chunk_free free
35
36 char *xmalloc PROTO((unsigned));
37 static void fatal ();
38 void fancy_abort PROTO((void));
39
40 static int insn_code_number;
41
42 static void
43 gen_insn (insn)
44 rtx insn;
45 {
46 /* Don't mention instructions whose names are the null string
47 or begin with '*'. They are in the machine description just
48 to be recognized. */
49 if (XSTR (insn, 0)[0] != 0 && XSTR (insn, 0)[0] != '*')
50 printf (" CODE_FOR_%s = %d,\n", XSTR (insn, 0),
51 insn_code_number);
52 }
53
54 char *
55 xmalloc (size)
56 unsigned size;
57 {
58 register char *val = (char *) malloc (size);
59
60 if (val == 0)
61 fatal ("virtual memory exhausted");
62 return val;
63 }
64
65 char *
66 xrealloc (ptr, size)
67 char *ptr;
68 unsigned size;
69 {
70 char *result = (char *) realloc (ptr, size);
71 if (!result)
72 fatal ("virtual memory exhausted");
73 return result;
74 }
75
76 static void
77 fatal (s, a1, a2)
78 char *s;
79 {
80 fprintf (stderr, "gencodes: ");
81 fprintf (stderr, s, a1, a2);
82 fprintf (stderr, "\n");
83 exit (FATAL_EXIT_CODE);
84 }
85
86 /* More 'friendly' abort that prints the line and file.
87 config.h can #define abort fancy_abort if you like that sort of thing. */
88
89 void
90 fancy_abort ()
91 {
92 fatal ("Internal gcc abort.");
93 }
94 \f
95 int
96 main (argc, argv)
97 int argc;
98 char **argv;
99 {
100 rtx desc;
101 FILE *infile;
102 register int c;
103
104 obstack_init (rtl_obstack);
105
106 if (argc <= 1)
107 fatal ("No input file name.");
108
109 infile = fopen (argv[1], "r");
110 if (infile == 0)
111 {
112 perror (argv[1]);
113 exit (FATAL_EXIT_CODE);
114 }
115
116 init_rtl ();
117
118 printf ("/* Generated automatically by the program `gencodes'\n\
119 from the machine description file `md'. */\n\n");
120
121 printf ("#ifndef MAX_INSN_CODE\n\n");
122
123 /* Read the machine description. */
124
125 insn_code_number = 0;
126 printf ("enum insn_code {\n");
127
128 while (1)
129 {
130 c = read_skip_spaces (infile);
131 if (c == EOF)
132 break;
133 ungetc (c, infile);
134
135 desc = read_rtx (infile);
136 if (GET_CODE (desc) == DEFINE_INSN || GET_CODE (desc) == DEFINE_EXPAND)
137 {
138 gen_insn (desc);
139 insn_code_number++;
140 }
141 if (GET_CODE (desc) == DEFINE_PEEPHOLE
142 || GET_CODE (desc) == DEFINE_SPLIT)
143 {
144 insn_code_number++;
145 }
146 }
147
148 printf (" CODE_FOR_nothing };\n");
149
150 printf ("\n#define MAX_INSN_CODE ((int) CODE_FOR_nothing)\n");
151
152 printf ("#endif /* MAX_INSN_CODE */\n");
153
154 fflush (stdout);
155 exit (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);
156 /* NOTREACHED */
157 return 0;
158 }