1 /* Generate code from to output assembler insns as recognized from rtl.
2 Copyright (C) 1987-2014 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
21 /* This program reads the machine description for the compiler target machine
22 and produces a file containing these things:
24 1. An array of `struct insn_data_d', which is indexed by insn code number,
27 a. `name' is the name for that pattern. Nameless patterns are
30 b. `output' hold either the output template, an array of output
31 templates, or an output function.
33 c. `genfun' is the function to generate a body for that pattern,
34 given operands as arguments.
36 d. `n_operands' is the number of distinct operands in the pattern
39 e. `n_dups' is the number of match_dup's that appear in the insn's
40 pattern. This says how many elements of `recog_data.dup_loc' are
41 significant after an insn has been recognized.
43 f. `n_alternatives' is the number of alternatives in the constraints
46 g. `output_format' tells what type of thing `output' is.
48 h. `operand' is the base of an array of operand data for the insn.
50 2. An array of `struct insn_operand data', used by `operand' above.
52 a. `predicate', an int-valued function, is the match_operand predicate
55 b. `constraint' is the constraint for this operand.
57 c. `address_p' indicates that the operand appears within ADDRESS
60 d. `mode' is the machine mode that that operand is supposed to have.
62 e. `strict_low', is nonzero for operands contained in a STRICT_LOW_PART.
64 f. `eliminable', is nonzero for operands that are matched normally by
65 MATCH_OPERAND; it is zero for operands that should not be changed during
66 register elimination such as MATCH_OPERATORs.
68 g. `allows_mem', is true for operands that accept MEM rtxes.
70 The code number of an insn is simply its position in the machine
71 description; code numbers are assigned sequentially to entries in
72 the description, starting with code number 0.
74 Thus, the following entry in the machine description
77 [(set (match_operand:DF 0 "general_operand" "")
82 assuming it is the 25th entry present, would cause
83 insn_data[24].template to be "clrd %0", and
84 insn_data[24].n_operands to be 1. */
88 #include "coretypes.h"
93 #include "gensupport.h"
95 /* No instruction can have more operands than this. Sorry for this
96 arbitrary limit, but what machine will have an instruction with
97 this many operands? */
99 #define MAX_MAX_OPERANDS 40
101 static char general_mem
[] = { TARGET_MEM_CONSTRAINT
, 0 };
103 static int n_occurrences (int, const char *);
104 static const char *strip_whitespace (const char *);
106 /* insns in the machine description are assigned sequential code numbers
107 that are used by insn-recog.c (produced by genrecog) to communicate
108 to insn-output.c (produced by this program). */
110 static int next_code_number
;
112 /* This counts all definitions in the md file,
113 for the sake of error messages. */
115 static int next_index_number
;
117 /* This counts all operands used in the md file. The first is null. */
119 static int next_operand_number
= 1;
121 /* Record in this chain all information about the operands we will output. */
125 struct operand_data
*next
;
127 const char *predicate
;
128 const char *constraint
;
129 enum machine_mode mode
;
130 unsigned char n_alternatives
;
137 /* Begin with a null operand at index 0. */
139 static struct operand_data null_operand
=
141 0, 0, "", "", VOIDmode
, 0, 0, 0, 0, 0
144 static struct operand_data
*odata
= &null_operand
;
145 static struct operand_data
**odata_end
= &null_operand
.next
;
147 /* Must match the constants in recog.h. */
149 #define INSN_OUTPUT_FORMAT_NONE 0 /* abort */
150 #define INSN_OUTPUT_FORMAT_SINGLE 1 /* const char * */
151 #define INSN_OUTPUT_FORMAT_MULTI 2 /* const char * const * */
152 #define INSN_OUTPUT_FORMAT_FUNCTION 3 /* const char * (*)(...) */
154 /* Record in this chain all information that we will output,
155 associated with the code number of the insn. */
161 const char *template_code
;
164 const char *filename
;
166 int n_generator_args
; /* Number of arguments passed to generator */
167 int n_operands
; /* Number of operands this insn recognizes */
168 int n_dups
; /* Number times match_dup appears in pattern */
169 int n_alternatives
; /* Number of alternatives in each constraint */
170 int operand_number
; /* Operand index in the big array. */
171 int output_format
; /* INSN_OUTPUT_FORMAT_*. */
172 struct operand_data operand
[MAX_MAX_OPERANDS
];
175 /* A dummy insn, for CODE_FOR_nothing. */
176 static struct data nothing
;
178 /* This variable points to the first link in the insn chain. */
179 static struct data
*idata
= ¬hing
;
181 /* This variable points to the end of the insn chain. This is where
182 everything relevant from the machien description is appended to. */
183 static struct data
**idata_end
= ¬hing
.next
;
186 static void output_prologue (void);
187 static void output_operand_data (void);
188 static void output_insn_data (void);
189 static void output_get_insn_name (void);
190 static void scan_operands (struct data
*, rtx
, int, int);
191 static int compare_operands (struct operand_data
*,
192 struct operand_data
*);
193 static void place_operands (struct data
*);
194 static void process_template (struct data
*, const char *);
195 static void validate_insn_alternatives (struct data
*);
196 static void validate_insn_operands (struct data
*);
197 static void gen_insn (rtx
, int);
198 static void gen_peephole (rtx
, int);
199 static void gen_expand (rtx
, int);
200 static void gen_split (rtx
, int);
202 struct constraint_data
204 struct constraint_data
*next_this_letter
;
206 unsigned int namelen
;
210 /* All machine-independent constraint characters (except digits) that
211 are handled outside the define*_constraint mechanism. */
212 static const char indep_constraints
[] = ",=+%*?!#&g";
214 static struct constraint_data
*
215 constraints_by_letter_table
[1 << CHAR_BIT
];
217 static int mdep_constraint_len (const char *, int, int);
218 static void note_constraint (rtx
, int);
221 output_prologue (void)
223 printf ("/* Generated automatically by the program `genoutput'\n\
224 from the machine description file `md'. */\n\n");
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 \"tree.h\"\n");
233 printf ("#include \"varasm.h\"\n");
234 printf ("#include \"stor-layout.h\"\n");
235 printf ("#include \"calls.h\"\n");
236 printf ("#include \"rtl.h\"\n");
237 printf ("#include \"expr.h\"\n");
238 printf ("#include \"insn-codes.h\"\n");
239 printf ("#include \"tm_p.h\"\n");
240 printf ("#include \"function.h\"\n");
241 printf ("#include \"regs.h\"\n");
242 printf ("#include \"hard-reg-set.h\"\n");
243 printf ("#include \"insn-config.h\"\n\n");
244 printf ("#include \"conditions.h\"\n");
245 printf ("#include \"insn-attr.h\"\n\n");
246 printf ("#include \"recog.h\"\n\n");
247 printf ("#include \"diagnostic-core.h\"\n");
248 printf ("#include \"output.h\"\n");
249 printf ("#include \"target.h\"\n");
250 printf ("#include \"tm-constrs.h\"\n");
254 output_operand_data (void)
256 struct operand_data
*d
;
258 printf ("\nstatic const struct insn_operand_data operand_data[] = \n{\n");
260 for (d
= odata
; d
; d
= d
->next
)
262 struct pred_data
*pred
;
267 d
->predicate
&& d
->predicate
[0] ? d
->predicate
: "0");
269 printf (" \"%s\",\n", d
->constraint
? d
->constraint
: "");
271 printf (" %smode,\n", GET_MODE_NAME (d
->mode
));
273 printf (" %d,\n", d
->strict_low
);
275 printf (" %d,\n", d
->constraint
== NULL
? 1 : 0);
277 printf (" %d,\n", d
->eliminable
);
281 pred
= lookup_predicate (d
->predicate
);
282 printf (" %d\n", pred
&& pred
->codes
[MEM
]);
290 output_insn_data (void)
294 int next_name_offset
;
295 const char * last_name
= 0;
296 const char * next_name
= 0;
299 for (n
= idata
, next_name_offset
= 1; n
; n
= n
->next
, next_name_offset
++)
306 printf ("#if GCC_VERSION >= 2007\n__extension__\n#endif\n");
307 printf ("\nconst struct insn_data_d insn_data[] = \n{\n");
309 for (d
= idata
; d
; d
= d
->next
)
311 printf (" /* %s:%d */\n", d
->filename
, d
->lineno
);
316 printf (" \"%s\",\n", d
->name
);
320 for (n
= d
->next
, next_name_offset
= 1; n
;
321 n
= n
->next
, next_name_offset
++)
333 if (next_name
&& (last_name
== 0
334 || name_offset
> next_name_offset
/ 2))
335 printf (" \"%s-%d\",\n", next_name
,
336 next_name_offset
- name_offset
);
338 printf (" \"%s+%d\",\n", last_name
, name_offset
);
341 switch (d
->output_format
)
343 case INSN_OUTPUT_FORMAT_NONE
:
344 printf ("#if HAVE_DESIGNATED_UNION_INITIALIZERS\n");
345 printf (" { 0 },\n");
347 printf (" { 0, 0, 0 },\n");
350 case INSN_OUTPUT_FORMAT_SINGLE
:
352 const char *p
= d
->template_code
;
355 printf ("#if HAVE_DESIGNATED_UNION_INITIALIZERS\n");
356 printf (" { .single =\n");
363 if (IS_VSPACE (*p
) && prev
!= '\\')
365 /* Preserve two consecutive \n's or \r's, but treat \r\n
366 as a single newline. */
367 if (*p
== '\n' && prev
!= '\r')
376 printf ("#if HAVE_DESIGNATED_UNION_INITIALIZERS\n");
379 printf (" 0, 0 },\n");
383 case INSN_OUTPUT_FORMAT_MULTI
:
384 printf ("#if HAVE_DESIGNATED_UNION_INITIALIZERS\n");
385 printf (" { .multi = output_%d },\n", d
->code_number
);
387 printf (" { 0, output_%d, 0 },\n", d
->code_number
);
390 case INSN_OUTPUT_FORMAT_FUNCTION
:
391 printf ("#if HAVE_DESIGNATED_UNION_INITIALIZERS\n");
392 printf (" { .function = output_%d },\n", d
->code_number
);
394 printf (" { 0, 0, output_%d },\n", d
->code_number
);
401 if (d
->name
&& d
->name
[0] != '*')
402 printf (" { (insn_gen_fn::stored_funcptr) gen_%s },\n", d
->name
);
404 printf (" { 0 },\n");
406 printf (" &operand_data[%d],\n", d
->operand_number
);
407 printf (" %d,\n", d
->n_generator_args
);
408 printf (" %d,\n", d
->n_operands
);
409 printf (" %d,\n", d
->n_dups
);
410 printf (" %d,\n", d
->n_alternatives
);
411 printf (" %d\n", d
->output_format
);
419 output_get_insn_name (void)
421 printf ("const char *\n");
422 printf ("get_insn_name (int code)\n");
424 printf (" if (code == NOOP_MOVE_INSN_CODE)\n");
425 printf (" return \"NOOP_MOVE\";\n");
427 printf (" return insn_data[code].name;\n");
432 /* Stores the operand data into `d->operand[i]'.
434 THIS_ADDRESS_P is nonzero if the containing rtx was an ADDRESS.
435 THIS_STRICT_LOW is nonzero if the containing rtx was a STRICT_LOW_PART. */
438 scan_operands (struct data
*d
, rtx part
, int this_address_p
,
442 const char *format_ptr
;
448 switch (GET_CODE (part
))
451 opno
= XINT (part
, 0);
452 if (opno
>= MAX_MAX_OPERANDS
)
454 error_with_line (d
->lineno
, "maximum number of operands exceeded");
457 if (d
->operand
[opno
].seen
)
458 error_with_line (d
->lineno
, "repeated operand number %d\n", opno
);
460 d
->operand
[opno
].seen
= 1;
461 d
->operand
[opno
].mode
= GET_MODE (part
);
462 d
->operand
[opno
].strict_low
= this_strict_low
;
463 d
->operand
[opno
].predicate
= XSTR (part
, 1);
464 d
->operand
[opno
].constraint
= strip_whitespace (XSTR (part
, 2));
465 d
->operand
[opno
].n_alternatives
466 = n_occurrences (',', d
->operand
[opno
].constraint
) + 1;
467 d
->operand
[opno
].address_p
= this_address_p
;
468 d
->operand
[opno
].eliminable
= 1;
472 opno
= XINT (part
, 0);
473 if (opno
>= MAX_MAX_OPERANDS
)
475 error_with_line (d
->lineno
, "maximum number of operands exceeded");
478 if (d
->operand
[opno
].seen
)
479 error_with_line (d
->lineno
, "repeated operand number %d\n", opno
);
481 d
->operand
[opno
].seen
= 1;
482 d
->operand
[opno
].mode
= GET_MODE (part
);
483 d
->operand
[opno
].strict_low
= 0;
484 d
->operand
[opno
].predicate
= "scratch_operand";
485 d
->operand
[opno
].constraint
= strip_whitespace (XSTR (part
, 1));
486 d
->operand
[opno
].n_alternatives
487 = n_occurrences (',', d
->operand
[opno
].constraint
) + 1;
488 d
->operand
[opno
].address_p
= 0;
489 d
->operand
[opno
].eliminable
= 0;
494 opno
= XINT (part
, 0);
495 if (opno
>= MAX_MAX_OPERANDS
)
497 error_with_line (d
->lineno
, "maximum number of operands exceeded");
500 if (d
->operand
[opno
].seen
)
501 error_with_line (d
->lineno
, "repeated operand number %d\n", opno
);
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);
514 case STRICT_LOW_PART
:
515 scan_operands (d
, XEXP (part
, 0), 0, 1);
522 format_ptr
= GET_RTX_FORMAT (GET_CODE (part
));
524 for (i
= 0; i
< GET_RTX_LENGTH (GET_CODE (part
)); i
++)
525 switch (*format_ptr
++)
529 scan_operands (d
, XEXP (part
, i
), 0, 0);
532 if (XVEC (part
, i
) != NULL
)
533 for (j
= 0; j
< XVECLEN (part
, i
); j
++)
534 scan_operands (d
, XVECEXP (part
, i
, j
), 0, 0);
539 /* Compare two operands for content equality. */
542 compare_operands (struct operand_data
*d0
, struct operand_data
*d1
)
552 if (strcmp (p0
, p1
) != 0)
561 if (strcmp (p0
, p1
) != 0)
564 if (d0
->mode
!= d1
->mode
)
567 if (d0
->strict_low
!= d1
->strict_low
)
570 if (d0
->eliminable
!= d1
->eliminable
)
576 /* Scan the list of operands we've already committed to output and either
577 find a subsequence that is the same, or allocate a new one at the end. */
580 place_operands (struct data
*d
)
582 struct operand_data
*od
, *od2
;
585 if (d
->n_operands
== 0)
587 d
->operand_number
= 0;
591 /* Brute force substring search. */
592 for (od
= odata
, i
= 0; od
; od
= od
->next
, i
= 0)
593 if (compare_operands (od
, &d
->operand
[0]))
599 if (i
== d
->n_operands
)
603 if (! compare_operands (od2
, &d
->operand
[i
]))
605 ++i
, od2
= od2
->next
;
609 /* Either partial match at the end of the list, or no match. In either
610 case, we tack on what operands are remaining to the end of the list. */
612 d
->operand_number
= next_operand_number
- i
;
613 for (; i
< d
->n_operands
; ++i
)
615 od2
= &d
->operand
[i
];
617 odata_end
= &od2
->next
;
618 od2
->index
= next_operand_number
++;
624 d
->operand_number
= od
->index
;
629 /* Process an assembler template from a define_insn or a define_peephole.
630 It is either the assembler code template, a list of assembler code
631 templates, or C code to generate the assembler code template. */
634 process_template (struct data
*d
, const char *template_code
)
639 /* Templates starting with * contain straight code to be run. */
640 if (template_code
[0] == '*')
642 d
->template_code
= 0;
643 d
->output_format
= INSN_OUTPUT_FORMAT_FUNCTION
;
645 puts ("\nstatic const char *");
646 printf ("output_%d (rtx *operands ATTRIBUTE_UNUSED, rtx insn ATTRIBUTE_UNUSED)\n",
649 print_md_ptr_loc (template_code
);
650 puts (template_code
+ 1);
654 /* If the assembler code template starts with a @ it is a newline-separated
655 list of assembler code templates, one for each alternative. */
656 else if (template_code
[0] == '@')
660 for (cp
= &template_code
[1]; *cp
; )
662 while (ISSPACE (*cp
))
666 while (!IS_VSPACE (*cp
) && *cp
!= '\0')
669 d
->template_code
= 0;
672 d
->output_format
= INSN_OUTPUT_FORMAT_FUNCTION
;
673 puts ("\nstatic const char *");
674 printf ("output_%d (rtx *operands ATTRIBUTE_UNUSED, "
675 "rtx insn ATTRIBUTE_UNUSED)\n", d
->code_number
);
677 puts (" switch (which_alternative)\n {");
681 d
->output_format
= INSN_OUTPUT_FORMAT_MULTI
;
682 printf ("\nstatic const char * const output_%d[] = {\n",
686 for (i
= 0, cp
= &template_code
[1]; *cp
; )
688 const char *ep
, *sp
, *bp
;
690 while (ISSPACE (*cp
))
696 printf (" case %d:", i
);
703 printf (" return \"");
708 for (ep
= sp
= cp
; !IS_VSPACE (*ep
) && *ep
!= '\0'; ++ep
)
713 message_with_line (d
->lineno
,
714 "trailing whitespace in output template");
728 /* The usual action will end with a return.
729 If there is neither break or return at the end, this is
730 assumed to be intentional; this allows to have multiple
731 consecutive alternatives share some code. */
737 message_with_line (d
->lineno
,
738 "'@' is redundant for output template with single alternative");
739 if (i
!= d
->n_alternatives
)
740 error_with_line (d
->lineno
,
741 "wrong number of alternatives in the output template");
744 puts (" default: gcc_unreachable ();\n }\n}");
750 d
->template_code
= template_code
;
751 d
->output_format
= INSN_OUTPUT_FORMAT_SINGLE
;
755 /* Check insn D for consistency in number of constraint alternatives. */
758 validate_insn_alternatives (struct data
*d
)
762 /* Make sure all the operands have the same number of alternatives
763 in their constraints. Let N be that number. */
764 for (start
= 0; start
< d
->n_operands
; start
++)
765 if (d
->operand
[start
].n_alternatives
> 0)
770 int which_alternative
= 0;
771 int alternative_count_unsure
= 0;
773 for (p
= d
->operand
[start
].constraint
; (c
= *p
); p
+= len
)
775 if ((c
== '%' || c
== '=' || c
== '+')
776 && p
!= d
->operand
[start
].constraint
)
777 error_with_line (d
->lineno
,
778 "character '%c' can only be used at the"
779 " beginning of a constraint string", c
);
780 if (ISSPACE (c
) || strchr (indep_constraints
, c
))
782 else if (ISDIGIT (c
))
787 while (ISDIGIT (*q
));
791 len
= mdep_constraint_len (p
, d
->lineno
, start
);
799 for (i
= 1; i
< len
; i
++)
802 error_with_line (d
->lineno
,
803 "NUL in alternative %d of operand %d",
804 which_alternative
, start
);
805 alternative_count_unsure
= 1;
808 else if (strchr (",#*", p
[i
]))
810 error_with_line (d
->lineno
,
811 "'%c' in alternative %d of operand %d",
812 p
[i
], which_alternative
, start
);
813 alternative_count_unsure
= 1;
816 if (!alternative_count_unsure
)
819 n
= d
->operand
[start
].n_alternatives
;
820 else if (n
!= d
->operand
[start
].n_alternatives
)
821 error_with_line (d
->lineno
,
822 "wrong number of alternatives in operand %d",
827 /* Record the insn's overall number of alternatives. */
828 d
->n_alternatives
= n
;
831 /* Verify that there are no gaps in operand numbers for INSNs. */
834 validate_insn_operands (struct data
*d
)
838 for (i
= 0; i
< d
->n_operands
; ++i
)
839 if (d
->operand
[i
].seen
== 0)
840 error_with_line (d
->lineno
, "missing operand %d", i
);
844 validate_optab_operands (struct data
*d
)
846 if (!d
->name
|| d
->name
[0] == '\0' || d
->name
[0] == '*')
849 /* Miscellaneous tests. */
850 if (strncmp (d
->name
, "cstore", 6) == 0
851 && d
->name
[strlen (d
->name
) - 1] == '4'
852 && d
->operand
[0].mode
== VOIDmode
)
854 message_with_line (d
->lineno
, "missing mode for operand 0 of cstore");
859 /* Look at a define_insn just read. Assign its code number. Record
860 on idata the template and the number of arguments. If the insn has
861 a hairy output action, output a function for now. */
864 gen_insn (rtx insn
, int lineno
)
866 struct pattern_stats stats
;
867 struct data
*d
= XNEW (struct data
);
870 d
->code_number
= next_code_number
;
871 d
->index_number
= next_index_number
;
872 d
->filename
= read_md_filename
;
874 if (XSTR (insn
, 0)[0])
875 d
->name
= XSTR (insn
, 0);
879 /* Build up the list in the same order as the insns are seen
880 in the machine description. */
883 idata_end
= &d
->next
;
885 memset (d
->operand
, 0, sizeof (d
->operand
));
887 for (i
= 0; i
< XVECLEN (insn
, 1); i
++)
888 scan_operands (d
, XVECEXP (insn
, 1, i
), 0, 0);
890 get_pattern_stats (&stats
, XVEC (insn
, 1));
891 d
->n_generator_args
= stats
.num_generator_args
;
892 d
->n_operands
= stats
.num_insn_operands
;
893 d
->n_dups
= stats
.num_dups
;
895 validate_insn_operands (d
);
896 validate_insn_alternatives (d
);
897 validate_optab_operands (d
);
899 process_template (d
, XTMPL (insn
, 3));
902 /* Look at a define_peephole just read. Assign its code number.
903 Record on idata the template and the number of arguments.
904 If the insn has a hairy output action, output it now. */
907 gen_peephole (rtx peep
, int lineno
)
909 struct pattern_stats stats
;
910 struct data
*d
= XNEW (struct data
);
913 d
->code_number
= next_code_number
;
914 d
->index_number
= next_index_number
;
915 d
->filename
= read_md_filename
;
919 /* Build up the list in the same order as the insns are seen
920 in the machine description. */
923 idata_end
= &d
->next
;
925 memset (d
->operand
, 0, sizeof (d
->operand
));
927 /* Get the number of operands by scanning all the patterns of the
928 peephole optimizer. But ignore all the rest of the information
930 for (i
= 0; i
< XVECLEN (peep
, 0); i
++)
931 scan_operands (d
, XVECEXP (peep
, 0, i
), 0, 0);
933 get_pattern_stats (&stats
, XVEC (peep
, 0));
934 d
->n_generator_args
= 0;
935 d
->n_operands
= stats
.num_insn_operands
;
938 validate_insn_alternatives (d
);
940 process_template (d
, XTMPL (peep
, 2));
943 /* Process a define_expand just read. Assign its code number,
944 only for the purposes of `insn_gen_function'. */
947 gen_expand (rtx insn
, int lineno
)
949 struct pattern_stats stats
;
950 struct data
*d
= XNEW (struct data
);
953 d
->code_number
= next_code_number
;
954 d
->index_number
= next_index_number
;
955 d
->filename
= read_md_filename
;
957 if (XSTR (insn
, 0)[0])
958 d
->name
= XSTR (insn
, 0);
962 /* Build up the list in the same order as the insns are seen
963 in the machine description. */
966 idata_end
= &d
->next
;
968 memset (d
->operand
, 0, sizeof (d
->operand
));
970 /* Scan the operands to get the specified predicates and modes,
971 since expand_binop needs to know them. */
974 for (i
= 0; i
< XVECLEN (insn
, 1); i
++)
975 scan_operands (d
, XVECEXP (insn
, 1, i
), 0, 0);
977 get_pattern_stats (&stats
, XVEC (insn
, 1));
978 d
->n_generator_args
= stats
.num_generator_args
;
979 d
->n_operands
= stats
.num_insn_operands
;
980 d
->n_dups
= stats
.num_dups
;
981 d
->template_code
= 0;
982 d
->output_format
= INSN_OUTPUT_FORMAT_NONE
;
984 validate_insn_alternatives (d
);
985 validate_optab_operands (d
);
989 /* Process a define_split just read. Assign its code number,
990 only for reasons of consistency and to simplify genrecog. */
993 gen_split (rtx split
, int lineno
)
995 struct pattern_stats stats
;
996 struct data
*d
= XNEW (struct data
);
999 d
->code_number
= next_code_number
;
1000 d
->index_number
= next_index_number
;
1001 d
->filename
= read_md_filename
;
1005 /* Build up the list in the same order as the insns are seen
1006 in the machine description. */
1009 idata_end
= &d
->next
;
1011 memset (d
->operand
, 0, sizeof (d
->operand
));
1013 /* Get the number of operands by scanning all the patterns of the
1014 split patterns. But ignore all the rest of the information thus
1016 for (i
= 0; i
< XVECLEN (split
, 0); i
++)
1017 scan_operands (d
, XVECEXP (split
, 0, i
), 0, 0);
1019 get_pattern_stats (&stats
, XVEC (split
, 0));
1020 d
->n_generator_args
= 0;
1021 d
->n_operands
= stats
.num_insn_operands
;
1023 d
->n_alternatives
= 0;
1024 d
->template_code
= 0;
1025 d
->output_format
= INSN_OUTPUT_FORMAT_NONE
;
1031 init_insn_for_nothing (void)
1033 memset (¬hing
, 0, sizeof (nothing
));
1034 nothing
.name
= "*placeholder_for_nothing";
1035 nothing
.filename
= "<internal>";
1038 extern int main (int, char **);
1041 main (int argc
, char **argv
)
1045 progname
= "genoutput";
1047 init_insn_for_nothing ();
1049 if (!init_rtx_reader_args (argc
, argv
))
1050 return (FATAL_EXIT_CODE
);
1053 next_index_number
= 0;
1055 /* Read the machine description. */
1061 desc
= read_md_rtx (&line_no
, &next_code_number
);
1065 switch (GET_CODE (desc
))
1068 gen_insn (desc
, line_no
);
1071 case DEFINE_PEEPHOLE
:
1072 gen_peephole (desc
, line_no
);
1076 gen_expand (desc
, line_no
);
1080 case DEFINE_PEEPHOLE2
:
1081 gen_split (desc
, line_no
);
1084 case DEFINE_CONSTRAINT
:
1085 case DEFINE_REGISTER_CONSTRAINT
:
1086 case DEFINE_ADDRESS_CONSTRAINT
:
1087 case DEFINE_MEMORY_CONSTRAINT
:
1088 note_constraint (desc
, line_no
);
1094 next_index_number
++;
1098 output_operand_data ();
1099 output_insn_data ();
1100 output_get_insn_name ();
1103 return (ferror (stdout
) != 0 || have_error
1104 ? FATAL_EXIT_CODE
: SUCCESS_EXIT_CODE
);
1107 /* Return the number of occurrences of character C in string S or
1108 -1 if S is the null string. */
1111 n_occurrences (int c
, const char *s
)
1115 if (s
== 0 || *s
== '\0')
1124 /* Remove whitespace in `s' by moving up characters until the end.
1125 Return a new string. */
1128 strip_whitespace (const char *s
)
1136 p
= q
= XNEWVEC (char, strlen (s
) + 1);
1137 while ((ch
= *s
++) != '\0')
1145 /* Record just enough information about a constraint to allow checking
1146 of operand constraint strings above, in validate_insn_alternatives.
1147 Does not validate most properties of the constraint itself; does
1148 enforce no duplicate names, no overlap with MI constraints, and no
1149 prefixes. EXP is the define_*constraint form, LINENO the line number
1150 reported by the reader. */
1152 note_constraint (rtx exp
, int lineno
)
1154 const char *name
= XSTR (exp
, 0);
1155 struct constraint_data
**iter
, **slot
, *new_cdata
;
1157 if (strcmp (name
, "TARGET_MEM_CONSTRAINT") == 0)
1159 unsigned int namelen
= strlen (name
);
1161 if (strchr (indep_constraints
, name
[0]))
1163 if (name
[1] == '\0')
1164 error_with_line (lineno
, "constraint letter '%s' cannot be "
1165 "redefined by the machine description", name
);
1167 error_with_line (lineno
, "constraint name '%s' cannot be defined by "
1168 "the machine description, as it begins with '%c'",
1173 slot
= &constraints_by_letter_table
[(unsigned int)name
[0]];
1174 for (iter
= slot
; *iter
; iter
= &(*iter
)->next_this_letter
)
1176 /* This causes slot to end up pointing to the
1177 next_this_letter field of the last constraint with a name
1178 of equal or greater length than the new constraint; hence
1179 the new constraint will be inserted after all previous
1180 constraints with names of the same length. */
1181 if ((*iter
)->namelen
>= namelen
)
1184 if (!strcmp ((*iter
)->name
, name
))
1186 error_with_line (lineno
, "redefinition of constraint '%s'", name
);
1187 message_with_line ((*iter
)->lineno
, "previous definition is here");
1190 else if (!strncmp ((*iter
)->name
, name
, (*iter
)->namelen
))
1192 error_with_line (lineno
, "defining constraint '%s' here", name
);
1193 message_with_line ((*iter
)->lineno
, "renders constraint '%s' "
1194 "(defined here) a prefix", (*iter
)->name
);
1197 else if (!strncmp ((*iter
)->name
, name
, namelen
))
1199 error_with_line (lineno
, "constraint '%s' is a prefix", name
);
1200 message_with_line ((*iter
)->lineno
, "of constraint '%s' "
1201 "(defined here)", (*iter
)->name
);
1205 new_cdata
= XNEWVAR (struct constraint_data
, sizeof (struct constraint_data
) + namelen
);
1206 strcpy (CONST_CAST (char *, new_cdata
->name
), name
);
1207 new_cdata
->namelen
= namelen
;
1208 new_cdata
->lineno
= lineno
;
1209 new_cdata
->next_this_letter
= *slot
;
1213 /* Return the length of the constraint name beginning at position S
1214 of an operand constraint string, or issue an error message if there
1215 is no such constraint. Does not expect to be called for generic
1218 mdep_constraint_len (const char *s
, int lineno
, int opno
)
1220 struct constraint_data
*p
;
1222 p
= constraints_by_letter_table
[(unsigned int)s
[0]];
1225 for (; p
; p
= p
->next_this_letter
)
1226 if (!strncmp (s
, p
->name
, p
->namelen
))
1229 error_with_line (lineno
,
1230 "error: undefined machine-specific constraint "
1231 "at this point: \"%s\"", s
);
1232 message_with_line (lineno
, "note: in operand %d", opno
);
1233 return 1; /* safe */