]> gcc.gnu.org Git - gcc.git/blame - gcc/genopinit.c
(expand_inline_function): Set MEM_IN_STRUCT_P for return value if needed.
[gcc.git] / gcc / genopinit.c
CommitLineData
af9e4a0c
RK
1/* Generate code to initialize optabs from machine description.
2 Copyright (C) 1993 Free Software Foundation, Inc.
3
4This file is part of GNU CC.
5
6GNU CC is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)
9any later version.
10
11GNU CC is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU CC; see the file COPYING. If not, write to
18the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20
21#include <stdio.h>
22#include "hconfig.h"
23#include "rtl.h"
24#include "obstack.h"
25#include <ctype.h>
26
27static struct obstack obstack;
28struct obstack *rtl_obstack = &obstack;
29
30#define obstack_chunk_alloc xmalloc
31#define obstack_chunk_free free
32
33extern void free ();
34extern rtx read_rtx ();
35
36char *xmalloc ();
37static void fatal ();
38void fancy_abort ();
39
40/* Many parts of GCC use arrays that are indexed by machine mode and
41 contain the insn codes for pattern in the MD file that perform a given
42 operation on operands of that mode.
43
44 These patterns are present in the MD file with names that contain
45 the mode(s) used and the name of the operation. This program
46 writes a function `init_all_optabs' that initializes the optabs with
47 all the insn codes of the relevant patterns present in the MD file.
48
49 This array contains a list of optabs that need to be initialized. Within
50 each string, the name of the pattern to be matched against is delimited
51 with %( and %). In the string, %a and %b are used to match a short mode
52 name (the part of the mode name not including `mode' and converted to
53 lower-case). When writing out the initializer, the entire string is
54 used. %A and %B are replaced with the full name of the mode; %a and %b
55 are replaced with the short form of the name, as above.
56
57 If %N is present in the pattern, it means the two modes must be consecutive
58 widths in the same mode class (e.g, QImode and HImode). %I means that
59 only integer modes should be considered for the next mode, and %F means
60 that only float modes should be considered.
61
62 For some optabs, we store the operation by RTL codes. These are only
63 used for comparisons. In that case, %c and %C are the lower-case and
64 upper-case forms of the comparison, respectively. */
65
8c9881d1
RS
66/* The reason we use \% is to avoid sequences of the form %-capletter-%
67 which SCCS treats as magic. This gets warnings which you should ignore. */
68
af9e4a0c 69char *optabs[] =
8c9881d1
RS
70{ "extendtab[(int) %B][(int) %A][0] = CODE_FOR_%(extend%a\%b2%)",
71 "extendtab[(int) %B][(int) %A][1] = CODE_FOR_%(zero_extend%a\%b2%)",
72 "fixtab[(int) %A][(int) %B][0] = CODE_FOR_%(fix%F\%a%I\%b2%)",
73 "fixtab[(int) %A][(int) %B][1] = CODE_FOR_%(fixuns%F\%a%b2%)",
74 "fixtrunctab[(int) %A][(int) %B][0] = CODE_FOR_%(fix_trunc%F\%a%I\%b2%)",
75 "fixtrunctab[(int) %A][(int) %B][1] = CODE_FOR_%(fixuns_trunc%F\%a%I\%b2%)",
76 "floattab[(int) %B][(int) %A][0] = CODE_FOR_%(float%I\%a%F\%b2%)",
77 "floattab[(int) %B][(int) %A][1] = CODE_FOR_%(floatuns%I\%a%F\%b%)",
af9e4a0c
RK
78 "add_optab->handlers[(int) %A].insn_code = CODE_FOR_%(add%a3%)",
79 "sub_optab->handlers[(int) %A].insn_code = CODE_FOR_%(sub%a3%)",
80 "smul_optab->handlers[(int) %A].insn_code = CODE_FOR_%(mul%a3%)",
81 "smul_widen_optab->handlers[(int) %B].insn_code = CODE_FOR_%(mul%a%b3%)%N",
82 "umul_widen_optab->handlers[(int) %B].insn_code = CODE_FOR_%(umul%a%b3%)%N",
8c9881d1
RS
83 "sdiv_optab->handlers[(int) %A].insn_code = CODE_FOR_%(div%I\%a3%)",
84 "udiv_optab->handlers[(int) %A].insn_code = CODE_FOR_%(udiv%I\%a3%)",
af9e4a0c
RK
85 "sdivmod_optab->handlers[(int) %A].insn_code = CODE_FOR_%(divmod%a4%)",
86 "udivmod_optab->handlers[(int) %A].insn_code = CODE_FOR_%(udivmod%a4%)",
87 "smod_optab->handlers[(int) %A].insn_code = CODE_FOR_%(mod%a3%)",
88 "umod_optab->handlers[(int) %A].insn_code = CODE_FOR_%(umod%a3%)",
8c9881d1
RS
89 "flodiv_optab->handlers[(int) %A].insn_code = CODE_FOR_%(div%F\%a3%)",
90 "ftrunc_optab->handlers[(int) %A].insn_code = CODE_FOR_%(ftrunc%F\%a2%)",
af9e4a0c
RK
91 "and_optab->handlers[(int) %A].insn_code = CODE_FOR_%(and%a3%)",
92 "ior_optab->handlers[(int) %A].insn_code = CODE_FOR_%(ior%a3%)",
93 "xor_optab->handlers[(int) %A].insn_code = CODE_FOR_%(xor%a3%)",
94 "ashl_optab->handlers[(int) %A].insn_code = CODE_FOR_%(ashl%a3%)",
95 "ashr_optab->handlers[(int) %A].insn_code = CODE_FOR_%(ashr%a3%)",
96 "lshl_optab->handlers[(int) %A].insn_code = CODE_FOR_%(lshl%a3%)",
97 "lshr_optab->handlers[(int) %A].insn_code = CODE_FOR_%(lshr%a3%)",
98 "rotl_optab->handlers[(int) %A].insn_code = CODE_FOR_%(rotl%a3%)",
99 "rotr_optab->handlers[(int) %A].insn_code = CODE_FOR_%(rotr%a3%)",
8c9881d1
RS
100 "smin_optab->handlers[(int) %A].insn_code = CODE_FOR_%(smin%I\%a3%)",
101 "smin_optab->handlers[(int) %A].insn_code = CODE_FOR_%(min%F\%a3%)",
102 "smax_optab->handlers[(int) %A].insn_code = CODE_FOR_%(smax%I\%a3%)",
103 "smax_optab->handlers[(int) %A].insn_code = CODE_FOR_%(max%F\%a3%)",
104 "umin_optab->handlers[(int) %A].insn_code = CODE_FOR_%(umin%I\%a3%)",
105 "umax_optab->handlers[(int) %A].insn_code = CODE_FOR_%(umax%I\%a3%)",
af9e4a0c
RK
106 "neg_optab->handlers[(int) %A].insn_code = CODE_FOR_%(neg%a2%)",
107 "abs_optab->handlers[(int) %A].insn_code = CODE_FOR_%(abs%a2%)",
108 "sqrt_optab->handlers[(int) %A].insn_code = CODE_FOR_%(sqrt%a2%)",
109 "sin_optab->handlers[(int) %A].insn_code = CODE_FOR_%(sin%a2%)",
110 "cos_optab->handlers[(int) %A].insn_code = CODE_FOR_%(cos%a2%)",
111 "strlen_optab->handlers[(int) %A].insn_code = CODE_FOR_%(strlen%a2%)",
112 "one_cmpl_optab->handlers[(int) %A].insn_code = CODE_FOR_%(one_cmpl%a2%)",
113 "ffs_optab->handlers[(int) %A].insn_code = CODE_FOR_%(ffs%a2%)",
114 "mov_optab->handlers[(int) %A].insn_code = CODE_FOR_%(mov%a%)",
115 "movstrict_optab->handlers[(int) %A].insn_code = CODE_FOR_%(movstrict%a%)",
116 "cmp_optab->handlers[(int) %A].insn_code = CODE_FOR_%(cmp%a%)",
117 "tst_optab->handlers[(int) %A].insn_code = CODE_FOR_%(tst%a%)",
118 "bcc_gen_fctn[(int) %C] = gen_%(b%c%)",
119 "setcc_gen_code[(int) %C] = CODE_FOR_%(s%c%)",
120 "reload_in_optab[(int) %A] = CODE_FOR_%(reload_in%a%)",
121 "reload_out_optab[(int) %A] = CODE_FOR_%(reload_out%a%)",
122 "movstr_optab[(int) %A] = CODE_FOR_%(movstr%a%)" };
123
124static void
125gen_insn (insn)
126 rtx insn;
127{
128 char *name = XSTR (insn, 0);
129 int m1, m2, op;
130 int pindex;
131 int i;
132 char *np, *pp, *p, *q;
133 struct obstack *obstack_ptr;
134
135 /* Don't mention instructions whose names are the null string.
136 They are in the machine description just to be recognized. */
137 if (*name == 0)
138 return;
139
140 /* See if NAME matches one of the patterns we have for the optabs we know
141 about. */
142
143 for (pindex = 0; pindex < sizeof optabs / sizeof optabs[0]; pindex++)
144 {
145 int force_float = 0, force_int = 0;
146 int force_consec = 0;
147 int matches = 1;
148
149 for (pp = optabs[pindex]; pp[0] != '%' || pp[1] != '('; pp++)
150 ;
151
152 for (pp += 2, np = name; matches && ! (pp[0] == '%' && pp[1] == ')');
153 pp++)
154 {
155 if (*pp != '%')
156 {
157 if (*pp != *np++)
158 break;
159 }
160 else
161 switch (*++pp)
162 {
163 case 'N':
164 force_consec = 1;
165 break;
166 case 'I':
167 force_int = 1;
168 break;
169 case 'F':
170 force_float = 1;
171 break;
172 case 'c':
173 for (op = 0; op < NUM_RTX_CODE; op++)
174 {
175 for (p = rtx_name[op], q = np; *p; p++, q++)
176 if (*p != *q)
177 break;
178
179 /* We have to be concerned about matching "gt" and
180 missing "gtu", e.g., so verify we have reached the
181 end of thing we are to match. We do not have this
182 problem with modes since no mode is a prefix of
183 another. */
184 if (*p == 0 && *q == 0 && rtx_class[op] == '<')
185 break;
186 }
187
188 if (op == NUM_RTX_CODE)
189 matches = 0;
190 else
191 np += strlen (rtx_name[op]);
192 break;
193 case 'a':
194 case 'b':
195 for (i = 0; i < (int) MAX_MACHINE_MODE; i++)
196 {
197 for (p = mode_name[i], q = np; *p; p++, q++)
198 if (tolower (*p) != *q)
199 break;
200
201 if (*p == 0
202 && (! force_int || mode_class[i] == MODE_INT)
203 && (! force_float || mode_class[i] == MODE_FLOAT))
204 break;
205 }
206
207 if (i == (int) MAX_MACHINE_MODE)
208 matches = 0;
209 else if (*pp == 'a')
210 m1 = i, np += strlen (mode_name[i]);
211 else
212 m2 = i, np += strlen (mode_name[i]);
213
214 force_int = force_float = 0;
215 break;
216
217 default:
218 abort ();
219 }
220 }
221
222 if (matches && pp[0] == '%' && pp[1] == ')'
223 && *np == 0
224 && (! force_consec || (int) mode_wider_mode[m1] == m2))
225 break;
226 }
227
228 if (pindex == sizeof optabs / sizeof optabs[0])
229 return;
230
231 /* We found a match. If this pattern is only conditionally present,
232 write out the "if" and two extra blanks. */
233
234 if (*XSTR (insn, 2) != 0)
235 printf (" if (HAVE_%s)\n ", name);
236
237 printf (" ");
238
239 /* Now write out the initialization, making all required substitutions. */
240 for (pp = optabs[pindex]; *pp; pp++)
241 {
242 if (*pp != '%')
243 printf ("%c", *pp);
244 else
245 switch (*++pp)
246 {
247 case '(': case ')':
248 case 'I': case 'F': case 'N':
249 break;
250 case 'a':
251 for (np = mode_name[m1]; *np; np++)
252 printf ("%c", tolower (*np));
253 break;
254 case 'b':
255 for (np = mode_name[m2]; *np; np++)
256 printf ("%c", tolower (*np));
257 break;
258 case 'A':
259 printf ("%smode", mode_name[m1]);
260 break;
261 case 'B':
262 printf ("%smode", mode_name[m2]);
263 break;
264 case 'c':
265 printf ("%s", rtx_name[op]);
266 break;
267 case 'C':
268 for (np = rtx_name[op]; *np; np++)
269 printf ("%c", toupper (*np));
270 break;
271 }
272 }
273
274 printf (";\n");
275}
276\f
277char *
278xmalloc (size)
279 unsigned size;
280{
281 register char *val = (char *) malloc (size);
282
283 if (val == 0)
284 fatal ("virtual memory exhausted");
285
286 return val;
287}
288
289char *
290xrealloc (ptr, size)
291 char *ptr;
292 unsigned size;
293{
294 char *result = (char *) realloc (ptr, size);
295 if (!result)
296 fatal ("virtual memory exhausted");
297 return result;
298}
299
300static void
301fatal (s, a1, a2)
302 char *s;
303{
304 fprintf (stderr, "genopinit: ");
305 fprintf (stderr, s, a1, a2);
306 fprintf (stderr, "\n");
307 exit (FATAL_EXIT_CODE);
308}
309
310/* More 'friendly' abort that prints the line and file.
311 config.h can #define abort fancy_abort if you like that sort of thing. */
312
313void
314fancy_abort ()
315{
316 fatal ("Internal gcc abort.");
317}
318\f
319int
320main (argc, argv)
321 int argc;
322 char **argv;
323{
324 rtx desc;
325 rtx dummy;
326 rtx *insn_ptr;
327 FILE *infile;
328 register int c;
329
330 obstack_init (rtl_obstack);
331
332 if (argc <= 1)
333 fatal ("No input file name.");
334
335 infile = fopen (argv[1], "r");
336 if (infile == 0)
337 {
338 perror (argv[1]);
339 exit (FATAL_EXIT_CODE);
340 }
341
342 init_rtl ();
343
344 printf ("/* Generated automatically by the program `genopinit'\n\
345from the machine description file `md'. */\n\n");
346
347 printf ("#include \"config.h\"\n");
348 printf ("#include \"rtl.h\"\n");
349 printf ("#include \"flags.h\"\n");
350 printf ("#include \"insn-flags.h\"\n");
351 printf ("#include \"insn-codes.h\"\n");
352 printf ("#include \"insn-config.h\"\n");
353 printf ("#include \"recog.h\"\n");
354 printf ("#include \"expr.h\"\n");
355 printf ("#include \"reload.h\"\n\n");
356
357 printf ("void\ninit_all_optabs ()\n{\n");
358
359 /* Read the machine description. */
360
361 while (1)
362 {
363 c = read_skip_spaces (infile);
364 if (c == EOF)
365 break;
366 ungetc (c, infile);
367
368 desc = read_rtx (infile);
369 if (GET_CODE (desc) == DEFINE_INSN || GET_CODE (desc) == DEFINE_EXPAND)
370 gen_insn (desc);
371 }
372
373 printf ("}\n");
374
375 fflush (stdout);
376 exit (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);
377 /* NOTREACHED */
378 return 0;
379}
This page took 0.089429 seconds and 5 git commands to generate.