1 /* Generate from machine description:
2 - some #define configuration flags.
3 Copyright (C) 1987, 91, 97-99, 2000 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)
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. */
29 static struct obstack obstack
;
30 struct obstack
*rtl_obstack
= &obstack
;
32 #define obstack_chunk_alloc xmalloc
33 #define obstack_chunk_free free
35 /* flags to determine output of machine description dependent #define's. */
36 static int max_recog_operands
; /* Largest operand number seen. */
37 static int max_dup_operands
; /* Largest number of match_dup in any insn. */
38 static int max_clobbers_per_insn
;
39 static int have_cc0_flag
;
40 static int have_cmove_flag
;
41 static int have_cond_arith_flag
;
42 static int have_lo_sum_flag
;
43 static int have_peephole_flag
;
44 static int have_peephole2_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 static void walk_insn_part
PARAMS ((rtx
, int, int));
53 static void gen_insn
PARAMS ((rtx
));
54 static void gen_expand
PARAMS ((rtx
));
55 static void gen_split
PARAMS ((rtx
));
56 static void gen_peephole
PARAMS ((rtx
));
58 /* RECOG_P will be non-zero if this pattern was seen in a context where it will
59 be used to recognize, rather than just generate an insn.
61 NON_PC_SET_SRC will be non-zero if this pattern was seen in a SET_SRC
62 of a SET whose destination is not (pc). */
65 walk_insn_part (part
, recog_p
, non_pc_set_src
)
71 register RTX_CODE code
;
72 register const char *format_ptr
;
77 code
= GET_CODE (part
);
81 clobbers_seen_this_insn
++;
85 if (XINT (part
, 0) > max_recog_operands
)
86 max_recog_operands
= XINT (part
, 0);
91 ++dup_operands_seen_this_insn
;
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
102 if (GET_CODE (XEXP (part
, 0)) == MATCH_OPERAND
)
107 ++dup_operands_seen_this_insn
;
108 if (XINT (part
, 0) > max_recog_operands
)
109 max_recog_operands
= XINT (part
, 0);
119 have_lo_sum_flag
= 1;
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
);
129 /* Only consider this machine as having a conditional move if the
130 two arms of the IF_THEN_ELSE are both MATCH_OPERAND. Otherwise,
131 we have some specific IF_THEN_ELSE construct (like the doz
132 instruction on the RS/6000) that can't be used in the general
133 context we want it for. If the first operand is an arithmetic
134 operation and the second is a MATCH_OPERNAND, show we have
135 conditional arithmetic. */
137 if (recog_p
&& non_pc_set_src
138 && GET_CODE (XEXP (part
, 1)) == MATCH_OPERAND
139 && GET_CODE (XEXP (part
, 2)) == MATCH_OPERAND
)
141 else if (recog_p
&& non_pc_set_src
142 && (GET_RTX_CLASS (GET_CODE (XEXP (part
, 1))) == '1'
143 || GET_RTX_CLASS (GET_CODE (XEXP (part
, 1))) == '2'
144 || GET_RTX_CLASS (GET_CODE (XEXP (part
, 1))) == 'c')
145 && GET_CODE (XEXP (XEXP (part
, 1), 0)) == MATCH_OPERAND
146 && GET_CODE (XEXP (part
, 2)) == MATCH_OPERAND
)
147 have_cond_arith_flag
= 1;
150 case REG
: case CONST_INT
: case SYMBOL_REF
:
158 format_ptr
= GET_RTX_FORMAT (GET_CODE (part
));
160 for (i
= 0; i
< GET_RTX_LENGTH (GET_CODE (part
)); i
++)
161 switch (*format_ptr
++)
165 walk_insn_part (XEXP (part
, i
), recog_p
, non_pc_set_src
);
168 if (XVEC (part
, i
) != NULL
)
169 for (j
= 0; j
< XVECLEN (part
, i
); j
++)
170 walk_insn_part (XVECEXP (part
, i
, j
), recog_p
, non_pc_set_src
);
181 /* Walk the insn pattern to gather the #define's status. */
182 clobbers_seen_this_insn
= 0;
183 dup_operands_seen_this_insn
= 0;
184 if (XVEC (insn
, 1) != 0)
185 for (i
= 0; i
< XVECLEN (insn
, 1); i
++)
186 walk_insn_part (XVECEXP (insn
, 1, i
), 1, 0);
188 if (clobbers_seen_this_insn
> max_clobbers_per_insn
)
189 max_clobbers_per_insn
= clobbers_seen_this_insn
;
190 if (dup_operands_seen_this_insn
> max_dup_operands
)
191 max_dup_operands
= dup_operands_seen_this_insn
;
194 /* Similar but scan a define_expand. */
202 /* Walk the insn pattern to gather the #define's status. */
204 /* Note that we don't bother recording the number of MATCH_DUPs
205 that occur in a gen_expand, because only reload cares about that. */
206 if (XVEC (insn
, 1) != 0)
207 for (i
= 0; i
< XVECLEN (insn
, 1); i
++)
209 /* Compute the maximum SETs and CLOBBERS
210 in any one of the sub-insns;
211 don't sum across all of them. */
212 clobbers_seen_this_insn
= 0;
214 walk_insn_part (XVECEXP (insn
, 1, i
), 0, 0);
216 if (clobbers_seen_this_insn
> max_clobbers_per_insn
)
217 max_clobbers_per_insn
= clobbers_seen_this_insn
;
221 /* Similar but scan a define_split. */
229 /* Look through the patterns that are matched
230 to compute the maximum operand number. */
231 for (i
= 0; i
< XVECLEN (split
, 0); i
++)
232 walk_insn_part (XVECEXP (split
, 0, i
), 1, 0);
233 /* Look at the number of insns this insn could split into. */
234 if (XVECLEN (split
, 2) > max_insns_per_split
)
235 max_insns_per_split
= XVECLEN (split
, 2);
244 /* Look through the patterns that are matched
245 to compute the maximum operand number. */
246 for (i
= 0; i
< XVECLEN (peep
, 0); i
++)
247 walk_insn_part (XVECEXP (peep
, 0, i
), 1, 0);
254 register PTR val
= (PTR
) malloc (size
);
257 fatal ("virtual memory exhausted");
269 ptr
= (PTR
) realloc (old
, size
);
271 ptr
= (PTR
) malloc (size
);
273 fatal ("virtual memory exhausted");
277 extern int main
PARAMS ((int, char **));
288 progname
= "genconfig";
289 obstack_init (rtl_obstack
);
292 fatal ("No input file name.");
294 infile
= fopen (argv
[1], "r");
298 return (FATAL_EXIT_CODE
);
300 read_rtx_filename
= argv
[1];
302 printf ("/* Generated automatically by the program `genconfig'\n\
303 from the machine description file `md'. */\n\n");
305 /* Allow at least 10 operands for the sake of asm constructs. */
306 max_recog_operands
= 9; /* We will add 1 later. */
307 max_dup_operands
= 1;
309 /* Read the machine description. */
313 c
= read_skip_spaces (infile
);
318 desc
= read_rtx (infile
);
319 if (GET_CODE (desc
) == DEFINE_INSN
)
321 if (GET_CODE (desc
) == DEFINE_EXPAND
)
323 if (GET_CODE (desc
) == DEFINE_SPLIT
)
325 if (GET_CODE (desc
) == DEFINE_PEEPHOLE2
)
327 have_peephole2_flag
= 1;
330 if (GET_CODE (desc
) == DEFINE_PEEPHOLE
)
332 have_peephole_flag
= 1;
337 printf ("\n#define MAX_RECOG_OPERANDS %d\n", max_recog_operands
+ 1);
339 printf ("\n#define MAX_DUP_OPERANDS %d\n", max_dup_operands
);
341 /* This is conditionally defined, in case the user writes code which emits
342 more splits than we can readily see (and knows s/he does it). */
343 printf ("#ifndef MAX_INSNS_PER_SPLIT\n#define MAX_INSNS_PER_SPLIT %d\n#endif\n",
344 max_insns_per_split
);
347 printf ("#define HAVE_cc0\n");
350 printf ("#define HAVE_conditional_move\n");
353 /* Disabled. See the discussion in jump.c. */
354 if (have_cond_arith_flag
)
355 printf ("#define HAVE_conditional_arithmetic\n");
358 if (have_lo_sum_flag
)
359 printf ("#define HAVE_lo_sum\n");
361 if (have_peephole_flag
)
362 printf ("#define HAVE_peephole\n");
364 if (have_peephole2_flag
)
365 printf ("#define HAVE_peephole2\n");
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. */
374 int code ATTRIBUTE_UNUSED
;