1 /* Generate code to allocate RTL structures.
2 Copyright (C) 1997, 1998, 1999, 2000, 2002, 2003
3 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
25 #include "coretypes.h"
36 const char *const enumname
, *const name
, *const format
;
39 #define DEF_RTL_EXPR(ENUM, NAME, FORMAT, CLASS) { #ENUM, NAME, FORMAT },
41 static const struct rtx_definition defs
[] =
43 #include "rtl.def" /* rtl expressions are documented here */
46 static const char *formats
[NUM_RTX_CODE
];
48 static const char *type_from_format (int);
49 static const char *accessor_from_format (int);
50 static int special_format (const char *);
51 static int special_rtx (int);
52 static int excluded_rtx (int);
53 static void find_formats (void);
54 static void gendecl (const char *);
55 static void genmacro (int);
56 static void gendef (const char *);
57 static void genlegend (void);
58 static void genheader (void);
59 static void gencode (void);
61 /* Decode a format letter into a C type string. */
64 type_from_format (int c
)
72 return "HOST_WIDE_INT ";
75 return "const char *";
83 return "struct bitmap_head_def *"; /* bitmap - typedef not available */
85 return "union tree_node *"; /* tree - typedef not available */
87 return "struct basic_block_def *"; /* basic block - typedef not available */
93 /* Decode a format letter into the proper accessor function. */
96 accessor_from_format (int c
)
129 /* Return nonzero if we should ignore FMT, an RTL format, when making
130 the list of formats we write routines to create. */
133 special_format (const char *fmt
)
135 return (strchr (fmt
, '*') != 0
136 || strchr (fmt
, 'V') != 0
137 || strchr (fmt
, 'S') != 0
138 || strchr (fmt
, 'n') != 0);
141 /* Return nonzero if the RTL code given by index IDX is one that we should
142 generate a gen_rtx_raw_FOO macro for, not gen_rtx_FOO (because gen_rtx_FOO
143 is a wrapper in emit-rtl.c). */
146 special_rtx (int idx
)
148 return (strcmp (defs
[idx
].enumname
, "CONST_INT") == 0
149 || strcmp (defs
[idx
].enumname
, "REG") == 0
150 || strcmp (defs
[idx
].enumname
, "SUBREG") == 0
151 || strcmp (defs
[idx
].enumname
, "MEM") == 0
152 || strcmp (defs
[idx
].enumname
, "CONST_VECTOR") == 0);
155 /* Return nonzero if the RTL code given by index IDX is one that we should
156 generate no macro for at all (because gen_rtx_FOO is never used or
157 cannot have the obvious interface). */
160 excluded_rtx (int idx
)
162 return (strcmp (defs
[idx
].enumname
, "CONST_DOUBLE") == 0);
165 /* Place a list of all format specifiers we use into the array FORMAT. */
172 for (i
= 0; i
< NUM_RTX_CODE
; i
++)
176 if (special_format (defs
[i
].format
))
179 for (f
= formats
; *f
; f
++)
180 if (! strcmp (*f
, defs
[i
].format
))
188 /* Write the declarations for the routine to allocate RTL with FORMAT. */
191 gendecl (const char *format
)
196 printf ("extern rtx gen_rtx_fmt_%s\t (RTX_CODE, ", format
);
197 printf ("enum machine_mode mode");
199 /* Write each parameter that is needed and start a new line when the line
201 for (p
= format
, i
= 0, pos
= 75; *p
!= 0; p
++)
204 int ourlen
= strlen (type_from_format (*p
)) + 6 + (i
> 9);
207 if (pos
+ ourlen
> 76)
208 printf ("\n\t\t\t\t "), pos
= 39;
210 printf (" %sarg%d", type_from_format (*p
), i
++);
217 /* Generate macros to generate RTL of code IDX using the functions we
226 /* We write a macro that defines gen_rtx_RTLCODE to be an equivalent to
227 gen_rtx_fmt_FORMAT where FORMAT is the RTX_FORMAT of RTLCODE. */
229 if (excluded_rtx (idx
))
230 /* Don't define a macro for this code. */
233 printf ("#define gen_rtx_%s%s(MODE",
234 special_rtx (idx
) ? "raw_" : "", defs
[idx
].enumname
);
236 for (p
= defs
[idx
].format
, i
= 0; *p
!= 0; p
++)
238 printf (", ARG%d", i
++);
240 printf (") \\\n gen_rtx_fmt_%s (%s, (MODE)",
241 defs
[idx
].format
, defs
[idx
].enumname
);
243 for (p
= defs
[idx
].format
, i
= 0; *p
!= 0; p
++)
245 printf (", (ARG%d)", i
++);
250 /* Generate the code for the function to generate RTL whose
254 gendef (const char *format
)
259 /* Start by writing the definition of the function name and the types
262 printf ("rtx\ngen_rtx_fmt_%s (RTX_CODE code, enum machine_mode mode", format
);
263 for (p
= format
, i
= 0; *p
!= 0; p
++)
265 printf (",\n\t%sarg%d", type_from_format (*p
), i
++);
269 /* Now write out the body of the function itself, which allocates
270 the memory and initializes it. */
273 printf (" rt = ggc_alloc_rtx (%d);\n", (int) strlen (format
));
275 puts (" memset (rt, 0, sizeof (struct rtx_def) - sizeof (rtunion));\n");
276 puts (" PUT_CODE (rt, code);");
277 puts (" PUT_MODE (rt, mode);");
279 for (p
= format
, i
= j
= 0; *p
; ++p
, ++i
)
281 printf (" %s (rt, %d) = arg%d;\n", accessor_from_format (*p
), i
, j
++);
283 printf (" X0EXP (rt, %d) = NULL_RTX;\n", i
);
285 puts ("\n return rt;\n}\n");
288 /* Generate the documentation header for files we write. */
293 puts ("/* Generated automatically by gengenrtl from rtl.def. */\n");
296 /* Generate the text of the header file we make, genrtl.h. */
304 puts ("#ifndef GCC_GENRTL_H");
305 puts ("#define GCC_GENRTL_H\n");
307 for (fmt
= formats
; *fmt
; ++fmt
)
312 for (i
= 0; i
< NUM_RTX_CODE
; i
++)
313 if (! special_format (defs
[i
].format
))
316 puts ("\n#endif /* GCC_GENRTL_H */");
319 /* Generate the text of the code file we write, genrtl.c. */
326 puts ("#include \"config.h\"");
327 puts ("#include \"system.h\"");
328 puts ("#include \"coretypes.h\"");
329 puts ("#include \"tm.h\"");
330 puts ("#include \"obstack.h\"");
331 puts ("#include \"rtl.h\"");
332 puts ("#include \"ggc.h\"\n");
334 for (fmt
= formats
; *fmt
!= 0; fmt
++)
338 /* This is the main program. We accept only one argument, "-h", which
339 says we are writing the genrtl.h file. Otherwise we are writing the
343 main (int argc
, char **argv
)
348 if (argc
== 2 && argv
[1][0] == '-' && argv
[1][1] == 'h')
353 if (ferror (stdout
) || fflush (stdout
) || fclose (stdout
))
354 return FATAL_EXIT_CODE
;
356 return SUCCESS_EXIT_CODE
;