OSDN Git Service

820e1d850bfba49ff7e39e9615277e1d0ab078cb
[pf3gnuchains/gcc-fork.git] / gcc / genconfig.c
1 /* Generate from machine description:
2
3    - some #define configuration flags.
4    Copyright (C) 1987, 1991 Free Software Foundation, Inc.
5
6 This file is part of GNU CC.
7
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.
12
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.
17
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, 675 Mass Ave, Cambridge, MA 02139, USA.  */
21
22
23 #include <stdio.h>
24 #include "config.h"
25 #include "rtl.h"
26 #include "obstack.h"
27
28 static struct obstack obstack;
29 struct obstack *rtl_obstack = &obstack;
30
31 #define obstack_chunk_alloc xmalloc
32 #define obstack_chunk_free free
33
34 extern void free ();
35 extern rtx read_rtx ();
36
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;
45
46 /* Maximum number of insns seen in a split.  */
47 static int max_insns_per_split = 1;
48
49 static int clobbers_seen_this_insn;
50 static int dup_operands_seen_this_insn;
51
52 char *xmalloc ();
53 static void fatal ();
54 void fancy_abort ();
55
56 /* RECOG_P will be non-zero if this pattern was seen in a context where it will
57    be used to recognize, rather than just generate an insn. 
58
59    NON_PC_SET_SRC will be non-zero if this pattern was seen in a SET_SRC
60    of a SET whose destination is not (pc).  */
61
62 static void
63 walk_insn_part (part, recog_p, non_pc_set_src)
64      rtx part;
65      int recog_p;
66      int non_pc_set_src;
67 {
68   register int i, j;
69   register RTX_CODE code;
70   register char *format_ptr;
71
72   if (part == 0)
73     return;
74
75   code = GET_CODE (part);
76   switch (code)
77     {
78     case CLOBBER:
79       clobbers_seen_this_insn++;
80       break;
81
82     case MATCH_OPERAND:
83       if (XINT (part, 0) > max_recog_operands)
84         max_recog_operands = XINT (part, 0);
85       if (XSTR (part, 2) && *XSTR (part, 2))
86         register_constraint_flag = 1;
87       return;
88
89     case MATCH_OP_DUP:
90     case MATCH_PAR_DUP:
91       ++dup_operands_seen_this_insn;
92     case MATCH_SCRATCH:
93     case MATCH_PARALLEL:
94     case MATCH_OPERATOR:
95       if (XINT (part, 0) > max_recog_operands)
96         max_recog_operands = XINT (part, 0);
97       /* Now scan the rtl's in the vector inside the MATCH_OPERATOR or
98          MATCH_PARALLEL.  */
99       break;
100
101     case LABEL_REF:
102       if (GET_CODE (XEXP (part, 0)) == MATCH_OPERAND)
103         break;
104       return;
105
106     case MATCH_DUP:
107       ++dup_operands_seen_this_insn;
108       if (XINT (part, 0) > max_recog_operands)
109         max_recog_operands = XINT (part, 0);
110       return;
111
112     case CC0:
113       if (recog_p)
114         have_cc0_flag = 1;
115       return;
116
117     case LO_SUM:
118       if (recog_p)
119         have_lo_sum_flag = 1;
120       return;
121
122     case SET:
123       walk_insn_part (SET_DEST (part), 0, recog_p);
124       walk_insn_part (SET_SRC (part), recog_p,
125                       GET_CODE (SET_DEST (part)) != PC);
126       return;
127
128     case IF_THEN_ELSE:
129       if (recog_p && non_pc_set_src)
130         have_cmove_flag = 1;
131       break;
132
133     case REG: case CONST_INT: case SYMBOL_REF:
134     case PC:
135       return;
136     }
137
138   format_ptr = GET_RTX_FORMAT (GET_CODE (part));
139
140   for (i = 0; i < GET_RTX_LENGTH (GET_CODE (part)); i++)
141     switch (*format_ptr++)
142       {
143       case 'e':
144       case 'u':
145         walk_insn_part (XEXP (part, i), recog_p, non_pc_set_src);
146         break;
147       case 'E':
148         if (XVEC (part, i) != NULL)
149           for (j = 0; j < XVECLEN (part, i); j++)
150             walk_insn_part (XVECEXP (part, i, j), recog_p, non_pc_set_src);
151         break;
152       }
153 }
154
155 static void
156 gen_insn (insn)
157      rtx insn;
158 {
159   int i;
160
161   /* Walk the insn pattern to gather the #define's status.  */
162   clobbers_seen_this_insn = 0;
163   dup_operands_seen_this_insn = 0;
164   if (XVEC (insn, 1) != 0)
165     for (i = 0; i < XVECLEN (insn, 1); i++)
166       walk_insn_part (XVECEXP (insn, 1, i), 1, 0);
167
168   if (clobbers_seen_this_insn > max_clobbers_per_insn)
169     max_clobbers_per_insn = clobbers_seen_this_insn;
170   if (dup_operands_seen_this_insn > max_dup_operands)
171     max_dup_operands = dup_operands_seen_this_insn;
172 }
173
174 /* Similar but scan a define_expand.  */
175
176 static void
177 gen_expand (insn)
178      rtx insn;
179 {
180   int i;
181
182   /* Walk the insn pattern to gather the #define's status.  */
183
184   /* Note that we don't bother recording the number of MATCH_DUPs
185      that occur in a gen_expand, because only reload cares about that.  */
186   if (XVEC (insn, 1) != 0)
187     for (i = 0; i < XVECLEN (insn, 1); i++)
188       {
189         /* Compute the maximum SETs and CLOBBERS
190            in any one of the sub-insns;
191            don't sum across all of them.  */
192         clobbers_seen_this_insn = 0;
193
194         walk_insn_part (XVECEXP (insn, 1, i), 0, 0);
195
196         if (clobbers_seen_this_insn > max_clobbers_per_insn)
197           max_clobbers_per_insn = clobbers_seen_this_insn;
198       }
199 }
200
201 /* Similar but scan a define_split.  */
202
203 static void
204 gen_split (split)
205      rtx split;
206 {
207   int i;
208
209   /* Look through the patterns that are matched
210      to compute the maximum operand number.  */
211   for (i = 0; i < XVECLEN (split, 0); i++)
212     walk_insn_part (XVECEXP (split, 0, i), 1, 0);
213   /* Look at the number of insns this insn could split into.  */
214   if (XVECLEN (split, 2) > max_insns_per_split)
215     max_insns_per_split = XVECLEN (split, 2);
216 }
217
218 static void
219 gen_peephole (peep)
220      rtx peep;
221 {
222   int i;
223
224   /* Look through the patterns that are matched
225      to compute the maximum operand number.  */
226   for (i = 0; i < XVECLEN (peep, 0); i++)
227     walk_insn_part (XVECEXP (peep, 0, i), 1, 0);
228 }
229 \f
230 char *
231 xmalloc (size)
232      unsigned size;
233 {
234   register char *val = (char *) malloc (size);
235
236   if (val == 0)
237     fatal ("virtual memory exhausted");
238
239   return val;
240 }
241
242 char *
243 xrealloc (ptr, size)
244      char *ptr;
245      unsigned size;
246 {
247   char *result = (char *) realloc (ptr, size);
248   if (!result)
249     fatal ("virtual memory exhausted");
250   return result;
251 }
252
253 static void
254 fatal (s, a1, a2)
255      char *s;
256 {
257   fprintf (stderr, "genconfig: ");
258   fprintf (stderr, s, a1, a2);
259   fprintf (stderr, "\n");
260   exit (FATAL_EXIT_CODE);
261 }
262
263 /* More 'friendly' abort that prints the line and file.
264    config.h can #define abort fancy_abort if you like that sort of thing.  */
265
266 void
267 fancy_abort ()
268 {
269   fatal ("Internal gcc abort.");
270 }
271 \f
272 int
273 main (argc, argv)
274      int argc;
275      char **argv;
276 {
277   rtx desc;
278   FILE *infile;
279   register int c;
280
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
293   init_rtl ();
294
295   printf ("/* Generated automatically by the program `genconfig'\n\
296 from the machine description file `md'.  */\n\n");
297
298   /* Allow at least 10 operands for the sake of asm constructs.  */
299   max_recog_operands = 9;  /* We will add 1 later.  */
300   max_dup_operands = 1;
301
302   /* Read the machine description.  */
303
304   while (1)
305     {
306       c = read_skip_spaces (infile);
307       if (c == EOF)
308         break;
309       ungetc (c, infile);
310
311       desc = read_rtx (infile);
312       if (GET_CODE (desc) == DEFINE_INSN)
313         gen_insn (desc);
314       if (GET_CODE (desc) == DEFINE_EXPAND)
315         gen_expand (desc);
316       if (GET_CODE (desc) == DEFINE_SPLIT)
317         gen_split (desc);
318       if (GET_CODE (desc) == DEFINE_PEEPHOLE)
319         gen_peephole (desc);
320     }
321
322   printf ("\n#define MAX_RECOG_OPERANDS %d\n", max_recog_operands + 1);
323
324   printf ("\n#define MAX_DUP_OPERANDS %d\n", max_dup_operands);
325
326   /* This is conditionally defined, in case the user writes code which emits
327      more splits than we can readily see (and knows s/he does it).  */
328   printf ("#ifndef MAX_INSNS_PER_SPLIT\n#define MAX_INSNS_PER_SPLIT %d\n#endif\n",
329           max_insns_per_split);
330
331   if (register_constraint_flag)
332     printf ("#define REGISTER_CONSTRAINTS\n");
333
334   if (have_cc0_flag)
335     printf ("#define HAVE_cc0\n");
336
337   if (have_cmove_flag)
338     printf ("#define HAVE_conditional_move\n");
339
340   if (have_lo_sum_flag)
341     printf ("#define HAVE_lo_sum\n");
342
343   fflush (stdout);
344   exit (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);
345   /* NOTREACHED */
346   return 0;
347 }