real.h: Define REAL_VALUE_TYPE_SIZE as 96 or 160, as appropriate.
[gcc.git] / gcc / gengenrtl.c
1 /* Generate code to allocate RTL structures.
2 Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 2, or (at your option) any later
9 version.
10
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING. If not, write to the Free
18 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19 02111-1307, USA. */
20
21
22 #include "hconfig.h"
23 #include "system.h"
24
25 #define NO_GENRTL_H
26 #include "rtl.h"
27 #undef abort
28
29 #include "real.h"
30
31 struct rtx_definition
32 {
33 const char *const enumname, *const name, *const format;
34 };
35
36 #define DEF_RTL_EXPR(ENUM, NAME, FORMAT, CLASS) { STRINGX(ENUM), NAME, FORMAT },
37
38 static const struct rtx_definition defs[] =
39 {
40 #include "rtl.def" /* rtl expressions are documented here */
41 };
42
43 static const char *formats[NUM_RTX_CODE];
44
45 static const char *type_from_format PARAMS ((int));
46 static const char *accessor_from_format PARAMS ((int));
47 static int special_format PARAMS ((const char *));
48 static int special_rtx PARAMS ((int));
49 static void find_formats PARAMS ((void));
50 static void gendecl PARAMS ((const char *));
51 static void genmacro PARAMS ((int));
52 static void gendef PARAMS ((const char *));
53 static void genlegend PARAMS ((void));
54 static void genheader PARAMS ((void));
55 static void gencode PARAMS ((void));
56 \f
57 /* Decode a format letter into a C type string. */
58
59 static const char *
60 type_from_format (c)
61 int c;
62 {
63 switch (c)
64 {
65 case 'i':
66 return "int ";
67
68 case 'w':
69 return "HOST_WIDE_INT ";
70
71 case 's':
72 return "const char *";
73
74 case 'e': case 'u':
75 return "rtx ";
76
77 case 'E':
78 return "rtvec ";
79 case 'b':
80 return "struct bitmap_head_def *"; /* bitmap - typedef not available */
81 case 't':
82 return "union tree_node *"; /* tree - typedef not available */
83 default:
84 abort ();
85 }
86 }
87
88 /* Decode a format letter into the proper accessor function. */
89
90 static const char *
91 accessor_from_format (c)
92 int c;
93 {
94 switch (c)
95 {
96 case 'i':
97 return "XINT";
98
99 case 'w':
100 return "XWINT";
101
102 case 's':
103 return "XSTR";
104
105 case 'e': case 'u':
106 return "XEXP";
107
108 case 'E':
109 return "XVEC";
110
111 case 'b':
112 return "XBITMAP";
113
114 case 't':
115 return "XTREE";
116
117 default:
118 abort ();
119 }
120 }
121
122 /* Return nonzero if we should ignore FMT, an RTL format, when making
123 the list of formats we write routines to create. */
124
125 static int
126 special_format (fmt)
127 const char *fmt;
128 {
129 return (strchr (fmt, '*') != 0
130 || strchr (fmt, 'V') != 0
131 || strchr (fmt, 'S') != 0
132 || strchr (fmt, 'n') != 0);
133 }
134
135 /* Return nonzero if the RTL code given by index IDX is one that we should not
136 generate a gen_RTX_FOO function foo (because that function is present
137 elsewhere in the compiler). */
138
139 static int
140 special_rtx (idx)
141 int idx;
142 {
143 return (strcmp (defs[idx].enumname, "CONST_INT") == 0
144 || strcmp (defs[idx].enumname, "CONST_DOUBLE") == 0
145 || strcmp (defs[idx].enumname, "REG") == 0
146 || strcmp (defs[idx].enumname, "SUBREG") == 0
147 || strcmp (defs[idx].enumname, "MEM") == 0);
148 }
149
150 /* Place a list of all format specifiers we use into the array FORMAT. */
151
152 static void
153 find_formats ()
154 {
155 int i;
156
157 for (i = 0; i < NUM_RTX_CODE; i++)
158 {
159 const char **f;
160
161 if (special_format (defs[i].format))
162 continue;
163
164 for (f = formats; *f; f++)
165 if (! strcmp (*f, defs[i].format))
166 break;
167
168 if (*f == 0)
169 *f = defs[i].format;
170 }
171 }
172
173 /* Write the declarations for the routine to allocate RTL with FORMAT. */
174
175 static void
176 gendecl (format)
177 const char *format;
178 {
179 const char *p;
180 int i, pos;
181
182 printf ("extern rtx gen_rtx_fmt_%s\tPARAMS ((RTX_CODE, ", format);
183 printf ("enum machine_mode mode");
184
185 /* Write each parameter that is needed and start a new line when the line
186 would overflow. */
187 for (p = format, i = 0, pos = 75; *p != 0; p++)
188 if (*p != '0')
189 {
190 int ourlen = strlen (type_from_format (*p)) + 6 + (i > 9);
191
192 printf (",");
193 if (pos + ourlen > 76)
194 printf ("\n\t\t\t\t "), pos = 39;
195
196 printf (" %sarg%d", type_from_format (*p), i++);
197 pos += ourlen;
198 }
199
200 printf ("));\n");
201 }
202
203 /* Generate macros to generate RTL of code IDX using the functions we
204 write. */
205
206 static void
207 genmacro (idx)
208 int idx;
209 {
210 const char *p;
211 int i;
212
213 /* We write a macro that defines gen_rtx_RTLCODE to be an equivalent to
214 gen_rtx_fmt_FORMAT where FORMAT is the RTX_FORMAT of RTLCODE. */
215
216 printf ("#define gen_rtx_%s%s(MODE",
217 special_rtx (idx) ? "raw_" : "", defs[idx].enumname);
218
219 for (p = defs[idx].format, i = 0; *p != 0; p++)
220 if (*p != '0')
221 printf (", ARG%d", i++);
222
223 printf (") \\\n gen_rtx_fmt_%s (%s, (MODE)",
224 defs[idx].format, defs[idx].enumname);
225
226 for (p = defs[idx].format, i = 0; *p != 0; p++)
227 if (*p != '0')
228 printf (", (ARG%d)", i++);
229
230 puts (")");
231 }
232
233 /* Generate the code for the function to generate RTL whose
234 format is FORMAT. */
235
236 static void
237 gendef (format)
238 const char *format;
239 {
240 const char *p;
241 int i, j;
242
243 /* Start by writing the definition of the function name and the types
244 of the arguments. */
245
246 printf ("rtx\ngen_rtx_fmt_%s (code, mode", format);
247 for (p = format, i = 0; *p != 0; p++)
248 if (*p != '0')
249 printf (", arg%d", i++);
250
251 puts (")\n RTX_CODE code;\n enum machine_mode mode;");
252 for (p = format, i = 0; *p != 0; p++)
253 if (*p != '0')
254 printf (" %sarg%d;\n", type_from_format (*p), i++);
255
256 /* Now write out the body of the function itself, which allocates
257 the memory and initializes it. */
258 puts ("{");
259 puts (" rtx rt;");
260 printf (" rt = ggc_alloc_rtx (%d);\n", (int) strlen (format));
261
262 puts (" memset (rt, 0, sizeof (struct rtx_def) - sizeof (rtunion));\n");
263 puts (" PUT_CODE (rt, code);");
264 puts (" PUT_MODE (rt, mode);");
265
266 for (p = format, i = j = 0; *p ; ++p, ++i)
267 if (*p != '0')
268 printf (" %s (rt, %d) = arg%d;\n", accessor_from_format (*p), i, j++);
269 else
270 printf (" X0EXP (rt, %d) = NULL_RTX;\n", i);
271
272 puts ("\n return rt;\n}\n");
273 }
274
275 /* Generate the documentation header for files we write. */
276
277 static void
278 genlegend ()
279 {
280 puts ("/* Generated automatically by gengenrtl from rtl.def. */\n");
281 }
282
283 /* Generate the text of the header file we make, genrtl.h. */
284
285 static void
286 genheader ()
287 {
288 int i;
289 const char **fmt;
290
291 puts ("#ifndef GCC_GENRTL_H");
292 puts ("#define GCC_GENRTL_H\n");
293
294 for (fmt = formats; *fmt; ++fmt)
295 gendecl (*fmt);
296
297 putchar ('\n');
298
299 for (i = 0; i < NUM_RTX_CODE; i++)
300 if (! special_format (defs[i].format))
301 genmacro (i);
302
303 puts ("\n#endif /* GCC_GENRTL_H */");
304 }
305
306 /* Generate the text of the code file we write, genrtl.c. */
307
308 static void
309 gencode ()
310 {
311 const char **fmt;
312
313 puts ("#include \"config.h\"");
314 puts ("#include \"system.h\"");
315 puts ("#include \"obstack.h\"");
316 puts ("#include \"rtl.h\"");
317 puts ("#include \"ggc.h\"\n");
318 puts ("extern struct obstack *rtl_obstack;\n");
319 puts ("#define obstack_alloc_rtx(n) \\");
320 puts (" ((rtx) obstack_alloc (rtl_obstack, \\");
321 puts (" sizeof (struct rtx_def) \\");
322 puts (" + ((n) - 1) * sizeof (rtunion)))\n");
323
324 for (fmt = formats; *fmt != 0; fmt++)
325 gendef (*fmt);
326 }
327
328 /* This is the main program. We accept only one argument, "-h", which
329 says we are writing the genrtl.h file. Otherwise we are writing the
330 genrtl.c file. */
331 extern int main PARAMS ((int, char **));
332
333 int
334 main (argc, argv)
335 int argc;
336 char **argv;
337 {
338 find_formats ();
339 genlegend ();
340
341 if (argc == 2 && argv[1][0] == '-' && argv[1][1] == 'h')
342 genheader ();
343 else
344 gencode ();
345
346 if (ferror (stdout) || fflush (stdout) || fclose (stdout))
347 return FATAL_EXIT_CODE;
348
349 return SUCCESS_EXIT_CODE;
350 }