1998-09-21 Ben Elliston <bje@cygnus.com>
[official-gcc.git] / gcc / genconfig.c
blob75693c1fb65d8ee682a9d006c52e563522bb20d9
1 /* Generate from machine description:
2 - some #define configuration flags.
3 Copyright (C) 1987, 1991, 1997, 1998 Free Software Foundation, Inc.
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
23 #include "hconfig.h"
24 #include "system.h"
25 #include "rtl.h"
26 #include "obstack.h"
28 static struct obstack obstack;
29 struct obstack *rtl_obstack = &obstack;
31 #define obstack_chunk_alloc xmalloc
32 #define obstack_chunk_free free
34 /* Define this so we can link with print-rtl.o to get debug_rtx function. */
35 char **insn_name_ptr = 0;
37 /* flags to determine output of machine description dependent #define's. */
38 static int max_recog_operands; /* Largest operand number seen. */
39 static int max_dup_operands; /* Largest number of match_dup in any insn. */
40 static int max_clobbers_per_insn;
41 static int register_constraint_flag;
42 static int have_cc0_flag;
43 static int have_cmove_flag;
44 static int have_lo_sum_flag;
46 /* Maximum number of insns seen in a split. */
47 static int max_insns_per_split = 1;
49 static int clobbers_seen_this_insn;
50 static int dup_operands_seen_this_insn;
52 char *xmalloc PROTO((unsigned));
53 static void fatal PVPROTO ((char *, ...)) ATTRIBUTE_PRINTF_1;
54 void fancy_abort PROTO((void));
56 static void walk_insn_part PROTO((rtx, int, int));
57 static void gen_insn PROTO((rtx));
58 static void gen_expand PROTO((rtx));
59 static void gen_split PROTO((rtx));
60 static void gen_peephole PROTO((rtx));
62 /* RECOG_P will be non-zero if this pattern was seen in a context where it will
63 be used to recognize, rather than just generate an insn.
65 NON_PC_SET_SRC will be non-zero if this pattern was seen in a SET_SRC
66 of a SET whose destination is not (pc). */
68 static void
69 walk_insn_part (part, recog_p, non_pc_set_src)
70 rtx part;
71 int recog_p;
72 int non_pc_set_src;
74 register int i, j;
75 register RTX_CODE code;
76 register char *format_ptr;
78 if (part == 0)
79 return;
81 code = GET_CODE (part);
82 switch (code)
84 case CLOBBER:
85 clobbers_seen_this_insn++;
86 break;
88 case MATCH_OPERAND:
89 if (XINT (part, 0) > max_recog_operands)
90 max_recog_operands = XINT (part, 0);
91 if (XSTR (part, 2) && *XSTR (part, 2))
92 register_constraint_flag = 1;
93 return;
95 case MATCH_OP_DUP:
96 case MATCH_PAR_DUP:
97 ++dup_operands_seen_this_insn;
98 case MATCH_SCRATCH:
99 case MATCH_PARALLEL:
100 case MATCH_OPERATOR:
101 if (XINT (part, 0) > max_recog_operands)
102 max_recog_operands = XINT (part, 0);
103 /* Now scan the rtl's in the vector inside the MATCH_OPERATOR or
104 MATCH_PARALLEL. */
105 break;
107 case LABEL_REF:
108 if (GET_CODE (XEXP (part, 0)) == MATCH_OPERAND)
109 break;
110 return;
112 case MATCH_DUP:
113 ++dup_operands_seen_this_insn;
114 if (XINT (part, 0) > max_recog_operands)
115 max_recog_operands = XINT (part, 0);
116 return;
118 case CC0:
119 if (recog_p)
120 have_cc0_flag = 1;
121 return;
123 case LO_SUM:
124 if (recog_p)
125 have_lo_sum_flag = 1;
126 return;
128 case SET:
129 walk_insn_part (SET_DEST (part), 0, recog_p);
130 walk_insn_part (SET_SRC (part), recog_p,
131 GET_CODE (SET_DEST (part)) != PC);
132 return;
134 case IF_THEN_ELSE:
135 /* Only consider this machine as having a conditional move if the
136 two arms of the IF_THEN_ELSE are both MATCH_OPERAND. Otherwise,
137 we have some specific IF_THEN_ELSE construct (like the doz
138 instruction on the RS/6000) that can't be used in the general
139 context we want it for. */
141 if (recog_p && non_pc_set_src
142 && GET_CODE (XEXP (part, 1)) == MATCH_OPERAND
143 && GET_CODE (XEXP (part, 2)) == MATCH_OPERAND)
144 have_cmove_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);
247 char *
248 xmalloc (size)
249 unsigned size;
251 register char *val = (char *) malloc (size);
253 if (val == 0)
254 fatal ("virtual memory exhausted");
256 return val;
259 char *
260 xrealloc (ptr, size)
261 char *ptr;
262 unsigned size;
264 char *result = (char *) realloc (ptr, size);
265 if (!result)
266 fatal ("virtual memory exhausted");
267 return result;
270 static void
271 fatal VPROTO ((char *format, ...))
273 #ifndef __STDC__
274 char *format;
275 #endif
276 va_list ap;
278 VA_START (ap, format);
280 #ifndef __STDC__
281 format = va_arg (ap, char *);
282 #endif
284 fprintf (stderr, "genconfig: ");
285 vfprintf (stderr, format, ap);
286 va_end (ap);
287 fprintf (stderr, "\n");
288 exit (FATAL_EXIT_CODE);
291 /* More 'friendly' abort that prints the line and file.
292 config.h can #define abort fancy_abort if you like that sort of thing. */
294 void
295 fancy_abort ()
297 fatal ("Internal gcc abort.");
301 main (argc, argv)
302 int argc;
303 char **argv;
305 rtx desc;
306 FILE *infile;
307 register int c;
309 obstack_init (rtl_obstack);
311 if (argc <= 1)
312 fatal ("No input file name.");
314 infile = fopen (argv[1], "r");
315 if (infile == 0)
317 perror (argv[1]);
318 exit (FATAL_EXIT_CODE);
321 init_rtl ();
323 printf ("/* Generated automatically by the program `genconfig'\n\
324 from the machine description file `md'. */\n\n");
326 /* Allow at least 10 operands for the sake of asm constructs. */
327 max_recog_operands = 9; /* We will add 1 later. */
328 max_dup_operands = 1;
330 /* Read the machine description. */
332 while (1)
334 c = read_skip_spaces (infile);
335 if (c == EOF)
336 break;
337 ungetc (c, infile);
339 desc = read_rtx (infile);
340 if (GET_CODE (desc) == DEFINE_INSN)
341 gen_insn (desc);
342 if (GET_CODE (desc) == DEFINE_EXPAND)
343 gen_expand (desc);
344 if (GET_CODE (desc) == DEFINE_SPLIT)
345 gen_split (desc);
346 if (GET_CODE (desc) == DEFINE_PEEPHOLE)
347 gen_peephole (desc);
350 printf ("\n#define MAX_RECOG_OPERANDS %d\n", max_recog_operands + 1);
352 printf ("\n#define MAX_DUP_OPERANDS %d\n", max_dup_operands);
354 /* This is conditionally defined, in case the user writes code which emits
355 more splits than we can readily see (and knows s/he does it). */
356 printf ("#ifndef MAX_INSNS_PER_SPLIT\n#define MAX_INSNS_PER_SPLIT %d\n#endif\n",
357 max_insns_per_split);
359 if (register_constraint_flag)
360 printf ("#define REGISTER_CONSTRAINTS\n");
362 if (have_cc0_flag)
363 printf ("#define HAVE_cc0\n");
365 if (have_cmove_flag)
366 printf ("#define HAVE_conditional_move\n");
368 if (have_lo_sum_flag)
369 printf ("#define HAVE_lo_sum\n");
371 fflush (stdout);
372 exit (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);
373 /* NOTREACHED */
374 return 0;