gcc/
[official-gcc.git] / gcc / genoutput.c
blobbae2381c9aa2d642eb35b49f8cc67c31375d4468
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, 2009, 2010 Free Software Foundation, Inc.
5 This file is part of GCC.
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.
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.
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/>. */
22 /* This program reads the machine description for the compiler target machine
23 and produces a file containing these things:
25 1. An array of `struct insn_data_d', which is indexed by insn code number,
26 which contains:
28 a. `name' is the name for that pattern. Nameless patterns are
29 given a name.
31 b. `output' hold either the output template, an array of output
32 templates, or an output function.
34 c. `genfun' is the function to generate a body for that pattern,
35 given operands as arguments.
37 d. `n_operands' is the number of distinct operands in the pattern
38 for that insn,
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.
44 f. `n_alternatives' is the number of alternatives in the constraints
45 of each pattern.
47 g. `output_format' tells what type of thing `output' is.
49 h. `operand' is the base of an array of operand data for the insn.
51 2. An array of `struct insn_operand data', used by `operand' above.
53 a. `predicate', an int-valued function, is the match_operand predicate
54 for this operand.
56 b. `constraint' is the constraint for this operand.
58 c. `address_p' indicates that the operand appears within ADDRESS
59 rtx's.
61 d. `mode' is the machine mode that that operand is supposed to have.
63 e. `strict_low', is nonzero for operands contained in a STRICT_LOW_PART.
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.
69 g. `allows_mem', is true for operands that accept MEM rtxes.
71 The code number of an insn is simply its position in the machine
72 description; code numbers are assigned sequentially to entries in
73 the description, starting with code number 0.
75 Thus, the following entry in the machine description
77 (define_insn "clrdf"
78 [(set (match_operand:DF 0 "general_operand" "")
79 (const_int 0))]
81 "clrd %0")
83 assuming it is the 25th entry present, would cause
84 insn_data[24].template to be "clrd %0", and
85 insn_data[24].n_operands to be 1. */
87 #include "bconfig.h"
88 #include "system.h"
89 #include "coretypes.h"
90 #include "tm.h"
91 #include "rtl.h"
92 #include "errors.h"
93 #include "read-md.h"
94 #include "gensupport.h"
96 /* No instruction can have more operands than this. Sorry for this
97 arbitrary limit, but what machine will have an instruction with
98 this many operands? */
100 #define MAX_MAX_OPERANDS 40
102 static int n_occurrences (int, const char *);
103 static const char *strip_whitespace (const char *);
105 /* insns in the machine description are assigned sequential code numbers
106 that are used by insn-recog.c (produced by genrecog) to communicate
107 to insn-output.c (produced by this program). */
109 static int next_code_number;
111 /* This counts all definitions in the md file,
112 for the sake of error messages. */
114 static int next_index_number;
116 /* This counts all operands used in the md file. The first is null. */
118 static int next_operand_number = 1;
120 /* Record in this chain all information about the operands we will output. */
122 struct operand_data
124 struct operand_data *next;
125 int index;
126 const char *predicate;
127 const char *constraint;
128 enum machine_mode mode;
129 unsigned char n_alternatives;
130 char address_p;
131 char strict_low;
132 char eliminable;
133 char seen;
136 /* Begin with a null operand at index 0. */
138 static struct operand_data null_operand =
140 0, 0, "", "", VOIDmode, 0, 0, 0, 0, 0
143 static struct operand_data *odata = &null_operand;
144 static struct operand_data **odata_end = &null_operand.next;
146 /* Must match the constants in recog.h. */
148 #define INSN_OUTPUT_FORMAT_NONE 0 /* abort */
149 #define INSN_OUTPUT_FORMAT_SINGLE 1 /* const char * */
150 #define INSN_OUTPUT_FORMAT_MULTI 2 /* const char * const * */
151 #define INSN_OUTPUT_FORMAT_FUNCTION 3 /* const char * (*)(...) */
153 /* Record in this chain all information that we will output,
154 associated with the code number of the insn. */
156 struct data
158 struct data *next;
159 const char *name;
160 const char *template_code;
161 int code_number;
162 int index_number;
163 const char *filename;
164 int lineno;
165 int n_generator_args; /* Number of arguments passed to generator */
166 int n_operands; /* Number of operands this insn recognizes */
167 int n_dups; /* Number times match_dup appears in pattern */
168 int n_alternatives; /* Number of alternatives in each constraint */
169 int operand_number; /* Operand index in the big array. */
170 int output_format; /* INSN_OUTPUT_FORMAT_*. */
171 struct operand_data operand[MAX_MAX_OPERANDS];
174 /* This variable points to the first link in the insn chain. */
176 static struct data *idata, **idata_end = &idata;
178 static void output_prologue (void);
179 static void output_operand_data (void);
180 static void output_insn_data (void);
181 static void output_get_insn_name (void);
182 static void scan_operands (struct data *, rtx, int, int);
183 static int compare_operands (struct operand_data *,
184 struct operand_data *);
185 static void place_operands (struct data *);
186 static void process_template (struct data *, const char *);
187 static void validate_insn_alternatives (struct data *);
188 static void validate_insn_operands (struct data *);
189 static void gen_insn (rtx, int);
190 static void gen_peephole (rtx, int);
191 static void gen_expand (rtx, int);
192 static void gen_split (rtx, int);
194 #ifdef USE_MD_CONSTRAINTS
196 struct constraint_data
198 struct constraint_data *next_this_letter;
199 int lineno;
200 unsigned int namelen;
201 const char name[1];
204 /* This is a complete list (unlike the one in genpreds.c) of constraint
205 letters and modifiers with machine-independent meaning. The only
206 omission is digits, as these are handled specially. */
207 static const char indep_constraints[] = ",=+%*?!#&<>EFVXgimnoprs";
209 static struct constraint_data *
210 constraints_by_letter_table[1 << CHAR_BIT];
212 static int mdep_constraint_len (const char *, int, int);
213 static void note_constraint (rtx, int);
215 #else /* !USE_MD_CONSTRAINTS */
217 static void check_constraint_len (void);
218 static int constraint_len (const char *, int);
220 #endif /* !USE_MD_CONSTRAINTS */
223 static void
224 output_prologue (void)
226 printf ("/* Generated automatically by the program `genoutput'\n\
227 from the machine description file `md'. */\n\n");
229 printf ("#include \"config.h\"\n");
230 printf ("#include \"system.h\"\n");
231 printf ("#include \"coretypes.h\"\n");
232 printf ("#include \"tm.h\"\n");
233 printf ("#include \"flags.h\"\n");
234 printf ("#include \"ggc.h\"\n");
235 printf ("#include \"rtl.h\"\n");
236 printf ("#include \"expr.h\"\n");
237 printf ("#include \"insn-codes.h\"\n");
238 printf ("#include \"tm_p.h\"\n");
239 printf ("#include \"function.h\"\n");
240 printf ("#include \"regs.h\"\n");
241 printf ("#include \"hard-reg-set.h\"\n");
242 printf ("#include \"insn-config.h\"\n\n");
243 printf ("#include \"conditions.h\"\n");
244 printf ("#include \"insn-attr.h\"\n\n");
245 printf ("#include \"recog.h\"\n\n");
246 printf ("#include \"diagnostic-core.h\"\n");
247 printf ("#include \"output.h\"\n");
248 printf ("#include \"target.h\"\n");
249 printf ("#include \"tm-constrs.h\"\n");
252 static void
253 output_operand_data (void)
255 struct operand_data *d;
257 printf ("\nstatic const struct insn_operand_data operand_data[] = \n{\n");
259 for (d = odata; d; d = d->next)
261 struct pred_data *pred;
263 printf (" {\n");
265 printf (" %s,\n",
266 d->predicate && d->predicate[0] ? d->predicate : "0");
268 printf (" \"%s\",\n", d->constraint ? d->constraint : "");
270 printf (" %smode,\n", GET_MODE_NAME (d->mode));
272 printf (" %d,\n", d->strict_low);
274 printf (" %d,\n", d->constraint == NULL ? 1 : 0);
276 printf (" %d,\n", d->eliminable);
278 pred = NULL;
279 if (d->predicate)
280 pred = lookup_predicate (d->predicate);
281 printf (" %d\n", pred && pred->codes[MEM]);
283 printf(" },\n");
285 printf("};\n\n\n");
288 static void
289 output_insn_data (void)
291 struct data *d;
292 int name_offset = 0;
293 int next_name_offset;
294 const char * last_name = 0;
295 const char * next_name = 0;
296 struct data *n;
298 for (n = idata, next_name_offset = 1; n; n = n->next, next_name_offset++)
299 if (n->name)
301 next_name = n->name;
302 break;
305 printf ("#if GCC_VERSION >= 2007\n__extension__\n#endif\n");
306 printf ("\nconst struct insn_data_d insn_data[] = \n{\n");
308 for (d = idata; d; d = d->next)
310 printf (" /* %s:%d */\n", d->filename, d->lineno);
311 printf (" {\n");
313 if (d->name)
315 printf (" \"%s\",\n", d->name);
316 name_offset = 0;
317 last_name = d->name;
318 next_name = 0;
319 for (n = d->next, next_name_offset = 1; n;
320 n = n->next, next_name_offset++)
322 if (n->name)
324 next_name = n->name;
325 break;
329 else
331 name_offset++;
332 if (next_name && (last_name == 0
333 || name_offset > next_name_offset / 2))
334 printf (" \"%s-%d\",\n", next_name,
335 next_name_offset - name_offset);
336 else
337 printf (" \"%s+%d\",\n", last_name, name_offset);
340 switch (d->output_format)
342 case INSN_OUTPUT_FORMAT_NONE:
343 printf ("#if HAVE_DESIGNATED_UNION_INITIALIZERS\n");
344 printf (" { 0 },\n");
345 printf ("#else\n");
346 printf (" { 0, 0, 0 },\n");
347 printf ("#endif\n");
348 break;
349 case INSN_OUTPUT_FORMAT_SINGLE:
351 const char *p = d->template_code;
352 char prev = 0;
354 printf ("#if HAVE_DESIGNATED_UNION_INITIALIZERS\n");
355 printf (" { .single =\n");
356 printf ("#else\n");
357 printf (" {\n");
358 printf ("#endif\n");
359 printf (" \"");
360 while (*p)
362 if (IS_VSPACE (*p) && prev != '\\')
364 /* Preserve two consecutive \n's or \r's, but treat \r\n
365 as a single newline. */
366 if (*p == '\n' && prev != '\r')
367 printf ("\\n\\\n");
369 else
370 putchar (*p);
371 prev = *p;
372 ++p;
374 printf ("\",\n");
375 printf ("#if HAVE_DESIGNATED_UNION_INITIALIZERS\n");
376 printf (" },\n");
377 printf ("#else\n");
378 printf (" 0, 0 },\n");
379 printf ("#endif\n");
381 break;
382 case INSN_OUTPUT_FORMAT_MULTI:
383 printf ("#if HAVE_DESIGNATED_UNION_INITIALIZERS\n");
384 printf (" { .multi = output_%d },\n", d->code_number);
385 printf ("#else\n");
386 printf (" { 0, output_%d, 0 },\n", d->code_number);
387 printf ("#endif\n");
388 break;
389 case INSN_OUTPUT_FORMAT_FUNCTION:
390 printf ("#if HAVE_DESIGNATED_UNION_INITIALIZERS\n");
391 printf (" { .function = output_%d },\n", d->code_number);
392 printf ("#else\n");
393 printf (" { 0, 0, output_%d },\n", d->code_number);
394 printf ("#endif\n");
395 break;
396 default:
397 gcc_unreachable ();
400 if (d->name && d->name[0] != '*')
401 printf (" (insn_gen_fn) gen_%s,\n", d->name);
402 else
403 printf (" 0,\n");
405 printf (" &operand_data[%d],\n", d->operand_number);
406 printf (" %d,\n", d->n_generator_args);
407 printf (" %d,\n", d->n_operands);
408 printf (" %d,\n", d->n_dups);
409 printf (" %d,\n", d->n_alternatives);
410 printf (" %d\n", d->output_format);
412 printf(" },\n");
414 printf ("};\n\n\n");
417 static void
418 output_get_insn_name (void)
420 printf ("const char *\n");
421 printf ("get_insn_name (int code)\n");
422 printf ("{\n");
423 printf (" if (code == NOOP_MOVE_INSN_CODE)\n");
424 printf (" return \"NOOP_MOVE\";\n");
425 printf (" else\n");
426 printf (" return insn_data[code].name;\n");
427 printf ("}\n");
431 /* Stores the operand data into `d->operand[i]'.
433 THIS_ADDRESS_P is nonzero if the containing rtx was an ADDRESS.
434 THIS_STRICT_LOW is nonzero if the containing rtx was a STRICT_LOW_PART. */
436 static void
437 scan_operands (struct data *d, rtx part, int this_address_p,
438 int this_strict_low)
440 int i, j;
441 const char *format_ptr;
442 int opno;
444 if (part == 0)
445 return;
447 switch (GET_CODE (part))
449 case MATCH_OPERAND:
450 opno = XINT (part, 0);
451 if (opno >= MAX_MAX_OPERANDS)
453 error_with_line (d->lineno, "maximum number of operands exceeded");
454 return;
456 if (d->operand[opno].seen)
457 error_with_line (d->lineno, "repeated operand number %d\n", opno);
459 d->operand[opno].seen = 1;
460 d->operand[opno].mode = GET_MODE (part);
461 d->operand[opno].strict_low = this_strict_low;
462 d->operand[opno].predicate = XSTR (part, 1);
463 d->operand[opno].constraint = strip_whitespace (XSTR (part, 2));
464 d->operand[opno].n_alternatives
465 = n_occurrences (',', d->operand[opno].constraint) + 1;
466 d->operand[opno].address_p = this_address_p;
467 d->operand[opno].eliminable = 1;
468 return;
470 case MATCH_SCRATCH:
471 opno = XINT (part, 0);
472 if (opno >= MAX_MAX_OPERANDS)
474 error_with_line (d->lineno, "maximum number of operands exceeded");
475 return;
477 if (d->operand[opno].seen)
478 error_with_line (d->lineno, "repeated operand number %d\n", opno);
480 d->operand[opno].seen = 1;
481 d->operand[opno].mode = GET_MODE (part);
482 d->operand[opno].strict_low = 0;
483 d->operand[opno].predicate = "scratch_operand";
484 d->operand[opno].constraint = strip_whitespace (XSTR (part, 1));
485 d->operand[opno].n_alternatives
486 = n_occurrences (',', d->operand[opno].constraint) + 1;
487 d->operand[opno].address_p = 0;
488 d->operand[opno].eliminable = 0;
489 return;
491 case MATCH_OPERATOR:
492 case MATCH_PARALLEL:
493 opno = XINT (part, 0);
494 if (opno >= MAX_MAX_OPERANDS)
496 error_with_line (d->lineno, "maximum number of operands exceeded");
497 return;
499 if (d->operand[opno].seen)
500 error_with_line (d->lineno, "repeated operand number %d\n", opno);
502 d->operand[opno].seen = 1;
503 d->operand[opno].mode = GET_MODE (part);
504 d->operand[opno].strict_low = 0;
505 d->operand[opno].predicate = XSTR (part, 1);
506 d->operand[opno].constraint = 0;
507 d->operand[opno].address_p = 0;
508 d->operand[opno].eliminable = 0;
509 for (i = 0; i < XVECLEN (part, 2); i++)
510 scan_operands (d, XVECEXP (part, 2, i), 0, 0);
511 return;
513 case STRICT_LOW_PART:
514 scan_operands (d, XEXP (part, 0), 0, 1);
515 return;
517 default:
518 break;
521 format_ptr = GET_RTX_FORMAT (GET_CODE (part));
523 for (i = 0; i < GET_RTX_LENGTH (GET_CODE (part)); i++)
524 switch (*format_ptr++)
526 case 'e':
527 case 'u':
528 scan_operands (d, XEXP (part, i), 0, 0);
529 break;
530 case 'E':
531 if (XVEC (part, i) != NULL)
532 for (j = 0; j < XVECLEN (part, i); j++)
533 scan_operands (d, XVECEXP (part, i, j), 0, 0);
534 break;
538 /* Compare two operands for content equality. */
540 static int
541 compare_operands (struct operand_data *d0, struct operand_data *d1)
543 const char *p0, *p1;
545 p0 = d0->predicate;
546 if (!p0)
547 p0 = "";
548 p1 = d1->predicate;
549 if (!p1)
550 p1 = "";
551 if (strcmp (p0, p1) != 0)
552 return 0;
554 p0 = d0->constraint;
555 if (!p0)
556 p0 = "";
557 p1 = d1->constraint;
558 if (!p1)
559 p1 = "";
560 if (strcmp (p0, p1) != 0)
561 return 0;
563 if (d0->mode != d1->mode)
564 return 0;
566 if (d0->strict_low != d1->strict_low)
567 return 0;
569 if (d0->eliminable != d1->eliminable)
570 return 0;
572 return 1;
575 /* Scan the list of operands we've already committed to output and either
576 find a subsequence that is the same, or allocate a new one at the end. */
578 static void
579 place_operands (struct data *d)
581 struct operand_data *od, *od2;
582 int i;
584 if (d->n_operands == 0)
586 d->operand_number = 0;
587 return;
590 /* Brute force substring search. */
591 for (od = odata, i = 0; od; od = od->next, i = 0)
592 if (compare_operands (od, &d->operand[0]))
594 od2 = od->next;
595 i = 1;
596 while (1)
598 if (i == d->n_operands)
599 goto full_match;
600 if (od2 == NULL)
601 goto partial_match;
602 if (! compare_operands (od2, &d->operand[i]))
603 break;
604 ++i, od2 = od2->next;
608 /* Either partial match at the end of the list, or no match. In either
609 case, we tack on what operands are remaining to the end of the list. */
610 partial_match:
611 d->operand_number = next_operand_number - i;
612 for (; i < d->n_operands; ++i)
614 od2 = &d->operand[i];
615 *odata_end = od2;
616 odata_end = &od2->next;
617 od2->index = next_operand_number++;
619 *odata_end = NULL;
620 return;
622 full_match:
623 d->operand_number = od->index;
624 return;
628 /* Process an assembler template from a define_insn or a define_peephole.
629 It is either the assembler code template, a list of assembler code
630 templates, or C code to generate the assembler code template. */
632 static void
633 process_template (struct data *d, const char *template_code)
635 const char *cp;
636 int i;
638 /* Templates starting with * contain straight code to be run. */
639 if (template_code[0] == '*')
641 d->template_code = 0;
642 d->output_format = INSN_OUTPUT_FORMAT_FUNCTION;
644 puts ("\nstatic const char *");
645 printf ("output_%d (rtx *operands ATTRIBUTE_UNUSED, rtx insn ATTRIBUTE_UNUSED)\n",
646 d->code_number);
647 puts ("{");
648 print_md_ptr_loc (template_code);
649 puts (template_code + 1);
650 puts ("}");
653 /* If the assembler code template starts with a @ it is a newline-separated
654 list of assembler code templates, one for each alternative. */
655 else if (template_code[0] == '@')
657 d->template_code = 0;
658 d->output_format = INSN_OUTPUT_FORMAT_MULTI;
660 printf ("\nstatic const char * const output_%d[] = {\n", d->code_number);
662 for (i = 0, cp = &template_code[1]; *cp; )
664 const char *ep, *sp;
666 while (ISSPACE (*cp))
667 cp++;
669 printf (" \"");
671 for (ep = sp = cp; !IS_VSPACE (*ep) && *ep != '\0'; ++ep)
672 if (!ISSPACE (*ep))
673 sp = ep + 1;
675 if (sp != ep)
676 message_with_line (d->lineno,
677 "trailing whitespace in output template");
679 while (cp < sp)
681 putchar (*cp);
682 cp++;
685 printf ("\",\n");
686 i++;
688 if (i == 1)
689 message_with_line (d->lineno,
690 "'@' is redundant for output template with single alternative");
691 if (i != d->n_alternatives)
692 error_with_line (d->lineno,
693 "wrong number of alternatives in the output template");
695 printf ("};\n");
697 else
699 d->template_code = template_code;
700 d->output_format = INSN_OUTPUT_FORMAT_SINGLE;
704 /* Check insn D for consistency in number of constraint alternatives. */
706 static void
707 validate_insn_alternatives (struct data *d)
709 int n = 0, start;
711 /* Make sure all the operands have the same number of alternatives
712 in their constraints. Let N be that number. */
713 for (start = 0; start < d->n_operands; start++)
714 if (d->operand[start].n_alternatives > 0)
716 int len, i;
717 const char *p;
718 char c;
719 int which_alternative = 0;
720 int alternative_count_unsure = 0;
722 for (p = d->operand[start].constraint; (c = *p); p += len)
724 #ifdef USE_MD_CONSTRAINTS
725 if (ISSPACE (c) || strchr (indep_constraints, c))
726 len = 1;
727 else if (ISDIGIT (c))
729 const char *q = p;
731 q++;
732 while (ISDIGIT (*q));
733 len = q - p;
735 else
736 len = mdep_constraint_len (p, d->lineno, start);
737 #else
738 len = CONSTRAINT_LEN (c, p);
740 if (len < 1 || (len > 1 && strchr (",#*+=&%!0123456789", c)))
742 error_with_line (d->lineno,
743 "invalid length %d for char '%c' in"
744 " alternative %d of operand %d",
745 len, c, which_alternative, start);
746 len = 1;
748 #endif
750 if (c == ',')
752 which_alternative++;
753 continue;
756 for (i = 1; i < len; i++)
757 if (p[i] == '\0')
759 error_with_line (d->lineno,
760 "NUL in alternative %d of operand %d",
761 which_alternative, start);
762 alternative_count_unsure = 1;
763 break;
765 else if (strchr (",#*", p[i]))
767 error_with_line (d->lineno,
768 "'%c' in alternative %d of operand %d",
769 p[i], which_alternative, start);
770 alternative_count_unsure = 1;
773 if (!alternative_count_unsure)
775 if (n == 0)
776 n = d->operand[start].n_alternatives;
777 else if (n != d->operand[start].n_alternatives)
778 error_with_line (d->lineno,
779 "wrong number of alternatives in operand %d",
780 start);
784 /* Record the insn's overall number of alternatives. */
785 d->n_alternatives = n;
788 /* Verify that there are no gaps in operand numbers for INSNs. */
790 static void
791 validate_insn_operands (struct data *d)
793 int i;
795 for (i = 0; i < d->n_operands; ++i)
796 if (d->operand[i].seen == 0)
797 error_with_line (d->lineno, "missing operand %d", i);
800 static void
801 validate_optab_operands (struct data *d)
803 if (!d->name || d->name[0] == '\0' || d->name[0] == '*')
804 return;
806 /* Miscellaneous tests. */
807 if (strncmp (d->name, "cstore", 6) == 0
808 && d->name[strlen (d->name) - 1] == '4'
809 && d->operand[0].mode == VOIDmode)
811 message_with_line (d->lineno, "missing mode for operand 0 of cstore");
812 have_error = 1;
816 /* Look at a define_insn just read. Assign its code number. Record
817 on idata the template and the number of arguments. If the insn has
818 a hairy output action, output a function for now. */
820 static void
821 gen_insn (rtx insn, int lineno)
823 struct pattern_stats stats;
824 struct data *d = XNEW (struct data);
825 int i;
827 d->code_number = next_code_number;
828 d->index_number = next_index_number;
829 d->filename = read_md_filename;
830 d->lineno = lineno;
831 if (XSTR (insn, 0)[0])
832 d->name = XSTR (insn, 0);
833 else
834 d->name = 0;
836 /* Build up the list in the same order as the insns are seen
837 in the machine description. */
838 d->next = 0;
839 *idata_end = d;
840 idata_end = &d->next;
842 memset (d->operand, 0, sizeof (d->operand));
844 for (i = 0; i < XVECLEN (insn, 1); i++)
845 scan_operands (d, XVECEXP (insn, 1, i), 0, 0);
847 get_pattern_stats (&stats, XVEC (insn, 1));
848 d->n_generator_args = stats.num_generator_args;
849 d->n_operands = stats.num_insn_operands;
850 d->n_dups = stats.num_dups;
852 #ifndef USE_MD_CONSTRAINTS
853 check_constraint_len ();
854 #endif
855 validate_insn_operands (d);
856 validate_insn_alternatives (d);
857 validate_optab_operands (d);
858 place_operands (d);
859 process_template (d, XTMPL (insn, 3));
862 /* Look at a define_peephole just read. Assign its code number.
863 Record on idata the template and the number of arguments.
864 If the insn has a hairy output action, output it now. */
866 static void
867 gen_peephole (rtx peep, int lineno)
869 struct pattern_stats stats;
870 struct data *d = XNEW (struct data);
871 int i;
873 d->code_number = next_code_number;
874 d->index_number = next_index_number;
875 d->filename = read_md_filename;
876 d->lineno = lineno;
877 d->name = 0;
879 /* Build up the list in the same order as the insns are seen
880 in the machine description. */
881 d->next = 0;
882 *idata_end = d;
883 idata_end = &d->next;
885 memset (d->operand, 0, sizeof (d->operand));
887 /* Get the number of operands by scanning all the patterns of the
888 peephole optimizer. But ignore all the rest of the information
889 thus obtained. */
890 for (i = 0; i < XVECLEN (peep, 0); i++)
891 scan_operands (d, XVECEXP (peep, 0, i), 0, 0);
893 get_pattern_stats (&stats, XVEC (peep, 0));
894 d->n_generator_args = 0;
895 d->n_operands = stats.num_insn_operands;
896 d->n_dups = 0;
898 validate_insn_alternatives (d);
899 place_operands (d);
900 process_template (d, XTMPL (peep, 2));
903 /* Process a define_expand just read. Assign its code number,
904 only for the purposes of `insn_gen_function'. */
906 static void
907 gen_expand (rtx insn, int lineno)
909 struct pattern_stats stats;
910 struct data *d = XNEW (struct data);
911 int i;
913 d->code_number = next_code_number;
914 d->index_number = next_index_number;
915 d->filename = read_md_filename;
916 d->lineno = lineno;
917 if (XSTR (insn, 0)[0])
918 d->name = XSTR (insn, 0);
919 else
920 d->name = 0;
922 /* Build up the list in the same order as the insns are seen
923 in the machine description. */
924 d->next = 0;
925 *idata_end = d;
926 idata_end = &d->next;
928 memset (d->operand, 0, sizeof (d->operand));
930 /* Scan the operands to get the specified predicates and modes,
931 since expand_binop needs to know them. */
933 if (XVEC (insn, 1))
934 for (i = 0; i < XVECLEN (insn, 1); i++)
935 scan_operands (d, XVECEXP (insn, 1, i), 0, 0);
937 get_pattern_stats (&stats, XVEC (insn, 1));
938 d->n_generator_args = stats.num_generator_args;
939 d->n_operands = stats.num_insn_operands;
940 d->n_dups = stats.num_dups;
941 d->template_code = 0;
942 d->output_format = INSN_OUTPUT_FORMAT_NONE;
944 validate_insn_alternatives (d);
945 validate_optab_operands (d);
946 place_operands (d);
949 /* Process a define_split just read. Assign its code number,
950 only for reasons of consistency and to simplify genrecog. */
952 static void
953 gen_split (rtx split, int lineno)
955 struct pattern_stats stats;
956 struct data *d = XNEW (struct data);
957 int i;
959 d->code_number = next_code_number;
960 d->index_number = next_index_number;
961 d->filename = read_md_filename;
962 d->lineno = lineno;
963 d->name = 0;
965 /* Build up the list in the same order as the insns are seen
966 in the machine description. */
967 d->next = 0;
968 *idata_end = d;
969 idata_end = &d->next;
971 memset (d->operand, 0, sizeof (d->operand));
973 /* Get the number of operands by scanning all the patterns of the
974 split patterns. But ignore all the rest of the information thus
975 obtained. */
976 for (i = 0; i < XVECLEN (split, 0); i++)
977 scan_operands (d, XVECEXP (split, 0, i), 0, 0);
979 get_pattern_stats (&stats, XVEC (split, 0));
980 d->n_generator_args = 0;
981 d->n_operands = stats.num_insn_operands;
982 d->n_dups = 0;
983 d->n_alternatives = 0;
984 d->template_code = 0;
985 d->output_format = INSN_OUTPUT_FORMAT_NONE;
987 place_operands (d);
990 extern int main (int, char **);
993 main (int argc, char **argv)
995 rtx desc;
997 progname = "genoutput";
999 if (!init_rtx_reader_args (argc, argv))
1000 return (FATAL_EXIT_CODE);
1002 output_prologue ();
1003 next_code_number = 0;
1004 next_index_number = 0;
1006 /* Read the machine description. */
1008 while (1)
1010 int line_no;
1012 desc = read_md_rtx (&line_no, &next_code_number);
1013 if (desc == NULL)
1014 break;
1016 switch (GET_CODE (desc))
1018 case DEFINE_INSN:
1019 gen_insn (desc, line_no);
1020 break;
1022 case DEFINE_PEEPHOLE:
1023 gen_peephole (desc, line_no);
1024 break;
1026 case DEFINE_EXPAND:
1027 gen_expand (desc, line_no);
1028 break;
1030 case DEFINE_SPLIT:
1031 case DEFINE_PEEPHOLE2:
1032 gen_split (desc, line_no);
1033 break;
1035 #ifdef USE_MD_CONSTRAINTS
1036 case DEFINE_CONSTRAINT:
1037 case DEFINE_REGISTER_CONSTRAINT:
1038 case DEFINE_ADDRESS_CONSTRAINT:
1039 case DEFINE_MEMORY_CONSTRAINT:
1040 note_constraint (desc, line_no);
1041 break;
1042 #endif
1044 default:
1045 break;
1047 next_index_number++;
1050 printf("\n\n");
1051 output_operand_data ();
1052 output_insn_data ();
1053 output_get_insn_name ();
1055 fflush (stdout);
1056 return (ferror (stdout) != 0 || have_error
1057 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);
1060 /* Return the number of occurrences of character C in string S or
1061 -1 if S is the null string. */
1063 static int
1064 n_occurrences (int c, const char *s)
1066 int n = 0;
1068 if (s == 0 || *s == '\0')
1069 return -1;
1071 while (*s)
1072 n += (*s++ == c);
1074 return n;
1077 /* Remove whitespace in `s' by moving up characters until the end.
1078 Return a new string. */
1080 static const char *
1081 strip_whitespace (const char *s)
1083 char *p, *q;
1084 char ch;
1086 if (s == 0)
1087 return 0;
1089 p = q = XNEWVEC (char, strlen (s) + 1);
1090 while ((ch = *s++) != '\0')
1091 if (! ISSPACE (ch))
1092 *p++ = ch;
1094 *p = '\0';
1095 return q;
1098 #ifdef USE_MD_CONSTRAINTS
1100 /* Record just enough information about a constraint to allow checking
1101 of operand constraint strings above, in validate_insn_alternatives.
1102 Does not validate most properties of the constraint itself; does
1103 enforce no duplicate names, no overlap with MI constraints, and no
1104 prefixes. EXP is the define_*constraint form, LINENO the line number
1105 reported by the reader. */
1106 static void
1107 note_constraint (rtx exp, int lineno)
1109 const char *name = XSTR (exp, 0);
1110 unsigned int namelen = strlen (name);
1111 struct constraint_data **iter, **slot, *new_cdata;
1113 /* The 'm' constraint is special here since that constraint letter
1114 can be overridden by the back end by defining the
1115 TARGET_MEM_CONSTRAINT macro. */
1116 if (strchr (indep_constraints, name[0]) && name[0] != 'm')
1118 if (name[1] == '\0')
1119 error_with_line (lineno, "constraint letter '%s' cannot be "
1120 "redefined by the machine description", name);
1121 else
1122 error_with_line (lineno, "constraint name '%s' cannot be defined by "
1123 "the machine description, as it begins with '%c'",
1124 name, name[0]);
1125 return;
1128 slot = &constraints_by_letter_table[(unsigned int)name[0]];
1129 for (iter = slot; *iter; iter = &(*iter)->next_this_letter)
1131 /* This causes slot to end up pointing to the
1132 next_this_letter field of the last constraint with a name
1133 of equal or greater length than the new constraint; hence
1134 the new constraint will be inserted after all previous
1135 constraints with names of the same length. */
1136 if ((*iter)->namelen >= namelen)
1137 slot = iter;
1139 if (!strcmp ((*iter)->name, name))
1141 error_with_line (lineno, "redefinition of constraint '%s'", name);
1142 message_with_line ((*iter)->lineno, "previous definition is here");
1143 return;
1145 else if (!strncmp ((*iter)->name, name, (*iter)->namelen))
1147 error_with_line (lineno, "defining constraint '%s' here", name);
1148 message_with_line ((*iter)->lineno, "renders constraint '%s' "
1149 "(defined here) a prefix", (*iter)->name);
1150 return;
1152 else if (!strncmp ((*iter)->name, name, namelen))
1154 error_with_line (lineno, "constraint '%s' is a prefix", name);
1155 message_with_line ((*iter)->lineno, "of constraint '%s' "
1156 "(defined here)", (*iter)->name);
1157 return;
1160 new_cdata = XNEWVAR (struct constraint_data, sizeof (struct constraint_data) + namelen);
1161 strcpy ((char *)new_cdata + offsetof(struct constraint_data, name), name);
1162 new_cdata->namelen = namelen;
1163 new_cdata->lineno = lineno;
1164 new_cdata->next_this_letter = *slot;
1165 *slot = new_cdata;
1168 /* Return the length of the constraint name beginning at position S
1169 of an operand constraint string, or issue an error message if there
1170 is no such constraint. Does not expect to be called for generic
1171 constraints. */
1172 static int
1173 mdep_constraint_len (const char *s, int lineno, int opno)
1175 struct constraint_data *p;
1177 p = constraints_by_letter_table[(unsigned int)s[0]];
1179 if (p)
1180 for (; p; p = p->next_this_letter)
1181 if (!strncmp (s, p->name, p->namelen))
1182 return p->namelen;
1184 error_with_line (lineno,
1185 "error: undefined machine-specific constraint "
1186 "at this point: \"%s\"", s);
1187 message_with_line (lineno, "note: in operand %d", opno);
1188 return 1; /* safe */
1191 #else
1192 /* Verify that DEFAULT_CONSTRAINT_LEN is used properly and not
1193 tampered with. This isn't bullet-proof, but it should catch
1194 most genuine mistakes. */
1195 static void
1196 check_constraint_len (void)
1198 const char *p;
1199 int d;
1201 for (p = ",#*+=&%!1234567890"; *p; p++)
1202 for (d = -9; d < 9; d++)
1203 gcc_assert (constraint_len (p, d) == d);
1206 static int
1207 constraint_len (const char *p, int genoutput_default_constraint_len)
1209 /* Check that we still match defaults.h . First we do a generation-time
1210 check that fails if the value is not the expected one... */
1211 gcc_assert (DEFAULT_CONSTRAINT_LEN (*p, p) == 1);
1212 /* And now a compile-time check that should give a diagnostic if the
1213 definition doesn't exactly match. */
1214 #define DEFAULT_CONSTRAINT_LEN(C,STR) 1
1215 /* Now re-define DEFAULT_CONSTRAINT_LEN so that we can verify it is
1216 being used. */
1217 #undef DEFAULT_CONSTRAINT_LEN
1218 #define DEFAULT_CONSTRAINT_LEN(C,STR) \
1219 ((C) != *p || STR != p ? -1 : genoutput_default_constraint_len)
1220 return CONSTRAINT_LEN (*p, p);
1221 /* And set it back. */
1222 #undef DEFAULT_CONSTRAINT_LEN
1223 #define DEFAULT_CONSTRAINT_LEN(C,STR) 1
1225 #endif