OSDN Git Service

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