* rtl.h (rtunion_def): Constify member `rtstr'.
[official-gcc.git] / gcc / genoutput.c
blob2935f66d4e9f3abd3becb3c2dcd9e765193252ab
1 /* Generate code from to output assembler insns as recognized from rtl.
2 Copyright (C) 1987, 1988, 1992, 1994, 1995, 1997, 1998, 1999, 2000
3 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)
10 any later version.
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. */
23 /* This program reads the machine description for the compiler target machine
24 and produces a file containing these things:
26 1. An array of `struct insn_data', which is indexed by insn code number,
27 which contains:
29 a. `name' is the name for that pattern. Nameless patterns are
30 given a name.
32 b. `output' hold either the output template, an array of output
33 templates, or an output function.
35 c. `genfun' is the function to generate a body for that pattern,
36 given operands as arguments.
38 d. `n_operands' is the number of distinct operands in the pattern
39 for that insn,
41 e. `n_dups' is the number of match_dup's that appear in the insn's
42 pattern. This says how many elements of `recog_data.dup_loc' are
43 significant after an insn has been recognized.
45 f. `n_alternatives' is the number of alternatives in the constraints
46 of each pattern.
48 g. `output_format' tells what type of thing `output' is.
50 h. `operand' is the base of an array of operand data for the insn.
52 2. An array of `struct insn_operand data', used by `operand' above.
54 a. `predicate', an int-valued function, is the match_operand predicate
55 for this operand.
57 b. `constraint' is the constraint for this operand. This exists
58 only if register constraints appear in match_operand rtx's.
60 c. `address_p' indicates that the operand appears within ADDRESS
61 rtx's. This exists only if there are *no* register constraints
62 in the match_operand rtx's.
64 d. `mode' is the machine mode that that operand is supposed to have.
66 e. `strict_low', is nonzero for operands contained in a STRICT_LOW_PART.
68 f. `eliminable', is nonzero for operands that are matched normally by
69 MATCH_OPERAND; it is zero for operands that should not be changed during
70 register elimination such as MATCH_OPERATORs.
72 The code number of an insn is simply its position in the machine
73 description; code numbers are assigned sequentially to entries in
74 the description, starting with code number 0.
76 Thus, the following entry in the machine description
78 (define_insn "clrdf"
79 [(set (match_operand:DF 0 "general_operand" "")
80 (const_int 0))]
82 "clrd %0")
84 assuming it is the 25th entry present, would cause
85 insn_data[24].template to be "clrd %0", and
86 insn_data[24].n_operands to be 1. */
88 #include "hconfig.h"
89 #include "system.h"
90 #include "rtl.h"
91 #include "obstack.h"
92 #include "errors.h"
94 /* No instruction can have more operands than this. Sorry for this
95 arbitrary limit, but what machine will have an instruction with
96 this many operands? */
98 #define MAX_MAX_OPERANDS 40
100 static struct obstack obstack;
101 struct obstack *rtl_obstack = &obstack;
103 #define obstack_chunk_alloc xmalloc
104 #define obstack_chunk_free free
106 static int n_occurrences PARAMS ((int, const char *));
107 static void strip_whitespace PARAMS ((char *));
109 /* insns in the machine description are assigned sequential code numbers
110 that are used by insn-recog.c (produced by genrecog) to communicate
111 to insn-output.c (produced by this program). */
113 static int next_code_number;
115 /* This counts all definitions in the md file,
116 for the sake of error messages. */
118 static int next_index_number;
120 /* This counts all operands used in the md file. The first is null. */
122 static int next_operand_number = 1;
124 /* Record in this chain all information about the operands we will output. */
126 struct operand_data
128 struct operand_data *next;
129 int index;
130 const char *predicate;
131 const char *constraint;
132 enum machine_mode mode;
133 unsigned char n_alternatives;
134 char address_p;
135 char strict_low;
136 char eliminable;
137 char seen;
140 /* Begin with a null operand at index 0. */
142 static struct operand_data null_operand =
144 0, 0, "", "", VOIDmode, 0, 0, 0, 0, 0
147 static struct operand_data *odata = &null_operand;
148 static struct operand_data **odata_end = &null_operand.next;
150 /* Must match the constants in recog.h. */
152 #define INSN_OUTPUT_FORMAT_NONE 0 /* abort */
153 #define INSN_OUTPUT_FORMAT_SINGLE 1 /* const char * */
154 #define INSN_OUTPUT_FORMAT_MULTI 2 /* const char * const * */
155 #define INSN_OUTPUT_FORMAT_FUNCTION 3 /* const char * (*)(...) */
157 /* Record in this chain all information that we will output,
158 associated with the code number of the insn. */
160 struct data
162 struct data *next;
163 const char *name;
164 const char *template;
165 int code_number;
166 int index_number;
167 int n_operands; /* Number of operands this insn recognizes */
168 int n_dups; /* Number times match_dup appears in pattern */
169 int n_alternatives; /* Number of alternatives in each constraint */
170 int operand_number; /* Operand index in the big array. */
171 int output_format; /* INSN_OUTPUT_FORMAT_*. */
172 struct operand_data operand[MAX_MAX_OPERANDS];
175 /* This variable points to the first link in the insn chain. */
177 static struct data *idata, **idata_end = &idata;
179 static void output_prologue PARAMS ((void));
180 static void output_predicate_decls PARAMS ((void));
181 static void output_operand_data PARAMS ((void));
182 static void output_insn_data PARAMS ((void));
183 static void output_get_insn_name PARAMS ((void));
184 static void scan_operands PARAMS ((struct data *, rtx, int, int));
185 static int compare_operands PARAMS ((struct operand_data *,
186 struct operand_data *));
187 static void place_operands PARAMS ((struct data *));
188 static void process_template PARAMS ((struct data *, const char *));
189 static void validate_insn_alternatives PARAMS ((struct data *));
190 static void gen_insn PARAMS ((rtx));
191 static void gen_peephole PARAMS ((rtx));
192 static void gen_expand PARAMS ((rtx));
193 static void gen_split PARAMS ((rtx));
195 const char *
196 get_insn_name (index)
197 int index;
199 static char buf[100];
201 struct data *i, *last_named = NULL;
202 for (i = idata; i ; i = i->next)
204 if (i->index_number == index)
205 return i->name;
206 if (i->name)
207 last_named = i;
210 if (last_named)
211 sprintf(buf, "%s+%d", last_named->name, index - last_named->index_number);
212 else
213 sprintf(buf, "insn %d", index);
215 return buf;
218 static void
219 output_prologue ()
221 printf ("/* Generated automatically by the program `genoutput'\n\
222 from the machine description file `md'. */\n\n");
224 printf ("#include \"config.h\"\n");
225 printf ("#include \"system.h\"\n");
226 printf ("#include \"flags.h\"\n");
227 printf ("#include \"ggc.h\"\n");
228 printf ("#include \"rtl.h\"\n");
229 printf ("#include \"tm_p.h\"\n");
230 printf ("#include \"function.h\"\n");
231 printf ("#include \"regs.h\"\n");
232 printf ("#include \"hard-reg-set.h\"\n");
233 printf ("#include \"real.h\"\n");
234 printf ("#include \"insn-config.h\"\n\n");
235 printf ("#include \"conditions.h\"\n");
236 printf ("#include \"insn-flags.h\"\n");
237 printf ("#include \"insn-attr.h\"\n\n");
238 printf ("#include \"insn-codes.h\"\n\n");
239 printf ("#include \"recog.h\"\n\n");
240 printf ("#include \"toplev.h\"\n");
241 printf ("#include \"output.h\"\n");
245 /* We need to define all predicates used. Keep a list of those we
246 have defined so far. There normally aren't very many predicates
247 used, so a linked list should be fast enough. */
249 static void
250 output_predicate_decls ()
252 struct predicate { const char *name; struct predicate *next; } *predicates = 0;
253 register struct operand_data *d;
254 struct predicate *p;
256 for (d = odata; d; d = d->next)
257 if (d->predicate && d->predicate[0])
259 for (p = predicates; p; p = p->next)
260 if (strcmp (p->name, d->predicate) == 0)
261 break;
263 if (p == 0)
265 printf ("extern int %s PARAMS ((rtx, enum machine_mode));\n",
266 d->predicate);
267 p = (struct predicate *) alloca (sizeof (struct predicate));
268 p->name = d->predicate;
269 p->next = predicates;
270 predicates = p;
274 printf ("\n\n");
277 static void
278 output_operand_data ()
280 register struct operand_data *d;
282 printf ("\nstatic const struct insn_operand_data operand_data[] = \n{\n");
284 for (d = odata; d; d = d->next)
286 printf (" {\n");
288 printf (" %s,\n",
289 d->predicate && d->predicate[0] ? d->predicate : "0");
291 printf (" \"%s\",\n", d->constraint ? d->constraint : "");
293 printf (" %smode,\n", GET_MODE_NAME (d->mode));
295 printf (" %d,\n", d->strict_low);
297 printf (" %d\n", d->eliminable);
299 printf(" },\n");
301 printf("};\n\n\n");
304 static void
305 output_insn_data ()
307 register struct data *d;
308 int name_offset = 0;
309 int next_name_offset;
310 const char * last_name = 0;
311 const char * next_name = 0;
312 register struct data *n;
314 for (n = idata, next_name_offset = 1; n; n = n->next, next_name_offset++)
315 if (n->name)
317 next_name = n->name;
318 break;
321 printf ("\nconst struct insn_data insn_data[] = \n{\n");
323 for (d = idata; d; d = d->next)
325 printf (" {\n");
327 if (d->name)
329 printf (" \"%s\",\n", d->name);
330 name_offset = 0;
331 last_name = d->name;
332 next_name = 0;
333 for (n = d->next, next_name_offset = 1; n;
334 n = n->next, next_name_offset++)
336 if (n->name)
338 next_name = n->name;
339 break;
343 else
345 name_offset++;
346 if (next_name && (last_name == 0
347 || name_offset > next_name_offset / 2))
348 printf (" \"%s-%d\",\n", next_name,
349 next_name_offset - name_offset);
350 else
351 printf (" \"%s+%d\",\n", last_name, name_offset);
354 switch (d->output_format)
356 case INSN_OUTPUT_FORMAT_NONE:
357 printf (" 0,\n");
358 break;
359 case INSN_OUTPUT_FORMAT_SINGLE:
360 printf (" \"%s\",\n", d->template);
361 break;
362 case INSN_OUTPUT_FORMAT_MULTI:
363 case INSN_OUTPUT_FORMAT_FUNCTION:
364 printf (" (const PTR) output_%d,\n", d->code_number);
365 break;
366 default:
367 abort ();
370 if (d->name && d->name[0] != '*')
371 printf (" (insn_gen_fn) gen_%s,\n", d->name);
372 else
373 printf (" 0,\n");
375 printf (" &operand_data[%d],\n", d->operand_number);
376 printf (" %d,\n", d->n_operands);
377 printf (" %d,\n", d->n_dups);
378 printf (" %d,\n", d->n_alternatives);
379 printf (" %d\n", d->output_format);
381 printf(" },\n");
383 printf ("};\n\n\n");
386 static void
387 output_get_insn_name ()
389 printf ("const char *\n");
390 printf ("get_insn_name (code)\n");
391 printf (" int code;\n");
392 printf ("{\n");
393 printf (" return insn_data[code].name;\n");
394 printf ("}\n");
398 /* Stores in max_opno the largest operand number present in `part', if
399 that is larger than the previous value of max_opno, and the rest of
400 the operand data into `d->operand[i]'.
402 THIS_ADDRESS_P is nonzero if the containing rtx was an ADDRESS.
403 THIS_STRICT_LOW is nonzero if the containing rtx was a STRICT_LOW_PART. */
405 static int max_opno;
406 static int num_dups;
408 static void
409 scan_operands (d, part, this_address_p, this_strict_low)
410 struct data *d;
411 rtx part;
412 int this_address_p;
413 int this_strict_low;
415 register int i, j;
416 register const char *format_ptr;
417 int opno;
419 if (part == 0)
420 return;
422 switch (GET_CODE (part))
424 case MATCH_OPERAND:
425 opno = XINT (part, 0);
426 if (opno > max_opno)
427 max_opno = opno;
428 if (max_opno >= MAX_MAX_OPERANDS)
430 error ("Too many operands (%d) in definition %s.\n",
431 max_opno + 1, get_insn_name (next_index_number));
432 return;
434 if (d->operand[opno].seen)
435 error ("Definition %s specified operand number %d more than once.\n",
436 get_insn_name (next_index_number), opno);
437 d->operand[opno].seen = 1;
438 d->operand[opno].mode = GET_MODE (part);
439 d->operand[opno].strict_low = this_strict_low;
440 d->operand[opno].predicate = XSTR (part, 1);
441 d->operand[opno].constraint = XSTR (part, 2);
442 if (XSTR (part, 2) != NULL && *XSTR (part, 2) != 0)
444 strip_whitespace (XSTR (part, 2));
445 d->operand[opno].n_alternatives
446 = n_occurrences (',', XSTR (part, 2)) + 1;
448 d->operand[opno].address_p = this_address_p;
449 d->operand[opno].eliminable = 1;
450 return;
452 case MATCH_SCRATCH:
453 opno = XINT (part, 0);
454 if (opno > max_opno)
455 max_opno = opno;
456 if (max_opno >= MAX_MAX_OPERANDS)
458 error ("Too many operands (%d) in definition %s.\n",
459 max_opno + 1, get_insn_name (next_index_number));
460 return;
462 if (d->operand[opno].seen)
463 error ("Definition %s specified operand number %d more than once.\n",
464 get_insn_name (next_index_number), opno);
465 d->operand[opno].seen = 1;
466 d->operand[opno].mode = GET_MODE (part);
467 d->operand[opno].strict_low = 0;
468 d->operand[opno].predicate = "scratch_operand";
469 d->operand[opno].constraint = XSTR (part, 1);
470 if (XSTR (part, 1) != NULL && *XSTR (part, 1) != 0)
472 strip_whitespace (XSTR (part, 1));
473 d->operand[opno].n_alternatives
474 = n_occurrences (',', XSTR (part, 1)) + 1;
476 d->operand[opno].address_p = 0;
477 d->operand[opno].eliminable = 0;
478 return;
480 case MATCH_OPERATOR:
481 case MATCH_PARALLEL:
482 opno = XINT (part, 0);
483 if (opno > max_opno)
484 max_opno = opno;
485 if (max_opno >= MAX_MAX_OPERANDS)
487 error ("Too many operands (%d) in definition %s.\n",
488 max_opno + 1, get_insn_name (next_index_number));
489 return;
491 if (d->operand[opno].seen)
492 error ("Definition %s specified operand number %d more than once.\n",
493 get_insn_name (next_index_number), opno);
494 d->operand[opno].seen = 1;
495 d->operand[opno].mode = GET_MODE (part);
496 d->operand[opno].strict_low = 0;
497 d->operand[opno].predicate = XSTR (part, 1);
498 d->operand[opno].constraint = 0;
499 d->operand[opno].address_p = 0;
500 d->operand[opno].eliminable = 0;
501 for (i = 0; i < XVECLEN (part, 2); i++)
502 scan_operands (d, XVECEXP (part, 2, i), 0, 0);
503 return;
505 case MATCH_DUP:
506 case MATCH_OP_DUP:
507 case MATCH_PAR_DUP:
508 ++num_dups;
509 return;
511 case ADDRESS:
512 scan_operands (d, XEXP (part, 0), 1, 0);
513 return;
515 case STRICT_LOW_PART:
516 scan_operands (d, XEXP (part, 0), 0, 1);
517 return;
519 default:
520 break;
523 format_ptr = GET_RTX_FORMAT (GET_CODE (part));
525 for (i = 0; i < GET_RTX_LENGTH (GET_CODE (part)); i++)
526 switch (*format_ptr++)
528 case 'e':
529 case 'u':
530 scan_operands (d, XEXP (part, i), 0, 0);
531 break;
532 case 'E':
533 if (XVEC (part, i) != NULL)
534 for (j = 0; j < XVECLEN (part, i); j++)
535 scan_operands (d, XVECEXP (part, i, j), 0, 0);
536 break;
540 /* Compare two operands for content equality. */
542 static int
543 compare_operands (d0, d1)
544 struct operand_data *d0, *d1;
546 const char *p0, *p1;
548 p0 = d0->predicate;
549 if (!p0)
550 p0 = "";
551 p1 = d1->predicate;
552 if (!p1)
553 p1 = "";
554 if (strcmp (p0, p1) != 0)
555 return 0;
557 p0 = d0->constraint;
558 if (!p0)
559 p0 = "";
560 p1 = d1->constraint;
561 if (!p1)
562 p1 = "";
563 if (strcmp (p0, p1) != 0)
564 return 0;
566 if (d0->mode != d1->mode)
567 return 0;
569 if (d0->strict_low != d1->strict_low)
570 return 0;
572 if (d0->eliminable != d1->eliminable)
573 return 0;
575 return 1;
578 /* Scan the list of operands we've already committed to output and either
579 find a subsequence that is the same, or allocate a new one at the end. */
581 static void
582 place_operands (d)
583 struct data *d;
585 struct operand_data *od, *od2;
586 int i;
588 if (d->n_operands == 0)
590 d->operand_number = 0;
591 return;
594 /* Brute force substring search. */
595 for (od = odata, i = 0; od; od = od->next, i = 0)
596 if (compare_operands (od, &d->operand[0]))
598 od2 = od->next;
599 i = 1;
600 while (1)
602 if (i == d->n_operands)
603 goto full_match;
604 if (od2 == NULL)
605 goto partial_match;
606 if (! compare_operands (od2, &d->operand[i]))
607 break;
608 ++i, od2 = od2->next;
612 /* Either partial match at the end of the list, or no match. In either
613 case, we tack on what operands are remaining to the end of the list. */
614 partial_match:
615 d->operand_number = next_operand_number - i;
616 for (; i < d->n_operands; ++i)
618 od2 = &d->operand[i];
619 *odata_end = od2;
620 odata_end = &od2->next;
621 od2->index = next_operand_number++;
623 *odata_end = NULL;
624 return;
626 full_match:
627 d->operand_number = od->index;
628 return;
632 /* Process an assembler template from a define_insn or a define_peephole.
633 It is either the assembler code template, a list of assembler code
634 templates, or C code to generate the assembler code template. */
636 static void
637 process_template (d, template)
638 struct data *d;
639 const char *template;
641 register const char *cp;
642 register int i;
644 /* Templates starting with * contain straight code to be run. */
645 if (template[0] == '*')
647 d->template = 0;
648 d->output_format = INSN_OUTPUT_FORMAT_FUNCTION;
650 printf ("\nstatic const char *output_%d PARAMS ((rtx *, rtx));\n",
651 d->code_number);
652 puts ("\nstatic const char *");
653 printf ("output_%d (operands, insn)\n", d->code_number);
654 puts (" rtx *operands ATTRIBUTE_UNUSED;");
655 puts (" rtx insn ATTRIBUTE_UNUSED;");
656 puts ("{");
658 puts (template + 1);
659 puts ("}");
662 /* If the assembler code template starts with a @ it is a newline-separated
663 list of assembler code templates, one for each alternative. */
664 else if (template[0] == '@')
666 d->template = 0;
667 d->output_format = INSN_OUTPUT_FORMAT_MULTI;
669 printf ("\nstatic const char * const output_%d[] = {\n", d->code_number);
671 for (i = 0, cp = &template[1]; *cp; )
673 while (*cp == '\n' || *cp == ' ' || *cp== '\t')
674 cp++;
676 printf (" \"");
677 while (*cp != '\n' && *cp != '\0')
679 putchar (*cp);
680 cp++;
683 printf ("\",\n");
684 i++;
687 printf ("};\n");
689 else
691 d->template = template;
692 d->output_format = INSN_OUTPUT_FORMAT_SINGLE;
696 /* Check insn D for consistency in number of constraint alternatives. */
698 static void
699 validate_insn_alternatives (d)
700 struct data *d;
702 register int n = 0, start;
704 /* Make sure all the operands have the same number of alternatives
705 in their constraints. Let N be that number. */
706 for (start = 0; start < d->n_operands; start++)
707 if (d->operand[start].n_alternatives > 0)
709 if (n == 0)
710 n = d->operand[start].n_alternatives;
711 else if (n != d->operand[start].n_alternatives)
712 error ("wrong number of alternatives in operand %d of insn %s",
713 start, get_insn_name (d->index_number));
716 /* Record the insn's overall number of alternatives. */
717 d->n_alternatives = n;
720 /* Look at a define_insn just read. Assign its code number. Record
721 on idata the template and the number of arguments. If the insn has
722 a hairy output action, output a function for now. */
724 static void
725 gen_insn (insn)
726 rtx insn;
728 register struct data *d = (struct data *) xmalloc (sizeof (struct data));
729 register int i;
731 d->code_number = next_code_number++;
732 d->index_number = next_index_number;
733 if (XSTR (insn, 0)[0])
734 d->name = XSTR (insn, 0);
735 else
736 d->name = 0;
738 /* Build up the list in the same order as the insns are seen
739 in the machine description. */
740 d->next = 0;
741 *idata_end = d;
742 idata_end = &d->next;
744 max_opno = -1;
745 num_dups = 0;
746 memset (d->operand, 0, sizeof (d->operand));
748 for (i = 0; i < XVECLEN (insn, 1); i++)
749 scan_operands (d, XVECEXP (insn, 1, i), 0, 0);
751 d->n_operands = max_opno + 1;
752 d->n_dups = num_dups;
754 validate_insn_alternatives (d);
755 place_operands (d);
756 process_template (d, XSTR (insn, 3));
759 /* Look at a define_peephole just read. Assign its code number.
760 Record on idata the template and the number of arguments.
761 If the insn has a hairy output action, output it now. */
763 static void
764 gen_peephole (peep)
765 rtx peep;
767 register struct data *d = (struct data *) xmalloc (sizeof (struct data));
768 register int i;
770 d->code_number = next_code_number++;
771 d->index_number = next_index_number;
772 d->name = 0;
774 /* Build up the list in the same order as the insns are seen
775 in the machine description. */
776 d->next = 0;
777 *idata_end = d;
778 idata_end = &d->next;
780 max_opno = -1;
781 num_dups = 0;
782 memset (d->operand, 0, sizeof (d->operand));
784 /* Get the number of operands by scanning all the patterns of the
785 peephole optimizer. But ignore all the rest of the information
786 thus obtained. */
787 for (i = 0; i < XVECLEN (peep, 0); i++)
788 scan_operands (d, XVECEXP (peep, 0, i), 0, 0);
790 d->n_operands = max_opno + 1;
791 d->n_dups = 0;
793 validate_insn_alternatives (d);
794 place_operands (d);
795 process_template (d, XSTR (peep, 2));
798 /* Process a define_expand just read. Assign its code number,
799 only for the purposes of `insn_gen_function'. */
801 static void
802 gen_expand (insn)
803 rtx insn;
805 register struct data *d = (struct data *) xmalloc (sizeof (struct data));
806 register int i;
808 d->code_number = next_code_number++;
809 d->index_number = next_index_number;
810 if (XSTR (insn, 0)[0])
811 d->name = XSTR (insn, 0);
812 else
813 d->name = 0;
815 /* Build up the list in the same order as the insns are seen
816 in the machine description. */
817 d->next = 0;
818 *idata_end = d;
819 idata_end = &d->next;
821 max_opno = -1;
822 num_dups = 0;
823 memset (d->operand, 0, sizeof (d->operand));
825 /* Scan the operands to get the specified predicates and modes,
826 since expand_binop needs to know them. */
828 if (XVEC (insn, 1))
829 for (i = 0; i < XVECLEN (insn, 1); i++)
830 scan_operands (d, XVECEXP (insn, 1, i), 0, 0);
832 d->n_operands = max_opno + 1;
833 d->n_dups = num_dups;
834 d->template = 0;
835 d->output_format = INSN_OUTPUT_FORMAT_NONE;
837 validate_insn_alternatives (d);
838 place_operands (d);
841 /* Process a define_split just read. Assign its code number,
842 only for reasons of consistency and to simplify genrecog. */
844 static void
845 gen_split (split)
846 rtx split;
848 register struct data *d = (struct data *) xmalloc (sizeof (struct data));
849 register int i;
851 d->code_number = next_code_number++;
852 d->index_number = next_index_number;
853 d->name = 0;
855 /* Build up the list in the same order as the insns are seen
856 in the machine description. */
857 d->next = 0;
858 *idata_end = d;
859 idata_end = &d->next;
861 max_opno = -1;
862 num_dups = 0;
863 memset (d->operand, 0, sizeof (d->operand));
865 /* Get the number of operands by scanning all the patterns of the
866 split patterns. But ignore all the rest of the information thus
867 obtained. */
868 for (i = 0; i < XVECLEN (split, 0); i++)
869 scan_operands (d, XVECEXP (split, 0, i), 0, 0);
871 d->n_operands = max_opno + 1;
872 d->n_dups = 0;
873 d->n_alternatives = 0;
874 d->template = 0;
875 d->output_format = INSN_OUTPUT_FORMAT_NONE;
877 place_operands (d);
881 xmalloc (size)
882 size_t size;
884 register PTR val = (PTR) malloc (size);
886 if (val == 0)
887 fatal ("virtual memory exhausted");
888 return val;
892 xrealloc (old, size)
893 PTR old;
894 size_t size;
896 register PTR ptr;
897 if (old)
898 ptr = (PTR) realloc (old, size);
899 else
900 ptr = (PTR) malloc (size);
901 if (!ptr)
902 fatal ("virtual memory exhausted");
903 return ptr;
906 extern int main PARAMS ((int, char **));
909 main (argc, argv)
910 int argc;
911 char **argv;
913 rtx desc;
914 FILE *infile;
915 register int c;
917 progname = "genoutput";
918 obstack_init (rtl_obstack);
920 if (argc <= 1)
921 fatal ("No input file name.");
923 infile = fopen (argv[1], "r");
924 if (infile == 0)
926 perror (argv[1]);
927 return (FATAL_EXIT_CODE);
929 read_rtx_filename = argv[1];
931 output_prologue ();
932 next_code_number = 0;
933 next_index_number = 0;
935 /* Read the machine description. */
937 while (1)
939 c = read_skip_spaces (infile);
940 if (c == EOF)
941 break;
942 ungetc (c, infile);
944 desc = read_rtx (infile);
945 if (GET_CODE (desc) == DEFINE_INSN)
946 gen_insn (desc);
947 if (GET_CODE (desc) == DEFINE_PEEPHOLE)
948 gen_peephole (desc);
949 if (GET_CODE (desc) == DEFINE_EXPAND)
950 gen_expand (desc);
951 if (GET_CODE (desc) == DEFINE_SPLIT
952 || GET_CODE (desc) == DEFINE_PEEPHOLE2)
953 gen_split (desc);
954 next_index_number++;
957 printf("\n\n");
958 output_predicate_decls ();
959 output_operand_data ();
960 output_insn_data ();
961 output_get_insn_name ();
963 fflush (stdout);
964 return (ferror (stdout) != 0 || have_error
965 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);
968 static int
969 n_occurrences (c, s)
970 int c;
971 const char *s;
973 int n = 0;
974 while (*s)
975 n += (*s++ == c);
976 return n;
979 /* Remove whitespace in `s' by moving up characters until the end. */
980 static void
981 strip_whitespace (s)
982 char *s;
984 char *p = s;
985 int ch;
987 while ((ch = *s++) != '\0')
988 if (! ISSPACE (ch))
989 *p++ = ch;
991 *p = '\0';