* arm-protos.h (arm_dllexport_name_p, arm_dllimport_name_p): Constify.
[official-gcc.git] / gcc / genconfig.c
blob077216292e99dd7c5125dd80985fb19faa574536
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"
29 #include "gensupport.h"
31 static struct obstack obstack;
32 struct obstack *rtl_obstack = &obstack;
34 #define obstack_chunk_alloc xmalloc
35 #define obstack_chunk_free free
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 have_cc0_flag;
42 static int have_cmove_flag;
43 static int have_cond_exec_flag;
44 static int have_lo_sum_flag;
45 static int have_peephole_flag;
46 static int have_peephole2_flag;
48 /* Maximum number of insns seen in a split. */
49 static int max_insns_per_split = 1;
51 static int clobbers_seen_this_insn;
52 static int dup_operands_seen_this_insn;
54 static void walk_insn_part PARAMS ((rtx, int, int));
55 static void gen_insn PARAMS ((rtx));
56 static void gen_expand PARAMS ((rtx));
57 static void gen_split PARAMS ((rtx));
58 static void gen_peephole PARAMS ((rtx));
60 /* RECOG_P will be non-zero if this pattern was seen in a context where it will
61 be used to recognize, rather than just generate an insn.
63 NON_PC_SET_SRC will be non-zero if this pattern was seen in a SET_SRC
64 of a SET whose destination is not (pc). */
66 static void
67 walk_insn_part (part, recog_p, non_pc_set_src)
68 rtx part;
69 int recog_p;
70 int non_pc_set_src;
72 register int i, j;
73 register RTX_CODE code;
74 register const char *format_ptr;
76 if (part == 0)
77 return;
79 code = GET_CODE (part);
80 switch (code)
82 case CLOBBER:
83 clobbers_seen_this_insn++;
84 break;
86 case MATCH_OPERAND:
87 if (XINT (part, 0) > max_recog_operands)
88 max_recog_operands = XINT (part, 0);
89 return;
91 case MATCH_OP_DUP:
92 case MATCH_PAR_DUP:
93 ++dup_operands_seen_this_insn;
94 case MATCH_SCRATCH:
95 case MATCH_PARALLEL:
96 case MATCH_OPERATOR:
97 if (XINT (part, 0) > max_recog_operands)
98 max_recog_operands = XINT (part, 0);
99 /* Now scan the rtl's in the vector inside the MATCH_OPERATOR or
100 MATCH_PARALLEL. */
101 break;
103 case LABEL_REF:
104 if (GET_CODE (XEXP (part, 0)) == MATCH_OPERAND)
105 break;
106 return;
108 case MATCH_DUP:
109 ++dup_operands_seen_this_insn;
110 if (XINT (part, 0) > max_recog_operands)
111 max_recog_operands = XINT (part, 0);
112 return;
114 case CC0:
115 if (recog_p)
116 have_cc0_flag = 1;
117 return;
119 case LO_SUM:
120 if (recog_p)
121 have_lo_sum_flag = 1;
122 return;
124 case SET:
125 walk_insn_part (SET_DEST (part), 0, recog_p);
126 walk_insn_part (SET_SRC (part), recog_p,
127 GET_CODE (SET_DEST (part)) != PC);
128 return;
130 case IF_THEN_ELSE:
131 /* Only consider this machine as having a conditional move if the
132 two arms of the IF_THEN_ELSE are both MATCH_OPERAND. Otherwise,
133 we have some specific IF_THEN_ELSE construct (like the doz
134 instruction on the RS/6000) that can't be used in the general
135 context we want it for. */
137 if (recog_p && non_pc_set_src
138 && GET_CODE (XEXP (part, 1)) == MATCH_OPERAND
139 && GET_CODE (XEXP (part, 2)) == MATCH_OPERAND)
140 have_cmove_flag = 1;
141 break;
143 case COND_EXEC:
144 if (recog_p)
145 have_cond_exec_flag = 1;
146 break;
148 case REG: case CONST_INT: case SYMBOL_REF:
149 case PC:
150 return;
152 default:
153 break;
156 format_ptr = GET_RTX_FORMAT (GET_CODE (part));
158 for (i = 0; i < GET_RTX_LENGTH (GET_CODE (part)); i++)
159 switch (*format_ptr++)
161 case 'e':
162 case 'u':
163 walk_insn_part (XEXP (part, i), recog_p, non_pc_set_src);
164 break;
165 case 'E':
166 if (XVEC (part, i) != NULL)
167 for (j = 0; j < XVECLEN (part, i); j++)
168 walk_insn_part (XVECEXP (part, i, j), recog_p, non_pc_set_src);
169 break;
173 static void
174 gen_insn (insn)
175 rtx insn;
177 int i;
179 /* Walk the insn pattern to gather the #define's status. */
180 clobbers_seen_this_insn = 0;
181 dup_operands_seen_this_insn = 0;
182 if (XVEC (insn, 1) != 0)
183 for (i = 0; i < XVECLEN (insn, 1); i++)
184 walk_insn_part (XVECEXP (insn, 1, i), 1, 0);
186 if (clobbers_seen_this_insn > max_clobbers_per_insn)
187 max_clobbers_per_insn = clobbers_seen_this_insn;
188 if (dup_operands_seen_this_insn > max_dup_operands)
189 max_dup_operands = dup_operands_seen_this_insn;
192 /* Similar but scan a define_expand. */
194 static void
195 gen_expand (insn)
196 rtx insn;
198 int i;
200 /* Walk the insn pattern to gather the #define's status. */
202 /* Note that we don't bother recording the number of MATCH_DUPs
203 that occur in a gen_expand, because only reload cares about that. */
204 if (XVEC (insn, 1) != 0)
205 for (i = 0; i < XVECLEN (insn, 1); i++)
207 /* Compute the maximum SETs and CLOBBERS
208 in any one of the sub-insns;
209 don't sum across all of them. */
210 clobbers_seen_this_insn = 0;
212 walk_insn_part (XVECEXP (insn, 1, i), 0, 0);
214 if (clobbers_seen_this_insn > max_clobbers_per_insn)
215 max_clobbers_per_insn = clobbers_seen_this_insn;
219 /* Similar but scan a define_split. */
221 static void
222 gen_split (split)
223 rtx split;
225 int i;
227 /* Look through the patterns that are matched
228 to compute the maximum operand number. */
229 for (i = 0; i < XVECLEN (split, 0); i++)
230 walk_insn_part (XVECEXP (split, 0, i), 1, 0);
231 /* Look at the number of insns this insn could split into. */
232 if (XVECLEN (split, 2) > max_insns_per_split)
233 max_insns_per_split = XVECLEN (split, 2);
236 static void
237 gen_peephole (peep)
238 rtx peep;
240 int i;
242 /* Look through the patterns that are matched
243 to compute the maximum operand number. */
244 for (i = 0; i < XVECLEN (peep, 0); i++)
245 walk_insn_part (XVECEXP (peep, 0, i), 1, 0);
249 xmalloc (size)
250 size_t size;
252 register PTR val = (PTR) malloc (size);
254 if (val == 0)
255 fatal ("virtual memory exhausted");
257 return val;
261 xrealloc (old, size)
262 PTR old;
263 size_t size;
265 register PTR ptr;
266 if (old)
267 ptr = (PTR) realloc (old, size);
268 else
269 ptr = (PTR) malloc (size);
270 if (!ptr)
271 fatal ("virtual memory exhausted");
272 return ptr;
275 extern int main PARAMS ((int, char **));
278 main (argc, argv)
279 int argc;
280 char **argv;
282 rtx desc;
284 progname = "genconfig";
285 obstack_init (rtl_obstack);
287 if (argc <= 1)
288 fatal ("No input file name.");
290 if (init_md_reader (argv[1]) != SUCCESS_EXIT_CODE)
291 return (FATAL_EXIT_CODE);
293 printf ("/* Generated automatically by the program `genconfig'\n\
294 from the machine description file `md'. */\n\n");
296 /* Allow at least 10 operands for the sake of asm constructs. */
297 max_recog_operands = 9; /* We will add 1 later. */
298 max_dup_operands = 1;
300 /* Read the machine description. */
302 while (1)
304 int line_no, insn_code_number = 0;
306 desc = read_md_rtx (&line_no, &insn_code_number);
307 if (desc == NULL)
308 break;
310 switch (GET_CODE (desc))
312 case DEFINE_INSN:
313 gen_insn (desc);
314 break;
316 case DEFINE_EXPAND:
317 gen_expand (desc);
318 break;
320 case DEFINE_SPLIT:
321 gen_split (desc);
322 break;
324 case DEFINE_PEEPHOLE2:
325 have_peephole2_flag = 1;
326 gen_split (desc);
327 break;
329 case DEFINE_PEEPHOLE:
330 have_peephole_flag = 1;
331 gen_peephole (desc);
332 break;
334 default:
335 break;
339 printf ("\n#define MAX_RECOG_OPERANDS %d\n", max_recog_operands + 1);
341 printf ("\n#define MAX_DUP_OPERANDS %d\n", max_dup_operands);
343 /* This is conditionally defined, in case the user writes code which emits
344 more splits than we can readily see (and knows s/he does it). */
345 printf ("#ifndef MAX_INSNS_PER_SPLIT\n");
346 printf ("#define MAX_INSNS_PER_SPLIT %d\n", max_insns_per_split);
347 printf ("#endif\n");
349 if (have_cc0_flag)
350 printf ("#define HAVE_cc0 1\n");
352 if (have_cmove_flag)
353 printf ("#define HAVE_conditional_move 1\n");
355 if (have_cond_exec_flag)
356 printf ("#define HAVE_conditional_execution 1\n");
358 if (have_lo_sum_flag)
359 printf ("#define HAVE_lo_sum 1\n");
361 if (have_peephole_flag)
362 printf ("#define HAVE_peephole 1\n");
364 if (have_peephole2_flag)
365 printf ("#define HAVE_peephole2 1\n");
367 fflush (stdout);
368 return (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);
371 /* Define this so we can link with print-rtl.o to get debug_rtx function. */
372 const char *
373 get_insn_name (code)
374 int code ATTRIBUTE_UNUSED;
376 return NULL;