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 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
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
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, 51 Franklin Street, Fifth Floor, Boston, MA
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,
29 a. `name' is the name for that pattern. Nameless patterns are
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
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
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
57 b. `constraint' is the constraint for this operand.
59 c. `address_p' indicates that the operand appears within ADDRESS
62 d. `mode' is the machine mode that that operand is supposed to have.
64 e. `strict_low', is nonzero for operands contained in a STRICT_LOW_PART.
66 f. `eliminable', is nonzero for operands that are matched normally by
67 MATCH_OPERAND; it is zero for operands that should not be changed during
68 register elimination such as MATCH_OPERATORs.
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"
92 #include "gensupport.h"
94 /* No instruction can have more operands than this. Sorry for this
95 arbitrary limit, but what machine will have an instruction with
96 this many operands? */
98 #define MAX_MAX_OPERANDS 40
100 static int n_occurrences (int, const char *);
101 static const char *strip_whitespace (const char *);
103 /* insns in the machine description are assigned sequential code numbers
104 that are used by insn-recog.c (produced by genrecog) to communicate
105 to insn-output.c (produced by this program). */
107 static int next_code_number
;
109 /* This counts all definitions in the md file,
110 for the sake of error messages. */
112 static int next_index_number
;
114 /* This counts all operands used in the md file. The first is null. */
116 static int next_operand_number
= 1;
118 /* Record in this chain all information about the operands we will output. */
122 struct operand_data
*next
;
124 const char *predicate
;
125 const char *constraint
;
126 enum machine_mode mode
;
127 unsigned char n_alternatives
;
134 /* Begin with a null operand at index 0. */
136 static struct operand_data null_operand
=
138 0, 0, "", "", VOIDmode
, 0, 0, 0, 0, 0
141 static struct operand_data
*odata
= &null_operand
;
142 static struct operand_data
**odata_end
= &null_operand
.next
;
144 /* Must match the constants in recog.h. */
146 #define INSN_OUTPUT_FORMAT_NONE 0 /* abort */
147 #define INSN_OUTPUT_FORMAT_SINGLE 1 /* const char * */
148 #define INSN_OUTPUT_FORMAT_MULTI 2 /* const char * const * */
149 #define INSN_OUTPUT_FORMAT_FUNCTION 3 /* const char * (*)(...) */
151 /* Record in this chain all information that we will output,
152 associated with the code number of the insn. */
158 const char *template;
161 const char *filename
;
163 int n_operands
; /* Number of operands this insn recognizes */
164 int n_dups
; /* Number times match_dup appears in pattern */
165 int n_alternatives
; /* Number of alternatives in each constraint */
166 int operand_number
; /* Operand index in the big array. */
167 int output_format
; /* INSN_OUTPUT_FORMAT_*. */
168 struct operand_data operand
[MAX_MAX_OPERANDS
];
171 /* This variable points to the first link in the insn chain. */
173 static struct data
*idata
, **idata_end
= &idata
;
175 static void output_prologue (void);
176 static void output_operand_data (void);
177 static void output_insn_data (void);
178 static void output_get_insn_name (void);
179 static void scan_operands (struct data
*, rtx
, int, int);
180 static int compare_operands (struct operand_data
*,
181 struct operand_data
*);
182 static void place_operands (struct data
*);
183 static void process_template (struct data
*, const char *);
184 static void validate_insn_alternatives (struct data
*);
185 static void validate_insn_operands (struct data
*);
186 static void gen_insn (rtx
, int);
187 static void gen_peephole (rtx
, int);
188 static void gen_expand (rtx
, int);
189 static void gen_split (rtx
, int);
191 #ifdef USE_MD_CONSTRAINTS
193 struct constraint_data
195 struct constraint_data
*next_this_letter
;
197 unsigned int namelen
;
201 /* This is a complete list (unlike the one in genpreds.c) of constraint
202 letters and modifiers with machine-independent meaning. The only
203 omission is digits, as these are handled specially. */
204 static const char indep_constraints
[] = ",=+%*?!#&<>EFVXgimnoprs";
206 static struct constraint_data
*
207 constraints_by_letter_table
[1 << CHAR_BIT
];
209 static int mdep_constraint_len (const char *, int, int);
210 static void note_constraint (rtx
, int);
212 #else /* !USE_MD_CONSTRAINTS */
214 static void check_constraint_len (void);
215 static int constraint_len (const char *, int);
217 #endif /* !USE_MD_CONSTRAINTS */
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 \"rtl.h\"\n");
233 printf ("#include \"expr.h\"\n");
234 printf ("#include \"insn-codes.h\"\n");
235 printf ("#include \"tm_p.h\"\n");
236 printf ("#include \"function.h\"\n");
237 printf ("#include \"regs.h\"\n");
238 printf ("#include \"hard-reg-set.h\"\n");
239 printf ("#include \"real.h\"\n");
240 printf ("#include \"insn-config.h\"\n\n");
241 printf ("#include \"conditions.h\"\n");
242 printf ("#include \"insn-attr.h\"\n\n");
243 printf ("#include \"recog.h\"\n\n");
244 printf ("#include \"toplev.h\"\n");
245 printf ("#include \"output.h\"\n");
246 printf ("#include \"target.h\"\n");
247 printf ("#include \"tm-constrs.h\"\n");
251 output_operand_data (void)
253 struct operand_data
*d
;
255 printf ("\nstatic const struct insn_operand_data operand_data[] = \n{\n");
257 for (d
= odata
; d
; d
= d
->next
)
262 d
->predicate
&& d
->predicate
[0] ? d
->predicate
: "0");
264 printf (" \"%s\",\n", d
->constraint
? d
->constraint
: "");
266 printf (" %smode,\n", GET_MODE_NAME (d
->mode
));
268 printf (" %d,\n", d
->strict_low
);
270 printf (" %d\n", d
->eliminable
);
278 output_insn_data (void)
282 int next_name_offset
;
283 const char * last_name
= 0;
284 const char * next_name
= 0;
287 for (n
= idata
, next_name_offset
= 1; n
; n
= n
->next
, next_name_offset
++)
294 printf ("#if GCC_VERSION >= 2007\n__extension__\n#endif\n");
295 printf ("\nconst struct insn_data insn_data[] = \n{\n");
297 for (d
= idata
; d
; d
= d
->next
)
299 printf (" /* %s:%d */\n", d
->filename
, d
->lineno
);
304 printf (" \"%s\",\n", d
->name
);
308 for (n
= d
->next
, next_name_offset
= 1; n
;
309 n
= n
->next
, next_name_offset
++)
321 if (next_name
&& (last_name
== 0
322 || name_offset
> next_name_offset
/ 2))
323 printf (" \"%s-%d\",\n", next_name
,
324 next_name_offset
- name_offset
);
326 printf (" \"%s+%d\",\n", last_name
, name_offset
);
329 switch (d
->output_format
)
331 case INSN_OUTPUT_FORMAT_NONE
:
332 printf ("#if HAVE_DESIGNATED_INITIALIZERS\n");
333 printf (" { 0 },\n");
335 printf (" { 0, 0, 0 },\n");
338 case INSN_OUTPUT_FORMAT_SINGLE
:
340 const char *p
= d
->template;
343 printf ("#if HAVE_DESIGNATED_INITIALIZERS\n");
344 printf (" { .single =\n");
351 if (IS_VSPACE (*p
) && prev
!= '\\')
353 /* Preserve two consecutive \n's or \r's, but treat \r\n
354 as a single newline. */
355 if (*p
== '\n' && prev
!= '\r')
364 printf ("#if HAVE_DESIGNATED_INITIALIZERS\n");
367 printf (" 0, 0 },\n");
371 case INSN_OUTPUT_FORMAT_MULTI
:
372 printf ("#if HAVE_DESIGNATED_INITIALIZERS\n");
373 printf (" { .multi = output_%d },\n", d
->code_number
);
375 printf (" { 0, output_%d, 0 },\n", d
->code_number
);
378 case INSN_OUTPUT_FORMAT_FUNCTION
:
379 printf ("#if HAVE_DESIGNATED_INITIALIZERS\n");
380 printf (" { .function = output_%d },\n", d
->code_number
);
382 printf (" { 0, 0, output_%d },\n", d
->code_number
);
389 if (d
->name
&& d
->name
[0] != '*')
390 printf (" (insn_gen_fn) gen_%s,\n", d
->name
);
394 printf (" &operand_data[%d],\n", d
->operand_number
);
395 printf (" %d,\n", d
->n_operands
);
396 printf (" %d,\n", d
->n_dups
);
397 printf (" %d,\n", d
->n_alternatives
);
398 printf (" %d\n", d
->output_format
);
406 output_get_insn_name (void)
408 printf ("const char *\n");
409 printf ("get_insn_name (int code)\n");
411 printf (" if (code == NOOP_MOVE_INSN_CODE)\n");
412 printf (" return \"NOOP_MOVE\";\n");
414 printf (" return insn_data[code].name;\n");
419 /* Stores in max_opno the largest operand number present in `part', if
420 that is larger than the previous value of max_opno, and the rest of
421 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. */
430 scan_operands (struct data
*d
, rtx part
, int this_address_p
,
434 const char *format_ptr
;
440 switch (GET_CODE (part
))
443 opno
= XINT (part
, 0);
446 if (max_opno
>= MAX_MAX_OPERANDS
)
448 message_with_line (d
->lineno
,
449 "maximum number of operands exceeded");
453 if (d
->operand
[opno
].seen
)
455 message_with_line (d
->lineno
,
456 "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);
475 if (max_opno
>= MAX_MAX_OPERANDS
)
477 message_with_line (d
->lineno
,
478 "maximum number of operands exceeded");
482 if (d
->operand
[opno
].seen
)
484 message_with_line (d
->lineno
,
485 "repeated operand number %d\n", opno
);
489 d
->operand
[opno
].seen
= 1;
490 d
->operand
[opno
].mode
= GET_MODE (part
);
491 d
->operand
[opno
].strict_low
= 0;
492 d
->operand
[opno
].predicate
= "scratch_operand";
493 d
->operand
[opno
].constraint
= strip_whitespace (XSTR (part
, 1));
494 d
->operand
[opno
].n_alternatives
495 = n_occurrences (',', d
->operand
[opno
].constraint
) + 1;
496 d
->operand
[opno
].address_p
= 0;
497 d
->operand
[opno
].eliminable
= 0;
502 opno
= XINT (part
, 0);
505 if (max_opno
>= MAX_MAX_OPERANDS
)
507 message_with_line (d
->lineno
,
508 "maximum number of operands exceeded");
512 if (d
->operand
[opno
].seen
)
514 message_with_line (d
->lineno
,
515 "repeated operand number %d\n", opno
);
519 d
->operand
[opno
].seen
= 1;
520 d
->operand
[opno
].mode
= GET_MODE (part
);
521 d
->operand
[opno
].strict_low
= 0;
522 d
->operand
[opno
].predicate
= XSTR (part
, 1);
523 d
->operand
[opno
].constraint
= 0;
524 d
->operand
[opno
].address_p
= 0;
525 d
->operand
[opno
].eliminable
= 0;
526 for (i
= 0; i
< XVECLEN (part
, 2); i
++)
527 scan_operands (d
, XVECEXP (part
, 2, i
), 0, 0);
537 scan_operands (d
, XEXP (part
, 0), 1, 0);
540 case STRICT_LOW_PART
:
541 scan_operands (d
, XEXP (part
, 0), 0, 1);
548 format_ptr
= GET_RTX_FORMAT (GET_CODE (part
));
550 for (i
= 0; i
< GET_RTX_LENGTH (GET_CODE (part
)); i
++)
551 switch (*format_ptr
++)
555 scan_operands (d
, XEXP (part
, i
), 0, 0);
558 if (XVEC (part
, i
) != NULL
)
559 for (j
= 0; j
< XVECLEN (part
, i
); j
++)
560 scan_operands (d
, XVECEXP (part
, i
, j
), 0, 0);
565 /* Compare two operands for content equality. */
568 compare_operands (struct operand_data
*d0
, struct operand_data
*d1
)
578 if (strcmp (p0
, p1
) != 0)
587 if (strcmp (p0
, p1
) != 0)
590 if (d0
->mode
!= d1
->mode
)
593 if (d0
->strict_low
!= d1
->strict_low
)
596 if (d0
->eliminable
!= d1
->eliminable
)
602 /* Scan the list of operands we've already committed to output and either
603 find a subsequence that is the same, or allocate a new one at the end. */
606 place_operands (struct data
*d
)
608 struct operand_data
*od
, *od2
;
611 if (d
->n_operands
== 0)
613 d
->operand_number
= 0;
617 /* Brute force substring search. */
618 for (od
= odata
, i
= 0; od
; od
= od
->next
, i
= 0)
619 if (compare_operands (od
, &d
->operand
[0]))
625 if (i
== d
->n_operands
)
629 if (! compare_operands (od2
, &d
->operand
[i
]))
631 ++i
, od2
= od2
->next
;
635 /* Either partial match at the end of the list, or no match. In either
636 case, we tack on what operands are remaining to the end of the list. */
638 d
->operand_number
= next_operand_number
- i
;
639 for (; i
< d
->n_operands
; ++i
)
641 od2
= &d
->operand
[i
];
643 odata_end
= &od2
->next
;
644 od2
->index
= next_operand_number
++;
650 d
->operand_number
= od
->index
;
655 /* Process an assembler template from a define_insn or a define_peephole.
656 It is either the assembler code template, a list of assembler code
657 templates, or C code to generate the assembler code template. */
660 process_template (struct data
*d
, const char *template)
665 /* Templates starting with * contain straight code to be run. */
666 if (template[0] == '*')
669 d
->output_format
= INSN_OUTPUT_FORMAT_FUNCTION
;
671 puts ("\nstatic const char *");
672 printf ("output_%d (rtx *operands ATTRIBUTE_UNUSED, rtx insn ATTRIBUTE_UNUSED)\n",
675 print_rtx_ptr_loc (template);
680 /* If the assembler code template starts with a @ it is a newline-separated
681 list of assembler code templates, one for each alternative. */
682 else if (template[0] == '@')
685 d
->output_format
= INSN_OUTPUT_FORMAT_MULTI
;
687 printf ("\nstatic const char * const output_%d[] = {\n", d
->code_number
);
689 for (i
= 0, cp
= &template[1]; *cp
; )
693 while (ISSPACE (*cp
))
698 for (ep
= sp
= cp
; !IS_VSPACE (*ep
) && *ep
!= '\0'; ++ep
)
703 message_with_line (d
->lineno
,
704 "trailing whitespace in output template");
716 message_with_line (d
->lineno
,
717 "'@' is redundant for output template with single alternative");
718 if (i
!= d
->n_alternatives
)
720 message_with_line (d
->lineno
,
721 "wrong number of alternatives in the output template");
729 d
->template = template;
730 d
->output_format
= INSN_OUTPUT_FORMAT_SINGLE
;
734 /* Check insn D for consistency in number of constraint alternatives. */
737 validate_insn_alternatives (struct data
*d
)
741 /* Make sure all the operands have the same number of alternatives
742 in their constraints. Let N be that number. */
743 for (start
= 0; start
< d
->n_operands
; start
++)
744 if (d
->operand
[start
].n_alternatives
> 0)
749 int which_alternative
= 0;
750 int alternative_count_unsure
= 0;
752 for (p
= d
->operand
[start
].constraint
; (c
= *p
); p
+= len
)
754 #ifdef USE_MD_CONSTRAINTS
755 if (ISSPACE (c
) || strchr (indep_constraints
, c
))
757 else if (ISDIGIT (c
))
762 while (ISDIGIT (*q
));
766 len
= mdep_constraint_len (p
, d
->lineno
, start
);
768 len
= CONSTRAINT_LEN (c
, p
);
770 if (len
< 1 || (len
> 1 && strchr (",#*+=&%!0123456789", c
)))
772 message_with_line (d
->lineno
,
773 "invalid length %d for char '%c' in alternative %d of operand %d",
774 len
, c
, which_alternative
, start
);
786 for (i
= 1; i
< len
; i
++)
789 message_with_line (d
->lineno
,
790 "NUL in alternative %d of operand %d",
791 which_alternative
, start
);
792 alternative_count_unsure
= 1;
795 else if (strchr (",#*", p
[i
]))
797 message_with_line (d
->lineno
,
798 "'%c' in alternative %d of operand %d",
799 p
[i
], which_alternative
, start
);
800 alternative_count_unsure
= 1;
803 if (alternative_count_unsure
)
806 n
= d
->operand
[start
].n_alternatives
;
807 else if (n
!= d
->operand
[start
].n_alternatives
)
809 message_with_line (d
->lineno
,
810 "wrong number of alternatives in operand %d",
816 /* Record the insn's overall number of alternatives. */
817 d
->n_alternatives
= n
;
820 /* Verify that there are no gaps in operand numbers for INSNs. */
823 validate_insn_operands (struct data
*d
)
827 for (i
= 0; i
< d
->n_operands
; ++i
)
828 if (d
->operand
[i
].seen
== 0)
830 message_with_line (d
->lineno
, "missing operand %d", i
);
835 /* Look at a define_insn just read. Assign its code number. Record
836 on idata the template and the number of arguments. If the insn has
837 a hairy output action, output a function for now. */
840 gen_insn (rtx insn
, int lineno
)
842 struct data
*d
= XNEW (struct data
);
845 d
->code_number
= next_code_number
;
846 d
->index_number
= next_index_number
;
847 d
->filename
= read_rtx_filename
;
849 if (XSTR (insn
, 0)[0])
850 d
->name
= XSTR (insn
, 0);
854 /* Build up the list in the same order as the insns are seen
855 in the machine description. */
858 idata_end
= &d
->next
;
862 memset (d
->operand
, 0, sizeof (d
->operand
));
864 for (i
= 0; i
< XVECLEN (insn
, 1); i
++)
865 scan_operands (d
, XVECEXP (insn
, 1, i
), 0, 0);
867 d
->n_operands
= max_opno
+ 1;
868 d
->n_dups
= num_dups
;
870 #ifndef USE_MD_CONSTRAINTS
871 check_constraint_len ();
873 validate_insn_operands (d
);
874 validate_insn_alternatives (d
);
876 process_template (d
, XTMPL (insn
, 3));
879 /* Look at a define_peephole just read. Assign its code number.
880 Record on idata the template and the number of arguments.
881 If the insn has a hairy output action, output it now. */
884 gen_peephole (rtx peep
, int lineno
)
886 struct data
*d
= XNEW (struct data
);
889 d
->code_number
= next_code_number
;
890 d
->index_number
= next_index_number
;
891 d
->filename
= read_rtx_filename
;
895 /* Build up the list in the same order as the insns are seen
896 in the machine description. */
899 idata_end
= &d
->next
;
903 memset (d
->operand
, 0, sizeof (d
->operand
));
905 /* Get the number of operands by scanning all the patterns of the
906 peephole optimizer. But ignore all the rest of the information
908 for (i
= 0; i
< XVECLEN (peep
, 0); i
++)
909 scan_operands (d
, XVECEXP (peep
, 0, i
), 0, 0);
911 d
->n_operands
= max_opno
+ 1;
914 validate_insn_alternatives (d
);
916 process_template (d
, XTMPL (peep
, 2));
919 /* Process a define_expand just read. Assign its code number,
920 only for the purposes of `insn_gen_function'. */
923 gen_expand (rtx insn
, int lineno
)
925 struct data
*d
= XNEW (struct data
);
928 d
->code_number
= next_code_number
;
929 d
->index_number
= next_index_number
;
930 d
->filename
= read_rtx_filename
;
932 if (XSTR (insn
, 0)[0])
933 d
->name
= XSTR (insn
, 0);
937 /* Build up the list in the same order as the insns are seen
938 in the machine description. */
941 idata_end
= &d
->next
;
945 memset (d
->operand
, 0, sizeof (d
->operand
));
947 /* Scan the operands to get the specified predicates and modes,
948 since expand_binop needs to know them. */
951 for (i
= 0; i
< XVECLEN (insn
, 1); i
++)
952 scan_operands (d
, XVECEXP (insn
, 1, i
), 0, 0);
954 d
->n_operands
= max_opno
+ 1;
955 d
->n_dups
= num_dups
;
957 d
->output_format
= INSN_OUTPUT_FORMAT_NONE
;
959 validate_insn_alternatives (d
);
963 /* Process a define_split just read. Assign its code number,
964 only for reasons of consistency and to simplify genrecog. */
967 gen_split (rtx split
, int lineno
)
969 struct data
*d
= XNEW (struct data
);
972 d
->code_number
= next_code_number
;
973 d
->index_number
= next_index_number
;
974 d
->filename
= read_rtx_filename
;
978 /* Build up the list in the same order as the insns are seen
979 in the machine description. */
982 idata_end
= &d
->next
;
986 memset (d
->operand
, 0, sizeof (d
->operand
));
988 /* Get the number of operands by scanning all the patterns of the
989 split patterns. But ignore all the rest of the information thus
991 for (i
= 0; i
< XVECLEN (split
, 0); i
++)
992 scan_operands (d
, XVECEXP (split
, 0, i
), 0, 0);
994 d
->n_operands
= max_opno
+ 1;
996 d
->n_alternatives
= 0;
998 d
->output_format
= INSN_OUTPUT_FORMAT_NONE
;
1003 extern int main (int, char **);
1006 main (int argc
, char **argv
)
1010 progname
= "genoutput";
1012 if (init_md_reader_args (argc
, argv
) != SUCCESS_EXIT_CODE
)
1013 return (FATAL_EXIT_CODE
);
1016 next_code_number
= 0;
1017 next_index_number
= 0;
1019 /* Read the machine description. */
1025 desc
= read_md_rtx (&line_no
, &next_code_number
);
1029 switch (GET_CODE (desc
))
1032 gen_insn (desc
, line_no
);
1035 case DEFINE_PEEPHOLE
:
1036 gen_peephole (desc
, line_no
);
1040 gen_expand (desc
, line_no
);
1044 case DEFINE_PEEPHOLE2
:
1045 gen_split (desc
, line_no
);
1048 #ifdef USE_MD_CONSTRAINTS
1049 case DEFINE_CONSTRAINT
:
1050 case DEFINE_REGISTER_CONSTRAINT
:
1051 case DEFINE_ADDRESS_CONSTRAINT
:
1052 case DEFINE_MEMORY_CONSTRAINT
:
1053 note_constraint (desc
, line_no
);
1060 next_index_number
++;
1064 output_operand_data ();
1065 output_insn_data ();
1066 output_get_insn_name ();
1069 return (ferror (stdout
) != 0 || have_error
1070 ? FATAL_EXIT_CODE
: SUCCESS_EXIT_CODE
);
1073 /* Return the number of occurrences of character C in string S or
1074 -1 if S is the null string. */
1077 n_occurrences (int c
, const char *s
)
1081 if (s
== 0 || *s
== '\0')
1090 /* Remove whitespace in `s' by moving up characters until the end.
1091 Return a new string. */
1094 strip_whitespace (const char *s
)
1102 p
= q
= XNEWVEC (char, strlen (s
) + 1);
1103 while ((ch
= *s
++) != '\0')
1111 #ifdef USE_MD_CONSTRAINTS
1113 /* Record just enough information about a constraint to allow checking
1114 of operand constraint strings above, in validate_insn_alternatives.
1115 Does not validate most properties of the constraint itself; does
1116 enforce no duplicate names, no overlap with MI constraints, and no
1117 prefixes. EXP is the define_*constraint form, LINENO the line number
1118 reported by the reader. */
1120 note_constraint (rtx exp
, int lineno
)
1122 const char *name
= XSTR (exp
, 0);
1123 unsigned int namelen
= strlen (name
);
1124 struct constraint_data
**iter
, **slot
, *new;
1126 if (strchr (indep_constraints
, name
[0]))
1128 if (name
[1] == '\0')
1129 message_with_line (lineno
, "constraint letter '%s' cannot be "
1130 "redefined by the machine description", name
);
1132 message_with_line (lineno
, "constraint name '%s' cannot be defined by "
1133 "the machine description, as it begins with '%c'",
1139 slot
= &constraints_by_letter_table
[(unsigned int)name
[0]];
1140 for (iter
= slot
; *iter
; iter
= &(*iter
)->next_this_letter
)
1142 /* This causes slot to end up pointing to the
1143 next_this_letter field of the last constraint with a name
1144 of equal or greater length than the new constraint; hence
1145 the new constraint will be inserted after all previous
1146 constraints with names of the same length. */
1147 if ((*iter
)->namelen
>= namelen
)
1150 if (!strcmp ((*iter
)->name
, name
))
1152 message_with_line (lineno
, "redefinition of constraint '%s'", name
);
1153 message_with_line ((*iter
)->lineno
, "previous definition is here");
1157 else if (!strncmp ((*iter
)->name
, name
, (*iter
)->namelen
))
1159 message_with_line (lineno
, "defining constraint '%s' here", name
);
1160 message_with_line ((*iter
)->lineno
, "renders constraint '%s' "
1161 "(defined here) a prefix", (*iter
)->name
);
1165 else if (!strncmp ((*iter
)->name
, name
, namelen
))
1167 message_with_line (lineno
, "constraint '%s' is a prefix", name
);
1168 message_with_line ((*iter
)->lineno
, "of constraint '%s' "
1169 "(defined here)", (*iter
)->name
);
1174 new = xmalloc (sizeof (struct constraint_data
) + namelen
);
1175 strcpy ((char *)new + offsetof(struct constraint_data
, name
), name
);
1176 new->namelen
= namelen
;
1177 new->lineno
= lineno
;
1178 new->next_this_letter
= *slot
;
1182 /* Return the length of the constraint name beginning at position S
1183 of an operand constraint string, or issue an error message if there
1184 is no such constraint. Does not expect to be called for generic
1187 mdep_constraint_len (const char *s
, int lineno
, int opno
)
1189 struct constraint_data
*p
;
1191 p
= constraints_by_letter_table
[(unsigned int)s
[0]];
1194 for (; p
; p
= p
->next_this_letter
)
1195 if (!strncmp (s
, p
->name
, p
->namelen
))
1198 message_with_line (lineno
,
1199 "error: undefined machine-specific constraint "
1200 "at this point: \"%s\"", s
);
1201 message_with_line (lineno
, "note: in operand %d", opno
);
1203 return 1; /* safe */
1207 /* Verify that DEFAULT_CONSTRAINT_LEN is used properly and not
1208 tampered with. This isn't bullet-proof, but it should catch
1209 most genuine mistakes. */
1211 check_constraint_len (void)
1216 for (p
= ",#*+=&%!1234567890"; *p
; p
++)
1217 for (d
= -9; d
< 9; d
++)
1218 gcc_assert (constraint_len (p
, d
) == d
);
1222 constraint_len (const char *p
, int genoutput_default_constraint_len
)
1224 /* Check that we still match defaults.h . First we do a generation-time
1225 check that fails if the value is not the expected one... */
1226 gcc_assert (DEFAULT_CONSTRAINT_LEN (*p
, p
) == 1);
1227 /* And now a compile-time check that should give a diagnostic if the
1228 definition doesn't exactly match. */
1229 #define DEFAULT_CONSTRAINT_LEN(C,STR) 1
1230 /* Now re-define DEFAULT_CONSTRAINT_LEN so that we can verify it is
1232 #undef DEFAULT_CONSTRAINT_LEN
1233 #define DEFAULT_CONSTRAINT_LEN(C,STR) \
1234 ((C) != *p || STR != p ? -1 : genoutput_default_constraint_len)
1235 return CONSTRAINT_LEN (*p
, p
);
1236 /* And set it back. */
1237 #undef DEFAULT_CONSTRAINT_LEN
1238 #define DEFAULT_CONSTRAINT_LEN(C,STR) 1