OSDN Git Service

2010-07-29 Tobias Burnus <burnus@net-b.de>
[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, 2002,
3    2003, 2004, 2005, 2007, 2008 Free Software Foundation, Inc.
4
5 This file is part of GCC.
6
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
11
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3.  If not see
19 <http://www.gnu.org/licenses/>.  */
20
21
22 /* This program reads the machine description for the compiler target machine
23    and produces a file containing these things:
24
25    1. An array of `struct insn_data_d', which is indexed by insn code number,
26    which contains:
27
28      a. `name' is the name for that pattern.  Nameless patterns are
29      given a name.
30
31      b. `output' hold either the output template, an array of output
32      templates, or an output function.
33
34      c. `genfun' is the function to generate a body for that pattern,
35      given operands as arguments.
36
37      d. `n_operands' is the number of distinct operands in the pattern
38      for that insn,
39
40      e. `n_dups' is the number of match_dup's that appear in the insn's
41      pattern.  This says how many elements of `recog_data.dup_loc' are
42      significant after an insn has been recognized.
43
44      f. `n_alternatives' is the number of alternatives in the constraints
45      of each pattern.
46
47      g. `output_format' tells what type of thing `output' is.
48
49      h. `operand' is the base of an array of operand data for the insn.
50
51    2. An array of `struct insn_operand data', used by `operand' above.
52
53      a. `predicate', an int-valued function, is the match_operand predicate
54      for this operand.
55
56      b. `constraint' is the constraint for this operand.
57
58      c. `address_p' indicates that the operand appears within ADDRESS
59      rtx's.
60
61      d. `mode' is the machine mode that that operand is supposed to have.
62
63      e. `strict_low', is nonzero for operands contained in a STRICT_LOW_PART.
64
65      f. `eliminable', is nonzero for operands that are matched normally by
66      MATCH_OPERAND; it is zero for operands that should not be changed during
67      register elimination such as MATCH_OPERATORs.
68
69   The code number of an insn is simply its position in the machine
70   description; code numbers are assigned sequentially to entries in
71   the description, starting with code number 0.
72
73   Thus, the following entry in the machine description
74
75     (define_insn "clrdf"
76       [(set (match_operand:DF 0 "general_operand" "")
77             (const_int 0))]
78       ""
79       "clrd %0")
80
81   assuming it is the 25th entry present, would cause
82   insn_data[24].template to be "clrd %0", and
83   insn_data[24].n_operands to be 1.  */
84 \f
85 #include "bconfig.h"
86 #include "system.h"
87 #include "coretypes.h"
88 #include "tm.h"
89 #include "rtl.h"
90 #include "errors.h"
91 #include "read-md.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                (int, const char *);
101 static const char *strip_whitespace     (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_code;
159   int code_number;
160   int index_number;
161   const char *filename;
162   int lineno;
163   int n_operands;               /* Number of operands this insn recognizes */
164   int n_dups;                   /* Number times match_dup appears in pattern */
165   int n_alternatives;           /* Number of alternatives in each constraint */
166   int operand_number;           /* Operand index in the big array.  */
167   int output_format;            /* INSN_OUTPUT_FORMAT_*.  */
168   struct operand_data operand[MAX_MAX_OPERANDS];
169 };
170
171 /* This variable points to the first link in the insn chain.  */
172
173 static struct data *idata, **idata_end = &idata;
174 \f
175 static void output_prologue (void);
176 static void output_operand_data (void);
177 static void output_insn_data (void);
178 static void output_get_insn_name (void);
179 static void scan_operands (struct data *, rtx, int, int);
180 static int compare_operands (struct operand_data *,
181                              struct operand_data *);
182 static void place_operands (struct data *);
183 static void process_template (struct data *, const char *);
184 static void validate_insn_alternatives (struct data *);
185 static void validate_insn_operands (struct data *);
186 static void gen_insn (rtx, int);
187 static void gen_peephole (rtx, int);
188 static void gen_expand (rtx, int);
189 static void gen_split (rtx, int);
190
191 #ifdef USE_MD_CONSTRAINTS
192
193 struct constraint_data
194 {
195   struct constraint_data *next_this_letter;
196   int lineno;
197   unsigned int namelen;
198   const char name[1];
199 };
200
201 /* This is a complete list (unlike the one in genpreds.c) of constraint
202    letters and modifiers with machine-independent meaning.  The only
203    omission is digits, as these are handled specially.  */
204 static const char indep_constraints[] = ",=+%*?!#&<>EFVXgimnoprs";
205
206 static struct constraint_data *
207 constraints_by_letter_table[1 << CHAR_BIT];
208
209 static int mdep_constraint_len (const char *, int, int);
210 static void note_constraint (rtx, int);
211
212 #else  /* !USE_MD_CONSTRAINTS */
213
214 static void check_constraint_len (void);
215 static int constraint_len (const char *, int);
216
217 #endif /* !USE_MD_CONSTRAINTS */
218
219 \f
220 static void
221 output_prologue (void)
222 {
223   printf ("/* Generated automatically by the program `genoutput'\n\
224    from the machine description file `md'.  */\n\n");
225
226   printf ("#include \"config.h\"\n");
227   printf ("#include \"system.h\"\n");
228   printf ("#include \"coretypes.h\"\n");
229   printf ("#include \"tm.h\"\n");
230   printf ("#include \"flags.h\"\n");
231   printf ("#include \"ggc.h\"\n");
232   printf ("#include \"rtl.h\"\n");
233   printf ("#include \"expr.h\"\n");
234   printf ("#include \"insn-codes.h\"\n");
235   printf ("#include \"tm_p.h\"\n");
236   printf ("#include \"function.h\"\n");
237   printf ("#include \"regs.h\"\n");
238   printf ("#include \"hard-reg-set.h\"\n");
239   printf ("#include \"insn-config.h\"\n\n");
240   printf ("#include \"conditions.h\"\n");
241   printf ("#include \"insn-attr.h\"\n\n");
242   printf ("#include \"recog.h\"\n\n");
243   printf ("#include \"diagnostic-core.h\"\n");
244   printf ("#include \"toplev.h\"\n");
245   printf ("#include \"output.h\"\n");
246   printf ("#include \"target.h\"\n");
247   printf ("#include \"tm-constrs.h\"\n");
248 }
249
250 static void
251 output_operand_data (void)
252 {
253   struct operand_data *d;
254
255   printf ("\nstatic const struct insn_operand_data operand_data[] = \n{\n");
256
257   for (d = odata; d; d = d->next)
258     {
259       printf ("  {\n");
260
261       printf ("    %s,\n",
262               d->predicate && d->predicate[0] ? d->predicate : "0");
263
264       printf ("    \"%s\",\n", d->constraint ? d->constraint : "");
265
266       printf ("    %smode,\n", GET_MODE_NAME (d->mode));
267
268       printf ("    %d,\n", d->strict_low);
269
270       printf ("    %d,\n", d->constraint == NULL ? 1 : 0);
271
272       printf ("    %d\n", d->eliminable);
273
274       printf("  },\n");
275     }
276   printf("};\n\n\n");
277 }
278
279 static void
280 output_insn_data (void)
281 {
282   struct data *d;
283   int name_offset = 0;
284   int next_name_offset;
285   const char * last_name = 0;
286   const char * next_name = 0;
287   struct data *n;
288
289   for (n = idata, next_name_offset = 1; n; n = n->next, next_name_offset++)
290     if (n->name)
291       {
292         next_name = n->name;
293         break;
294       }
295
296   printf ("#if GCC_VERSION >= 2007\n__extension__\n#endif\n");
297   printf ("\nconst struct insn_data_d insn_data[] = \n{\n");
298
299   for (d = idata; d; d = d->next)
300     {
301       printf ("  /* %s:%d */\n", d->filename, d->lineno);
302       printf ("  {\n");
303
304       if (d->name)
305         {
306           printf ("    \"%s\",\n", d->name);
307           name_offset = 0;
308           last_name = d->name;
309           next_name = 0;
310           for (n = d->next, next_name_offset = 1; n;
311                n = n->next, next_name_offset++)
312             {
313               if (n->name)
314                 {
315                   next_name = n->name;
316                   break;
317                 }
318             }
319         }
320       else
321         {
322           name_offset++;
323           if (next_name && (last_name == 0
324                             || name_offset > next_name_offset / 2))
325             printf ("    \"%s-%d\",\n", next_name,
326                     next_name_offset - name_offset);
327           else
328             printf ("    \"%s+%d\",\n", last_name, name_offset);
329         }
330
331       switch (d->output_format)
332         {
333         case INSN_OUTPUT_FORMAT_NONE:
334           printf ("#if HAVE_DESIGNATED_INITIALIZERS\n");
335           printf ("    { 0 },\n");
336           printf ("#else\n");
337           printf ("    { 0, 0, 0 },\n");
338           printf ("#endif\n");
339           break;
340         case INSN_OUTPUT_FORMAT_SINGLE:
341           {
342             const char *p = d->template_code;
343             char prev = 0;
344
345             printf ("#if HAVE_DESIGNATED_INITIALIZERS\n");
346             printf ("    { .single =\n");
347             printf ("#else\n");
348             printf ("    {\n");
349             printf ("#endif\n");
350             printf ("    \"");
351             while (*p)
352               {
353                 if (IS_VSPACE (*p) && prev != '\\')
354                   {
355                     /* Preserve two consecutive \n's or \r's, but treat \r\n
356                        as a single newline.  */
357                     if (*p == '\n' && prev != '\r')
358                       printf ("\\n\\\n");
359                   }
360                 else
361                   putchar (*p);
362                 prev = *p;
363                 ++p;
364               }
365             printf ("\",\n");
366             printf ("#if HAVE_DESIGNATED_INITIALIZERS\n");
367             printf ("    },\n");
368             printf ("#else\n");
369             printf ("    0, 0 },\n");
370             printf ("#endif\n");
371           }
372           break;
373         case INSN_OUTPUT_FORMAT_MULTI:
374           printf ("#if HAVE_DESIGNATED_INITIALIZERS\n");
375           printf ("    { .multi = output_%d },\n", d->code_number);
376           printf ("#else\n");
377           printf ("    { 0, output_%d, 0 },\n", d->code_number);
378           printf ("#endif\n");
379           break;
380         case INSN_OUTPUT_FORMAT_FUNCTION:
381           printf ("#if HAVE_DESIGNATED_INITIALIZERS\n");
382           printf ("    { .function = output_%d },\n", d->code_number);
383           printf ("#else\n");
384           printf ("    { 0, 0, output_%d },\n", d->code_number);
385           printf ("#endif\n");
386           break;
387         default:
388           gcc_unreachable ();
389         }
390
391       if (d->name && d->name[0] != '*')
392         printf ("    (insn_gen_fn) gen_%s,\n", d->name);
393       else
394         printf ("    0,\n");
395
396       printf ("    &operand_data[%d],\n", d->operand_number);
397       printf ("    %d,\n", d->n_operands);
398       printf ("    %d,\n", d->n_dups);
399       printf ("    %d,\n", d->n_alternatives);
400       printf ("    %d\n", d->output_format);
401
402       printf("  },\n");
403     }
404   printf ("};\n\n\n");
405 }
406
407 static void
408 output_get_insn_name (void)
409 {
410   printf ("const char *\n");
411   printf ("get_insn_name (int code)\n");
412   printf ("{\n");
413   printf ("  if (code == NOOP_MOVE_INSN_CODE)\n");
414   printf ("    return \"NOOP_MOVE\";\n");
415   printf ("  else\n");
416   printf ("    return insn_data[code].name;\n");
417   printf ("}\n");
418 }
419
420 \f
421 /* Stores in max_opno the largest operand number present in `part', if
422    that is larger than the previous value of max_opno, and the rest of
423    the operand data into `d->operand[i]'.
424
425    THIS_ADDRESS_P is nonzero if the containing rtx was an ADDRESS.
426    THIS_STRICT_LOW is nonzero if the containing rtx was a STRICT_LOW_PART.  */
427
428 static int max_opno;
429 static int num_dups;
430
431 static void
432 scan_operands (struct data *d, rtx part, int this_address_p,
433                int this_strict_low)
434 {
435   int i, j;
436   const char *format_ptr;
437   int opno;
438
439   if (part == 0)
440     return;
441
442   switch (GET_CODE (part))
443     {
444     case MATCH_OPERAND:
445       opno = XINT (part, 0);
446       if (opno > max_opno)
447         max_opno = opno;
448       if (max_opno >= MAX_MAX_OPERANDS)
449         {
450           error_with_line (d->lineno, "maximum number of operands exceeded");
451           return;
452         }
453       if (d->operand[opno].seen)
454         error_with_line (d->lineno, "repeated operand number %d\n", opno);
455
456       d->operand[opno].seen = 1;
457       d->operand[opno].mode = GET_MODE (part);
458       d->operand[opno].strict_low = this_strict_low;
459       d->operand[opno].predicate = XSTR (part, 1);
460       d->operand[opno].constraint = strip_whitespace (XSTR (part, 2));
461       d->operand[opno].n_alternatives
462         = n_occurrences (',', d->operand[opno].constraint) + 1;
463       d->operand[opno].address_p = this_address_p;
464       d->operand[opno].eliminable = 1;
465       return;
466
467     case MATCH_SCRATCH:
468       opno = XINT (part, 0);
469       if (opno > max_opno)
470         max_opno = opno;
471       if (max_opno >= MAX_MAX_OPERANDS)
472         {
473           error_with_line (d->lineno, "maximum number of operands exceeded");
474           return;
475         }
476       if (d->operand[opno].seen)
477         error_with_line (d->lineno, "repeated operand number %d\n", opno);
478
479       d->operand[opno].seen = 1;
480       d->operand[opno].mode = GET_MODE (part);
481       d->operand[opno].strict_low = 0;
482       d->operand[opno].predicate = "scratch_operand";
483       d->operand[opno].constraint = strip_whitespace (XSTR (part, 1));
484       d->operand[opno].n_alternatives
485         = n_occurrences (',', d->operand[opno].constraint) + 1;
486       d->operand[opno].address_p = 0;
487       d->operand[opno].eliminable = 0;
488       return;
489
490     case MATCH_OPERATOR:
491     case MATCH_PARALLEL:
492       opno = XINT (part, 0);
493       if (opno > max_opno)
494         max_opno = opno;
495       if (max_opno >= MAX_MAX_OPERANDS)
496         {
497           error_with_line (d->lineno, "maximum number of operands exceeded");
498           return;
499         }
500       if (d->operand[opno].seen)
501         error_with_line (d->lineno, "repeated operand number %d\n", opno);
502
503       d->operand[opno].seen = 1;
504       d->operand[opno].mode = GET_MODE (part);
505       d->operand[opno].strict_low = 0;
506       d->operand[opno].predicate = XSTR (part, 1);
507       d->operand[opno].constraint = 0;
508       d->operand[opno].address_p = 0;
509       d->operand[opno].eliminable = 0;
510       for (i = 0; i < XVECLEN (part, 2); i++)
511         scan_operands (d, XVECEXP (part, 2, i), 0, 0);
512       return;
513
514     case MATCH_DUP:
515     case MATCH_OP_DUP:
516     case MATCH_PAR_DUP:
517       ++num_dups;
518       break;
519
520     case ADDRESS:
521       scan_operands (d, XEXP (part, 0), 1, 0);
522       return;
523
524     case STRICT_LOW_PART:
525       scan_operands (d, XEXP (part, 0), 0, 1);
526       return;
527
528     default:
529       break;
530     }
531
532   format_ptr = GET_RTX_FORMAT (GET_CODE (part));
533
534   for (i = 0; i < GET_RTX_LENGTH (GET_CODE (part)); i++)
535     switch (*format_ptr++)
536       {
537       case 'e':
538       case 'u':
539         scan_operands (d, XEXP (part, i), 0, 0);
540         break;
541       case 'E':
542         if (XVEC (part, i) != NULL)
543           for (j = 0; j < XVECLEN (part, i); j++)
544             scan_operands (d, XVECEXP (part, i, j), 0, 0);
545         break;
546       }
547 }
548
549 /* Compare two operands for content equality.  */
550
551 static int
552 compare_operands (struct operand_data *d0, struct operand_data *d1)
553 {
554   const char *p0, *p1;
555
556   p0 = d0->predicate;
557   if (!p0)
558     p0 = "";
559   p1 = d1->predicate;
560   if (!p1)
561     p1 = "";
562   if (strcmp (p0, p1) != 0)
563     return 0;
564
565   p0 = d0->constraint;
566   if (!p0)
567     p0 = "";
568   p1 = d1->constraint;
569   if (!p1)
570     p1 = "";
571   if (strcmp (p0, p1) != 0)
572     return 0;
573
574   if (d0->mode != d1->mode)
575     return 0;
576
577   if (d0->strict_low != d1->strict_low)
578     return 0;
579
580   if (d0->eliminable != d1->eliminable)
581     return 0;
582
583   return 1;
584 }
585
586 /* Scan the list of operands we've already committed to output and either
587    find a subsequence that is the same, or allocate a new one at the end.  */
588
589 static void
590 place_operands (struct data *d)
591 {
592   struct operand_data *od, *od2;
593   int i;
594
595   if (d->n_operands == 0)
596     {
597       d->operand_number = 0;
598       return;
599     }
600
601   /* Brute force substring search.  */
602   for (od = odata, i = 0; od; od = od->next, i = 0)
603     if (compare_operands (od, &d->operand[0]))
604       {
605         od2 = od->next;
606         i = 1;
607         while (1)
608           {
609             if (i == d->n_operands)
610               goto full_match;
611             if (od2 == NULL)
612               goto partial_match;
613             if (! compare_operands (od2, &d->operand[i]))
614               break;
615             ++i, od2 = od2->next;
616           }
617       }
618
619   /* Either partial match at the end of the list, or no match.  In either
620      case, we tack on what operands are remaining to the end of the list.  */
621  partial_match:
622   d->operand_number = next_operand_number - i;
623   for (; i < d->n_operands; ++i)
624     {
625       od2 = &d->operand[i];
626       *odata_end = od2;
627       odata_end = &od2->next;
628       od2->index = next_operand_number++;
629     }
630   *odata_end = NULL;
631   return;
632
633  full_match:
634   d->operand_number = od->index;
635   return;
636 }
637
638 \f
639 /* Process an assembler template from a define_insn or a define_peephole.
640    It is either the assembler code template, a list of assembler code
641    templates, or C code to generate the assembler code template.  */
642
643 static void
644 process_template (struct data *d, const char *template_code)
645 {
646   const char *cp;
647   int i;
648
649   /* Templates starting with * contain straight code to be run.  */
650   if (template_code[0] == '*')
651     {
652       d->template_code = 0;
653       d->output_format = INSN_OUTPUT_FORMAT_FUNCTION;
654
655       puts ("\nstatic const char *");
656       printf ("output_%d (rtx *operands ATTRIBUTE_UNUSED, rtx insn ATTRIBUTE_UNUSED)\n",
657               d->code_number);
658       puts ("{");
659       print_md_ptr_loc (template_code);
660       puts (template_code + 1);
661       puts ("}");
662     }
663
664   /* If the assembler code template starts with a @ it is a newline-separated
665      list of assembler code templates, one for each alternative.  */
666   else if (template_code[0] == '@')
667     {
668       d->template_code = 0;
669       d->output_format = INSN_OUTPUT_FORMAT_MULTI;
670
671       printf ("\nstatic const char * const output_%d[] = {\n", d->code_number);
672
673       for (i = 0, cp = &template_code[1]; *cp; )
674         {
675           const char *ep, *sp;
676
677           while (ISSPACE (*cp))
678             cp++;
679
680           printf ("  \"");
681
682           for (ep = sp = cp; !IS_VSPACE (*ep) && *ep != '\0'; ++ep)
683             if (!ISSPACE (*ep))
684               sp = ep + 1;
685
686           if (sp != ep)
687             message_with_line (d->lineno,
688                                "trailing whitespace in output template");
689
690           while (cp < sp)
691             {
692               putchar (*cp);
693               cp++;
694             }
695
696           printf ("\",\n");
697           i++;
698         }
699       if (i == 1)
700         message_with_line (d->lineno,
701                            "'@' is redundant for output template with single alternative");
702       if (i != d->n_alternatives)
703         error_with_line (d->lineno,
704                          "wrong number of alternatives in the output template");
705
706       printf ("};\n");
707     }
708   else
709     {
710       d->template_code = template_code;
711       d->output_format = INSN_OUTPUT_FORMAT_SINGLE;
712     }
713 }
714 \f
715 /* Check insn D for consistency in number of constraint alternatives.  */
716
717 static void
718 validate_insn_alternatives (struct data *d)
719 {
720   int n = 0, start;
721
722   /* Make sure all the operands have the same number of alternatives
723      in their constraints.  Let N be that number.  */
724   for (start = 0; start < d->n_operands; start++)
725     if (d->operand[start].n_alternatives > 0)
726       {
727         int len, i;
728         const char *p;
729         char c;
730         int which_alternative = 0;
731         int alternative_count_unsure = 0;
732
733         for (p = d->operand[start].constraint; (c = *p); p += len)
734           {
735 #ifdef USE_MD_CONSTRAINTS
736             if (ISSPACE (c) || strchr (indep_constraints, c))
737               len = 1;
738             else if (ISDIGIT (c))
739               {
740                 const char *q = p;
741                 do
742                   q++;
743                 while (ISDIGIT (*q));
744                 len = q - p;
745               }
746             else
747               len = mdep_constraint_len (p, d->lineno, start);
748 #else
749             len = CONSTRAINT_LEN (c, p);
750
751             if (len < 1 || (len > 1 && strchr (",#*+=&%!0123456789", c)))
752               {
753                 error_with_line (d->lineno,
754                                  "invalid length %d for char '%c' in"
755                                  " alternative %d of operand %d",
756                                  len, c, which_alternative, start);
757                 len = 1;
758               }
759 #endif
760
761             if (c == ',')
762               {
763                 which_alternative++;
764                 continue;
765               }
766
767             for (i = 1; i < len; i++)
768               if (p[i] == '\0')
769                 {
770                   error_with_line (d->lineno,
771                                    "NUL in alternative %d of operand %d",
772                                    which_alternative, start);
773                   alternative_count_unsure = 1;
774                   break;
775                 }
776               else if (strchr (",#*", p[i]))
777                 {
778                   error_with_line (d->lineno,
779                                    "'%c' in alternative %d of operand %d",
780                                    p[i], which_alternative, start);
781                   alternative_count_unsure = 1;
782                 }
783           }
784         if (!alternative_count_unsure)
785           {
786             if (n == 0)
787               n = d->operand[start].n_alternatives;
788             else if (n != d->operand[start].n_alternatives)
789               error_with_line (d->lineno,
790                                "wrong number of alternatives in operand %d",
791                                start);
792           }
793       }
794
795   /* Record the insn's overall number of alternatives.  */
796   d->n_alternatives = n;
797 }
798
799 /* Verify that there are no gaps in operand numbers for INSNs.  */
800
801 static void
802 validate_insn_operands (struct data *d)
803 {
804   int i;
805
806   for (i = 0; i < d->n_operands; ++i)
807     if (d->operand[i].seen == 0)
808       error_with_line (d->lineno, "missing operand %d", i);
809 }
810
811 static void
812 validate_optab_operands (struct data *d)
813 {
814   if (!d->name || d->name[0] == '\0' || d->name[0] == '*')
815     return;
816
817   /* Miscellaneous tests.  */
818   if (strncmp (d->name, "cstore", 6) == 0
819       && d->name[strlen (d->name) - 1] == '4'
820       && d->operand[0].mode == VOIDmode)
821     {
822       message_with_line (d->lineno, "missing mode for operand 0 of cstore");
823       have_error = 1;
824     }
825 }
826 \f
827 /* Look at a define_insn just read.  Assign its code number.  Record
828    on idata the template and the number of arguments.  If the insn has
829    a hairy output action, output a function for now.  */
830
831 static void
832 gen_insn (rtx insn, int lineno)
833 {
834   struct data *d = XNEW (struct data);
835   int i;
836
837   d->code_number = next_code_number;
838   d->index_number = next_index_number;
839   d->filename = read_md_filename;
840   d->lineno = lineno;
841   if (XSTR (insn, 0)[0])
842     d->name = XSTR (insn, 0);
843   else
844     d->name = 0;
845
846   /* Build up the list in the same order as the insns are seen
847      in the machine description.  */
848   d->next = 0;
849   *idata_end = d;
850   idata_end = &d->next;
851
852   max_opno = -1;
853   num_dups = 0;
854   memset (d->operand, 0, sizeof (d->operand));
855
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
862 #ifndef USE_MD_CONSTRAINTS
863   check_constraint_len ();
864 #endif
865   validate_insn_operands (d);
866   validate_insn_alternatives (d);
867   validate_optab_operands (d);
868   place_operands (d);
869   process_template (d, XTMPL (insn, 3));
870 }
871 \f
872 /* Look at a define_peephole just read.  Assign its code number.
873    Record on idata the template and the number of arguments.
874    If the insn has a hairy output action, output it now.  */
875
876 static void
877 gen_peephole (rtx peep, int lineno)
878 {
879   struct data *d = XNEW (struct data);
880   int i;
881
882   d->code_number = next_code_number;
883   d->index_number = next_index_number;
884   d->filename = read_md_filename;
885   d->lineno = lineno;
886   d->name = 0;
887
888   /* Build up the list in the same order as the insns are seen
889      in the machine description.  */
890   d->next = 0;
891   *idata_end = d;
892   idata_end = &d->next;
893
894   max_opno = -1;
895   num_dups = 0;
896   memset (d->operand, 0, sizeof (d->operand));
897
898   /* Get the number of operands by scanning all the patterns of the
899      peephole optimizer.  But ignore all the rest of the information
900      thus obtained.  */
901   for (i = 0; i < XVECLEN (peep, 0); i++)
902     scan_operands (d, XVECEXP (peep, 0, i), 0, 0);
903
904   d->n_operands = max_opno + 1;
905   d->n_dups = 0;
906
907   validate_insn_alternatives (d);
908   place_operands (d);
909   process_template (d, XTMPL (peep, 2));
910 }
911 \f
912 /* Process a define_expand just read.  Assign its code number,
913    only for the purposes of `insn_gen_function'.  */
914
915 static void
916 gen_expand (rtx insn, int lineno)
917 {
918   struct data *d = XNEW (struct data);
919   int i;
920
921   d->code_number = next_code_number;
922   d->index_number = next_index_number;
923   d->filename = read_md_filename;
924   d->lineno = lineno;
925   if (XSTR (insn, 0)[0])
926     d->name = XSTR (insn, 0);
927   else
928     d->name = 0;
929
930   /* Build up the list in the same order as the insns are seen
931      in the machine description.  */
932   d->next = 0;
933   *idata_end = d;
934   idata_end = &d->next;
935
936   max_opno = -1;
937   num_dups = 0;
938   memset (d->operand, 0, sizeof (d->operand));
939
940   /* Scan the operands to get the specified predicates and modes,
941      since expand_binop needs to know them.  */
942
943   if (XVEC (insn, 1))
944     for (i = 0; i < XVECLEN (insn, 1); i++)
945       scan_operands (d, XVECEXP (insn, 1, i), 0, 0);
946
947   d->n_operands = max_opno + 1;
948   d->n_dups = num_dups;
949   d->template_code = 0;
950   d->output_format = INSN_OUTPUT_FORMAT_NONE;
951
952   validate_insn_alternatives (d);
953   validate_optab_operands (d);
954   place_operands (d);
955 }
956 \f
957 /* Process a define_split just read.  Assign its code number,
958    only for reasons of consistency and to simplify genrecog.  */
959
960 static void
961 gen_split (rtx split, int lineno)
962 {
963   struct data *d = XNEW (struct data);
964   int i;
965
966   d->code_number = next_code_number;
967   d->index_number = next_index_number;
968   d->filename = read_md_filename;
969   d->lineno = lineno;
970   d->name = 0;
971
972   /* Build up the list in the same order as the insns are seen
973      in the machine description.  */
974   d->next = 0;
975   *idata_end = d;
976   idata_end = &d->next;
977
978   max_opno = -1;
979   num_dups = 0;
980   memset (d->operand, 0, sizeof (d->operand));
981
982   /* Get the number of operands by scanning all the patterns of the
983      split patterns.  But ignore all the rest of the information thus
984      obtained.  */
985   for (i = 0; i < XVECLEN (split, 0); i++)
986     scan_operands (d, XVECEXP (split, 0, i), 0, 0);
987
988   d->n_operands = max_opno + 1;
989   d->n_dups = 0;
990   d->n_alternatives = 0;
991   d->template_code = 0;
992   d->output_format = INSN_OUTPUT_FORMAT_NONE;
993
994   place_operands (d);
995 }
996
997 extern int main (int, char **);
998
999 int
1000 main (int argc, char **argv)
1001 {
1002   rtx desc;
1003
1004   progname = "genoutput";
1005
1006   if (!init_rtx_reader_args (argc, argv))
1007     return (FATAL_EXIT_CODE);
1008
1009   output_prologue ();
1010   next_code_number = 0;
1011   next_index_number = 0;
1012
1013   /* Read the machine description.  */
1014
1015   while (1)
1016     {
1017       int line_no;
1018
1019       desc = read_md_rtx (&line_no, &next_code_number);
1020       if (desc == NULL)
1021         break;
1022
1023       switch (GET_CODE (desc))
1024         {
1025         case DEFINE_INSN:
1026           gen_insn (desc, line_no);
1027           break;
1028
1029         case DEFINE_PEEPHOLE:
1030           gen_peephole (desc, line_no);
1031           break;
1032
1033         case DEFINE_EXPAND:
1034           gen_expand (desc, line_no);
1035           break;
1036
1037         case DEFINE_SPLIT:
1038         case DEFINE_PEEPHOLE2:
1039           gen_split (desc, line_no);
1040           break;
1041
1042 #ifdef USE_MD_CONSTRAINTS
1043         case DEFINE_CONSTRAINT:
1044         case DEFINE_REGISTER_CONSTRAINT:
1045         case DEFINE_ADDRESS_CONSTRAINT:
1046         case DEFINE_MEMORY_CONSTRAINT:
1047           note_constraint (desc, line_no);
1048           break;
1049 #endif
1050
1051         default:
1052           break;
1053         }
1054       next_index_number++;
1055     }
1056
1057   printf("\n\n");
1058   output_operand_data ();
1059   output_insn_data ();
1060   output_get_insn_name ();
1061
1062   fflush (stdout);
1063   return (ferror (stdout) != 0 || have_error
1064         ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);
1065 }
1066
1067 /* Return the number of occurrences of character C in string S or
1068    -1 if S is the null string.  */
1069
1070 static int
1071 n_occurrences (int c, const char *s)
1072 {
1073   int n = 0;
1074
1075   if (s == 0 || *s == '\0')
1076     return -1;
1077
1078   while (*s)
1079     n += (*s++ == c);
1080
1081   return n;
1082 }
1083
1084 /* Remove whitespace in `s' by moving up characters until the end.
1085    Return a new string.  */
1086
1087 static const char *
1088 strip_whitespace (const char *s)
1089 {
1090   char *p, *q;
1091   char ch;
1092
1093   if (s == 0)
1094     return 0;
1095
1096   p = q = XNEWVEC (char, strlen (s) + 1);
1097   while ((ch = *s++) != '\0')
1098     if (! ISSPACE (ch))
1099       *p++ = ch;
1100
1101   *p = '\0';
1102   return q;
1103 }
1104
1105 #ifdef USE_MD_CONSTRAINTS
1106
1107 /* Record just enough information about a constraint to allow checking
1108    of operand constraint strings above, in validate_insn_alternatives.
1109    Does not validate most properties of the constraint itself; does
1110    enforce no duplicate names, no overlap with MI constraints, and no
1111    prefixes.  EXP is the define_*constraint form, LINENO the line number
1112    reported by the reader.  */
1113 static void
1114 note_constraint (rtx exp, int lineno)
1115 {
1116   const char *name = XSTR (exp, 0);
1117   unsigned int namelen = strlen (name);
1118   struct constraint_data **iter, **slot, *new_cdata;
1119
1120   /* The 'm' constraint is special here since that constraint letter
1121      can be overridden by the back end by defining the
1122      TARGET_MEM_CONSTRAINT macro.  */
1123   if (strchr (indep_constraints, name[0]) && name[0] != 'm')
1124     {
1125       if (name[1] == '\0')
1126         error_with_line (lineno, "constraint letter '%s' cannot be "
1127                          "redefined by the machine description", name);
1128       else
1129         error_with_line (lineno, "constraint name '%s' cannot be defined by "
1130                          "the machine description, as it begins with '%c'",
1131                          name, name[0]);
1132       return;
1133     }
1134
1135   slot = &constraints_by_letter_table[(unsigned int)name[0]];
1136   for (iter = slot; *iter; iter = &(*iter)->next_this_letter)
1137     {
1138       /* This causes slot to end up pointing to the
1139          next_this_letter field of the last constraint with a name
1140          of equal or greater length than the new constraint; hence
1141          the new constraint will be inserted after all previous
1142          constraints with names of the same length.  */
1143       if ((*iter)->namelen >= namelen)
1144         slot = iter;
1145
1146       if (!strcmp ((*iter)->name, name))
1147         {
1148           error_with_line (lineno, "redefinition of constraint '%s'", name);
1149           message_with_line ((*iter)->lineno, "previous definition is here");
1150           return;
1151         }
1152       else if (!strncmp ((*iter)->name, name, (*iter)->namelen))
1153         {
1154           error_with_line (lineno, "defining constraint '%s' here", name);
1155           message_with_line ((*iter)->lineno, "renders constraint '%s' "
1156                              "(defined here) a prefix", (*iter)->name);
1157           return;
1158         }
1159       else if (!strncmp ((*iter)->name, name, namelen))
1160         {
1161           error_with_line (lineno, "constraint '%s' is a prefix", name);
1162           message_with_line ((*iter)->lineno, "of constraint '%s' "
1163                              "(defined here)", (*iter)->name);
1164           return;
1165         }
1166     }
1167   new_cdata = XNEWVAR (struct constraint_data, sizeof (struct constraint_data) + namelen);
1168   strcpy ((char *)new_cdata + offsetof(struct constraint_data, name), name);
1169   new_cdata->namelen = namelen;
1170   new_cdata->lineno = lineno;
1171   new_cdata->next_this_letter = *slot;
1172   *slot = new_cdata;
1173 }
1174
1175 /* Return the length of the constraint name beginning at position S
1176    of an operand constraint string, or issue an error message if there
1177    is no such constraint.  Does not expect to be called for generic
1178    constraints.  */
1179 static int
1180 mdep_constraint_len (const char *s, int lineno, int opno)
1181 {
1182   struct constraint_data *p;
1183
1184   p = constraints_by_letter_table[(unsigned int)s[0]];
1185
1186   if (p)
1187     for (; p; p = p->next_this_letter)
1188       if (!strncmp (s, p->name, p->namelen))
1189         return p->namelen;
1190
1191   error_with_line (lineno,
1192                    "error: undefined machine-specific constraint "
1193                    "at this point: \"%s\"", s);
1194   message_with_line (lineno, "note:  in operand %d", opno);
1195   return 1; /* safe */
1196 }
1197
1198 #else
1199 /* Verify that DEFAULT_CONSTRAINT_LEN is used properly and not
1200    tampered with.  This isn't bullet-proof, but it should catch
1201    most genuine mistakes.  */
1202 static void
1203 check_constraint_len (void)
1204 {
1205   const char *p;
1206   int d;
1207
1208   for (p = ",#*+=&%!1234567890"; *p; p++)
1209     for (d = -9; d < 9; d++)
1210       gcc_assert (constraint_len (p, d) == d);
1211 }
1212
1213 static int
1214 constraint_len (const char *p, int genoutput_default_constraint_len)
1215 {
1216   /* Check that we still match defaults.h .  First we do a generation-time
1217      check that fails if the value is not the expected one...  */
1218   gcc_assert (DEFAULT_CONSTRAINT_LEN (*p, p) == 1);
1219   /* And now a compile-time check that should give a diagnostic if the
1220      definition doesn't exactly match.  */
1221 #define DEFAULT_CONSTRAINT_LEN(C,STR) 1
1222   /* Now re-define DEFAULT_CONSTRAINT_LEN so that we can verify it is
1223      being used.  */
1224 #undef DEFAULT_CONSTRAINT_LEN
1225 #define DEFAULT_CONSTRAINT_LEN(C,STR) \
1226   ((C) != *p || STR != p ? -1 : genoutput_default_constraint_len)
1227   return CONSTRAINT_LEN (*p, p);
1228   /* And set it back.  */
1229 #undef DEFAULT_CONSTRAINT_LEN
1230 #define DEFAULT_CONSTRAINT_LEN(C,STR) 1
1231 }
1232 #endif