]> gcc.gnu.org Git - gcc.git/blame - gcc/genconfig.c
c-parse.in (language_string): Constify.
[gcc.git] / gcc / genconfig.c
CommitLineData
aabf90e8 1/* Generate from machine description:
aabf90e8 2 - some #define configuration flags.
34627ce6 3 Copyright (C) 1987, 1991, 1997, 1998, 1999 Free Software Foundation, Inc.
aabf90e8
RK
4
5This file is part of GNU CC.
6
7GNU CC is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2, or (at your option)
10any later version.
11
12GNU CC is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU CC; see the file COPYING. If not, write to
a35311b0
RK
19the Free Software Foundation, 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA. */
aabf90e8
RK
21
22
0d64891c 23#include "hconfig.h"
0b93b64e 24#include "system.h"
aabf90e8
RK
25#include "rtl.h"
26#include "obstack.h"
f8b6598e 27#include "errors.h"
aabf90e8
RK
28
29static struct obstack obstack;
30struct obstack *rtl_obstack = &obstack;
31
32#define obstack_chunk_alloc xmalloc
33#define obstack_chunk_free free
34
4db83042
MM
35/* Define this so we can link with print-rtl.o to get debug_rtx function. */
36char **insn_name_ptr = 0;
37
aabf90e8 38/* flags to determine output of machine description dependent #define's. */
7b7bceeb
RS
39static int max_recog_operands; /* Largest operand number seen. */
40static int max_dup_operands; /* Largest number of match_dup in any insn. */
aabf90e8
RK
41static int max_clobbers_per_insn;
42static int register_constraint_flag;
43static int have_cc0_flag;
674ba2d6 44static int have_cmove_flag;
aabf90e8
RK
45static int have_lo_sum_flag;
46
47/* Maximum number of insns seen in a split. */
48static int max_insns_per_split = 1;
49
50static int clobbers_seen_this_insn;
51static int dup_operands_seen_this_insn;
52
56c0e996
BS
53static void walk_insn_part PROTO((rtx, int, int));
54static void gen_insn PROTO((rtx));
55static void gen_expand PROTO((rtx));
56static void gen_split PROTO((rtx));
57static void gen_peephole PROTO((rtx));
58
aabf90e8 59/* RECOG_P will be non-zero if this pattern was seen in a context where it will
674ba2d6
RK
60 be used to recognize, rather than just generate an insn.
61
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). */
aabf90e8
RK
64
65static void
674ba2d6 66walk_insn_part (part, recog_p, non_pc_set_src)
aabf90e8 67 rtx part;
674ba2d6
RK
68 int recog_p;
69 int non_pc_set_src;
aabf90e8
RK
70{
71 register int i, j;
72 register RTX_CODE code;
6f7d635c 73 register const char *format_ptr;
aabf90e8
RK
74
75 if (part == 0)
76 return;
77
78 code = GET_CODE (part);
79 switch (code)
80 {
81 case CLOBBER:
82 clobbers_seen_this_insn++;
83 break;
84
85 case MATCH_OPERAND:
86 if (XINT (part, 0) > max_recog_operands)
87 max_recog_operands = XINT (part, 0);
88 if (XSTR (part, 2) && *XSTR (part, 2))
89 register_constraint_flag = 1;
90 return;
91
92 case MATCH_OP_DUP:
13ed0ef0 93 case MATCH_PAR_DUP:
aabf90e8
RK
94 ++dup_operands_seen_this_insn;
95 case MATCH_SCRATCH:
96 case MATCH_PARALLEL:
97 case MATCH_OPERATOR:
98 if (XINT (part, 0) > max_recog_operands)
99 max_recog_operands = XINT (part, 0);
100 /* Now scan the rtl's in the vector inside the MATCH_OPERATOR or
101 MATCH_PARALLEL. */
102 break;
103
104 case LABEL_REF:
105 if (GET_CODE (XEXP (part, 0)) == MATCH_OPERAND)
106 break;
107 return;
108
109 case MATCH_DUP:
110 ++dup_operands_seen_this_insn;
111 if (XINT (part, 0) > max_recog_operands)
112 max_recog_operands = XINT (part, 0);
113 return;
114
115 case CC0:
116 if (recog_p)
117 have_cc0_flag = 1;
118 return;
119
120 case LO_SUM:
121 if (recog_p)
122 have_lo_sum_flag = 1;
123 return;
124
674ba2d6
RK
125 case SET:
126 walk_insn_part (SET_DEST (part), 0, recog_p);
127 walk_insn_part (SET_SRC (part), recog_p,
128 GET_CODE (SET_DEST (part)) != PC);
129 return;
130
131 case IF_THEN_ELSE:
9e87cc89
RK
132 /* Only consider this machine as having a conditional move if the
133 two arms of the IF_THEN_ELSE are both MATCH_OPERAND. Otherwise,
134 we have some specific IF_THEN_ELSE construct (like the doz
135 instruction on the RS/6000) that can't be used in the general
136 context we want it for. */
137
138 if (recog_p && non_pc_set_src
139 && GET_CODE (XEXP (part, 1)) == MATCH_OPERAND
140 && GET_CODE (XEXP (part, 2)) == MATCH_OPERAND)
674ba2d6
RK
141 have_cmove_flag = 1;
142 break;
143
aabf90e8
RK
144 case REG: case CONST_INT: case SYMBOL_REF:
145 case PC:
146 return;
ccd043a9
RL
147
148 default:
149 break;
aabf90e8
RK
150 }
151
152 format_ptr = GET_RTX_FORMAT (GET_CODE (part));
153
154 for (i = 0; i < GET_RTX_LENGTH (GET_CODE (part)); i++)
155 switch (*format_ptr++)
156 {
157 case 'e':
158 case 'u':
674ba2d6 159 walk_insn_part (XEXP (part, i), recog_p, non_pc_set_src);
aabf90e8
RK
160 break;
161 case 'E':
162 if (XVEC (part, i) != NULL)
163 for (j = 0; j < XVECLEN (part, i); j++)
674ba2d6 164 walk_insn_part (XVECEXP (part, i, j), recog_p, non_pc_set_src);
aabf90e8
RK
165 break;
166 }
167}
168
169static void
170gen_insn (insn)
171 rtx insn;
172{
173 int i;
174
175 /* Walk the insn pattern to gather the #define's status. */
176 clobbers_seen_this_insn = 0;
177 dup_operands_seen_this_insn = 0;
178 if (XVEC (insn, 1) != 0)
179 for (i = 0; i < XVECLEN (insn, 1); i++)
674ba2d6 180 walk_insn_part (XVECEXP (insn, 1, i), 1, 0);
aabf90e8
RK
181
182 if (clobbers_seen_this_insn > max_clobbers_per_insn)
183 max_clobbers_per_insn = clobbers_seen_this_insn;
184 if (dup_operands_seen_this_insn > max_dup_operands)
185 max_dup_operands = dup_operands_seen_this_insn;
186}
187
188/* Similar but scan a define_expand. */
189
190static void
191gen_expand (insn)
192 rtx insn;
193{
194 int i;
195
196 /* Walk the insn pattern to gather the #define's status. */
197
198 /* Note that we don't bother recording the number of MATCH_DUPs
199 that occur in a gen_expand, because only reload cares about that. */
200 if (XVEC (insn, 1) != 0)
201 for (i = 0; i < XVECLEN (insn, 1); i++)
202 {
203 /* Compute the maximum SETs and CLOBBERS
204 in any one of the sub-insns;
205 don't sum across all of them. */
206 clobbers_seen_this_insn = 0;
207
674ba2d6 208 walk_insn_part (XVECEXP (insn, 1, i), 0, 0);
aabf90e8
RK
209
210 if (clobbers_seen_this_insn > max_clobbers_per_insn)
211 max_clobbers_per_insn = clobbers_seen_this_insn;
212 }
213}
214
215/* Similar but scan a define_split. */
216
217static void
218gen_split (split)
219 rtx split;
220{
221 int i;
222
223 /* Look through the patterns that are matched
224 to compute the maximum operand number. */
225 for (i = 0; i < XVECLEN (split, 0); i++)
674ba2d6 226 walk_insn_part (XVECEXP (split, 0, i), 1, 0);
aabf90e8
RK
227 /* Look at the number of insns this insn could split into. */
228 if (XVECLEN (split, 2) > max_insns_per_split)
229 max_insns_per_split = XVECLEN (split, 2);
230}
231
232static void
233gen_peephole (peep)
234 rtx peep;
235{
236 int i;
237
238 /* Look through the patterns that are matched
239 to compute the maximum operand number. */
240 for (i = 0; i < XVECLEN (peep, 0); i++)
674ba2d6 241 walk_insn_part (XVECEXP (peep, 0, i), 1, 0);
aabf90e8
RK
242}
243\f
2778b98d 244PTR
aabf90e8 245xmalloc (size)
2778b98d 246 size_t size;
aabf90e8 247{
2778b98d 248 register PTR val = (PTR) malloc (size);
aabf90e8
RK
249
250 if (val == 0)
251 fatal ("virtual memory exhausted");
252
253 return val;
254}
255
2778b98d 256PTR
470b68c0
RH
257xrealloc (old, size)
258 PTR old;
2778b98d 259 size_t size;
aabf90e8 260{
470b68c0 261 register PTR ptr;
09d83d25 262 if (old)
470b68c0
RH
263 ptr = (PTR) realloc (old, size);
264 else
265 ptr = (PTR) malloc (size);
266 if (!ptr)
aabf90e8 267 fatal ("virtual memory exhausted");
470b68c0 268 return ptr;
aabf90e8
RK
269}
270
aabf90e8
RK
271int
272main (argc, argv)
273 int argc;
274 char **argv;
275{
276 rtx desc;
277 FILE *infile;
aabf90e8
RK
278 register int c;
279
f8b6598e 280 progname = "genconfig";
aabf90e8
RK
281 obstack_init (rtl_obstack);
282
283 if (argc <= 1)
284 fatal ("No input file name.");
285
286 infile = fopen (argv[1], "r");
287 if (infile == 0)
288 {
289 perror (argv[1]);
290 exit (FATAL_EXIT_CODE);
291 }
292
aabf90e8
RK
293 printf ("/* Generated automatically by the program `genconfig'\n\
294from the machine description file `md'. */\n\n");
295
296 /* Allow at least 10 operands for the sake of asm constructs. */
7b7bceeb 297 max_recog_operands = 9; /* We will add 1 later. */
aabf90e8
RK
298 max_dup_operands = 1;
299
300 /* Read the machine description. */
301
302 while (1)
303 {
304 c = read_skip_spaces (infile);
305 if (c == EOF)
306 break;
307 ungetc (c, infile);
308
309 desc = read_rtx (infile);
310 if (GET_CODE (desc) == DEFINE_INSN)
311 gen_insn (desc);
312 if (GET_CODE (desc) == DEFINE_EXPAND)
313 gen_expand (desc);
314 if (GET_CODE (desc) == DEFINE_SPLIT)
315 gen_split (desc);
316 if (GET_CODE (desc) == DEFINE_PEEPHOLE)
317 gen_peephole (desc);
318 }
319
7b7bceeb 320 printf ("\n#define MAX_RECOG_OPERANDS %d\n", max_recog_operands + 1);
aabf90e8
RK
321
322 printf ("\n#define MAX_DUP_OPERANDS %d\n", max_dup_operands);
323
324 /* This is conditionally defined, in case the user writes code which emits
325 more splits than we can readily see (and knows s/he does it). */
326 printf ("#ifndef MAX_INSNS_PER_SPLIT\n#define MAX_INSNS_PER_SPLIT %d\n#endif\n",
327 max_insns_per_split);
328
329 if (register_constraint_flag)
330 printf ("#define REGISTER_CONSTRAINTS\n");
331
332 if (have_cc0_flag)
333 printf ("#define HAVE_cc0\n");
334
674ba2d6 335 if (have_cmove_flag)
1a395e69 336 printf ("#define HAVE_conditional_move\n");
674ba2d6 337
aabf90e8
RK
338 if (have_lo_sum_flag)
339 printf ("#define HAVE_lo_sum\n");
340
341 fflush (stdout);
342 exit (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);
343 /* NOTREACHED */
344 return 0;
345}
This page took 0.658009 seconds and 5 git commands to generate.