OSDN Git Service

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