(CPP_SPEC): add %(subtarget_cpp_spec).
[official-gcc.git] / gcc / genextract.c
blobf222de1f335b03d1d18bc736e1e9a7b5edc6691c
1 /* Generate code from machine description to extract operands from insn as rtl.
2 Copyright (C) 1987, 1991, 1992, 1993 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
22 #include <stdio.h>
23 #include "hconfig.h"
24 #include "rtl.h"
25 #include "obstack.h"
26 #include "insn-config.h"
28 static struct obstack obstack;
29 struct obstack *rtl_obstack = &obstack;
31 #define obstack_chunk_alloc xmalloc
32 #define obstack_chunk_free free
34 extern void free ();
35 extern rtx read_rtx ();
37 /* Names for patterns. Need to allow linking with print-rtl. */
38 char **insn_name_ptr;
40 /* This structure contains all the information needed to describe one
41 set of extractions methods. Each method may be used by more than
42 one pattern if the operands are in the same place.
44 The string for each operand describes that path to the operand and
45 contains `0' through `9' when going into an expression and `a' through
46 `z' when going into a vector. We assume here that only the first operand
47 of an rtl expression is a vector. genrecog.c makes the same assumption
48 (and uses the same representation) and it is currently true. */
50 struct extraction
52 int op_count;
53 char *oplocs[MAX_RECOG_OPERANDS];
54 int dup_count;
55 char *duplocs[MAX_DUP_OPERANDS];
56 int dupnums[MAX_DUP_OPERANDS];
57 struct code_ptr *insns;
58 struct extraction *next;
61 /* Holds a single insn code that use an extraction method. */
63 struct code_ptr
65 int insn_code;
66 struct code_ptr *next;
69 static struct extraction *extractions;
71 /* Number instruction patterns handled, starting at 0 for first one. */
73 static int insn_code_number;
75 /* Records the large operand number in this insn. */
77 static int op_count;
79 /* Records the location of any operands using the string format described
80 above. */
82 static char *oplocs[MAX_RECOG_OPERANDS];
84 /* Number the occurrences of MATCH_DUP in each instruction,
85 starting at 0 for the first occurrence. */
87 static int dup_count;
89 /* Records the location of any MATCH_DUP operands. */
91 static char *duplocs[MAX_DUP_OPERANDS];
93 /* Record the operand number of any MATCH_DUPs. */
95 static int dupnums[MAX_DUP_OPERANDS];
97 /* Record the list of insn_codes for peepholes. */
99 static struct code_ptr *peepholes;
101 static void walk_rtx ();
102 static void print_path ();
103 char *xmalloc ();
104 char *xrealloc ();
105 static void fatal ();
106 static char *copystr ();
107 static void mybzero ();
108 void fancy_abort ();
110 static void
111 gen_insn (insn)
112 rtx insn;
114 register int i;
115 register struct extraction *p;
116 register struct code_ptr *link;
118 op_count = 0;
119 dup_count = 0;
121 /* No operands seen so far in this pattern. */
122 mybzero (oplocs, sizeof oplocs);
124 /* Walk the insn's pattern, remembering at all times the path
125 down to the walking point. */
127 if (XVECLEN (insn, 1) == 1)
128 walk_rtx (XVECEXP (insn, 1, 0), "");
129 else
130 for (i = XVECLEN (insn, 1) - 1; i >= 0; i--)
132 char *path = (char *) alloca (2);
134 path[0] = 'a' + i;
135 path[1] = 0;
137 walk_rtx (XVECEXP (insn, 1, i), path);
140 link = (struct code_ptr *) xmalloc (sizeof (struct code_ptr));
141 link->insn_code = insn_code_number;
143 /* See if we find something that already had this extraction method. */
145 for (p = extractions; p; p = p->next)
147 if (p->op_count != op_count || p->dup_count != dup_count)
148 continue;
150 for (i = 0; i < op_count; i++)
151 if (p->oplocs[i] != oplocs[i]
152 && ! (p->oplocs[i] != 0 && oplocs[i] != 0
153 && ! strcmp (p->oplocs[i], oplocs[i])))
154 break;
156 if (i != op_count)
157 continue;
159 for (i = 0; i < dup_count; i++)
160 if (p->dupnums[i] != dupnums[i]
161 || strcmp (p->duplocs[i], duplocs[i]))
162 break;
164 if (i != dup_count)
165 continue;
167 /* This extraction is the same as ours. Just link us in. */
168 link->next = p->insns;
169 p->insns = link;
170 return;
173 /* Otherwise, make a new extraction method. */
175 p = (struct extraction *) xmalloc (sizeof (struct extraction));
176 p->op_count = op_count;
177 p->dup_count = dup_count;
178 p->next = extractions;
179 extractions = p;
180 p->insns = link;
181 link->next = 0;
183 for (i = 0; i < op_count; i++)
184 p->oplocs[i] = oplocs[i];
186 for (i = 0; i < dup_count; i++)
187 p->dupnums[i] = dupnums[i], p->duplocs[i] = duplocs[i];
190 static void
191 walk_rtx (x, path)
192 rtx x;
193 char *path;
195 register RTX_CODE code;
196 register int i;
197 register int len;
198 register char *fmt;
199 register struct code_ptr *link;
200 int depth = strlen (path);
201 char *newpath;
203 if (x == 0)
204 return;
206 code = GET_CODE (x);
208 switch (code)
210 case PC:
211 case CC0:
212 case CONST_INT:
213 case SYMBOL_REF:
214 return;
216 case MATCH_OPERAND:
217 case MATCH_SCRATCH:
218 oplocs[XINT (x, 0)] = copystr (path);
219 op_count = MAX (op_count, XINT (x, 0) + 1);
220 break;
222 case MATCH_DUP:
223 case MATCH_PAR_DUP:
224 duplocs[dup_count] = copystr (path);
225 dupnums[dup_count] = XINT (x, 0);
226 dup_count++;
227 break;
229 case MATCH_OP_DUP:
230 duplocs[dup_count] = copystr (path);
231 dupnums[dup_count] = XINT (x, 0);
232 dup_count++;
234 newpath = (char *) alloca (depth + 2);
235 strcpy (newpath, path);
236 newpath[depth + 1] = 0;
238 for (i = XVECLEN (x, 1) - 1; i >= 0; i--)
240 newpath[depth] = '0' + i;
241 walk_rtx (XVECEXP (x, 1, i), newpath);
243 return;
245 case MATCH_OPERATOR:
246 oplocs[XINT (x, 0)] = copystr (path);
247 op_count = MAX (op_count, XINT (x, 0) + 1);
249 newpath = (char *) alloca (depth + 2);
250 strcpy (newpath, path);
251 newpath[depth + 1] = 0;
253 for (i = XVECLEN (x, 2) - 1; i >= 0; i--)
255 newpath[depth] = '0' + i;
256 walk_rtx (XVECEXP (x, 2, i), newpath);
258 return;
260 case MATCH_PARALLEL:
261 oplocs[XINT (x, 0)] = copystr (path);
262 op_count = MAX (op_count, XINT (x, 0) + 1);
264 newpath = (char *) alloca (depth + 2);
265 strcpy (newpath, path);
266 newpath[depth + 1] = 0;
268 for (i = XVECLEN (x, 2) - 1; i >= 0; i--)
270 newpath[depth] = 'a' + i;
271 walk_rtx (XVECEXP (x, 2, i), newpath);
273 return;
275 case ADDRESS:
276 walk_rtx (XEXP (x, 0), path);
277 return;
280 newpath = (char *) alloca (depth + 2);
281 strcpy (newpath, path);
282 newpath[depth + 1] = 0;
284 fmt = GET_RTX_FORMAT (code);
285 len = GET_RTX_LENGTH (code);
286 for (i = 0; i < len; i++)
288 if (fmt[i] == 'e' || fmt[i] == 'u')
290 newpath[depth] = '0' + i;
291 walk_rtx (XEXP (x, i), newpath);
293 else if (fmt[i] == 'E')
295 int j;
296 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
298 newpath[depth] = 'a' + j;
299 walk_rtx (XVECEXP (x, i, j), newpath);
305 /* Given a PATH, representing a path down the instruction's
306 pattern from the root to a certain point, output code to
307 evaluate to the rtx at that point. */
309 static void
310 print_path (path)
311 char *path;
313 register int len = strlen (path);
314 register int i;
316 /* We first write out the operations (XEXP or XVECEXP) in reverse
317 order, then write "insn", then the indices in forward order. */
319 for (i = len - 1; i >=0 ; i--)
321 if (path[i] >= 'a' && path[i] <= 'z')
322 printf ("XVECEXP (");
323 else if (path[i] >= '0' && path[i] <= '9')
324 printf ("XEXP (");
325 else
326 abort ();
329 printf ("pat");
331 for (i = 0; i < len; i++)
333 if (path[i] >= 'a' && path[i] <= 'z')
334 printf (", 0, %d)", path[i] - 'a');
335 else if (path[i] >= '0' && path[i] <= '9')
336 printf (", %d)", path[i] - '0');
337 else
338 abort ();
342 char *
343 xmalloc (size)
344 unsigned size;
346 register char *val = (char *) malloc (size);
348 if (val == 0)
349 fatal ("virtual memory exhausted");
350 return val;
353 char *
354 xrealloc (ptr, size)
355 char *ptr;
356 unsigned size;
358 char *result = (char *) realloc (ptr, size);
359 if (!result)
360 fatal ("virtual memory exhausted");
361 return result;
364 static void
365 fatal (s, a1, a2)
366 char *s;
368 fprintf (stderr, "genextract: ");
369 fprintf (stderr, s, a1, a2);
370 fprintf (stderr, "\n");
371 exit (FATAL_EXIT_CODE);
374 /* More 'friendly' abort that prints the line and file.
375 config.h can #define abort fancy_abort if you like that sort of thing. */
377 void
378 fancy_abort ()
380 fatal ("Internal gcc abort.");
383 static char *
384 copystr (s1)
385 char *s1;
387 register char *tem;
389 if (s1 == 0)
390 return 0;
392 tem = (char *) xmalloc (strlen (s1) + 1);
393 strcpy (tem, s1);
395 return tem;
398 static void
399 mybzero (b, length)
400 register char *b;
401 register unsigned length;
403 while (length-- > 0)
404 *b++ = 0;
408 main (argc, argv)
409 int argc;
410 char **argv;
412 rtx desc;
413 FILE *infile;
414 register int c, i;
415 struct extraction *p;
416 struct code_ptr *link;
418 obstack_init (rtl_obstack);
420 if (argc <= 1)
421 fatal ("No input file name.");
423 infile = fopen (argv[1], "r");
424 if (infile == 0)
426 perror (argv[1]);
427 exit (FATAL_EXIT_CODE);
430 init_rtl ();
432 /* Assign sequential codes to all entries in the machine description
433 in parallel with the tables in insn-output.c. */
435 insn_code_number = 0;
437 printf ("/* Generated automatically by the program `genextract'\n\
438 from the machine description file `md'. */\n\n");
440 printf ("#include \"config.h\"\n");
441 printf ("#include \"rtl.h\"\n\n");
443 /* This variable exists only so it can be the "location"
444 of any missing operand whose numbers are skipped by a given pattern. */
445 printf ("static rtx junk;\n");
447 printf ("extern rtx recog_operand[];\n");
448 printf ("extern rtx *recog_operand_loc[];\n");
449 printf ("extern rtx *recog_dup_loc[];\n");
450 printf ("extern char recog_dup_num[];\n");
452 printf ("void\ninsn_extract (insn)\n");
453 printf (" rtx insn;\n");
454 printf ("{\n");
455 printf (" register rtx *ro = recog_operand;\n");
456 printf (" register rtx **ro_loc = recog_operand_loc;\n");
457 printf (" rtx pat = PATTERN (insn);\n");
458 printf (" int i;\n\n");
459 printf (" switch (INSN_CODE (insn))\n");
460 printf (" {\n");
461 printf (" case -1:\n");
462 printf (" fatal_insn_not_found (insn);\n\n");
464 /* Read the machine description. */
466 while (1)
468 c = read_skip_spaces (infile);
469 if (c == EOF)
470 break;
471 ungetc (c, infile);
473 desc = read_rtx (infile);
474 if (GET_CODE (desc) == DEFINE_INSN)
476 gen_insn (desc);
477 ++insn_code_number;
480 else if (GET_CODE (desc) == DEFINE_PEEPHOLE)
482 struct code_ptr *link
483 = (struct code_ptr *) xmalloc (sizeof (struct code_ptr));
485 link->insn_code = insn_code_number;
486 link->next = peepholes;
487 peepholes = link;
488 ++insn_code_number;
491 else if (GET_CODE (desc) == DEFINE_EXPAND
492 || GET_CODE (desc) == DEFINE_SPLIT)
493 ++insn_code_number;
496 /* Write out code to handle peepholes and the insn_codes that it should
497 be called for. */
498 if (peepholes)
500 for (link = peepholes; link; link = link->next)
501 printf (" case %d:\n", link->insn_code);
503 /* The vector in the insn says how many operands it has.
504 And all it contains are operands. In fact, the vector was
505 created just for the sake of this function. */
506 printf (" for (i = XVECLEN (pat, 0); i >= 0; i--)\n");
507 printf (" ro[i] = XVECEXP (pat, 0, i);\n");
508 printf (" break;\n\n");
511 /* Write out all the ways to extract insn operands. */
512 for (p = extractions; p; p = p->next)
514 for (link = p->insns; link; link = link->next)
515 printf (" case %d:\n", link->insn_code);
517 for (i = 0; i < p->op_count; i++)
519 if (p->oplocs[i] == 0)
521 printf (" ro[%d] = const0_rtx;\n", i);
522 printf (" ro_loc[%d] = &junk;\n", i);
524 else
526 printf (" ro[%d] = *(ro_loc[%d] = &", i, i);
527 print_path (p->oplocs[i]);
528 printf (");\n");
532 for (i = 0; i < p->dup_count; i++)
534 printf (" recog_dup_loc[%d] = &", i);
535 print_path (p->duplocs[i]);
536 printf (";\n");
537 printf (" recog_dup_num[%d] = %d;\n", i, p->dupnums[i]);
540 printf (" break;\n\n");
543 /* This should never be reached. Note that we would also reach this abort
544 if we tried to extract something whose INSN_CODE was a DEFINE_EXPAND or
545 DEFINE_SPLIT, but that is correct. */
546 printf (" default:\n abort ();\n");
548 printf (" }\n}\n");
550 fflush (stdout);
551 exit (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);
552 /* NOTREACHED */
553 return 0;