OSDN Git Service

89859a82dcedcf1ad9e683c38a6fe5f76eb9228c
[pf3gnuchains/gcc-fork.git] / gcc / genoutput.c
1 /* Generate code from to output assembler insns as recognized from rtl.
2    Copyright (C) 1987, 88, 92, 94-95, 97-98, 1999
3    Free Software Foundation, Inc.
4
5 This file is part of GNU CC.
6
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.
11
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.
16
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.  */
21
22
23 /* This program reads the machine description for the compiler target machine
24    and produces a file containing these things:
25
26    1. An array of `struct insn_data', which is indexed by insn code number,
27    which contains:
28
29      a. `name' is the name for that pattern.  Nameless patterns are
30      given a name.
31
32      b. `output' hold either the output template, an array of output
33      templates, or an output function.
34
35      c. `genfun' is the function to generate a body for that pattern,
36      given operands as arguments.
37
38      d. `n_operands' is the number of distinct operands in the pattern
39      for that insn,
40
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.
44
45      f. `n_alternatives' is the number of alternatives in the constraints
46      of each pattern.
47
48      g. `output_format' tells what type of thing `output' is.
49
50      h. `operand' is the base of an array of operand data for the insn.
51
52    2. An array of `struct insn_operand data', used by `operand' above.
53
54      a. `predicate', an int-valued function, is the match_operand predicate
55      for this operand.
56
57      b. `constraint' is the constraint for this operand.  This exists
58      only if register constraints appear in match_operand rtx's.
59
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.
63
64      d. `mode' is the machine mode that that operand is supposed to have.
65
66      e. `strict_low', is nonzero for operands contained in a STRICT_LOW_PART.
67
68   The code number of an insn is simply its position in the machine
69   description; code numbers are assigned sequentially to entries in
70   the description, starting with code number 0.
71
72   Thus, the following entry in the machine description
73
74     (define_insn "clrdf"
75       [(set (match_operand:DF 0 "general_operand" "")
76             (const_int 0))]
77       ""
78       "clrd %0")
79
80   assuming it is the 25th entry present, would cause
81   insn_data[24].template to be "clrd %0", and
82   insn_data[24].n_operands to be 1.  */
83 \f
84 #include "hconfig.h"
85 #include "system.h"
86 #include "rtl.h"
87 #include "obstack.h"
88 #include "errors.h"
89
90 /* No instruction can have more operands than this.  Sorry for this
91    arbitrary limit, but what machine will have an instruction with
92    this many operands?  */
93
94 #define MAX_MAX_OPERANDS 40
95
96 static struct obstack obstack;
97 struct obstack *rtl_obstack = &obstack;
98
99 #define obstack_chunk_alloc xmalloc
100 #define obstack_chunk_free free
101
102 static int n_occurrences PROTO((int, char *));
103
104 /* insns in the machine description are assigned sequential code numbers
105    that are used by insn-recog.c (produced by genrecog) to communicate
106    to insn-output.c (produced by this program).  */
107
108 static int next_code_number;
109
110 /* This counts all definitions in the md file,
111    for the sake of error messages.  */
112
113 static int next_index_number;
114
115 /* This counts all operands used in the md file.  The first is null.  */
116
117 static int next_operand_number = 1;
118
119 /* Record in this chain all information about the operands we will output.  */
120
121 struct operand_data
122 {
123   struct operand_data *next;
124   int index;
125   const char *predicate;
126   const char *constraint;
127   enum machine_mode mode;
128   unsigned char n_alternatives;
129   char address_p;
130   char strict_low;
131   char seen;
132 };
133
134 /* Begin with a null operand at index 0.  */
135
136 static struct operand_data null_operand =
137 {
138   0, 0, "", "", VOIDmode, 0, 0, 0, 0
139 };
140
141 static struct operand_data *odata = &null_operand;
142 static struct operand_data **odata_end = &null_operand.next;
143
144 /* Must match the constants in recog.h.  */
145
146 #define INSN_OUTPUT_FORMAT_NONE         0       /* abort */
147 #define INSN_OUTPUT_FORMAT_SINGLE       1       /* const char * */
148 #define INSN_OUTPUT_FORMAT_MULTI        2       /* const char * const * */
149 #define INSN_OUTPUT_FORMAT_FUNCTION     3       /* const char * (*)(...) */
150
151 /* Record in this chain all information that we will output,
152    associated with the code number of the insn.  */
153
154 struct data
155 {
156   struct data *next;
157   const char *name;
158   const char *template;
159   int code_number;
160   int index_number;
161   int n_operands;               /* Number of operands this insn recognizes */
162   int n_dups;                   /* Number times match_dup appears in pattern */
163   int n_alternatives;           /* Number of alternatives in each constraint */
164   int operand_number;           /* Operand index in the big array.  */
165   int output_format;            /* INSN_OUTPUT_FORMAT_*.  */
166   struct operand_data operand[MAX_MAX_OPERANDS];
167 };
168
169 /* This variable points to the first link in the insn chain.  */
170
171 static struct data *idata, **idata_end = &idata;
172
173 /* Nonzero if any match_operand has a constraint string; implies that
174    REGISTER_CONSTRAINTS will be defined for this machine description.  */
175
176 static int have_constraints;
177
178 \f
179 static void output_prologue PROTO((void));
180 static void output_predicate_decls PROTO((void));
181 static void output_operand_data PROTO((void));
182 static void output_insn_data PROTO((void));
183 static void output_get_insn_name PROTO((void));
184 static void scan_operands PROTO((struct data *, rtx, int, int));
185 static int compare_operands PROTO((struct operand_data *,
186                                    struct operand_data *));
187 static void place_operands PROTO((struct data *));
188 static void process_template PROTO((struct data *, char *));
189 static void validate_insn_alternatives PROTO((struct data *));
190 static void gen_insn PROTO((rtx));
191 static void gen_peephole PROTO((rtx));
192 static void gen_expand PROTO((rtx));
193 static void gen_split PROTO((rtx));
194 static int n_occurrences PROTO((int, char *));
195 \f
196 const char *
197 get_insn_name (index)
198      int index;
199 {
200   static char buf[100];
201
202   struct data *i, *last_named = NULL;
203   for (i = idata; i ; i = i->next)
204     {
205       if (i->index_number == index)
206         return i->name;
207       if (i->name)
208         last_named = i;
209     }
210
211   if (last_named)
212     sprintf(buf, "%s+%d", last_named->name, index - last_named->index_number);
213   else
214     sprintf(buf, "insn %d", index);
215
216   return buf;
217 }
218
219 static void
220 output_prologue ()
221 {
222   printf ("/* Generated automatically by the program `genoutput'\n\
223 from the machine description file `md'.  */\n\n");
224
225   printf ("#define NO_MD_PROTOTYPES\n");
226   printf ("#include \"config.h\"\n");
227   printf ("#include \"system.h\"\n");
228   printf ("#include \"flags.h\"\n");
229   printf ("#include \"rtl.h\"\n");
230   printf ("#include \"tm_p.h\"\n");
231   printf ("#include \"function.h\"\n");
232   printf ("#include \"regs.h\"\n");
233   printf ("#include \"hard-reg-set.h\"\n");
234   printf ("#include \"real.h\"\n");
235   printf ("#include \"insn-config.h\"\n\n");
236   printf ("#include \"conditions.h\"\n");
237   printf ("#include \"insn-flags.h\"\n");
238   printf ("#include \"insn-attr.h\"\n\n");
239   printf ("#include \"insn-codes.h\"\n\n");
240   printf ("#include \"recog.h\"\n\n");
241
242   printf ("#include \"output.h\"\n");
243 }
244
245
246 /* We need to define all predicates used.  Keep a list of those we
247    have defined so far.  There normally aren't very many predicates
248    used, so a linked list should be fast enough.  */
249
250 static void
251 output_predicate_decls ()
252 {
253   struct predicate { const char *name; struct predicate *next; } *predicates = 0;
254   register struct operand_data *d;
255   struct predicate *p;
256
257   for (d = odata; d; d = d->next)
258     if (d->predicate && d->predicate[0])
259       {
260         for (p = predicates; p; p = p->next)
261           if (strcmp (p->name, d->predicate) == 0)
262             break;
263
264         if (p == 0)
265           {
266             printf ("extern int %s PROTO ((rtx, enum machine_mode));\n",
267                     d->predicate);
268             p = (struct predicate *) alloca (sizeof (struct predicate));
269             p->name = d->predicate;
270             p->next = predicates;
271             predicates = p;
272           }
273       }
274
275   printf ("\n\n");
276 }
277
278 static void
279 output_operand_data ()
280 {
281   register struct operand_data *d;
282
283   printf ("\nstatic const struct insn_operand_data operand_data[] = \n{\n");
284
285   for (d = odata; d; d = d->next)
286     {
287       printf ("  {\n");
288
289       printf ("    %s,\n",
290               d->predicate && d->predicate[0] ? d->predicate : "0");
291
292       if (have_constraints)
293         {
294           printf ("    \"%s\",\n",
295                   d->constraint ? d->constraint : "");
296         }
297
298       printf ("    %smode,\n", GET_MODE_NAME (d->mode));
299
300       if (! have_constraints)
301         printf ("    %d,\n", d->address_p);
302
303       printf ("    %d\n", d->strict_low);
304
305       printf("  },\n");
306     }
307   printf("};\n\n\n");
308 }
309
310 static void
311 output_insn_data ()
312 {
313   register struct data *d;
314   int name_offset = 0;
315   int next_name_offset;
316   const char * last_name = 0;
317   const char * next_name = 0;
318   register struct data *n;
319
320   for (n = idata, next_name_offset = 1; n; n = n->next, next_name_offset++)
321     if (n->name)
322       {
323         next_name = n->name;
324         break;
325       }
326
327   printf ("\nconst struct insn_data insn_data[] = \n{\n");
328
329   for (d = idata; d; d = d->next)
330     {
331       printf ("  {\n");
332
333       if (d->name)
334         {
335           printf ("    \"%s\",\n", d->name);
336           name_offset = 0;
337           last_name = d->name;
338           next_name = 0;
339           for (n = d->next, next_name_offset = 1; n;
340                n = n->next, next_name_offset++)
341             {
342               if (n->name)
343                 {
344                   next_name = n->name;
345                   break;
346                 }
347             }
348         }
349       else
350         {
351           name_offset++;
352           if (next_name && (last_name == 0
353                             || name_offset > next_name_offset / 2))
354             printf ("    \"%s-%d\",\n", next_name,
355                     next_name_offset - name_offset);
356           else
357             printf ("    \"%s+%d\",\n", last_name, name_offset);
358         }
359
360       switch (d->output_format)
361         {
362         case INSN_OUTPUT_FORMAT_NONE:
363           printf ("    0,\n");
364           break;
365         case INSN_OUTPUT_FORMAT_SINGLE:
366           printf ("    \"%s\",\n", d->template);
367           break;
368         case INSN_OUTPUT_FORMAT_MULTI:
369         case INSN_OUTPUT_FORMAT_FUNCTION:
370           printf ("    output_%d,\n", d->code_number);
371           break;
372         default:
373           abort ();
374         }
375
376       if (d->name && d->name[0] != '*')
377         printf ("    gen_%s,\n", d->name);
378       else
379         printf ("    0,\n");
380
381       printf ("    &operand_data[%d],\n", d->operand_number);
382       printf ("    %d,\n", d->n_operands);
383       printf ("    %d,\n", d->n_dups);
384       printf ("    %d,\n", d->n_alternatives);
385       printf ("    %d\n", d->output_format);
386
387       printf("  },\n");
388     }
389   printf ("};\n\n\n");
390 }
391
392 static void
393 output_get_insn_name ()
394 {
395   printf ("const char *\n");
396   printf ("get_insn_name (code)\n");
397   printf ("     int code;\n");
398   printf ("{\n");
399   printf ("  return insn_data[code].name;\n");
400   printf ("}\n");
401 }
402
403 \f
404 /* Stores in max_opno the largest operand number present in `part', if
405    that is larger than the previous value of max_opno, and the rest of
406    the operand data into `d->operand[i]'.
407
408    THIS_ADDRESS_P is nonzero if the containing rtx was an ADDRESS.
409    THIS_STRICT_LOW is nonzero if the containing rtx was a STRICT_LOW_PART.  */
410
411 static int max_opno;
412 static int num_dups;
413
414 static void
415 scan_operands (d, part, this_address_p, this_strict_low)
416      struct data *d;
417      rtx part;
418      int this_address_p;
419      int this_strict_low;
420 {
421   register int i, j;
422   register const char *format_ptr;
423   int opno;
424
425   if (part == 0)
426     return;
427
428   switch (GET_CODE (part))
429     {
430     case MATCH_OPERAND:
431       opno = XINT (part, 0);
432       if (opno > max_opno)
433         max_opno = opno;
434       if (max_opno >= MAX_MAX_OPERANDS)
435         {
436           error ("Too many operands (%d) in definition %s.\n",
437                  max_opno + 1, get_insn_name (next_index_number));
438           return;
439         }
440       if (d->operand[opno].seen)
441         error ("Definition %s specified operand number %d more than once.\n",
442                get_insn_name (next_index_number), opno);
443       d->operand[opno].seen = 1;
444       d->operand[opno].mode = GET_MODE (part);
445       d->operand[opno].strict_low = this_strict_low;
446       d->operand[opno].predicate = XSTR (part, 1);
447       d->operand[opno].constraint = XSTR (part, 2);
448       if (XSTR (part, 2) != 0 && *XSTR (part, 2) != 0)
449         {
450           d->operand[opno].n_alternatives
451             = n_occurrences (',', XSTR (part, 2)) + 1;
452           have_constraints = 1;
453         }
454       d->operand[opno].address_p = this_address_p;
455       return;
456
457     case MATCH_SCRATCH:
458       opno = XINT (part, 0);
459       if (opno > max_opno)
460         max_opno = opno;
461       if (max_opno >= MAX_MAX_OPERANDS)
462         {
463           error ("Too many operands (%d) in definition %s.\n",
464                  max_opno + 1, get_insn_name (next_index_number));
465           return;
466         }
467       if (d->operand[opno].seen)
468         error ("Definition %s specified operand number %d more than once.\n",
469                get_insn_name (next_index_number), opno);
470       d->operand[opno].seen = 1;
471       d->operand[opno].mode = GET_MODE (part);
472       d->operand[opno].strict_low = 0;
473       d->operand[opno].predicate = "scratch_operand";
474       d->operand[opno].constraint = XSTR (part, 1);
475       if (XSTR (part, 1) != 0 && *XSTR (part, 1) != 0)
476         {
477           d->operand[opno].n_alternatives
478             = n_occurrences (',', XSTR (part, 1)) + 1;
479           have_constraints = 1;
480         }
481       d->operand[opno].address_p = 0;
482       return;
483
484     case MATCH_OPERATOR:
485     case MATCH_PARALLEL:
486       opno = XINT (part, 0);
487       if (opno > max_opno)
488         max_opno = opno;
489       if (max_opno >= MAX_MAX_OPERANDS)
490         {
491           error ("Too many operands (%d) in definition %s.\n",
492                  max_opno + 1, get_insn_name (next_index_number));
493           return;
494         }
495       if (d->operand[opno].seen)
496         error ("Definition %s specified operand number %d more than once.\n",
497                get_insn_name (next_index_number), opno);
498       d->operand[opno].seen = 1;
499       d->operand[opno].mode = GET_MODE (part);
500       d->operand[opno].strict_low = 0;
501       d->operand[opno].predicate = XSTR (part, 1);
502       d->operand[opno].constraint = 0;
503       d->operand[opno].address_p = 0;
504       for (i = 0; i < XVECLEN (part, 2); i++)
505         scan_operands (d, XVECEXP (part, 2, i), 0, 0);
506       return;
507
508     case MATCH_DUP:
509     case MATCH_OP_DUP:
510     case MATCH_PAR_DUP:
511       ++num_dups;
512       return;
513
514     case ADDRESS:
515       scan_operands (d, XEXP (part, 0), 1, 0);
516       return;
517
518     case STRICT_LOW_PART:
519       scan_operands (d, XEXP (part, 0), 0, 1);
520       return;
521       
522     default:
523       break;
524     }
525
526   format_ptr = GET_RTX_FORMAT (GET_CODE (part));
527
528   for (i = 0; i < GET_RTX_LENGTH (GET_CODE (part)); i++)
529     switch (*format_ptr++)
530       {
531       case 'e':
532       case 'u':
533         scan_operands (d, XEXP (part, i), 0, 0);
534         break;
535       case 'E':
536         if (XVEC (part, i) != NULL)
537           for (j = 0; j < XVECLEN (part, i); j++)
538             scan_operands (d, XVECEXP (part, i, j), 0, 0);
539         break;
540       }
541 }
542
543 /* Compare two operands for content equality.  */
544
545 static int
546 compare_operands (d0, d1)
547      struct operand_data *d0, *d1;
548 {
549   const char *p0, *p1;
550
551   p0 = d0->predicate;
552   if (!p0)
553     p0 = "";
554   p1 = d1->predicate;
555   if (!p1)
556     p1 = "";
557   if (strcmp (p0, p1) != 0)
558     return 0;
559
560   if (have_constraints)
561     {
562       p0 = d0->constraint;
563       if (!p0)
564         p0 = "";
565       p1 = d1->constraint;
566       if (!p1)
567         p1 = "";
568       if (strcmp (p0, p1) != 0)
569         return 0;
570     }
571
572   if (d0->mode != d1->mode)
573     return 0;
574
575   if (!have_constraints)
576     if (d0->address_p != d1->address_p)
577       return 0;
578
579   if (d0->strict_low != d1->strict_low)
580     return 0;
581
582   return 1;
583 }
584
585 /* Scan the list of operands we've already committed to output and either
586    find a subsequence that is the same, or allocate a new one at the end.  */
587
588 static void
589 place_operands (d)
590      struct data *d;
591 {
592   struct operand_data *od, *od2;
593   int i;
594
595   if (d->n_operands == 0)
596     {
597       d->operand_number = 0;
598       return;
599     }
600
601   /* Brute force substring search.  */
602   for (od = odata, i = 0; od; od = od->next, i = 0)
603     if (compare_operands (od, &d->operand[0]))
604       {
605         od2 = od->next;
606         i = 1;
607         while (1)
608           {
609             if (i == d->n_operands)
610               goto full_match;
611             if (od2 == NULL)
612               goto partial_match;
613             if (! compare_operands (od2, &d->operand[i]))
614               break;
615             ++i, od2 = od2->next;
616           }
617       }
618
619   /* Either partial match at the end of the list, or no match.  In either
620      case, we tack on what operands are remaining to the end of the list.  */
621  partial_match:
622   d->operand_number = next_operand_number - i;
623   for (; i < d->n_operands; ++i)
624     {
625       od2 = &d->operand[i];
626       *odata_end = od2;
627       odata_end = &od2->next;
628       od2->index = next_operand_number++;
629     }
630   *odata_end = NULL;
631   return;
632
633  full_match:
634   d->operand_number = od->index;
635   return;
636 }
637
638 \f
639 /* Process an assembler template from a define_insn or a define_peephole.
640    It is either the assembler code template, a list of assembler code
641    templates, or C code to generate the assembler code template.  */
642
643 static void
644 process_template (d, template)
645     struct data *d;
646     char *template;
647 {
648   register char *cp;
649   register int i;
650
651   /* Templates starting with * contain straight code to be run.  */
652   if (template[0] == '*')
653     {
654       d->template = 0;
655       d->output_format = INSN_OUTPUT_FORMAT_FUNCTION;
656
657       printf ("\nstatic const char *output_%d PROTO ((rtx *, rtx));\n",
658               d->code_number);
659       puts ("\nstatic const char *");
660       printf ("output_%d (operands, insn)\n", d->code_number);
661       puts ("     rtx *operands ATTRIBUTE_UNUSED;");
662       puts ("     rtx insn ATTRIBUTE_UNUSED;");
663       puts ("{");
664
665       puts (template + 1);
666       puts ("}");
667     }
668
669   /* If the assembler code template starts with a @ it is a newline-separated
670      list of assembler code templates, one for each alternative.  */
671   else if (template[0] == '@')
672     {
673       d->template = 0;
674       d->output_format = INSN_OUTPUT_FORMAT_MULTI;
675
676       printf ("\nstatic const char * const output_%d[] = {\n", d->code_number);
677
678       for (i = 0, cp = &template[1]; *cp; )
679         {
680           while (*cp == '\n' || *cp == ' ' || *cp== '\t')
681             cp++;
682
683           printf ("  \"");
684           while (*cp != '\n' && *cp != '\0')
685             {
686               putchar (*cp);
687               cp++;
688             }
689
690           printf ("\",\n");
691           i++;
692         }
693
694       printf ("};\n");
695     }
696   else
697     {
698       d->template = template;
699       d->output_format = INSN_OUTPUT_FORMAT_SINGLE;
700     }
701 }
702 \f
703 /* Check insn D for consistency in number of constraint alternatives.  */
704
705 static void
706 validate_insn_alternatives (d)
707      struct data *d;
708 {
709   register int n = 0, start;
710
711   /* Make sure all the operands have the same number of alternatives
712      in their constraints.  Let N be that number.  */
713   for (start = 0; start < d->n_operands; start++)
714     if (d->operand[start].n_alternatives > 0)
715       {
716         if (n == 0)
717           n = d->operand[start].n_alternatives;
718         else if (n != d->operand[start].n_alternatives)
719           error ("wrong number of alternatives in operand %d of insn %s",
720                  start, get_insn_name (d->index_number));
721       }
722
723   /* Record the insn's overall number of alternatives.  */
724   d->n_alternatives = n;
725 }
726 \f
727 /* Look at a define_insn just read.  Assign its code number.  Record
728    on idata the template and the number of arguments.  If the insn has
729    a hairy output action, output a function for now.  */
730
731 static void
732 gen_insn (insn)
733      rtx insn;
734 {
735   register struct data *d = (struct data *) xmalloc (sizeof (struct data));
736   register int i;
737
738   d->code_number = next_code_number++;
739   d->index_number = next_index_number;
740   if (XSTR (insn, 0)[0])
741     d->name = XSTR (insn, 0);
742   else
743     d->name = 0;
744
745   /* Build up the list in the same order as the insns are seen
746      in the machine description.  */
747   d->next = 0;
748   *idata_end = d;
749   idata_end = &d->next;
750
751   max_opno = -1;
752   num_dups = 0;
753   memset (d->operand, 0, sizeof (d->operand));
754
755   for (i = 0; i < XVECLEN (insn, 1); i++)
756     scan_operands (d, XVECEXP (insn, 1, i), 0, 0);
757
758   d->n_operands = max_opno + 1;
759   d->n_dups = num_dups;
760
761   validate_insn_alternatives (d);
762   place_operands (d);
763   process_template (d, XSTR (insn, 3));
764 }
765 \f
766 /* Look at a define_peephole just read.  Assign its code number.
767    Record on idata the template and the number of arguments.
768    If the insn has a hairy output action, output it now.  */
769
770 static void
771 gen_peephole (peep)
772      rtx peep;
773 {
774   register struct data *d = (struct data *) xmalloc (sizeof (struct data));
775   register int i;
776
777   d->code_number = next_code_number++;
778   d->index_number = next_index_number;
779   d->name = 0;
780
781   /* Build up the list in the same order as the insns are seen
782      in the machine description.  */
783   d->next = 0;
784   *idata_end = d;
785   idata_end = &d->next;
786
787   max_opno = -1;
788   num_dups = 0;
789   memset (d->operand, 0, sizeof (d->operand));
790
791   /* Get the number of operands by scanning all the patterns of the
792      peephole optimizer.  But ignore all the rest of the information
793      thus obtained.  */
794   for (i = 0; i < XVECLEN (peep, 0); i++)
795     scan_operands (d, XVECEXP (peep, 0, i), 0, 0);
796
797   d->n_operands = max_opno + 1;
798   d->n_dups = 0;
799
800   validate_insn_alternatives (d);
801   place_operands (d);
802   process_template (d, XSTR (peep, 2));
803 }
804 \f
805 /* Process a define_expand just read.  Assign its code number,
806    only for the purposes of `insn_gen_function'.  */
807
808 static void
809 gen_expand (insn)
810      rtx insn;
811 {
812   register struct data *d = (struct data *) xmalloc (sizeof (struct data));
813   register int i;
814
815   d->code_number = next_code_number++;
816   d->index_number = next_index_number;
817   if (XSTR (insn, 0)[0])
818     d->name = XSTR (insn, 0);
819   else
820     d->name = 0;
821
822   /* Build up the list in the same order as the insns are seen
823      in the machine description.  */
824   d->next = 0;
825   *idata_end = d;
826   idata_end = &d->next;
827
828   max_opno = -1;
829   num_dups = 0;
830   memset (d->operand, 0, sizeof (d->operand));
831
832   /* Scan the operands to get the specified predicates and modes,
833      since expand_binop needs to know them.  */
834
835   if (XVEC (insn, 1))
836     for (i = 0; i < XVECLEN (insn, 1); i++)
837       scan_operands (d, XVECEXP (insn, 1, i), 0, 0);
838
839   d->n_operands = max_opno + 1;
840   d->n_dups = num_dups;
841   d->template = 0;
842   d->output_format = INSN_OUTPUT_FORMAT_NONE;
843
844   validate_insn_alternatives (d);
845   place_operands (d);
846 }
847 \f
848 /* Process a define_split just read.  Assign its code number,
849    only for reasons of consistency and to simplify genrecog.  */
850
851 static void
852 gen_split (split)
853      rtx split;
854 {
855   register struct data *d = (struct data *) xmalloc (sizeof (struct data));
856   register int i;
857
858   d->code_number = next_code_number++;
859   d->index_number = next_index_number;
860   d->name = 0;
861
862   /* Build up the list in the same order as the insns are seen
863      in the machine description.  */
864   d->next = 0;
865   *idata_end = d;
866   idata_end = &d->next;
867
868   max_opno = -1;
869   num_dups = 0;
870   memset (d->operand, 0, sizeof (d->operand));
871
872   /* Get the number of operands by scanning all the patterns of the
873      split patterns.  But ignore all the rest of the information thus
874      obtained.  */
875   for (i = 0; i < XVECLEN (split, 0); i++)
876     scan_operands (d, XVECEXP (split, 0, i), 0, 0);
877
878   d->n_operands = max_opno + 1;
879   d->n_dups = 0;
880   d->n_alternatives = 0;
881   d->template = 0;
882   d->output_format = INSN_OUTPUT_FORMAT_NONE;
883
884   place_operands (d);
885 }
886 \f
887 PTR
888 xmalloc (size)
889   size_t size;
890 {
891   register PTR val = (PTR) malloc (size);
892
893   if (val == 0)
894     fatal ("virtual memory exhausted");
895   return val;
896 }
897
898 PTR
899 xrealloc (old, size)
900   PTR old;
901   size_t size;
902 {
903   register PTR ptr;
904   if (old)
905     ptr = (PTR) realloc (old, size);
906   else
907     ptr = (PTR) malloc (size);
908   if (!ptr)
909     fatal ("virtual memory exhausted");
910   return ptr;
911 }
912
913 extern int main PROTO ((int, char **));
914
915 int
916 main (argc, argv)
917      int argc;
918      char **argv;
919 {
920   rtx desc;
921   FILE *infile;
922   register int c;
923
924   progname = "genoutput";
925   obstack_init (rtl_obstack);
926
927   if (argc <= 1)
928     fatal ("No input file name.");
929
930   infile = fopen (argv[1], "r");
931   if (infile == 0)
932     {
933       perror (argv[1]);
934       return (FATAL_EXIT_CODE);
935     }
936
937   output_prologue ();
938   next_code_number = 0;
939   next_index_number = 0;
940   have_constraints = 0;
941
942   /* Read the machine description.  */
943
944   while (1)
945     {
946       c = read_skip_spaces (infile);
947       if (c == EOF)
948         break;
949       ungetc (c, infile);
950
951       desc = read_rtx (infile);
952       if (GET_CODE (desc) == DEFINE_INSN)
953         gen_insn (desc);
954       if (GET_CODE (desc) == DEFINE_PEEPHOLE)
955         gen_peephole (desc);
956       if (GET_CODE (desc) == DEFINE_EXPAND)
957         gen_expand (desc);
958       if (GET_CODE (desc) == DEFINE_SPLIT
959           || GET_CODE (desc) == DEFINE_PEEPHOLE2)
960         gen_split (desc);
961       next_index_number++;
962     }
963
964   printf("\n\n");
965   output_predicate_decls ();
966   output_operand_data ();
967   output_insn_data ();
968   output_get_insn_name ();
969
970   fflush (stdout);
971   return (ferror (stdout) != 0 || have_error
972         ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);
973 }
974
975 static int
976 n_occurrences (c, s)
977      int c;
978      char *s;
979 {
980   int n = 0;
981   while (*s)
982     n += (*s++ == c);
983   return n;
984 }