* config/h8300/h8300.md (pushqi_h8300): Don't push the stack
[official-gcc.git] / gcc / genoutput.c
blob662a6b0465beee60d66e4e7e2776efcaf6b571b4
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.
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 2, 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 COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, USA. */
23 /* This program reads the machine description for the compiler target machine
24 and produces a file containing these things:
26 1. An array of `struct insn_data', which is indexed by insn code number,
27 which contains:
29 a. `name' is the name for that pattern. Nameless patterns are
30 given a name.
32 b. `output' hold either the output template, an array of output
33 templates, or an output function.
35 c. `genfun' is the function to generate a body for that pattern,
36 given operands as arguments.
38 d. `n_operands' is the number of distinct operands in the pattern
39 for that insn,
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.
45 f. `n_alternatives' is the number of alternatives in the constraints
46 of each pattern.
48 g. `output_format' tells what type of thing `output' is.
50 h. `operand' is the base of an array of operand data for the insn.
52 2. An array of `struct insn_operand data', used by `operand' above.
54 a. `predicate', an int-valued function, is the match_operand predicate
55 for this operand.
57 b. `constraint' is the constraint for this operand. This exists
58 only if register constraints appear in match_operand rtx's.
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.
64 d. `mode' is the machine mode that that operand is supposed to have.
66 e. `strict_low', is nonzero for operands contained in a STRICT_LOW_PART.
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.
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.
76 Thus, the following entry in the machine description
78 (define_insn "clrdf"
79 [(set (match_operand:DF 0 "general_operand" "")
80 (const_int 0))]
82 "clrd %0")
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. */
88 #include "bconfig.h"
89 #include "system.h"
90 #include "coretypes.h"
91 #include "tm.h"
92 #include "rtl.h"
93 #include "errors.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 PARAMS ((int, const char *));
103 static const char *strip_whitespace PARAMS ((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;
161 int code_number;
162 int index_number;
163 int lineno;
164 int n_operands; /* Number of operands this insn recognizes */
165 int n_dups; /* Number times match_dup appears in pattern */
166 int n_alternatives; /* Number of alternatives in each constraint */
167 int operand_number; /* Operand index in the big array. */
168 int output_format; /* INSN_OUTPUT_FORMAT_*. */
169 struct operand_data operand[MAX_MAX_OPERANDS];
172 /* This variable points to the first link in the insn chain. */
174 static struct data *idata, **idata_end = &idata;
176 static void output_prologue PARAMS ((void));
177 static void output_predicate_decls PARAMS ((void));
178 static void output_operand_data PARAMS ((void));
179 static void output_insn_data PARAMS ((void));
180 static void output_get_insn_name PARAMS ((void));
181 static void scan_operands PARAMS ((struct data *, rtx, int, int));
182 static int compare_operands PARAMS ((struct operand_data *,
183 struct operand_data *));
184 static void place_operands PARAMS ((struct data *));
185 static void process_template PARAMS ((struct data *, const char *));
186 static void validate_insn_alternatives PARAMS ((struct data *));
187 static void validate_insn_operands PARAMS ((struct data *));
188 static void gen_insn PARAMS ((rtx, int));
189 static void gen_peephole PARAMS ((rtx, int));
190 static void gen_expand PARAMS ((rtx, int));
191 static void gen_split PARAMS ((rtx, int));
193 const char *
194 get_insn_name (index)
195 int index;
197 static char buf[100];
199 struct data *i, *last_named = NULL;
200 for (i = idata; i ; i = i->next)
202 if (i->index_number == index)
203 return i->name;
204 if (i->name)
205 last_named = i;
208 if (last_named)
209 sprintf(buf, "%s+%d", last_named->name, index - last_named->index_number);
210 else
211 sprintf(buf, "insn %d", index);
213 return buf;
216 static void
217 output_prologue ()
219 printf ("/* Generated automatically by the program `genoutput'\n\
220 from the machine description file `md'. */\n\n");
222 printf ("#include \"config.h\"\n");
223 printf ("#include \"system.h\"\n");
224 printf ("#include \"coretypes.h\"\n");
225 printf ("#include \"tm.h\"\n");
226 printf ("#include \"flags.h\"\n");
227 printf ("#include \"ggc.h\"\n");
228 printf ("#include \"rtl.h\"\n");
229 printf ("#include \"expr.h\"\n");
230 printf ("#include \"insn-codes.h\"\n");
231 printf ("#include \"tm_p.h\"\n");
232 printf ("#include \"function.h\"\n");
233 printf ("#include \"regs.h\"\n");
234 printf ("#include \"hard-reg-set.h\"\n");
235 printf ("#include \"real.h\"\n");
236 printf ("#include \"insn-config.h\"\n\n");
237 printf ("#include \"conditions.h\"\n");
238 printf ("#include \"insn-attr.h\"\n\n");
239 printf ("#include \"recog.h\"\n\n");
240 printf ("#include \"toplev.h\"\n");
241 printf ("#include \"output.h\"\n");
242 printf ("#include \"target.h\"\n");
246 /* We need to define all predicates used. Keep a list of those we
247 have defined so far. There normally aren't very many predicates
248 used, so a linked list should be fast enough. */
249 struct predicate { const char *name; struct predicate *next; };
251 static void
252 output_predicate_decls ()
254 struct predicate *predicates = 0;
255 struct operand_data *d;
256 struct predicate *p, *next;
258 for (d = odata; d; d = d->next)
259 if (d->predicate && d->predicate[0])
261 for (p = predicates; p; p = p->next)
262 if (strcmp (p->name, d->predicate) == 0)
263 break;
265 if (p == 0)
267 printf ("extern int %s PARAMS ((rtx, enum machine_mode));\n",
268 d->predicate);
269 p = (struct predicate *) xmalloc (sizeof (struct predicate));
270 p->name = d->predicate;
271 p->next = predicates;
272 predicates = p;
276 printf ("\n\n");
277 for (p = predicates; p; p = next)
279 next = p->next;
280 free (p);
284 static void
285 output_operand_data ()
287 struct operand_data *d;
289 printf ("\nstatic const struct insn_operand_data operand_data[] = \n{\n");
291 for (d = odata; d; d = d->next)
293 printf (" {\n");
295 printf (" %s,\n",
296 d->predicate && d->predicate[0] ? d->predicate : "0");
298 printf (" \"%s\",\n", d->constraint ? d->constraint : "");
300 printf (" %smode,\n", GET_MODE_NAME (d->mode));
302 printf (" %d,\n", d->strict_low);
304 printf (" %d\n", d->eliminable);
306 printf(" },\n");
308 printf("};\n\n\n");
311 static void
312 output_insn_data ()
314 struct data *d;
315 int name_offset = 0;
316 int next_name_offset;
317 const char * last_name = 0;
318 const char * next_name = 0;
319 struct data *n;
321 for (n = idata, next_name_offset = 1; n; n = n->next, next_name_offset++)
322 if (n->name)
324 next_name = n->name;
325 break;
328 printf ("\nconst struct insn_data insn_data[] = \n{\n");
330 for (d = idata; d; d = d->next)
332 printf (" {\n");
334 if (d->name)
336 printf (" \"%s\",\n", d->name);
337 name_offset = 0;
338 last_name = d->name;
339 next_name = 0;
340 for (n = d->next, next_name_offset = 1; n;
341 n = n->next, next_name_offset++)
343 if (n->name)
345 next_name = n->name;
346 break;
350 else
352 name_offset++;
353 if (next_name && (last_name == 0
354 || name_offset > next_name_offset / 2))
355 printf (" \"%s-%d\",\n", next_name,
356 next_name_offset - name_offset);
357 else
358 printf (" \"%s+%d\",\n", last_name, name_offset);
361 switch (d->output_format)
363 case INSN_OUTPUT_FORMAT_NONE:
364 printf (" 0,\n");
365 break;
366 case INSN_OUTPUT_FORMAT_SINGLE:
368 const char *p = d->template;
369 char prev = 0;
371 printf (" \"");
372 while (*p)
374 if (IS_VSPACE (*p) && prev != '\\')
376 /* Preserve two consecutive \n's or \r's, but treat \r\n
377 as a single newline. */
378 if (*p == '\n' && prev != '\r')
379 printf ("\\n\\\n");
381 else
382 putchar (*p);
383 prev = *p;
384 ++p;
386 printf ("\",\n");
388 break;
389 case INSN_OUTPUT_FORMAT_MULTI:
390 case INSN_OUTPUT_FORMAT_FUNCTION:
391 printf (" (const PTR) output_%d,\n", d->code_number);
392 break;
393 default:
394 abort ();
397 if (d->name && d->name[0] != '*')
398 printf (" (insn_gen_fn) gen_%s,\n", d->name);
399 else
400 printf (" 0,\n");
402 printf (" &operand_data[%d],\n", d->operand_number);
403 printf (" %d,\n", d->n_operands);
404 printf (" %d,\n", d->n_dups);
405 printf (" %d,\n", d->n_alternatives);
406 printf (" %d\n", d->output_format);
408 printf(" },\n");
410 printf ("};\n\n\n");
413 static void
414 output_get_insn_name ()
416 printf ("const char *\n");
417 printf ("get_insn_name (code)\n");
418 printf (" int code;\n");
419 printf ("{\n");
420 printf (" return insn_data[code].name;\n");
421 printf ("}\n");
425 /* Stores in max_opno the largest operand number present in `part', if
426 that is larger than the previous value of max_opno, and the rest of
427 the operand data into `d->operand[i]'.
429 THIS_ADDRESS_P is nonzero if the containing rtx was an ADDRESS.
430 THIS_STRICT_LOW is nonzero if the containing rtx was a STRICT_LOW_PART. */
432 static int max_opno;
433 static int num_dups;
435 static void
436 scan_operands (d, part, this_address_p, this_strict_low)
437 struct data *d;
438 rtx part;
439 int this_address_p;
440 int this_strict_low;
442 int i, j;
443 const char *format_ptr;
444 int opno;
446 if (part == 0)
447 return;
449 switch (GET_CODE (part))
451 case MATCH_OPERAND:
452 opno = XINT (part, 0);
453 if (opno > max_opno)
454 max_opno = opno;
455 if (max_opno >= MAX_MAX_OPERANDS)
457 message_with_line (d->lineno,
458 "maximum number of operands exceeded");
459 have_error = 1;
460 return;
462 if (d->operand[opno].seen)
464 message_with_line (d->lineno,
465 "repeated operand number %d\n", opno);
466 have_error = 1;
469 d->operand[opno].seen = 1;
470 d->operand[opno].mode = GET_MODE (part);
471 d->operand[opno].strict_low = this_strict_low;
472 d->operand[opno].predicate = XSTR (part, 1);
473 d->operand[opno].constraint = strip_whitespace (XSTR (part, 2));
474 d->operand[opno].n_alternatives
475 = n_occurrences (',', d->operand[opno].constraint) + 1;
476 d->operand[opno].address_p = this_address_p;
477 d->operand[opno].eliminable = 1;
478 return;
480 case MATCH_SCRATCH:
481 opno = XINT (part, 0);
482 if (opno > max_opno)
483 max_opno = opno;
484 if (max_opno >= MAX_MAX_OPERANDS)
486 message_with_line (d->lineno,
487 "maximum number of operands exceeded");
488 have_error = 1;
489 return;
491 if (d->operand[opno].seen)
493 message_with_line (d->lineno,
494 "repeated operand number %d\n", opno);
495 have_error = 1;
498 d->operand[opno].seen = 1;
499 d->operand[opno].mode = GET_MODE (part);
500 d->operand[opno].strict_low = 0;
501 d->operand[opno].predicate = "scratch_operand";
502 d->operand[opno].constraint = strip_whitespace (XSTR (part, 1));
503 d->operand[opno].n_alternatives
504 = n_occurrences (',', d->operand[opno].constraint) + 1;
505 d->operand[opno].address_p = 0;
506 d->operand[opno].eliminable = 0;
507 return;
509 case MATCH_OPERATOR:
510 case MATCH_PARALLEL:
511 opno = XINT (part, 0);
512 if (opno > max_opno)
513 max_opno = opno;
514 if (max_opno >= MAX_MAX_OPERANDS)
516 message_with_line (d->lineno,
517 "maximum number of operands exceeded");
518 have_error = 1;
519 return;
521 if (d->operand[opno].seen)
523 message_with_line (d->lineno,
524 "repeated operand number %d\n", opno);
525 have_error = 1;
528 d->operand[opno].seen = 1;
529 d->operand[opno].mode = GET_MODE (part);
530 d->operand[opno].strict_low = 0;
531 d->operand[opno].predicate = XSTR (part, 1);
532 d->operand[opno].constraint = 0;
533 d->operand[opno].address_p = 0;
534 d->operand[opno].eliminable = 0;
535 for (i = 0; i < XVECLEN (part, 2); i++)
536 scan_operands (d, XVECEXP (part, 2, i), 0, 0);
537 return;
539 case MATCH_DUP:
540 case MATCH_OP_DUP:
541 case MATCH_PAR_DUP:
542 ++num_dups;
543 break;
545 case ADDRESS:
546 scan_operands (d, XEXP (part, 0), 1, 0);
547 return;
549 case STRICT_LOW_PART:
550 scan_operands (d, XEXP (part, 0), 0, 1);
551 return;
553 default:
554 break;
557 format_ptr = GET_RTX_FORMAT (GET_CODE (part));
559 for (i = 0; i < GET_RTX_LENGTH (GET_CODE (part)); i++)
560 switch (*format_ptr++)
562 case 'e':
563 case 'u':
564 scan_operands (d, XEXP (part, i), 0, 0);
565 break;
566 case 'E':
567 if (XVEC (part, i) != NULL)
568 for (j = 0; j < XVECLEN (part, i); j++)
569 scan_operands (d, XVECEXP (part, i, j), 0, 0);
570 break;
574 /* Compare two operands for content equality. */
576 static int
577 compare_operands (d0, d1)
578 struct operand_data *d0, *d1;
580 const char *p0, *p1;
582 p0 = d0->predicate;
583 if (!p0)
584 p0 = "";
585 p1 = d1->predicate;
586 if (!p1)
587 p1 = "";
588 if (strcmp (p0, p1) != 0)
589 return 0;
591 p0 = d0->constraint;
592 if (!p0)
593 p0 = "";
594 p1 = d1->constraint;
595 if (!p1)
596 p1 = "";
597 if (strcmp (p0, p1) != 0)
598 return 0;
600 if (d0->mode != d1->mode)
601 return 0;
603 if (d0->strict_low != d1->strict_low)
604 return 0;
606 if (d0->eliminable != d1->eliminable)
607 return 0;
609 return 1;
612 /* Scan the list of operands we've already committed to output and either
613 find a subsequence that is the same, or allocate a new one at the end. */
615 static void
616 place_operands (d)
617 struct data *d;
619 struct operand_data *od, *od2;
620 int i;
622 if (d->n_operands == 0)
624 d->operand_number = 0;
625 return;
628 /* Brute force substring search. */
629 for (od = odata, i = 0; od; od = od->next, i = 0)
630 if (compare_operands (od, &d->operand[0]))
632 od2 = od->next;
633 i = 1;
634 while (1)
636 if (i == d->n_operands)
637 goto full_match;
638 if (od2 == NULL)
639 goto partial_match;
640 if (! compare_operands (od2, &d->operand[i]))
641 break;
642 ++i, od2 = od2->next;
646 /* Either partial match at the end of the list, or no match. In either
647 case, we tack on what operands are remaining to the end of the list. */
648 partial_match:
649 d->operand_number = next_operand_number - i;
650 for (; i < d->n_operands; ++i)
652 od2 = &d->operand[i];
653 *odata_end = od2;
654 odata_end = &od2->next;
655 od2->index = next_operand_number++;
657 *odata_end = NULL;
658 return;
660 full_match:
661 d->operand_number = od->index;
662 return;
666 /* Process an assembler template from a define_insn or a define_peephole.
667 It is either the assembler code template, a list of assembler code
668 templates, or C code to generate the assembler code template. */
670 static void
671 process_template (d, template)
672 struct data *d;
673 const char *template;
675 const char *cp;
676 int i;
678 /* Templates starting with * contain straight code to be run. */
679 if (template[0] == '*')
681 d->template = 0;
682 d->output_format = INSN_OUTPUT_FORMAT_FUNCTION;
684 printf ("\nstatic const char *output_%d PARAMS ((rtx *, rtx));\n",
685 d->code_number);
686 puts ("\nstatic const char *");
687 printf ("output_%d (operands, insn)\n", d->code_number);
688 puts (" rtx *operands ATTRIBUTE_UNUSED;");
689 puts (" rtx insn ATTRIBUTE_UNUSED;");
690 puts ("{");
692 puts (template + 1);
693 puts ("}");
696 /* If the assembler code template starts with a @ it is a newline-separated
697 list of assembler code templates, one for each alternative. */
698 else if (template[0] == '@')
700 d->template = 0;
701 d->output_format = INSN_OUTPUT_FORMAT_MULTI;
703 printf ("\nstatic const char * const output_%d[] = {\n", d->code_number);
705 for (i = 0, cp = &template[1]; *cp; )
707 while (ISSPACE (*cp))
708 cp++;
710 printf (" \"");
711 while (!IS_VSPACE (*cp) && *cp != '\0')
713 putchar (*cp);
714 cp++;
717 printf ("\",\n");
718 i++;
720 if (i == 1)
721 message_with_line (d->lineno,
722 "'@' is redundant for output template with single alternative");
723 if (i != d->n_alternatives)
725 message_with_line (d->lineno,
726 "wrong number of alternatives in the output template");
727 have_error = 1;
730 printf ("};\n");
732 else
734 d->template = template;
735 d->output_format = INSN_OUTPUT_FORMAT_SINGLE;
739 /* Check insn D for consistency in number of constraint alternatives. */
741 static void
742 validate_insn_alternatives (d)
743 struct data *d;
745 int n = 0, start;
747 /* Make sure all the operands have the same number of alternatives
748 in their constraints. Let N be that number. */
749 for (start = 0; start < d->n_operands; start++)
750 if (d->operand[start].n_alternatives > 0)
752 if (n == 0)
753 n = d->operand[start].n_alternatives;
754 else if (n != d->operand[start].n_alternatives)
756 message_with_line (d->lineno,
757 "wrong number of alternatives in operand %d",
758 start);
759 have_error = 1;
763 /* Record the insn's overall number of alternatives. */
764 d->n_alternatives = n;
767 /* Verify that there are no gaps in operand numbers for INSNs. */
769 static void
770 validate_insn_operands (d)
771 struct data *d;
773 int i;
775 for (i = 0; i < d->n_operands; ++i)
776 if (d->operand[i].seen == 0)
778 message_with_line (d->lineno, "missing operand %d", i);
779 have_error = 1;
783 /* Look at a define_insn just read. Assign its code number. Record
784 on idata the template and the number of arguments. If the insn has
785 a hairy output action, output a function for now. */
787 static void
788 gen_insn (insn, lineno)
789 rtx insn;
790 int lineno;
792 struct data *d = (struct data *) xmalloc (sizeof (struct data));
793 int i;
795 d->code_number = next_code_number;
796 d->index_number = next_index_number;
797 d->lineno = lineno;
798 if (XSTR (insn, 0)[0])
799 d->name = XSTR (insn, 0);
800 else
801 d->name = 0;
803 /* Build up the list in the same order as the insns are seen
804 in the machine description. */
805 d->next = 0;
806 *idata_end = d;
807 idata_end = &d->next;
809 max_opno = -1;
810 num_dups = 0;
811 memset (d->operand, 0, sizeof (d->operand));
813 for (i = 0; i < XVECLEN (insn, 1); i++)
814 scan_operands (d, XVECEXP (insn, 1, i), 0, 0);
816 d->n_operands = max_opno + 1;
817 d->n_dups = num_dups;
819 validate_insn_operands (d);
820 validate_insn_alternatives (d);
821 place_operands (d);
822 process_template (d, XTMPL (insn, 3));
825 /* Look at a define_peephole just read. Assign its code number.
826 Record on idata the template and the number of arguments.
827 If the insn has a hairy output action, output it now. */
829 static void
830 gen_peephole (peep, lineno)
831 rtx peep;
832 int lineno;
834 struct data *d = (struct data *) xmalloc (sizeof (struct data));
835 int i;
837 d->code_number = next_code_number;
838 d->index_number = next_index_number;
839 d->lineno = lineno;
840 d->name = 0;
842 /* Build up the list in the same order as the insns are seen
843 in the machine description. */
844 d->next = 0;
845 *idata_end = d;
846 idata_end = &d->next;
848 max_opno = -1;
849 num_dups = 0;
850 memset (d->operand, 0, sizeof (d->operand));
852 /* Get the number of operands by scanning all the patterns of the
853 peephole optimizer. But ignore all the rest of the information
854 thus obtained. */
855 for (i = 0; i < XVECLEN (peep, 0); i++)
856 scan_operands (d, XVECEXP (peep, 0, i), 0, 0);
858 d->n_operands = max_opno + 1;
859 d->n_dups = 0;
861 validate_insn_alternatives (d);
862 place_operands (d);
863 process_template (d, XTMPL (peep, 2));
866 /* Process a define_expand just read. Assign its code number,
867 only for the purposes of `insn_gen_function'. */
869 static void
870 gen_expand (insn, lineno)
871 rtx insn;
872 int lineno;
874 struct data *d = (struct data *) xmalloc (sizeof (struct data));
875 int i;
877 d->code_number = next_code_number;
878 d->index_number = next_index_number;
879 d->lineno = lineno;
880 if (XSTR (insn, 0)[0])
881 d->name = XSTR (insn, 0);
882 else
883 d->name = 0;
885 /* Build up the list in the same order as the insns are seen
886 in the machine description. */
887 d->next = 0;
888 *idata_end = d;
889 idata_end = &d->next;
891 max_opno = -1;
892 num_dups = 0;
893 memset (d->operand, 0, sizeof (d->operand));
895 /* Scan the operands to get the specified predicates and modes,
896 since expand_binop needs to know them. */
898 if (XVEC (insn, 1))
899 for (i = 0; i < XVECLEN (insn, 1); i++)
900 scan_operands (d, XVECEXP (insn, 1, i), 0, 0);
902 d->n_operands = max_opno + 1;
903 d->n_dups = num_dups;
904 d->template = 0;
905 d->output_format = INSN_OUTPUT_FORMAT_NONE;
907 validate_insn_alternatives (d);
908 place_operands (d);
911 /* Process a define_split just read. Assign its code number,
912 only for reasons of consistency and to simplify genrecog. */
914 static void
915 gen_split (split, lineno)
916 rtx split;
917 int lineno;
919 struct data *d = (struct data *) xmalloc (sizeof (struct data));
920 int i;
922 d->code_number = next_code_number;
923 d->index_number = next_index_number;
924 d->lineno = lineno;
925 d->name = 0;
927 /* Build up the list in the same order as the insns are seen
928 in the machine description. */
929 d->next = 0;
930 *idata_end = d;
931 idata_end = &d->next;
933 max_opno = -1;
934 num_dups = 0;
935 memset (d->operand, 0, sizeof (d->operand));
937 /* Get the number of operands by scanning all the patterns of the
938 split patterns. But ignore all the rest of the information thus
939 obtained. */
940 for (i = 0; i < XVECLEN (split, 0); i++)
941 scan_operands (d, XVECEXP (split, 0, i), 0, 0);
943 d->n_operands = max_opno + 1;
944 d->n_dups = 0;
945 d->n_alternatives = 0;
946 d->template = 0;
947 d->output_format = INSN_OUTPUT_FORMAT_NONE;
949 place_operands (d);
952 extern int main PARAMS ((int, char **));
955 main (argc, argv)
956 int argc;
957 char **argv;
959 rtx desc;
961 progname = "genoutput";
963 if (argc <= 1)
964 fatal ("no input file name");
966 if (init_md_reader_args (argc, argv) != SUCCESS_EXIT_CODE)
967 return (FATAL_EXIT_CODE);
969 output_prologue ();
970 next_code_number = 0;
971 next_index_number = 0;
973 /* Read the machine description. */
975 while (1)
977 int line_no;
979 desc = read_md_rtx (&line_no, &next_code_number);
980 if (desc == NULL)
981 break;
983 if (GET_CODE (desc) == DEFINE_INSN)
984 gen_insn (desc, line_no);
985 if (GET_CODE (desc) == DEFINE_PEEPHOLE)
986 gen_peephole (desc, line_no);
987 if (GET_CODE (desc) == DEFINE_EXPAND)
988 gen_expand (desc, line_no);
989 if (GET_CODE (desc) == DEFINE_SPLIT
990 || GET_CODE (desc) == DEFINE_PEEPHOLE2)
991 gen_split (desc, line_no);
992 next_index_number++;
995 printf("\n\n");
996 output_predicate_decls ();
997 output_operand_data ();
998 output_insn_data ();
999 output_get_insn_name ();
1001 fflush (stdout);
1002 return (ferror (stdout) != 0 || have_error
1003 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);
1006 /* Return the number of occurrences of character C in string S or
1007 -1 if S is the null string. */
1009 static int
1010 n_occurrences (c, s)
1011 int c;
1012 const char *s;
1014 int n = 0;
1016 if (s == 0 || *s == '\0')
1017 return -1;
1019 while (*s)
1020 n += (*s++ == c);
1022 return n;
1025 /* Remove whitespace in `s' by moving up characters until the end.
1026 Return a new string. */
1028 static const char *
1029 strip_whitespace (s)
1030 const char *s;
1032 char *p, *q;
1033 char ch;
1035 if (s == 0)
1036 return 0;
1038 p = q = xmalloc (strlen (s) + 1);
1039 while ((ch = *s++) != '\0')
1040 if (! ISSPACE (ch))
1041 *p++ = ch;
1043 *p = '\0';
1044 return q;