OSDN Git Service

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