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 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, 59 Temple Place - Suite 330, 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. 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
79 [(set (match_operand:DF 0 "general_operand" "")
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. */
90 #include "coretypes.h"
94 #include "gensupport.h"
96 /* No instruction can have more operands than this. Sorry for this
97 arbitrary limit, but what machine will have an instruction with
98 this many operands? */
100 #define MAX_MAX_OPERANDS 40
102 static int n_occurrences (int, const char *);
103 static const char *strip_whitespace (const char *);
105 /* insns in the machine description are assigned sequential code numbers
106 that are used by insn-recog.c (produced by genrecog) to communicate
107 to insn-output.c (produced by this program). */
109 static int next_code_number
;
111 /* This counts all definitions in the md file,
112 for the sake of error messages. */
114 static int next_index_number
;
116 /* This counts all operands used in the md file. The first is null. */
118 static int next_operand_number
= 1;
120 /* Record in this chain all information about the operands we will output. */
124 struct operand_data
*next
;
126 const char *predicate
;
127 const char *constraint
;
128 enum machine_mode mode
;
129 unsigned char n_alternatives
;
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. */
160 const char *template;
163 const char *filename
;
165 int n_operands
; /* Number of operands this insn recognizes */
166 int n_dups
; /* Number times match_dup appears in pattern */
167 int n_alternatives
; /* Number of alternatives in each constraint */
168 int operand_number
; /* Operand index in the big array. */
169 int output_format
; /* INSN_OUTPUT_FORMAT_*. */
170 struct operand_data operand
[MAX_MAX_OPERANDS
];
173 /* This variable points to the first link in the insn chain. */
175 static struct data
*idata
, **idata_end
= &idata
;
177 static void output_prologue (void);
178 static void output_operand_data (void);
179 static void output_insn_data (void);
180 static void output_get_insn_name (void);
181 static void scan_operands (struct data
*, rtx
, int, int);
182 static int compare_operands (struct operand_data
*,
183 struct operand_data
*);
184 static void place_operands (struct data
*);
185 static void process_template (struct data
*, const char *);
186 static void validate_insn_alternatives (struct data
*);
187 static void validate_insn_operands (struct data
*);
188 static void gen_insn (rtx
, int);
189 static void gen_peephole (rtx
, int);
190 static void gen_expand (rtx
, int);
191 static void gen_split (rtx
, int);
192 static void check_constraint_len (void);
193 static int constraint_len (const char *, int);
196 get_insn_name (int index
)
198 static char buf
[100];
200 struct data
*i
, *last_named
= NULL
;
201 for (i
= idata
; i
; i
= i
->next
)
203 if (i
->index_number
== index
)
210 sprintf(buf
, "%s+%d", last_named
->name
, index
- last_named
->index_number
);
212 sprintf(buf
, "insn %d", index
);
218 output_prologue (void)
220 printf ("/* Generated automatically by the program `genoutput'\n\
221 from the machine description file `md'. */\n\n");
223 printf ("#include \"config.h\"\n");
224 printf ("#include \"system.h\"\n");
225 printf ("#include \"coretypes.h\"\n");
226 printf ("#include \"tm.h\"\n");
227 printf ("#include \"flags.h\"\n");
228 printf ("#include \"ggc.h\"\n");
229 printf ("#include \"rtl.h\"\n");
230 printf ("#include \"expr.h\"\n");
231 printf ("#include \"insn-codes.h\"\n");
232 printf ("#include \"tm_p.h\"\n");
233 printf ("#include \"function.h\"\n");
234 printf ("#include \"regs.h\"\n");
235 printf ("#include \"hard-reg-set.h\"\n");
236 printf ("#include \"real.h\"\n");
237 printf ("#include \"insn-config.h\"\n\n");
238 printf ("#include \"conditions.h\"\n");
239 printf ("#include \"insn-attr.h\"\n\n");
240 printf ("#include \"recog.h\"\n\n");
241 printf ("#include \"toplev.h\"\n");
242 printf ("#include \"output.h\"\n");
243 printf ("#include \"target.h\"\n");
247 output_operand_data (void)
249 struct operand_data
*d
;
251 printf ("\nstatic const struct insn_operand_data operand_data[] = \n{\n");
253 for (d
= odata
; d
; d
= d
->next
)
258 d
->predicate
&& d
->predicate
[0] ? d
->predicate
: "0");
260 printf (" \"%s\",\n", d
->constraint
? d
->constraint
: "");
262 printf (" %smode,\n", GET_MODE_NAME (d
->mode
));
264 printf (" %d,\n", d
->strict_low
);
266 printf (" %d\n", d
->eliminable
);
274 output_insn_data (void)
278 int next_name_offset
;
279 const char * last_name
= 0;
280 const char * next_name
= 0;
283 for (n
= idata
, next_name_offset
= 1; n
; n
= n
->next
, next_name_offset
++)
290 printf ("#if GCC_VERSION >= 2007\n__extension__\n#endif\n");
291 printf ("\nconst struct insn_data insn_data[] = \n{\n");
293 for (d
= idata
; d
; d
= d
->next
)
295 printf (" /* %s:%d */\n", d
->filename
, d
->lineno
);
300 printf (" \"%s\",\n", d
->name
);
304 for (n
= d
->next
, next_name_offset
= 1; n
;
305 n
= n
->next
, next_name_offset
++)
317 if (next_name
&& (last_name
== 0
318 || name_offset
> next_name_offset
/ 2))
319 printf (" \"%s-%d\",\n", next_name
,
320 next_name_offset
- name_offset
);
322 printf (" \"%s+%d\",\n", last_name
, name_offset
);
325 switch (d
->output_format
)
327 case INSN_OUTPUT_FORMAT_NONE
:
328 printf ("#if HAVE_DESIGNATED_INITIALIZERS\n");
329 printf (" { 0 },\n");
331 printf (" { 0, 0, 0 },\n");
334 case INSN_OUTPUT_FORMAT_SINGLE
:
336 const char *p
= d
->template;
339 printf ("#if HAVE_DESIGNATED_INITIALIZERS\n");
340 printf (" { .single =\n");
347 if (IS_VSPACE (*p
) && prev
!= '\\')
349 /* Preserve two consecutive \n's or \r's, but treat \r\n
350 as a single newline. */
351 if (*p
== '\n' && prev
!= '\r')
360 printf ("#if HAVE_DESIGNATED_INITIALIZERS\n");
363 printf (" 0, 0 },\n");
367 case INSN_OUTPUT_FORMAT_MULTI
:
368 printf ("#if HAVE_DESIGNATED_INITIALIZERS\n");
369 printf (" { .multi = output_%d },\n", d
->code_number
);
371 printf (" { 0, output_%d, 0 },\n", d
->code_number
);
374 case INSN_OUTPUT_FORMAT_FUNCTION
:
375 printf ("#if HAVE_DESIGNATED_INITIALIZERS\n");
376 printf (" { .function = output_%d },\n", d
->code_number
);
378 printf (" { 0, 0, output_%d },\n", d
->code_number
);
385 if (d
->name
&& d
->name
[0] != '*')
386 printf (" (insn_gen_fn) gen_%s,\n", d
->name
);
390 printf (" &operand_data[%d],\n", d
->operand_number
);
391 printf (" %d,\n", d
->n_operands
);
392 printf (" %d,\n", d
->n_dups
);
393 printf (" %d,\n", d
->n_alternatives
);
394 printf (" %d\n", d
->output_format
);
402 output_get_insn_name (void)
404 printf ("const char *\n");
405 printf ("get_insn_name (int code)\n");
407 printf (" if (code == NOOP_MOVE_INSN_CODE)\n");
408 printf (" return \"NOOP_MOVE\";\n");
410 printf (" return insn_data[code].name;\n");
415 /* Stores in max_opno the largest operand number present in `part', if
416 that is larger than the previous value of max_opno, and the rest of
417 the operand data into `d->operand[i]'.
419 THIS_ADDRESS_P is nonzero if the containing rtx was an ADDRESS.
420 THIS_STRICT_LOW is nonzero if the containing rtx was a STRICT_LOW_PART. */
426 scan_operands (struct data
*d
, rtx part
, int this_address_p
,
430 const char *format_ptr
;
436 switch (GET_CODE (part
))
439 opno
= XINT (part
, 0);
442 if (max_opno
>= MAX_MAX_OPERANDS
)
444 message_with_line (d
->lineno
,
445 "maximum number of operands exceeded");
449 if (d
->operand
[opno
].seen
)
451 message_with_line (d
->lineno
,
452 "repeated operand number %d\n", opno
);
456 d
->operand
[opno
].seen
= 1;
457 d
->operand
[opno
].mode
= GET_MODE (part
);
458 d
->operand
[opno
].strict_low
= this_strict_low
;
459 d
->operand
[opno
].predicate
= XSTR (part
, 1);
460 d
->operand
[opno
].constraint
= strip_whitespace (XSTR (part
, 2));
461 d
->operand
[opno
].n_alternatives
462 = n_occurrences (',', d
->operand
[opno
].constraint
) + 1;
463 d
->operand
[opno
].address_p
= this_address_p
;
464 d
->operand
[opno
].eliminable
= 1;
468 opno
= XINT (part
, 0);
471 if (max_opno
>= MAX_MAX_OPERANDS
)
473 message_with_line (d
->lineno
,
474 "maximum number of operands exceeded");
478 if (d
->operand
[opno
].seen
)
480 message_with_line (d
->lineno
,
481 "repeated operand number %d\n", opno
);
485 d
->operand
[opno
].seen
= 1;
486 d
->operand
[opno
].mode
= GET_MODE (part
);
487 d
->operand
[opno
].strict_low
= 0;
488 d
->operand
[opno
].predicate
= "scratch_operand";
489 d
->operand
[opno
].constraint
= strip_whitespace (XSTR (part
, 1));
490 d
->operand
[opno
].n_alternatives
491 = n_occurrences (',', d
->operand
[opno
].constraint
) + 1;
492 d
->operand
[opno
].address_p
= 0;
493 d
->operand
[opno
].eliminable
= 0;
498 opno
= XINT (part
, 0);
501 if (max_opno
>= MAX_MAX_OPERANDS
)
503 message_with_line (d
->lineno
,
504 "maximum number of operands exceeded");
508 if (d
->operand
[opno
].seen
)
510 message_with_line (d
->lineno
,
511 "repeated operand number %d\n", opno
);
515 d
->operand
[opno
].seen
= 1;
516 d
->operand
[opno
].mode
= GET_MODE (part
);
517 d
->operand
[opno
].strict_low
= 0;
518 d
->operand
[opno
].predicate
= XSTR (part
, 1);
519 d
->operand
[opno
].constraint
= 0;
520 d
->operand
[opno
].address_p
= 0;
521 d
->operand
[opno
].eliminable
= 0;
522 for (i
= 0; i
< XVECLEN (part
, 2); i
++)
523 scan_operands (d
, XVECEXP (part
, 2, i
), 0, 0);
533 scan_operands (d
, XEXP (part
, 0), 1, 0);
536 case STRICT_LOW_PART
:
537 scan_operands (d
, XEXP (part
, 0), 0, 1);
544 format_ptr
= GET_RTX_FORMAT (GET_CODE (part
));
546 for (i
= 0; i
< GET_RTX_LENGTH (GET_CODE (part
)); i
++)
547 switch (*format_ptr
++)
551 scan_operands (d
, XEXP (part
, i
), 0, 0);
554 if (XVEC (part
, i
) != NULL
)
555 for (j
= 0; j
< XVECLEN (part
, i
); j
++)
556 scan_operands (d
, XVECEXP (part
, i
, j
), 0, 0);
561 /* Compare two operands for content equality. */
564 compare_operands (struct operand_data
*d0
, struct operand_data
*d1
)
574 if (strcmp (p0
, p1
) != 0)
583 if (strcmp (p0
, p1
) != 0)
586 if (d0
->mode
!= d1
->mode
)
589 if (d0
->strict_low
!= d1
->strict_low
)
592 if (d0
->eliminable
!= d1
->eliminable
)
598 /* Scan the list of operands we've already committed to output and either
599 find a subsequence that is the same, or allocate a new one at the end. */
602 place_operands (struct data
*d
)
604 struct operand_data
*od
, *od2
;
607 if (d
->n_operands
== 0)
609 d
->operand_number
= 0;
613 /* Brute force substring search. */
614 for (od
= odata
, i
= 0; od
; od
= od
->next
, i
= 0)
615 if (compare_operands (od
, &d
->operand
[0]))
621 if (i
== d
->n_operands
)
625 if (! compare_operands (od2
, &d
->operand
[i
]))
627 ++i
, od2
= od2
->next
;
631 /* Either partial match at the end of the list, or no match. In either
632 case, we tack on what operands are remaining to the end of the list. */
634 d
->operand_number
= next_operand_number
- i
;
635 for (; i
< d
->n_operands
; ++i
)
637 od2
= &d
->operand
[i
];
639 odata_end
= &od2
->next
;
640 od2
->index
= next_operand_number
++;
646 d
->operand_number
= od
->index
;
651 /* Process an assembler template from a define_insn or a define_peephole.
652 It is either the assembler code template, a list of assembler code
653 templates, or C code to generate the assembler code template. */
656 process_template (struct data
*d
, const char *template)
661 /* Templates starting with * contain straight code to be run. */
662 if (template[0] == '*')
665 d
->output_format
= INSN_OUTPUT_FORMAT_FUNCTION
;
667 puts ("\nstatic const char *");
668 printf ("output_%d (rtx *operands ATTRIBUTE_UNUSED, rtx insn ATTRIBUTE_UNUSED)\n",
676 /* If the assembler code template starts with a @ it is a newline-separated
677 list of assembler code templates, one for each alternative. */
678 else if (template[0] == '@')
681 d
->output_format
= INSN_OUTPUT_FORMAT_MULTI
;
683 printf ("\nstatic const char * const output_%d[] = {\n", d
->code_number
);
685 for (i
= 0, cp
= &template[1]; *cp
; )
689 while (ISSPACE (*cp
))
694 for (ep
= sp
= cp
; !IS_VSPACE (*ep
) && *ep
!= '\0'; ++ep
)
699 message_with_line (d
->lineno
,
700 "trailing whitespace in output template");
712 message_with_line (d
->lineno
,
713 "'@' is redundant for output template with single alternative");
714 if (i
!= d
->n_alternatives
)
716 message_with_line (d
->lineno
,
717 "wrong number of alternatives in the output template");
725 d
->template = template;
726 d
->output_format
= INSN_OUTPUT_FORMAT_SINGLE
;
730 /* Check insn D for consistency in number of constraint alternatives. */
733 validate_insn_alternatives (struct data
*d
)
737 /* Make sure all the operands have the same number of alternatives
738 in their constraints. Let N be that number. */
739 for (start
= 0; start
< d
->n_operands
; start
++)
740 if (d
->operand
[start
].n_alternatives
> 0)
745 int which_alternative
= 0;
746 int alternative_count_unsure
= 0;
748 for (p
= d
->operand
[start
].constraint
; (c
= *p
); p
+= len
)
750 len
= CONSTRAINT_LEN (c
, p
);
752 if (len
< 1 || (len
> 1 && strchr (",#*+=&%!0123456789", c
)))
754 message_with_line (d
->lineno
,
755 "invalid length %d for char '%c' in alternative %d of operand %d",
756 len
, c
, which_alternative
, start
);
767 for (i
= 1; i
< len
; i
++)
770 message_with_line (d
->lineno
,
771 "NUL in alternative %d of operand %d",
772 which_alternative
, start
);
773 alternative_count_unsure
= 1;
776 else if (strchr (",#*", p
[i
]))
778 message_with_line (d
->lineno
,
779 "'%c' in alternative %d of operand %d",
780 p
[i
], which_alternative
, start
);
781 alternative_count_unsure
= 1;
784 if (alternative_count_unsure
)
787 n
= d
->operand
[start
].n_alternatives
;
788 else if (n
!= d
->operand
[start
].n_alternatives
)
790 message_with_line (d
->lineno
,
791 "wrong number of alternatives in operand %d",
797 /* Record the insn's overall number of alternatives. */
798 d
->n_alternatives
= n
;
801 /* Verify that there are no gaps in operand numbers for INSNs. */
804 validate_insn_operands (struct data
*d
)
808 for (i
= 0; i
< d
->n_operands
; ++i
)
809 if (d
->operand
[i
].seen
== 0)
811 message_with_line (d
->lineno
, "missing operand %d", i
);
816 /* Look at a define_insn just read. Assign its code number. Record
817 on idata the template and the number of arguments. If the insn has
818 a hairy output action, output a function for now. */
821 gen_insn (rtx insn
, int lineno
)
823 struct data
*d
= xmalloc (sizeof (struct data
));
826 d
->code_number
= next_code_number
;
827 d
->index_number
= next_index_number
;
828 d
->filename
= read_rtx_filename
;
830 if (XSTR (insn
, 0)[0])
831 d
->name
= XSTR (insn
, 0);
835 /* Build up the list in the same order as the insns are seen
836 in the machine description. */
839 idata_end
= &d
->next
;
843 memset (d
->operand
, 0, sizeof (d
->operand
));
845 for (i
= 0; i
< XVECLEN (insn
, 1); i
++)
846 scan_operands (d
, XVECEXP (insn
, 1, i
), 0, 0);
848 d
->n_operands
= max_opno
+ 1;
849 d
->n_dups
= num_dups
;
851 check_constraint_len ();
852 validate_insn_operands (d
);
853 validate_insn_alternatives (d
);
855 process_template (d
, XTMPL (insn
, 3));
858 /* Look at a define_peephole just read. Assign its code number.
859 Record on idata the template and the number of arguments.
860 If the insn has a hairy output action, output it now. */
863 gen_peephole (rtx peep
, int lineno
)
865 struct data
*d
= xmalloc (sizeof (struct data
));
868 d
->code_number
= next_code_number
;
869 d
->index_number
= next_index_number
;
870 d
->filename
= read_rtx_filename
;
874 /* Build up the list in the same order as the insns are seen
875 in the machine description. */
878 idata_end
= &d
->next
;
882 memset (d
->operand
, 0, sizeof (d
->operand
));
884 /* Get the number of operands by scanning all the patterns of the
885 peephole optimizer. But ignore all the rest of the information
887 for (i
= 0; i
< XVECLEN (peep
, 0); i
++)
888 scan_operands (d
, XVECEXP (peep
, 0, i
), 0, 0);
890 d
->n_operands
= max_opno
+ 1;
893 validate_insn_alternatives (d
);
895 process_template (d
, XTMPL (peep
, 2));
898 /* Process a define_expand just read. Assign its code number,
899 only for the purposes of `insn_gen_function'. */
902 gen_expand (rtx insn
, int lineno
)
904 struct data
*d
= xmalloc (sizeof (struct data
));
907 d
->code_number
= next_code_number
;
908 d
->index_number
= next_index_number
;
909 d
->filename
= read_rtx_filename
;
911 if (XSTR (insn
, 0)[0])
912 d
->name
= XSTR (insn
, 0);
916 /* Build up the list in the same order as the insns are seen
917 in the machine description. */
920 idata_end
= &d
->next
;
924 memset (d
->operand
, 0, sizeof (d
->operand
));
926 /* Scan the operands to get the specified predicates and modes,
927 since expand_binop needs to know them. */
930 for (i
= 0; i
< XVECLEN (insn
, 1); i
++)
931 scan_operands (d
, XVECEXP (insn
, 1, i
), 0, 0);
933 d
->n_operands
= max_opno
+ 1;
934 d
->n_dups
= num_dups
;
936 d
->output_format
= INSN_OUTPUT_FORMAT_NONE
;
938 validate_insn_alternatives (d
);
942 /* Process a define_split just read. Assign its code number,
943 only for reasons of consistency and to simplify genrecog. */
946 gen_split (rtx split
, int lineno
)
948 struct data
*d
= xmalloc (sizeof (struct data
));
951 d
->code_number
= next_code_number
;
952 d
->index_number
= next_index_number
;
953 d
->filename
= read_rtx_filename
;
957 /* Build up the list in the same order as the insns are seen
958 in the machine description. */
961 idata_end
= &d
->next
;
965 memset (d
->operand
, 0, sizeof (d
->operand
));
967 /* Get the number of operands by scanning all the patterns of the
968 split patterns. But ignore all the rest of the information thus
970 for (i
= 0; i
< XVECLEN (split
, 0); i
++)
971 scan_operands (d
, XVECEXP (split
, 0, i
), 0, 0);
973 d
->n_operands
= max_opno
+ 1;
975 d
->n_alternatives
= 0;
977 d
->output_format
= INSN_OUTPUT_FORMAT_NONE
;
982 extern int main (int, char **);
985 main (int argc
, char **argv
)
989 progname
= "genoutput";
991 if (init_md_reader_args (argc
, argv
) != SUCCESS_EXIT_CODE
)
992 return (FATAL_EXIT_CODE
);
995 next_code_number
= 0;
996 next_index_number
= 0;
998 /* Read the machine description. */
1004 desc
= read_md_rtx (&line_no
, &next_code_number
);
1008 if (GET_CODE (desc
) == DEFINE_INSN
)
1009 gen_insn (desc
, line_no
);
1010 if (GET_CODE (desc
) == DEFINE_PEEPHOLE
)
1011 gen_peephole (desc
, line_no
);
1012 if (GET_CODE (desc
) == DEFINE_EXPAND
)
1013 gen_expand (desc
, line_no
);
1014 if (GET_CODE (desc
) == DEFINE_SPLIT
1015 || GET_CODE (desc
) == DEFINE_PEEPHOLE2
)
1016 gen_split (desc
, line_no
);
1017 next_index_number
++;
1021 output_operand_data ();
1022 output_insn_data ();
1023 output_get_insn_name ();
1026 return (ferror (stdout
) != 0 || have_error
1027 ? FATAL_EXIT_CODE
: SUCCESS_EXIT_CODE
);
1030 /* Return the number of occurrences of character C in string S or
1031 -1 if S is the null string. */
1034 n_occurrences (int c
, const char *s
)
1038 if (s
== 0 || *s
== '\0')
1047 /* Remove whitespace in `s' by moving up characters until the end.
1048 Return a new string. */
1051 strip_whitespace (const char *s
)
1059 p
= q
= xmalloc (strlen (s
) + 1);
1060 while ((ch
= *s
++) != '\0')
1068 /* Verify that DEFAULT_CONSTRAINT_LEN is used properly and not
1069 tampered with. This isn't bullet-proof, but it should catch
1070 most genuine mistakes. */
1072 check_constraint_len (void)
1077 for (p
= ",#*+=&%!1234567890"; *p
; p
++)
1078 for (d
= -9; d
< 9; d
++)
1079 gcc_assert (constraint_len (p
, d
) == d
);
1083 constraint_len (const char *p
, int genoutput_default_constraint_len
)
1085 /* Check that we still match defaults.h . First we do a generation-time
1086 check that fails if the value is not the expected one... */
1087 gcc_assert (DEFAULT_CONSTRAINT_LEN (*p
, p
) == 1);
1088 /* And now a compile-time check that should give a diagnostic if the
1089 definition doesn't exactly match. */
1090 #define DEFAULT_CONSTRAINT_LEN(C,STR) 1
1091 /* Now re-define DEFAULT_CONSTRAINT_LEN so that we can verify it is
1093 #undef DEFAULT_CONSTRAINT_LEN
1094 #define DEFAULT_CONSTRAINT_LEN(C,STR) \
1095 ((C) != *p || STR != p ? -1 : genoutput_default_constraint_len)
1096 return CONSTRAINT_LEN (*p
, p
);
1097 /* And set it back. */
1098 #undef DEFAULT_CONSTRAINT_LEN
1099 #define DEFAULT_CONSTRAINT_LEN(C,STR) 1