* cppexp.c (parse_charconst): Null does not end character
[official-gcc.git] / gcc / genconfig.c
blob65c8701ab227942be4d8f6f84f412c803f4f4487
1 /* Generate from machine description:
2 - some #define configuration flags.
3 Copyright (C) 1987, 1991, 1997, 1998,
4 1999, 2000 Free Software Foundation, Inc.
6 This file is part of GNU CC.
8 GNU CC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
13 GNU CC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU CC; see the file COPYING. If not, write to
20 the Free Software Foundation, 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
24 #include "hconfig.h"
25 #include "system.h"
26 #include "rtl.h"
27 #include "obstack.h"
28 #include "errors.h"
30 static struct obstack obstack;
31 struct obstack *rtl_obstack = &obstack;
33 #define obstack_chunk_alloc xmalloc
34 #define obstack_chunk_free free
36 /* flags to determine output of machine description dependent #define's. */
37 static int max_recog_operands; /* Largest operand number seen. */
38 static int max_dup_operands; /* Largest number of match_dup in any insn. */
39 static int max_clobbers_per_insn;
40 static int have_cc0_flag;
41 static int have_cmove_flag;
42 static int have_cond_exec_flag;
43 static int have_lo_sum_flag;
44 static int have_peephole_flag;
45 static int have_peephole2_flag;
47 /* Maximum number of insns seen in a split. */
48 static int max_insns_per_split = 1;
50 static int clobbers_seen_this_insn;
51 static int dup_operands_seen_this_insn;
53 static void walk_insn_part PARAMS ((rtx, int, int));
54 static void gen_insn PARAMS ((rtx));
55 static void gen_expand PARAMS ((rtx));
56 static void gen_split PARAMS ((rtx));
57 static void gen_peephole PARAMS ((rtx));
59 /* RECOG_P will be non-zero if this pattern was seen in a context where it will
60 be used to recognize, rather than just generate an insn.
62 NON_PC_SET_SRC will be non-zero if this pattern was seen in a SET_SRC
63 of a SET whose destination is not (pc). */
65 static void
66 walk_insn_part (part, recog_p, non_pc_set_src)
67 rtx part;
68 int recog_p;
69 int non_pc_set_src;
71 register int i, j;
72 register RTX_CODE code;
73 register const char *format_ptr;
75 if (part == 0)
76 return;
78 code = GET_CODE (part);
79 switch (code)
81 case CLOBBER:
82 clobbers_seen_this_insn++;
83 break;
85 case MATCH_OPERAND:
86 if (XINT (part, 0) > max_recog_operands)
87 max_recog_operands = XINT (part, 0);
88 return;
90 case MATCH_OP_DUP:
91 case MATCH_PAR_DUP:
92 ++dup_operands_seen_this_insn;
93 case MATCH_SCRATCH:
94 case MATCH_PARALLEL:
95 case MATCH_OPERATOR:
96 if (XINT (part, 0) > max_recog_operands)
97 max_recog_operands = XINT (part, 0);
98 /* Now scan the rtl's in the vector inside the MATCH_OPERATOR or
99 MATCH_PARALLEL. */
100 break;
102 case LABEL_REF:
103 if (GET_CODE (XEXP (part, 0)) == MATCH_OPERAND)
104 break;
105 return;
107 case MATCH_DUP:
108 ++dup_operands_seen_this_insn;
109 if (XINT (part, 0) > max_recog_operands)
110 max_recog_operands = XINT (part, 0);
111 return;
113 case CC0:
114 if (recog_p)
115 have_cc0_flag = 1;
116 return;
118 case LO_SUM:
119 if (recog_p)
120 have_lo_sum_flag = 1;
121 return;
123 case SET:
124 walk_insn_part (SET_DEST (part), 0, recog_p);
125 walk_insn_part (SET_SRC (part), recog_p,
126 GET_CODE (SET_DEST (part)) != PC);
127 return;
129 case IF_THEN_ELSE:
130 /* Only consider this machine as having a conditional move if the
131 two arms of the IF_THEN_ELSE are both MATCH_OPERAND. Otherwise,
132 we have some specific IF_THEN_ELSE construct (like the doz
133 instruction on the RS/6000) that can't be used in the general
134 context we want it for. */
136 if (recog_p && non_pc_set_src
137 && GET_CODE (XEXP (part, 1)) == MATCH_OPERAND
138 && GET_CODE (XEXP (part, 2)) == MATCH_OPERAND)
139 have_cmove_flag = 1;
140 break;
142 case COND_EXEC:
143 if (recog_p)
144 have_cond_exec_flag = 1;
145 break;
147 case REG: case CONST_INT: case SYMBOL_REF:
148 case PC:
149 return;
151 default:
152 break;
155 format_ptr = GET_RTX_FORMAT (GET_CODE (part));
157 for (i = 0; i < GET_RTX_LENGTH (GET_CODE (part)); i++)
158 switch (*format_ptr++)
160 case 'e':
161 case 'u':
162 walk_insn_part (XEXP (part, i), recog_p, non_pc_set_src);
163 break;
164 case 'E':
165 if (XVEC (part, i) != NULL)
166 for (j = 0; j < XVECLEN (part, i); j++)
167 walk_insn_part (XVECEXP (part, i, j), recog_p, non_pc_set_src);
168 break;
172 static void
173 gen_insn (insn)
174 rtx insn;
176 int i;
178 /* Walk the insn pattern to gather the #define's status. */
179 clobbers_seen_this_insn = 0;
180 dup_operands_seen_this_insn = 0;
181 if (XVEC (insn, 1) != 0)
182 for (i = 0; i < XVECLEN (insn, 1); i++)
183 walk_insn_part (XVECEXP (insn, 1, i), 1, 0);
185 if (clobbers_seen_this_insn > max_clobbers_per_insn)
186 max_clobbers_per_insn = clobbers_seen_this_insn;
187 if (dup_operands_seen_this_insn > max_dup_operands)
188 max_dup_operands = dup_operands_seen_this_insn;
191 /* Similar but scan a define_expand. */
193 static void
194 gen_expand (insn)
195 rtx insn;
197 int i;
199 /* Walk the insn pattern to gather the #define's status. */
201 /* Note that we don't bother recording the number of MATCH_DUPs
202 that occur in a gen_expand, because only reload cares about that. */
203 if (XVEC (insn, 1) != 0)
204 for (i = 0; i < XVECLEN (insn, 1); i++)
206 /* Compute the maximum SETs and CLOBBERS
207 in any one of the sub-insns;
208 don't sum across all of them. */
209 clobbers_seen_this_insn = 0;
211 walk_insn_part (XVECEXP (insn, 1, i), 0, 0);
213 if (clobbers_seen_this_insn > max_clobbers_per_insn)
214 max_clobbers_per_insn = clobbers_seen_this_insn;
218 /* Similar but scan a define_split. */
220 static void
221 gen_split (split)
222 rtx split;
224 int i;
226 /* Look through the patterns that are matched
227 to compute the maximum operand number. */
228 for (i = 0; i < XVECLEN (split, 0); i++)
229 walk_insn_part (XVECEXP (split, 0, i), 1, 0);
230 /* Look at the number of insns this insn could split into. */
231 if (XVECLEN (split, 2) > max_insns_per_split)
232 max_insns_per_split = XVECLEN (split, 2);
235 static void
236 gen_peephole (peep)
237 rtx peep;
239 int i;
241 /* Look through the patterns that are matched
242 to compute the maximum operand number. */
243 for (i = 0; i < XVECLEN (peep, 0); i++)
244 walk_insn_part (XVECEXP (peep, 0, i), 1, 0);
248 xmalloc (size)
249 size_t size;
251 register PTR val = (PTR) malloc (size);
253 if (val == 0)
254 fatal ("virtual memory exhausted");
256 return val;
260 xrealloc (old, size)
261 PTR old;
262 size_t size;
264 register PTR ptr;
265 if (old)
266 ptr = (PTR) realloc (old, size);
267 else
268 ptr = (PTR) malloc (size);
269 if (!ptr)
270 fatal ("virtual memory exhausted");
271 return ptr;
274 extern int main PARAMS ((int, char **));
277 main (argc, argv)
278 int argc;
279 char **argv;
281 rtx desc;
282 FILE *infile;
283 register int c;
285 progname = "genconfig";
286 obstack_init (rtl_obstack);
288 if (argc <= 1)
289 fatal ("No input file name.");
291 infile = fopen (argv[1], "r");
292 if (infile == 0)
294 perror (argv[1]);
295 return (FATAL_EXIT_CODE);
297 read_rtx_filename = argv[1];
299 printf ("/* Generated automatically by the program `genconfig'\n\
300 from the machine description file `md'. */\n\n");
302 /* Allow at least 10 operands for the sake of asm constructs. */
303 max_recog_operands = 9; /* We will add 1 later. */
304 max_dup_operands = 1;
306 /* Read the machine description. */
308 while (1)
310 c = read_skip_spaces (infile);
311 if (c == EOF)
312 break;
313 ungetc (c, infile);
315 desc = read_rtx (infile);
316 if (GET_CODE (desc) == DEFINE_INSN)
317 gen_insn (desc);
318 if (GET_CODE (desc) == DEFINE_EXPAND)
319 gen_expand (desc);
320 if (GET_CODE (desc) == DEFINE_SPLIT)
321 gen_split (desc);
322 if (GET_CODE (desc) == DEFINE_PEEPHOLE2)
324 have_peephole2_flag = 1;
325 gen_split (desc);
327 if (GET_CODE (desc) == DEFINE_PEEPHOLE)
329 have_peephole_flag = 1;
330 gen_peephole (desc);
334 printf ("\n#define MAX_RECOG_OPERANDS %d\n", max_recog_operands + 1);
336 printf ("\n#define MAX_DUP_OPERANDS %d\n", max_dup_operands);
338 /* This is conditionally defined, in case the user writes code which emits
339 more splits than we can readily see (and knows s/he does it). */
340 printf ("#ifndef MAX_INSNS_PER_SPLIT\n");
341 printf ("#define MAX_INSNS_PER_SPLIT %d\n", max_insns_per_split);
342 printf ("#endif\n");
344 if (have_cc0_flag)
345 printf ("#define HAVE_cc0\n");
347 if (have_cmove_flag)
348 printf ("#define HAVE_conditional_move\n");
350 if (have_cond_exec_flag)
351 printf ("#define HAVE_conditional_execution\n");
353 if (have_lo_sum_flag)
354 printf ("#define HAVE_lo_sum\n");
356 if (have_peephole_flag)
357 printf ("#define HAVE_peephole\n");
359 if (have_peephole2_flag)
360 printf ("#define HAVE_peephole2\n");
362 fflush (stdout);
363 return (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);
366 /* Define this so we can link with print-rtl.o to get debug_rtx function. */
367 const char *
368 get_insn_name (code)
369 int code ATTRIBUTE_UNUSED;
371 return NULL;