1 /* Support routines for the various generation passes.
2 Copyright (C) 2000 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
26 #include "gensupport.h"
29 static struct obstack obstack
;
30 struct obstack
*rtl_obstack
= &obstack
;
32 #define obstack_chunk_alloc xmalloc
33 #define obstack_chunk_free free
35 static int sequence_num
;
38 static int predicable_default
;
39 static const char *predicable_true
;
40 static const char *predicable_false
;
42 /* We initially queue all patterns, process the define_insn and
43 define_cond_exec patterns, then return them one at a time. */
49 struct queue_elem
*next
;
52 static struct queue_elem
*define_attr_queue
;
53 static struct queue_elem
**define_attr_tail
= &define_attr_queue
;
54 static struct queue_elem
*define_insn_queue
;
55 static struct queue_elem
**define_insn_tail
= &define_insn_queue
;
56 static struct queue_elem
*define_cond_exec_queue
;
57 static struct queue_elem
**define_cond_exec_tail
= &define_cond_exec_queue
;
58 static struct queue_elem
*other_queue
;
59 static struct queue_elem
**other_tail
= &other_queue
;
61 static void queue_pattern
PARAMS ((rtx
, struct queue_elem
***, int));
62 static void remove_constraints
PARAMS ((rtx
));
63 static void process_rtx
PARAMS ((rtx
, int));
65 static int is_predicable
PARAMS ((struct queue_elem
*));
66 static void identify_predicable_attribute
PARAMS ((void));
67 static int n_alternatives
PARAMS ((const char *));
68 static void collect_insn_data
PARAMS ((rtx
, int *, int *));
69 static rtx alter_predicate_for_insn
PARAMS ((rtx
, int, int, int));
70 static const char *alter_test_for_insn
PARAMS ((struct queue_elem
*,
71 struct queue_elem
*));
72 static char *shift_output_template
PARAMS ((char *, const char *, int));
73 static const char *alter_output_for_insn
PARAMS ((struct queue_elem
*,
76 static void process_one_cond_exec
PARAMS ((struct queue_elem
*));
77 static void process_define_cond_exec
PARAMS ((void));
80 message_with_line
VPARAMS ((int lineno
, const char *msg
, ...))
82 #ifndef ANSI_PROTOTYPES
90 #ifndef ANSI_PROTOTYPES
91 lineno
= va_arg (ap
, int);
92 msg
= va_arg (ap
, const char *);
95 fprintf (stderr
, "%s:%d: ", read_rtx_filename
, lineno
);
96 vfprintf (stderr
, msg
, ap
);
102 /* Queue PATTERN on LIST_TAIL. */
105 queue_pattern (pattern
, list_tail
, lineno
)
107 struct queue_elem
***list_tail
;
110 struct queue_elem
*e
= (struct queue_elem
*) xmalloc (sizeof (*e
));
115 *list_tail
= &e
->next
;
118 /* Recursively remove constraints from an rtx. */
121 remove_constraints (part
)
125 register const char *format_ptr
;
130 if (GET_CODE (part
) == MATCH_OPERAND
)
132 else if (GET_CODE (part
) == MATCH_SCRATCH
)
135 format_ptr
= GET_RTX_FORMAT (GET_CODE (part
));
137 for (i
= 0; i
< GET_RTX_LENGTH (GET_CODE (part
)); i
++)
138 switch (*format_ptr
++)
142 remove_constraints (XEXP (part
, i
));
145 if (XVEC (part
, i
) != NULL
)
146 for (j
= 0; j
< XVECLEN (part
, i
); j
++)
147 remove_constraints (XVECEXP (part
, i
, j
));
152 /* Process a top level rtx in some way, queueing as appropriate. */
155 process_rtx (desc
, lineno
)
159 switch (GET_CODE (desc
))
162 queue_pattern (desc
, &define_insn_tail
, lineno
);
165 case DEFINE_COND_EXEC
:
166 queue_pattern (desc
, &define_cond_exec_tail
, lineno
);
170 queue_pattern (desc
, &define_attr_tail
, lineno
);
173 case DEFINE_INSN_AND_SPLIT
:
175 const char *split_cond
;
180 /* Create a split with values from the insn_and_split. */
181 split
= rtx_alloc (DEFINE_SPLIT
);
183 i
= XVECLEN (desc
, 1);
184 XVEC (split
, 0) = rtvec_alloc (i
);
187 XVECEXP (split
, 0, i
) = copy_rtx (XVECEXP (desc
, 1, i
));
188 remove_constraints (XVECEXP (split
, 0, i
));
191 /* If the split condition starts with "&&", append it to the
192 insn condition to create the new split condition. */
193 split_cond
= XSTR (desc
, 4);
194 if (split_cond
[0] == '&' && split_cond
[1] == '&')
196 const char *insn_cond
= XSTR (desc
, 2);
197 size_t insn_cond_len
= strlen (insn_cond
);
198 size_t split_cond_len
= strlen (split_cond
);
201 combined
= (char *) xmalloc (insn_cond_len
+ split_cond_len
+ 1);
202 memcpy (combined
, insn_cond
, insn_cond_len
);
203 memcpy (combined
+ insn_cond_len
, split_cond
, split_cond_len
+ 1);
205 split_cond
= combined
;
207 XSTR (split
, 1) = split_cond
;
208 XVEC (split
, 2) = XVEC (desc
, 5);
209 XSTR (split
, 3) = XSTR (desc
, 6);
211 /* Fix up the DEFINE_INSN. */
212 attr
= XVEC (desc
, 7);
213 PUT_CODE (desc
, DEFINE_INSN
);
214 XVEC (desc
, 4) = attr
;
217 queue_pattern (desc
, &define_insn_tail
, lineno
);
218 queue_pattern (split
, &other_tail
, lineno
);
223 queue_pattern (desc
, &other_tail
, lineno
);
228 /* Return true if attribute PREDICABLE is true for ELEM, which holds
233 struct queue_elem
*elem
;
235 rtvec vec
= XVEC (elem
->data
, 4);
240 return predicable_default
;
242 for (i
= GET_NUM_ELEM (vec
) - 1; i
>= 0; --i
)
244 rtx sub
= RTVEC_ELT (vec
, i
);
245 switch (GET_CODE (sub
))
248 if (strcmp (XSTR (sub
, 0), "predicable") == 0)
250 value
= XSTR (sub
, 1);
255 case SET_ATTR_ALTERNATIVE
:
256 if (strcmp (XSTR (sub
, 0), "predicable") == 0)
258 message_with_line (elem
->lineno
,
259 "multiple alternatives for `predicable'");
266 if (GET_CODE (SET_DEST (sub
)) != ATTR
267 || strcmp (XSTR (SET_DEST (sub
), 0), "predicable") != 0)
270 if (GET_CODE (sub
) == CONST_STRING
)
272 value
= XSTR (sub
, 0);
276 /* ??? It would be possible to handle this if we really tried.
277 It's not easy though, and I'm not going to bother until it
278 really proves necessary. */
279 message_with_line (elem
->lineno
,
280 "non-constant value for `predicable'");
289 return predicable_default
;
292 /* Verify that predicability does not vary on the alternative. */
293 /* ??? It should be possible to handle this by simply eliminating
294 the non-predicable alternatives from the insn. FRV would like
295 to do this. Delay this until we've got the basics solid. */
296 if (strchr (value
, ',') != NULL
)
298 message_with_line (elem
->lineno
,
299 "multiple alternatives for `predicable'");
304 /* Find out which value we're looking at. */
305 if (strcmp (value
, predicable_true
) == 0)
307 if (strcmp (value
, predicable_false
) == 0)
310 message_with_line (elem
->lineno
,
311 "Unknown value `%s' for `predicable' attribute",
317 /* Examine the attribute "predicable"; discover its boolean values
321 identify_predicable_attribute ()
323 struct queue_elem
*elem
;
328 /* Look for the DEFINE_ATTR for `predicable', which must exist. */
329 for (elem
= define_attr_queue
; elem
; elem
= elem
->next
)
330 if (strcmp (XSTR (elem
->data
, 0), "predicable") == 0)
333 message_with_line (define_cond_exec_queue
->lineno
,
334 "Attribute `predicable' not defined");
339 value
= XSTR (elem
->data
, 1);
340 len
= strlen (value
);
341 false = (char *) xmalloc (len
+ 1);
342 memcpy (false, value
, len
+ 1);
344 true = strchr (false, ',');
345 if (true == NULL
|| strchr (++true, ',') != NULL
)
347 message_with_line (elem
->lineno
,
348 "Attribute `predicable' is not a boolean");
354 predicable_true
= true;
355 predicable_false
= false;
357 switch (GET_CODE (XEXP (elem
->data
, 2)))
360 value
= XSTR (XEXP (elem
->data
, 2), 0);
364 message_with_line (elem
->lineno
,
365 "Attribute `predicable' cannot be const");
370 message_with_line (elem
->lineno
,
371 "Attribute `predicable' must have a constant default");
376 if (strcmp (value
, true) == 0)
377 predicable_default
= 1;
378 else if (strcmp (value
, false) == 0)
379 predicable_default
= 0;
382 message_with_line (elem
->lineno
,
383 "Unknown value `%s' for `predicable' attribute",
389 /* Return the number of alternatives in constraint S. */
404 /* Determine how many alternatives there are in INSN, and how many
408 collect_insn_data (pattern
, palt
, pmax
)
416 code
= GET_CODE (pattern
);
420 i
= n_alternatives (XSTR (pattern
, 2));
421 *palt
= (i
> *palt
? i
: *palt
);
428 i
= XINT (pattern
, 0);
437 fmt
= GET_RTX_FORMAT (code
);
438 len
= GET_RTX_LENGTH (code
);
439 for (i
= 0; i
< len
; i
++)
444 collect_insn_data (XEXP (pattern
, i
), palt
, pmax
);
448 if (XVEC (pattern
, i
) == NULL
)
452 for (j
= XVECLEN (pattern
, i
) - 1; j
>= 0; --j
)
453 collect_insn_data (XVECEXP (pattern
, i
, j
), palt
, pmax
);
456 case 'i': case 'w': case '0': case 's': case 'S':
466 alter_predicate_for_insn (pattern
, alt
, max_op
, lineno
)
468 int alt
, max_op
, lineno
;
474 code
= GET_CODE (pattern
);
479 const char *c
= XSTR (pattern
, 2);
481 if (n_alternatives (c
) != 1)
483 message_with_line (lineno
,
484 "Too many alternatives for operand %d",
490 /* Replicate C as needed to fill out ALT alternatives. */
491 if (c
&& *c
&& alt
> 1)
493 size_t c_len
= strlen (c
);
494 size_t len
= alt
* (c_len
+ 1);
495 char *new_c
= (char *) xmalloc (len
);
497 memcpy (new_c
, c
, c_len
);
498 for (i
= 1; i
< alt
; ++i
)
500 new_c
[i
* (c_len
+ 1) - 1] = ',';
501 memcpy (&new_c
[i
* (c_len
+ 1)], c
, c_len
);
503 new_c
[len
- 1] = '\0';
504 XSTR (pattern
, 2) = new_c
;
513 XINT (pattern
, 0) += max_op
;
520 fmt
= GET_RTX_FORMAT (code
);
521 len
= GET_RTX_LENGTH (code
);
522 for (i
= 0; i
< len
; i
++)
529 r
= alter_predicate_for_insn (XEXP (pattern
, i
), alt
,
536 for (j
= XVECLEN (pattern
, i
) - 1; j
>= 0; --j
)
538 r
= alter_predicate_for_insn (XVECEXP (pattern
, i
, j
),
539 alt
, max_op
, lineno
);
545 case 'i': case 'w': case '0': case 's':
557 alter_test_for_insn (ce_elem
, insn_elem
)
558 struct queue_elem
*ce_elem
, *insn_elem
;
560 const char *ce_test
, *insn_test
;
562 size_t len
, ce_len
, insn_len
;
564 ce_test
= XSTR (ce_elem
->data
, 1);
565 insn_test
= XSTR (insn_elem
->data
, 2);
566 if (!ce_test
|| *ce_test
== '\0')
568 if (!insn_test
|| *insn_test
== '\0')
571 ce_len
= strlen (ce_test
);
572 insn_len
= strlen (insn_test
);
573 len
= 1 + ce_len
+ 1 + 4 + 1 + insn_len
+ 1 + 1;
574 new_test
= (char *) xmalloc (len
);
576 sprintf (new_test
, "(%s) && (%s)", ce_test
, insn_test
);
581 /* Adjust all of the operand numbers in OLD to match the shift they'll
582 get from an operand displacement of DISP. Return a pointer after the
586 shift_output_template (new, old
, disp
)
598 if (ISDIGIT ((unsigned char) c
))
600 else if (ISUPPER ((unsigned char) c
)
601 || ISLOWER ((unsigned char) c
))
614 alter_output_for_insn (ce_elem
, insn_elem
, alt
, max_op
)
615 struct queue_elem
*ce_elem
, *insn_elem
;
618 const char *ce_out
, *insn_out
;
620 size_t len
, ce_len
, insn_len
;
622 /* ??? Could coordinate with genoutput to not duplicate code here. */
624 ce_out
= XSTR (ce_elem
->data
, 2);
625 insn_out
= XSTR (insn_elem
->data
, 3);
626 if (!ce_out
|| *ce_out
== '\0')
629 ce_len
= strlen (ce_out
);
630 insn_len
= strlen (insn_out
);
632 if (*insn_out
== '*')
633 /* You must take care of the predicate yourself. */
636 if (*insn_out
== '@')
638 len
= (ce_len
+ 1) * alt
+ insn_len
+ 1;
639 p
= new = xmalloc (len
);
645 while (ISSPACE ((unsigned char) *insn_out
));
647 if (*insn_out
!= '#')
649 p
= shift_output_template (p
, ce_out
, max_op
);
655 while (*insn_out
&& *insn_out
!= '\n');
662 len
= ce_len
+ 1 + insn_len
+ 1;
665 p
= shift_output_template (new, ce_out
, max_op
);
667 memcpy (p
, insn_out
, insn_len
+ 1);
673 /* Replicate insns as appropriate for the given DEFINE_COND_EXEC. */
676 process_one_cond_exec (ce_elem
)
677 struct queue_elem
*ce_elem
;
679 struct queue_elem
*insn_elem
;
680 for (insn_elem
= define_insn_queue
; insn_elem
; insn_elem
= insn_elem
->next
)
682 int alternatives
, max_operand
;
683 rtx pred
, insn
, pattern
;
685 if (! is_predicable (insn_elem
))
690 collect_insn_data (insn_elem
->data
, &alternatives
, &max_operand
);
693 if (XVECLEN (ce_elem
->data
, 0) != 1)
695 message_with_line (ce_elem
->lineno
,
696 "too many patterns in predicate");
701 pred
= copy_rtx (XVECEXP (ce_elem
->data
, 0, 0));
702 pred
= alter_predicate_for_insn (pred
, alternatives
, max_operand
,
707 /* Construct a new pattern for the new insn. */
708 insn
= copy_rtx (insn_elem
->data
);
710 pattern
= rtx_alloc (COND_EXEC
);
711 XEXP (pattern
, 0) = pred
;
712 if (XVECLEN (insn
, 1) == 1)
714 XEXP (pattern
, 1) = XVECEXP (insn
, 1, 0);
715 XVECEXP (insn
, 1, 0) = pattern
;
716 PUT_NUM_ELEM (XVEC (insn
, 1), 1);
720 XEXP (pattern
, 1) = rtx_alloc (PARALLEL
);
721 XVEC (XEXP (pattern
, 1), 0) = XVEC (insn
, 1);
722 XVEC (insn
, 1) = rtvec_alloc (1);
723 XVECEXP (insn
, 1, 0) = pattern
;
726 XSTR (insn
, 2) = alter_test_for_insn (ce_elem
, insn_elem
);
727 XSTR (insn
, 3) = alter_output_for_insn (ce_elem
, insn_elem
,
728 alternatives
, max_operand
);
730 /* ??? Set `predicable' to false. Not crucial since it's really
731 only used here, and we won't reprocess this new pattern. */
733 /* Put the new pattern on the `other' list so that it
734 (a) is not reprocessed by other define_cond_exec patterns
735 (b) appears after all normal define_insn patterns.
737 ??? B is debatable. If one has normal insns that match
738 cond_exec patterns, they will be preferred over these
739 generated patterns. Whether this matters in practice, or if
740 it's a good thing, or whether we should thread these new
741 patterns into the define_insn chain just after their generator
742 is something we'll have to experiment with. */
744 queue_pattern (insn
, &other_tail
, insn_elem
->lineno
);
748 /* If we have any DEFINE_COND_EXEC patterns, expand the DEFINE_INSN
749 patterns appropriately. */
752 process_define_cond_exec ()
754 struct queue_elem
*elem
;
756 identify_predicable_attribute ();
760 for (elem
= define_cond_exec_queue
; elem
; elem
= elem
->next
)
761 process_one_cond_exec (elem
);
764 /* The entry point for initializing the reader. */
767 init_md_reader (filename
)
768 const char *filename
;
773 read_rtx_filename
= filename
;
774 input_file
= fopen (filename
, "r");
778 return FATAL_EXIT_CODE
;
781 obstack_init (rtl_obstack
);
785 /* Read the entire file. */
791 c
= read_skip_spaces (input_file
);
795 ungetc (c
, input_file
);
796 lineno
= read_rtx_lineno
;
797 desc
= read_rtx (input_file
);
798 process_rtx (desc
, lineno
);
802 /* Process define_cond_exec patterns. */
803 if (define_cond_exec_queue
!= NULL
)
804 process_define_cond_exec ();
806 return errors
? FATAL_EXIT_CODE
: SUCCESS_EXIT_CODE
;
809 /* The entry point for reading a single rtx from an md file. */
812 read_md_rtx (lineno
, seqnr
)
816 struct queue_elem
**queue
, *elem
;
819 /* Read all patterns from a given queue before moving on to the next. */
820 if (define_attr_queue
!= NULL
)
821 queue
= &define_attr_queue
;
822 else if (define_insn_queue
!= NULL
)
823 queue
= &define_insn_queue
;
824 else if (other_queue
!= NULL
)
825 queue
= &other_queue
;
832 *lineno
= elem
->lineno
;
833 *seqnr
= sequence_num
;
837 switch (GET_CODE (desc
))
842 case DEFINE_PEEPHOLE
:
843 case DEFINE_PEEPHOLE2
:
854 /* Until we can use the versions in libiberty. */
859 register size_t len
= strlen (input
) + 1;
860 register char *output
= xmalloc (len
);
861 memcpy (output
, input
, len
);
872 ptr
= (PTR
) realloc (old
, size
);
874 ptr
= (PTR
) malloc (size
);
876 fatal ("virtual memory exhausted");
884 register PTR val
= (PTR
) malloc (size
);
887 fatal ("virtual memory exhausted");