1 /* Generate code from to output assembler insns as recognized from rtl.
2 Copyright (C) 1987-2023 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 /* This counts all operands used in the md file. The first is null. */
108 static int next_operand_number
= 1;
110 /* Record in this chain all information about the operands we will output. */
114 struct operand_data
*next
;
116 const char *predicate
;
117 const char *constraint
;
119 unsigned char n_alternatives
;
126 /* Begin with a null operand at index 0. */
128 static struct operand_data null_operand
=
130 0, 0, "", "", E_VOIDmode
, 0, 0, 0, 0, 0
133 static struct operand_data
*odata
= &null_operand
;
134 static struct operand_data
**odata_end
= &null_operand
.next
;
136 /* Must match the constants in recog.h. */
138 #define INSN_OUTPUT_FORMAT_NONE 0 /* abort */
139 #define INSN_OUTPUT_FORMAT_SINGLE 1 /* const char * */
140 #define INSN_OUTPUT_FORMAT_MULTI 2 /* const char * const * */
141 #define INSN_OUTPUT_FORMAT_FUNCTION 3 /* const char * (*)(...) */
143 /* Record in this chain all information that we will output,
144 associated with the code number of the insn. */
151 const char *template_code
;
154 int n_generator_args
; /* Number of arguments passed to generator */
155 int n_operands
; /* Number of operands this insn recognizes */
156 int n_dups
; /* Number times match_dup appears in pattern */
157 int n_alternatives
; /* Number of alternatives in each constraint */
158 int operand_number
; /* Operand index in the big array. */
159 int output_format
; /* INSN_OUTPUT_FORMAT_*. */
160 bool compact_syntax_p
;
161 struct operand_data operand
[MAX_MAX_OPERANDS
];
164 /* This variable points to the first link in the insn chain. */
165 static class data
*idata
;
167 /* This variable points to the end of the insn chain. This is where
168 everything relevant from the machien description is appended to. */
169 static class data
**idata_end
;
172 static void output_prologue (void);
173 static void output_operand_data (void);
174 static void output_insn_data (void);
175 static void output_get_insn_name (void);
176 static void scan_operands (class data
*, rtx
, int, int);
177 static int compare_operands (struct operand_data
*,
178 struct operand_data
*);
179 static void place_operands (class data
*);
180 static void process_template (class data
*, const char *);
181 static void validate_insn_alternatives (class data
*);
182 static void validate_insn_operands (class data
*);
184 class constraint_data
187 class constraint_data
*next_this_letter
;
189 unsigned int namelen
;
193 /* All machine-independent constraint characters (except digits) that
194 are handled outside the define*_constraint mechanism. */
195 static const char indep_constraints
[] = ",=+%*?!^$#&g";
197 static class constraint_data
*
198 constraints_by_letter_table
[1 << CHAR_BIT
];
200 static int mdep_constraint_len (const char *, file_location
, int);
201 static void note_constraint (md_rtx_info
*);
204 output_prologue (void)
206 printf ("/* Generated automatically by the program `genoutput'\n\
207 from the machine description file `md'. */\n\n");
209 printf ("#define IN_TARGET_CODE 1\n");
210 printf ("#include \"config.h\"\n");
211 printf ("#include \"system.h\"\n");
212 printf ("#include \"coretypes.h\"\n");
213 printf ("#include \"backend.h\"\n");
214 printf ("#include \"predict.h\"\n");
215 printf ("#include \"tree.h\"\n");
216 printf ("#include \"rtl.h\"\n");
217 printf ("#include \"flags.h\"\n");
218 printf ("#include \"alias.h\"\n");
219 printf ("#include \"varasm.h\"\n");
220 printf ("#include \"stor-layout.h\"\n");
221 printf ("#include \"calls.h\"\n");
222 printf ("#include \"insn-config.h\"\n");
223 printf ("#include \"expmed.h\"\n");
224 printf ("#include \"dojump.h\"\n");
225 printf ("#include \"explow.h\"\n");
226 printf ("#include \"memmodel.h\"\n");
227 printf ("#include \"emit-rtl.h\"\n");
228 printf ("#include \"stmt.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 \"regs.h\"\n");
233 printf ("#include \"conditions.h\"\n");
234 printf ("#include \"insn-attr.h\"\n\n");
235 printf ("#include \"recog.h\"\n\n");
236 printf ("#include \"diagnostic-core.h\"\n");
237 printf ("#include \"output.h\"\n");
238 printf ("#include \"target.h\"\n");
239 printf ("#include \"tm-constrs.h\"\n");
243 output_operand_data (void)
245 struct operand_data
*d
;
247 printf ("\nstatic const struct insn_operand_data operand_data[] = \n{\n");
249 for (d
= odata
; d
; d
= d
->next
)
251 struct pred_data
*pred
;
256 d
->predicate
&& d
->predicate
[0] ? d
->predicate
: "0");
258 printf (" \"%s\",\n", d
->constraint
? d
->constraint
: "");
260 printf (" E_%smode,\n", GET_MODE_NAME (d
->mode
));
262 printf (" %d,\n", d
->strict_low
);
264 printf (" %d,\n", d
->constraint
== NULL
? 1 : 0);
266 printf (" %d,\n", d
->eliminable
);
270 pred
= lookup_predicate (d
->predicate
);
271 printf (" %d\n", pred
&& pred
->codes
[MEM
]);
279 output_insn_data (void)
283 int next_name_offset
;
284 const char * last_name
= 0;
285 const char * next_name
= 0;
288 for (n
= idata
, next_name_offset
= 1; n
; n
= n
->next
, next_name_offset
++)
295 printf ("#if GCC_VERSION >= 2007\n__extension__\n#endif\n");
296 printf ("\nconst struct insn_data_d insn_data[] = \n{\n");
298 for (d
= idata
; d
; d
= d
->next
)
300 printf (" /* %s:%d */\n", d
->loc
.filename
, d
->loc
.lineno
);
305 printf (" \"%s\",\n", d
->name
);
309 for (n
= d
->next
, next_name_offset
= 1; n
;
310 n
= n
->next
, next_name_offset
++)
322 if (next_name
&& (last_name
== 0
323 || name_offset
> next_name_offset
/ 2))
324 printf (" \"%s-%d\",\n", next_name
,
325 next_name_offset
- name_offset
);
327 printf (" \"%s+%d\",\n", last_name
, name_offset
);
330 switch (d
->output_format
)
332 case INSN_OUTPUT_FORMAT_NONE
:
333 printf ("#if HAVE_DESIGNATED_UNION_INITIALIZERS\n");
334 printf (" { 0 },\n");
336 printf (" { 0, 0, 0 },\n");
339 case INSN_OUTPUT_FORMAT_SINGLE
:
341 const char *p
= d
->template_code
;
344 printf ("#if HAVE_DESIGNATED_UNION_INITIALIZERS\n");
345 printf (" { .single =\n");
352 if (IS_VSPACE (*p
) && prev
!= '\\')
354 /* Preserve two consecutive \n's or \r's, but treat \r\n
355 as a single newline. */
356 if (*p
== '\n' && prev
!= '\r')
365 printf ("#if HAVE_DESIGNATED_UNION_INITIALIZERS\n");
368 printf (" 0, 0 },\n");
372 case INSN_OUTPUT_FORMAT_MULTI
:
373 printf ("#if HAVE_DESIGNATED_UNION_INITIALIZERS\n");
374 printf (" { .multi = output_%d },\n", d
->code_number
);
376 printf (" { 0, output_%d, 0 },\n", d
->code_number
);
379 case INSN_OUTPUT_FORMAT_FUNCTION
:
380 printf ("#if HAVE_DESIGNATED_UNION_INITIALIZERS\n");
381 printf (" { .function = output_%d },\n", d
->code_number
);
383 printf (" { 0, 0, output_%d },\n", d
->code_number
);
390 if (d
->name
&& d
->name
[0] != '*')
391 printf (" { (insn_gen_fn::stored_funcptr) gen_%s },\n", d
->name
);
393 printf (" { 0 },\n");
395 printf (" &operand_data[%d],\n", d
->operand_number
);
396 printf (" %d,\n", d
->n_generator_args
);
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
);
408 output_get_insn_name (void)
410 printf ("const char *\n");
411 printf ("get_insn_name (int code)\n");
413 printf (" if (code == NOOP_MOVE_INSN_CODE)\n");
414 printf (" return \"NOOP_MOVE\";\n");
416 printf (" return insn_data[code].name;\n");
421 /* Stores the operand data into `d->operand[i]'.
423 THIS_ADDRESS_P is nonzero if the containing rtx was an ADDRESS.
424 THIS_STRICT_LOW is nonzero if the containing rtx was a STRICT_LOW_PART. */
427 scan_operands (class data
*d
, rtx part
, int this_address_p
,
431 const char *format_ptr
;
437 switch (GET_CODE (part
))
440 opno
= XINT (part
, 0);
441 if (opno
>= MAX_MAX_OPERANDS
)
443 error_at (d
->loc
, "maximum number of operands exceeded");
446 if (d
->operand
[opno
].seen
)
447 error_at (d
->loc
, "repeated operand number %d\n", opno
);
449 d
->operand
[opno
].seen
= 1;
450 d
->operand
[opno
].mode
= GET_MODE (part
);
451 d
->operand
[opno
].strict_low
= this_strict_low
;
452 d
->operand
[opno
].predicate
= XSTR (part
, 1);
453 d
->operand
[opno
].constraint
= strip_whitespace (XSTR (part
, 2));
454 d
->operand
[opno
].n_alternatives
455 = n_occurrences (',', d
->operand
[opno
].constraint
) + 1;
456 d
->operand
[opno
].address_p
= this_address_p
;
457 d
->operand
[opno
].eliminable
= 1;
461 opno
= XINT (part
, 0);
462 if (opno
>= MAX_MAX_OPERANDS
)
464 error_at (d
->loc
, "maximum number of operands exceeded");
467 if (d
->operand
[opno
].seen
)
468 error_at (d
->loc
, "repeated operand number %d\n", opno
);
470 d
->operand
[opno
].seen
= 1;
471 d
->operand
[opno
].mode
= GET_MODE (part
);
472 d
->operand
[opno
].strict_low
= 0;
473 d
->operand
[opno
].predicate
= "scratch_operand";
474 d
->operand
[opno
].constraint
= strip_whitespace (XSTR (part
, 1));
475 d
->operand
[opno
].n_alternatives
476 = n_occurrences (',', d
->operand
[opno
].constraint
) + 1;
477 d
->operand
[opno
].address_p
= 0;
478 d
->operand
[opno
].eliminable
= 0;
483 opno
= XINT (part
, 0);
484 if (opno
>= MAX_MAX_OPERANDS
)
486 error_at (d
->loc
, "maximum number of operands exceeded");
489 if (d
->operand
[opno
].seen
)
490 error_at (d
->loc
, "repeated operand number %d\n", opno
);
492 d
->operand
[opno
].seen
= 1;
493 d
->operand
[opno
].mode
= GET_MODE (part
);
494 d
->operand
[opno
].strict_low
= 0;
495 d
->operand
[opno
].predicate
= XSTR (part
, 1);
496 d
->operand
[opno
].constraint
= 0;
497 d
->operand
[opno
].address_p
= 0;
498 d
->operand
[opno
].eliminable
= 0;
499 for (i
= 0; i
< XVECLEN (part
, 2); i
++)
500 scan_operands (d
, XVECEXP (part
, 2, i
), 0, 0);
503 case STRICT_LOW_PART
:
504 scan_operands (d
, XEXP (part
, 0), 0, 1);
511 format_ptr
= GET_RTX_FORMAT (GET_CODE (part
));
513 for (i
= 0; i
< GET_RTX_LENGTH (GET_CODE (part
)); i
++)
514 switch (*format_ptr
++)
518 scan_operands (d
, XEXP (part
, i
), 0, 0);
521 if (XVEC (part
, i
) != NULL
)
522 for (j
= 0; j
< XVECLEN (part
, i
); j
++)
523 scan_operands (d
, XVECEXP (part
, i
, j
), 0, 0);
528 /* Compare two operands for content equality. */
531 compare_operands (struct operand_data
*d0
, struct operand_data
*d1
)
541 if (strcmp (p0
, p1
) != 0)
550 if (strcmp (p0
, p1
) != 0)
553 if (d0
->mode
!= d1
->mode
)
556 if (d0
->strict_low
!= d1
->strict_low
)
559 if (d0
->eliminable
!= d1
->eliminable
)
565 /* Scan the list of operands we've already committed to output and either
566 find a subsequence that is the same, or allocate a new one at the end. */
569 place_operands (class data
*d
)
571 struct operand_data
*od
, *od2
;
574 if (d
->n_operands
== 0)
576 d
->operand_number
= 0;
580 /* Brute force substring search. */
581 for (od
= odata
, i
= 0; od
; od
= od
->next
, i
= 0)
582 if (compare_operands (od
, &d
->operand
[0]))
588 if (i
== d
->n_operands
)
592 if (! compare_operands (od2
, &d
->operand
[i
]))
594 ++i
, od2
= od2
->next
;
598 /* Either partial match at the end of the list, or no match. In either
599 case, we tack on what operands are remaining to the end of the list. */
601 d
->operand_number
= next_operand_number
- i
;
602 for (; i
< d
->n_operands
; ++i
)
604 od2
= &d
->operand
[i
];
606 odata_end
= &od2
->next
;
607 od2
->index
= next_operand_number
++;
613 d
->operand_number
= od
->index
;
618 /* Process an assembler template from a define_insn or a define_peephole.
619 It is either the assembler code template, a list of assembler code
620 templates, or C code to generate the assembler code template. */
623 process_template (class data
*d
, const char *template_code
)
628 /* Templates starting with * contain straight code to be run. */
629 if (template_code
[0] == '*')
631 d
->template_code
= 0;
632 d
->output_format
= INSN_OUTPUT_FORMAT_FUNCTION
;
634 puts ("\nstatic const char *");
635 printf ("output_%d (rtx *operands ATTRIBUTE_UNUSED, rtx_insn *insn ATTRIBUTE_UNUSED)\n",
638 rtx_reader_ptr
->print_md_ptr_loc (template_code
);
639 puts (template_code
+ 1);
643 /* If the assembler code template starts with a @ it is a newline-separated
644 list of assembler code templates, one for each alternative. */
645 else if (template_code
[0] == '@')
649 for (cp
= &template_code
[1]; *cp
; )
651 while (ISSPACE (*cp
))
655 while (!IS_VSPACE (*cp
) && *cp
!= '\0')
658 d
->template_code
= 0;
661 d
->output_format
= INSN_OUTPUT_FORMAT_FUNCTION
;
662 puts ("\nstatic const char *");
663 printf ("output_%d (rtx *operands ATTRIBUTE_UNUSED, "
664 "rtx_insn *insn ATTRIBUTE_UNUSED)\n", d
->code_number
);
666 puts (" switch (which_alternative)\n {");
670 d
->output_format
= INSN_OUTPUT_FORMAT_MULTI
;
671 printf ("\nstatic const char * const output_%d[] = {\n",
675 for (i
= 0, cp
= &template_code
[1]; *cp
; )
677 const char *ep
, *sp
, *bp
;
679 while (ISSPACE (*cp
))
685 printf (" case %d:", i
);
692 printf (" return \"");
697 for (ep
= sp
= cp
; !IS_VSPACE (*ep
) && *ep
!= '\0'; ++ep
)
702 message_at (d
->loc
, "trailing whitespace in output template");
704 /* Check for any unexpanded iterators. */
705 if (bp
[0] != '*' && d
->compact_syntax_p
)
708 const char *last_bracket
= nullptr;
711 if (*p
== '\\' && p
+ 1 < sp
)
719 if (*p
== '>' && last_bracket
&& *last_bracket
== '<')
721 int len
= p
- last_bracket
;
722 fatal_at (d
->loc
, "unresolved iterator '%.*s' in '%s'",
723 len
- 1, last_bracket
+ 1, cp
);
725 else if (*p
== '<' || *p
== '>')
734 char *nl
= strchr (const_cast<char*> (cp
), '\n');
737 fatal_at (d
->loc
, "unmatched angle brackets, likely an "
738 "error in iterator syntax in %s", cp
);
755 /* The usual action will end with a return.
756 If there is neither break or return at the end, this is
757 assumed to be intentional; this allows to have multiple
758 consecutive alternatives share some code. */
764 message_at (d
->loc
, "'@' is redundant for output template with"
765 " single alternative");
766 if (i
!= d
->n_alternatives
)
767 error_at (d
->loc
, "wrong number of alternatives in the output"
771 puts (" default: gcc_unreachable ();\n }\n}");
777 d
->template_code
= template_code
;
778 d
->output_format
= INSN_OUTPUT_FORMAT_SINGLE
;
782 /* Check insn D for consistency in number of constraint alternatives. */
785 validate_insn_alternatives (class data
*d
)
789 /* Make sure all the operands have the same number of alternatives
790 in their constraints. Let N be that number. */
791 for (start
= 0; start
< d
->n_operands
; start
++)
792 if (d
->operand
[start
].n_alternatives
> 0)
797 int which_alternative
= 0;
798 int alternative_count_unsure
= 0;
799 bool seen_write
= false;
800 bool alt_mismatch
= false;
802 for (p
= d
->operand
[start
].constraint
; (c
= *p
); p
+= len
)
804 if ((c
== '%' || c
== '=' || c
== '+')
805 && p
!= d
->operand
[start
].constraint
)
806 error_at (d
->loc
, "character '%c' can only be used at the"
807 " beginning of a constraint string", c
);
809 if (c
== '=' || c
== '+')
812 /* Earlyclobber operands must always be marked write-only
814 if (!seen_write
&& c
== '&')
815 error_at (d
->loc
, "earlyclobber operands may not be"
816 " read-only in alternative %d", which_alternative
);
818 if (ISSPACE (c
) || strchr (indep_constraints
, c
))
820 else if (ISDIGIT (c
))
825 while (ISDIGIT (*q
));
829 len
= mdep_constraint_len (p
, d
->loc
, start
);
837 for (i
= 1; i
< len
; i
++)
840 error_at (d
->loc
, "NUL in alternative %d of operand %d",
841 which_alternative
, start
);
842 alternative_count_unsure
= 1;
845 else if (strchr (",#*", p
[i
]))
847 error_at (d
->loc
, "'%c' in alternative %d of operand %d",
848 p
[i
], which_alternative
, start
);
849 alternative_count_unsure
= 1;
852 if (!alternative_count_unsure
)
855 n
= d
->operand
[start
].n_alternatives
;
856 else if (n
!= d
->operand
[start
].n_alternatives
)
862 "alternative number mismatch: "
863 "operand %d has %d, operand %d has %d",
864 0, n
, start
, d
->operand
[start
].n_alternatives
);
867 error_at (d
->loc
, "operand %d has %d alternatives",
868 start
, d
->operand
[start
].n_alternatives
);
873 /* Record the insn's overall number of alternatives. */
874 d
->n_alternatives
= n
;
877 /* Verify that there are no gaps in operand numbers for INSNs. */
880 validate_insn_operands (class data
*d
)
884 for (i
= 0; i
< d
->n_operands
; ++i
)
885 if (d
->operand
[i
].seen
== 0)
886 error_at (d
->loc
, "missing operand %d", i
);
890 validate_optab_operands (class data
*d
)
892 if (!d
->name
|| d
->name
[0] == '\0' || d
->name
[0] == '*')
895 /* Miscellaneous tests. */
896 if (startswith (d
->name
, "cstore")
897 && d
->name
[strlen (d
->name
) - 1] == '4'
898 && d
->operand
[0].mode
== VOIDmode
)
900 message_at (d
->loc
, "missing mode for operand 0 of cstore");
905 /* Look at a define_insn just read. Assign its code number. Record
906 on idata the template and the number of arguments. If the insn has
907 a hairy output action, output a function for now. */
910 gen_insn (md_rtx_info
*info
)
912 struct pattern_stats stats
;
913 rtx insn
= info
->def
;
917 d
->code_number
= info
->index
;
919 if (XSTR (insn
, 0)[0])
920 d
->name
= XSTR (insn
, 0);
924 d
->compact_syntax_p
= compact_syntax
.contains (insn
);
926 /* Build up the list in the same order as the insns are seen
927 in the machine description. */
930 idata_end
= &d
->next
;
932 memset (d
->operand
, 0, sizeof (d
->operand
));
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
;
942 validate_insn_operands (d
);
943 validate_insn_alternatives (d
);
944 validate_optab_operands (d
);
946 process_template (d
, XTMPL (insn
, 3));
949 /* Look at a define_peephole just read. Assign its code number.
950 Record on idata the template and the number of arguments.
951 If the insn has a hairy output action, output it now. */
954 gen_peephole (md_rtx_info
*info
)
956 struct pattern_stats stats
;
960 d
->code_number
= info
->index
;
964 /* Build up the list in the same order as the insns are seen
965 in the machine description. */
968 idata_end
= &d
->next
;
970 memset (d
->operand
, 0, sizeof (d
->operand
));
972 /* Get the number of operands by scanning all the patterns of the
973 peephole optimizer. But ignore all the rest of the information
975 rtx peep
= info
->def
;
976 for (i
= 0; i
< XVECLEN (peep
, 0); i
++)
977 scan_operands (d
, XVECEXP (peep
, 0, i
), 0, 0);
979 get_pattern_stats (&stats
, XVEC (peep
, 0));
980 d
->n_generator_args
= 0;
981 d
->n_operands
= stats
.num_insn_operands
;
984 validate_insn_alternatives (d
);
986 process_template (d
, XTMPL (peep
, 2));
989 /* Process a define_expand just read. Assign its code number,
990 only for the purposes of `insn_gen_function'. */
993 gen_expand (md_rtx_info
*info
)
995 struct pattern_stats stats
;
996 rtx insn
= info
->def
;
1000 d
->code_number
= info
->index
;
1002 if (XSTR (insn
, 0)[0])
1003 d
->name
= XSTR (insn
, 0);
1007 /* Build up the list in the same order as the insns are seen
1008 in the machine description. */
1011 idata_end
= &d
->next
;
1013 memset (d
->operand
, 0, sizeof (d
->operand
));
1015 /* Scan the operands to get the specified predicates and modes,
1016 since expand_binop needs to know them. */
1019 for (i
= 0; i
< XVECLEN (insn
, 1); i
++)
1020 scan_operands (d
, XVECEXP (insn
, 1, i
), 0, 0);
1022 get_pattern_stats (&stats
, XVEC (insn
, 1));
1023 d
->n_generator_args
= stats
.num_generator_args
;
1024 d
->n_operands
= stats
.num_insn_operands
;
1025 d
->n_dups
= stats
.num_dups
;
1026 d
->template_code
= 0;
1027 d
->output_format
= INSN_OUTPUT_FORMAT_NONE
;
1029 validate_insn_alternatives (d
);
1030 validate_optab_operands (d
);
1035 init_insn_for_nothing (void)
1037 idata
= XCNEW (class data
);
1038 new (idata
) data ();
1039 idata
->name
= "*placeholder_for_nothing";
1040 idata
->loc
= file_location ("<internal>", 0, 0);
1041 idata_end
= &idata
->next
;
1044 extern int main (int, const char **);
1047 main (int argc
, const char **argv
)
1049 progname
= "genoutput";
1051 init_insn_for_nothing ();
1053 if (!init_rtx_reader_args (argc
, argv
))
1054 return (FATAL_EXIT_CODE
);
1058 /* Read the machine description. */
1061 while (read_md_rtx (&info
))
1062 switch (GET_CODE (info
.def
))
1068 case DEFINE_PEEPHOLE
:
1069 gen_peephole (&info
);
1076 case DEFINE_CONSTRAINT
:
1077 case DEFINE_REGISTER_CONSTRAINT
:
1078 case DEFINE_ADDRESS_CONSTRAINT
:
1079 case DEFINE_MEMORY_CONSTRAINT
:
1080 case DEFINE_SPECIAL_MEMORY_CONSTRAINT
:
1081 case DEFINE_RELAXED_MEMORY_CONSTRAINT
:
1082 note_constraint (&info
);
1090 output_operand_data ();
1091 output_insn_data ();
1092 output_get_insn_name ();
1095 return (ferror (stdout
) != 0 || have_error
1096 ? FATAL_EXIT_CODE
: SUCCESS_EXIT_CODE
);
1099 /* Return the number of occurrences of character C in string S or
1100 -1 if S is the null string. */
1103 n_occurrences (int c
, const char *s
)
1107 if (s
== 0 || *s
== '\0')
1116 /* Remove whitespace in `s' by moving up characters until the end.
1117 Return a new string. */
1120 strip_whitespace (const char *s
)
1128 p
= q
= XNEWVEC (char, strlen (s
) + 1);
1129 while ((ch
= *s
++) != '\0')
1137 /* Record just enough information about the constraint in *INFO to allow
1138 checking of operand constraint strings above, in validate_insn_alternatives.
1139 Does not validate most properties of the constraint itself; does enforce
1140 no duplicate names, no overlap with MI constraints, and no prefixes. */
1142 note_constraint (md_rtx_info
*info
)
1144 rtx exp
= info
->def
;
1145 const char *name
= XSTR (exp
, 0);
1146 class constraint_data
**iter
, **slot
, *new_cdata
;
1148 if (strcmp (name
, "TARGET_MEM_CONSTRAINT") == 0)
1150 unsigned int namelen
= strlen (name
);
1152 if (strchr (indep_constraints
, name
[0]))
1154 if (name
[1] == '\0')
1155 error_at (info
->loc
, "constraint letter '%s' cannot be "
1156 "redefined by the machine description", name
);
1158 error_at (info
->loc
, "constraint name '%s' cannot be defined by "
1159 "the machine description, as it begins with '%c'",
1164 slot
= &constraints_by_letter_table
[(unsigned int)name
[0]];
1165 for (iter
= slot
; *iter
; iter
= &(*iter
)->next_this_letter
)
1167 /* This causes slot to end up pointing to the
1168 next_this_letter field of the last constraint with a name
1169 of equal or greater length than the new constraint; hence
1170 the new constraint will be inserted after all previous
1171 constraints with names of the same length. */
1172 if ((*iter
)->namelen
>= namelen
)
1175 if (!strcmp ((*iter
)->name
, name
))
1177 error_at (info
->loc
, "redefinition of constraint '%s'", name
);
1178 message_at ((*iter
)->loc
, "previous definition is here");
1181 else if (!strncmp ((*iter
)->name
, name
, (*iter
)->namelen
))
1183 error_at (info
->loc
, "defining constraint '%s' here", name
);
1184 message_at ((*iter
)->loc
, "renders constraint '%s' "
1185 "(defined here) a prefix", (*iter
)->name
);
1188 else if (!strncmp ((*iter
)->name
, name
, namelen
))
1190 error_at (info
->loc
, "constraint '%s' is a prefix", name
);
1191 message_at ((*iter
)->loc
, "of constraint '%s' "
1192 "(defined here)", (*iter
)->name
);
1196 new_cdata
= XNEWVAR (class constraint_data
,
1197 sizeof (class constraint_data
) + namelen
);
1198 new (new_cdata
) constraint_data ();
1199 strcpy (CONST_CAST (char *, new_cdata
->name
), name
);
1200 new_cdata
->namelen
= namelen
;
1201 new_cdata
->loc
= info
->loc
;
1202 new_cdata
->next_this_letter
= *slot
;
1206 /* Return the length of the constraint name beginning at position S
1207 of an operand constraint string, or issue an error message if there
1208 is no such constraint. Does not expect to be called for generic
1211 mdep_constraint_len (const char *s
, file_location loc
, int opno
)
1213 class constraint_data
*p
;
1215 p
= constraints_by_letter_table
[(unsigned int)s
[0]];
1218 for (; p
; p
= p
->next_this_letter
)
1219 if (!strncmp (s
, p
->name
, p
->namelen
))
1222 error_at (loc
, "error: undefined machine-specific constraint "
1223 "at this point: \"%s\"", s
);
1224 message_at (loc
, "note: in operand %d", opno
);
1225 return 1; /* safe */