1 /* Generate from machine description:
2 - prototype declarations for operand predicates (tm-preds.h)
3 - function definitions of operand predicates, if defined new-style
5 Copyright (C) 2001-2015 Free Software Foundation, Inc.
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3, or (at your option)
14 GCC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
25 #include "coretypes.h"
31 #include "gensupport.h"
33 static char general_mem
[] = { TARGET_MEM_CONSTRAINT
, 0 };
35 /* Given a predicate expression EXP, from form NAME at line LINENO,
36 verify that it does not contain any RTL constructs which are not
37 valid in predicate definitions. Returns true if EXP is
38 INvalid; issues error messages, caller need not. */
40 validate_exp (rtx exp
, const char *name
, int lineno
)
44 message_with_line (lineno
, "%s: must give a predicate expression", name
);
48 switch (GET_CODE (exp
))
50 /* Ternary, binary, unary expressions: recurse into subexpressions. */
52 if (validate_exp (XEXP (exp
, 2), name
, lineno
))
54 /* else fall through */
57 if (validate_exp (XEXP (exp
, 1), name
, lineno
))
59 /* else fall through */
61 return validate_exp (XEXP (exp
, 0), name
, lineno
);
63 /* MATCH_CODE might have a syntax error in its path expression. */
67 for (p
= XSTR (exp
, 1); *p
; p
++)
69 if (!ISDIGIT (*p
) && !ISLOWER (*p
))
71 error_with_line (lineno
, "%s: invalid character in path "
72 "string '%s'", name
, XSTR (exp
, 1));
79 /* These need no special checking. */
85 error_with_line (lineno
,
86 "%s: cannot use '%s' in a predicate expression",
87 name
, GET_RTX_NAME (GET_CODE (exp
)));
92 /* Predicates are defined with (define_predicate) or
93 (define_special_predicate) expressions in the machine description. */
95 process_define_predicate (rtx defn
, int lineno
)
97 validate_exp (XEXP (defn
, 1), XSTR (defn
, 0), lineno
);
100 /* Given a predicate, if it has an embedded C block, write the block
101 out as a static inline subroutine, and augment the RTL test with a
102 match_test that calls that subroutine. For instance,
104 (define_predicate "basereg_operand"
105 (match_operand 0 "register_operand")
107 if (GET_CODE (op) == SUBREG)
108 op = SUBREG_REG (op);
109 return REG_POINTER (op);
114 static inline int basereg_operand_1(rtx op, machine_mode mode)
116 if (GET_CODE (op) == SUBREG)
117 op = SUBREG_REG (op);
118 return REG_POINTER (op);
121 (define_predicate "basereg_operand"
122 (and (match_operand 0 "register_operand")
123 (match_test "basereg_operand_1 (op, mode)")))
125 The only wart is that there's no way to insist on a { } string in
126 an RTL template, so we have to handle "" strings. */
130 write_predicate_subfunction (struct pred_data
*p
)
132 const char *match_test_str
;
133 rtx match_test_exp
, and_exp
;
135 if (p
->c_block
[0] == '\0')
138 /* Construct the function-call expression. */
139 obstack_grow (rtl_obstack
, p
->name
, strlen (p
->name
));
140 obstack_grow (rtl_obstack
, "_1 (op, mode)",
141 sizeof "_1 (op, mode)");
142 match_test_str
= XOBFINISH (rtl_obstack
, const char *);
144 /* Add the function-call expression to the complete expression to be
146 match_test_exp
= rtx_alloc (MATCH_TEST
);
147 XSTR (match_test_exp
, 0) = match_test_str
;
149 and_exp
= rtx_alloc (AND
);
150 XEXP (and_exp
, 0) = p
->exp
;
151 XEXP (and_exp
, 1) = match_test_exp
;
155 printf ("static inline int\n"
156 "%s_1 (rtx op, machine_mode mode ATTRIBUTE_UNUSED)\n",
158 print_md_ptr_loc (p
->c_block
);
159 if (p
->c_block
[0] == '{')
160 fputs (p
->c_block
, stdout
);
162 printf ("{\n %s\n}", p
->c_block
);
163 fputs ("\n\n", stdout
);
166 /* Given a predicate expression EXP, from form NAME, determine whether
167 it refers to the variable given as VAR. */
169 needs_variable (rtx exp
, const char *var
)
171 switch (GET_CODE (exp
))
173 /* Ternary, binary, unary expressions need a variable if
174 any of their subexpressions do. */
176 if (needs_variable (XEXP (exp
, 2), var
))
178 /* else fall through */
181 if (needs_variable (XEXP (exp
, 1), var
))
183 /* else fall through */
185 return needs_variable (XEXP (exp
, 0), var
);
187 /* MATCH_CODE uses "op", but nothing else. */
189 return !strcmp (var
, "op");
191 /* MATCH_OPERAND uses "op" and may use "mode". */
193 if (!strcmp (var
, "op"))
195 if (!strcmp (var
, "mode") && GET_MODE (exp
) == VOIDmode
)
199 /* MATCH_TEST uses var if XSTR (exp, 0) =~ /\b${var}\b/o; */
202 const char *p
= XSTR (exp
, 0);
203 const char *q
= strstr (p
, var
);
206 if (q
!= p
&& (ISALNUM (q
[-1]) || q
[-1] == '_'))
209 if (ISALNUM (q
[0]) || q
[0] == '_')
219 /* Given an RTL expression EXP, find all subexpressions which we may
220 assume to perform mode tests. Normal MATCH_OPERAND does;
221 MATCH_CODE does if it applies to the whole expression and accepts
222 CONST_INT or CONST_DOUBLE; and we have to assume that MATCH_TEST
223 does not. These combine in almost-boolean fashion - the only
224 exception is that (not X) must be assumed not to perform a mode
225 test, whether or not X does.
227 The mark is the RTL /v flag, which is true for subexpressions which
228 do *not* perform mode tests.
230 #define NO_MODE_TEST(EXP) RTX_FLAG (EXP, volatil)
232 mark_mode_tests (rtx exp
)
234 switch (GET_CODE (exp
))
238 struct pred_data
*p
= lookup_predicate (XSTR (exp
, 1));
240 error ("reference to undefined predicate '%s'", XSTR (exp
, 1));
241 else if (p
->special
|| GET_MODE (exp
) != VOIDmode
)
242 NO_MODE_TEST (exp
) = 1;
247 if (XSTR (exp
, 1)[0] != '\0'
248 || (!strstr (XSTR (exp
, 0), "const_int")
249 && !strstr (XSTR (exp
, 0), "const_double")))
250 NO_MODE_TEST (exp
) = 1;
255 NO_MODE_TEST (exp
) = 1;
259 mark_mode_tests (XEXP (exp
, 0));
260 mark_mode_tests (XEXP (exp
, 1));
262 NO_MODE_TEST (exp
) = (NO_MODE_TEST (XEXP (exp
, 0))
263 && NO_MODE_TEST (XEXP (exp
, 1)));
267 mark_mode_tests (XEXP (exp
, 0));
268 mark_mode_tests (XEXP (exp
, 1));
270 NO_MODE_TEST (exp
) = (NO_MODE_TEST (XEXP (exp
, 0))
271 || NO_MODE_TEST (XEXP (exp
, 1)));
275 /* A ? B : C does a mode test if (one of A and B) does a mode
276 test, and C does too. */
277 mark_mode_tests (XEXP (exp
, 0));
278 mark_mode_tests (XEXP (exp
, 1));
279 mark_mode_tests (XEXP (exp
, 2));
281 NO_MODE_TEST (exp
) = ((NO_MODE_TEST (XEXP (exp
, 0))
282 && NO_MODE_TEST (XEXP (exp
, 1)))
283 || NO_MODE_TEST (XEXP (exp
, 2)));
291 /* Determine whether the expression EXP is a MATCH_CODE that should
292 be written as a switch statement. */
294 generate_switch_p (rtx exp
)
296 return GET_CODE (exp
) == MATCH_CODE
297 && strchr (XSTR (exp
, 0), ',');
300 /* Given a predicate, work out where in its RTL expression to add
301 tests for proper modes. Special predicates do not get any such
302 tests. We try to avoid adding tests when we don't have to; in
303 particular, other normal predicates can be counted on to do it for
307 add_mode_tests (struct pred_data
*p
)
309 rtx match_test_exp
, and_exp
;
312 /* Don't touch special predicates. */
316 mark_mode_tests (p
->exp
);
318 /* If the whole expression already tests the mode, we're done. */
319 if (!NO_MODE_TEST (p
->exp
))
322 match_test_exp
= rtx_alloc (MATCH_TEST
);
323 XSTR (match_test_exp
, 0) = "mode == VOIDmode || GET_MODE (op) == mode";
324 and_exp
= rtx_alloc (AND
);
325 XEXP (and_exp
, 1) = match_test_exp
;
327 /* It is always correct to rewrite p->exp as
329 (and (...) (match_test "mode == VOIDmode || GET_MODE (op) == mode"))
331 but there are a couple forms where we can do better. If the
332 top-level pattern is an IOR, and one of the two branches does test
333 the mode, we can wrap just the branch that doesn't. Likewise, if
334 we have an IF_THEN_ELSE, and one side of it tests the mode, we can
335 wrap just the side that doesn't. And, of course, we can repeat this
336 descent as many times as it works. */
343 switch (GET_CODE (subexp
))
346 /* The switch code generation in write_predicate_stmts prefers
347 rtx code tests to be at the top of the expression tree. So
348 push this AND down into the second operand of an existing
350 if (generate_switch_p (XEXP (subexp
, 0)))
351 pos
= &XEXP (subexp
, 1);
356 int test0
= NO_MODE_TEST (XEXP (subexp
, 0));
357 int test1
= NO_MODE_TEST (XEXP (subexp
, 1));
359 gcc_assert (test0
|| test1
);
363 pos
= test0
? &XEXP (subexp
, 0) : &XEXP (subexp
, 1);
369 int test0
= NO_MODE_TEST (XEXP (subexp
, 0));
370 int test1
= NO_MODE_TEST (XEXP (subexp
, 1));
371 int test2
= NO_MODE_TEST (XEXP (subexp
, 2));
373 gcc_assert ((test0
&& test1
) || test2
);
375 if (test0
&& test1
&& test2
)
378 /* Must put it on the dependent clause, not the
379 controlling expression, or we change the meaning of
381 pos
= &XEXP (subexp
, 1);
383 pos
= &XEXP (subexp
, 2);
392 XEXP (and_exp
, 0) = *pos
;
396 /* PATH is a string describing a path from the root of an RTL
397 expression to an inner subexpression to be tested. Output
398 code which computes the subexpression from the variable
399 holding the root of the expression. */
401 write_extract_subexp (const char *path
)
403 int len
= strlen (path
);
406 /* We first write out the operations (XEXP or XVECEXP) in reverse
407 order, then write "op", then the indices in forward order. */
408 for (i
= len
- 1; i
>= 0; i
--)
410 if (ISLOWER (path
[i
]))
411 fputs ("XVECEXP (", stdout
);
412 else if (ISDIGIT (path
[i
]))
413 fputs ("XEXP (", stdout
);
418 fputs ("op", stdout
);
420 for (i
= 0; i
< len
; i
++)
422 if (ISLOWER (path
[i
]))
423 printf (", 0, %d)", path
[i
] - 'a');
424 else if (ISDIGIT (path
[i
]))
425 printf (", %d)", path
[i
] - '0');
431 /* CODES is a list of RTX codes. Write out an expression which
432 determines whether the operand has one of those codes. */
434 write_match_code (const char *path
, const char *codes
)
438 while ((code
= scan_comma_elt (&codes
)) != 0)
440 fputs ("GET_CODE (", stdout
);
441 write_extract_subexp (path
);
442 fputs (") == ", stdout
);
445 putchar (TOUPPER (*code
));
450 fputs (" || ", stdout
);
454 /* EXP is an RTL (sub)expression for a predicate. Recursively
455 descend the expression and write out an equivalent C expression. */
457 write_predicate_expr (rtx exp
)
459 switch (GET_CODE (exp
))
463 write_predicate_expr (XEXP (exp
, 0));
464 fputs (") && (", stdout
);
465 write_predicate_expr (XEXP (exp
, 1));
471 write_predicate_expr (XEXP (exp
, 0));
472 fputs (") || (", stdout
);
473 write_predicate_expr (XEXP (exp
, 1));
478 fputs ("!(", stdout
);
479 write_predicate_expr (XEXP (exp
, 0));
485 write_predicate_expr (XEXP (exp
, 0));
486 fputs (") ? (", stdout
);
487 write_predicate_expr (XEXP (exp
, 1));
488 fputs (") : (", stdout
);
489 write_predicate_expr (XEXP (exp
, 2));
494 if (GET_MODE (exp
) == VOIDmode
)
495 printf ("%s (op, mode)", XSTR (exp
, 1));
497 printf ("%s (op, %smode)", XSTR (exp
, 1), mode_name
[GET_MODE (exp
)]);
501 write_match_code (XSTR (exp
, 1), XSTR (exp
, 0));
505 print_c_condition (XSTR (exp
, 0));
513 /* Write the MATCH_CODE expression EXP as a switch statement. */
516 write_match_code_switch (rtx exp
)
518 const char *codes
= XSTR (exp
, 0);
519 const char *path
= XSTR (exp
, 1);
522 fputs (" switch (GET_CODE (", stdout
);
523 write_extract_subexp (path
);
524 fputs ("))\n {\n", stdout
);
526 while ((code
= scan_comma_elt (&codes
)) != 0)
528 fputs (" case ", stdout
);
531 putchar (TOUPPER (*code
));
534 fputs (":\n", stdout
);
538 /* Given a predicate expression EXP, write out a sequence of stmts
539 to evaluate it. This is similar to write_predicate_expr but can
540 generate efficient switch statements. */
543 write_predicate_stmts (rtx exp
)
545 switch (GET_CODE (exp
))
548 if (generate_switch_p (exp
))
550 write_match_code_switch (exp
);
551 puts (" return true;\n"
561 if (generate_switch_p (XEXP (exp
, 0)))
563 write_match_code_switch (XEXP (exp
, 0));
573 if (generate_switch_p (XEXP (exp
, 0)))
575 write_match_code_switch (XEXP (exp
, 0));
576 puts (" return true;\n"
585 if (generate_switch_p (XEXP (exp
, 0)))
587 write_match_code_switch (XEXP (exp
, 0));
588 puts (" return false;\n"
601 fputs (" return ",stdout
);
602 write_predicate_expr (exp
);
603 fputs (";\n", stdout
);
606 /* Given a predicate, write out a complete C function to compute it. */
608 write_one_predicate_function (struct pred_data
*p
)
613 write_predicate_subfunction (p
);
616 /* A normal predicate can legitimately not look at machine_mode
617 if it accepts only CONST_INTs and/or CONST_WIDE_INT and/or CONST_DOUBLEs. */
618 printf ("int\n%s (rtx op, machine_mode mode ATTRIBUTE_UNUSED)\n{\n",
620 write_predicate_stmts (p
->exp
);
621 fputs ("}\n\n", stdout
);
624 /* Constraints fall into two categories: register constraints
625 (define_register_constraint), and others (define_constraint,
626 define_memory_constraint, define_address_constraint). We
627 work out automatically which of the various old-style macros
628 they correspond to, and produce appropriate code. They all
629 go in the same hash table so we can verify that there are no
632 /* All data from one constraint definition. */
633 struct constraint_data
635 struct constraint_data
*next_this_letter
;
636 struct constraint_data
*next_textual
;
638 const char *c_name
; /* same as .name unless mangling is necessary */
640 const char *regclass
; /* for register constraints */
641 rtx exp
; /* for other constraints */
642 unsigned int lineno
; /* line of definition */
643 unsigned int is_register
: 1;
644 unsigned int is_const_int
: 1;
645 unsigned int is_const_dbl
: 1;
646 unsigned int is_extra
: 1;
647 unsigned int is_memory
: 1;
648 unsigned int is_address
: 1;
649 unsigned int maybe_allows_reg
: 1;
650 unsigned int maybe_allows_mem
: 1;
653 /* Overview of all constraints beginning with a given letter. */
655 static struct constraint_data
*
656 constraints_by_letter_table
[1<<CHAR_BIT
];
658 /* For looking up all the constraints in the order that they appeared
659 in the machine description. */
660 static struct constraint_data
*first_constraint
;
661 static struct constraint_data
**last_constraint_ptr
= &first_constraint
;
663 #define FOR_ALL_CONSTRAINTS(iter_) \
664 for (iter_ = first_constraint; iter_; iter_ = iter_->next_textual)
666 /* Contraint letters that have a special meaning and that cannot be used
667 in define*_constraints. */
668 static const char generic_constraint_letters
[] = "g";
670 /* Machine-independent code expects that constraints with these
671 (initial) letters will allow only (a subset of all) CONST_INTs. */
673 static const char const_int_constraints
[] = "IJKLMNOP";
675 /* Machine-independent code expects that constraints with these
676 (initial) letters will allow only (a subset of all) CONST_DOUBLEs. */
678 static const char const_dbl_constraints
[] = "GH";
680 /* Summary data used to decide whether to output various functions and
681 macro definitions. */
682 static unsigned int constraint_max_namelen
;
683 static bool have_register_constraints
;
684 static bool have_memory_constraints
;
685 static bool have_address_constraints
;
686 static bool have_extra_constraints
;
687 static bool have_const_int_constraints
;
688 static unsigned int num_constraints
;
690 static const constraint_data
**enum_order
;
691 static unsigned int register_start
, register_end
;
692 static unsigned int satisfied_start
;
693 static unsigned int const_int_start
, const_int_end
;
694 static unsigned int memory_start
, memory_end
;
695 static unsigned int address_start
, address_end
;
696 static unsigned int maybe_allows_none_start
, maybe_allows_none_end
;
697 static unsigned int maybe_allows_reg_start
, maybe_allows_reg_end
;
698 static unsigned int maybe_allows_mem_start
, maybe_allows_mem_end
;
700 /* Convert NAME, which contains angle brackets and/or underscores, to
701 a string that can be used as part of a C identifier. The string
702 comes from the rtl_obstack. */
704 mangle (const char *name
)
706 for (; *name
; name
++)
709 case '_': obstack_grow (rtl_obstack
, "__", 2); break;
710 case '<': obstack_grow (rtl_obstack
, "_l", 2); break;
711 case '>': obstack_grow (rtl_obstack
, "_g", 2); break;
712 default: obstack_1grow (rtl_obstack
, *name
); break;
715 obstack_1grow (rtl_obstack
, '\0');
716 return XOBFINISH (rtl_obstack
, const char *);
719 /* Return a bitmask, bit 1 if EXP maybe allows a REG/SUBREG, 2 if EXP
720 maybe allows a MEM. Bits should be clear only when we are sure it
721 will not allow a REG/SUBREG or a MEM. */
723 compute_maybe_allows (rtx exp
)
725 switch (GET_CODE (exp
))
728 /* Conservative answer is like IOR, of the THEN and ELSE branches. */
729 return compute_maybe_allows (XEXP (exp
, 1))
730 | compute_maybe_allows (XEXP (exp
, 2));
732 return compute_maybe_allows (XEXP (exp
, 0))
733 & compute_maybe_allows (XEXP (exp
, 1));
735 return compute_maybe_allows (XEXP (exp
, 0))
736 | compute_maybe_allows (XEXP (exp
, 1));
738 if (*XSTR (exp
, 1) == '\0')
739 return (strstr (XSTR (exp
, 0), "reg") != NULL
? 1 : 0)
740 | (strstr (XSTR (exp
, 0), "mem") != NULL
? 2 : 0);
747 /* Add one constraint, of any sort, to the tables. NAME is its name;
748 REGCLASS is the register class, if any; EXP is the expression to
749 test, if any; IS_MEMORY and IS_ADDRESS indicate memory and address
750 constraints, respectively; LINENO is the line number from the MD reader.
751 Not all combinations of arguments are valid; most importantly, REGCLASS
752 is mutually exclusive with EXP, and IS_MEMORY/IS_ADDRESS are only
753 meaningful for constraints with EXP.
755 This function enforces all syntactic and semantic rules about what
756 constraints can be defined. */
759 add_constraint (const char *name
, const char *regclass
,
760 rtx exp
, bool is_memory
, bool is_address
,
763 struct constraint_data
*c
, **iter
, **slot
;
765 bool need_mangled_name
= false;
770 if (strcmp (name
, "TARGET_MEM_CONSTRAINT") == 0)
773 if (exp
&& validate_exp (exp
, name
, lineno
))
776 for (p
= name
; *p
; p
++)
779 if (*p
== '<' || *p
== '>' || *p
== '_')
780 need_mangled_name
= true;
783 error_with_line (lineno
,
784 "constraint name '%s' must be composed of "
785 "letters, digits, underscores, and "
786 "angle brackets", name
);
791 if (strchr (generic_constraint_letters
, name
[0]))
794 error_with_line (lineno
, "constraint letter '%s' cannot be "
795 "redefined by the machine description", name
);
797 error_with_line (lineno
, "constraint name '%s' cannot be defined by "
798 "the machine description, as it begins with '%c'",
804 namelen
= strlen (name
);
805 slot
= &constraints_by_letter_table
[(unsigned int)name
[0]];
806 for (iter
= slot
; *iter
; iter
= &(*iter
)->next_this_letter
)
808 /* This causes slot to end up pointing to the
809 next_this_letter field of the last constraint with a name
810 of equal or greater length than the new constraint; hence
811 the new constraint will be inserted after all previous
812 constraints with names of the same length. */
813 if ((*iter
)->namelen
>= namelen
)
816 if (!strcmp ((*iter
)->name
, name
))
818 error_with_line (lineno
, "redefinition of constraint '%s'", name
);
819 message_with_line ((*iter
)->lineno
, "previous definition is here");
822 else if (!strncmp ((*iter
)->name
, name
, (*iter
)->namelen
))
824 error_with_line (lineno
, "defining constraint '%s' here", name
);
825 message_with_line ((*iter
)->lineno
, "renders constraint '%s' "
826 "(defined here) a prefix", (*iter
)->name
);
829 else if (!strncmp ((*iter
)->name
, name
, namelen
))
831 error_with_line (lineno
, "constraint '%s' is a prefix", name
);
832 message_with_line ((*iter
)->lineno
, "of constraint '%s' "
833 "(defined here)", (*iter
)->name
);
838 is_const_int
= strchr (const_int_constraints
, name
[0]) != 0;
839 is_const_dbl
= strchr (const_dbl_constraints
, name
[0]) != 0;
841 if (is_const_int
|| is_const_dbl
)
843 enum rtx_code appropriate_code
844 = is_const_int
? CONST_INT
: CONST_DOUBLE
;
846 /* Consider relaxing this requirement in the future. */
848 || GET_CODE (exp
) != AND
849 || GET_CODE (XEXP (exp
, 0)) != MATCH_CODE
850 || strcmp (XSTR (XEXP (exp
, 0), 0),
851 GET_RTX_NAME (appropriate_code
)))
854 error_with_line (lineno
, "constraint letter '%c' is reserved "
855 "for %s constraints",
856 name
[0], GET_RTX_NAME (appropriate_code
));
858 error_with_line (lineno
, "constraint names beginning with '%c' "
859 "(%s) are reserved for %s constraints",
860 name
[0], name
, GET_RTX_NAME (appropriate_code
));
867 error_with_line (lineno
, "constraint letter '%c' cannot be a "
868 "memory constraint", name
[0]);
870 error_with_line (lineno
, "constraint name '%s' begins with '%c', "
871 "and therefore cannot be a memory constraint",
878 error_with_line (lineno
, "constraint letter '%c' cannot be a "
879 "memory constraint", name
[0]);
881 error_with_line (lineno
, "constraint name '%s' begins with '%c', "
882 "and therefore cannot be a memory constraint",
889 c
= XOBNEW (rtl_obstack
, struct constraint_data
);
891 c
->c_name
= need_mangled_name
? mangle (name
) : name
;
893 c
->namelen
= namelen
;
894 c
->regclass
= regclass
;
896 c
->is_register
= regclass
!= 0;
897 c
->is_const_int
= is_const_int
;
898 c
->is_const_dbl
= is_const_dbl
;
899 c
->is_extra
= !(regclass
|| is_const_int
|| is_const_dbl
);
900 c
->is_memory
= is_memory
;
901 c
->is_address
= is_address
;
902 int maybe_allows
= 3;
904 maybe_allows
= compute_maybe_allows (exp
);
905 c
->maybe_allows_reg
= (maybe_allows
& 1) != 0;
906 c
->maybe_allows_mem
= (maybe_allows
& 2) != 0;
908 c
->next_this_letter
= *slot
;
911 /* Insert this constraint in the list of all constraints in textual
914 *last_constraint_ptr
= c
;
915 last_constraint_ptr
= &c
->next_textual
;
917 constraint_max_namelen
= MAX (constraint_max_namelen
, strlen (name
));
918 have_register_constraints
|= c
->is_register
;
919 have_const_int_constraints
|= c
->is_const_int
;
920 have_extra_constraints
|= c
->is_extra
;
921 have_memory_constraints
|= c
->is_memory
;
922 have_address_constraints
|= c
->is_address
;
923 num_constraints
+= 1;
926 /* Process a DEFINE_CONSTRAINT, DEFINE_MEMORY_CONSTRAINT, or
927 DEFINE_ADDRESS_CONSTRAINT expression, C. */
929 process_define_constraint (rtx c
, int lineno
)
931 add_constraint (XSTR (c
, 0), 0, XEXP (c
, 2),
932 GET_CODE (c
) == DEFINE_MEMORY_CONSTRAINT
,
933 GET_CODE (c
) == DEFINE_ADDRESS_CONSTRAINT
,
937 /* Process a DEFINE_REGISTER_CONSTRAINT expression, C. */
939 process_define_register_constraint (rtx c
, int lineno
)
941 add_constraint (XSTR (c
, 0), XSTR (c
, 1), 0, false, false, lineno
);
944 /* Put the constraints into enum order. We want to keep constraints
945 of the same type together so that query functions can be simple
948 choose_enum_order (void)
950 struct constraint_data
*c
;
952 enum_order
= XNEWVEC (const constraint_data
*, num_constraints
);
953 unsigned int next
= 0;
955 register_start
= next
;
956 FOR_ALL_CONSTRAINTS (c
)
958 enum_order
[next
++] = c
;
961 satisfied_start
= next
;
963 const_int_start
= next
;
964 FOR_ALL_CONSTRAINTS (c
)
966 enum_order
[next
++] = c
;
967 const_int_end
= next
;
970 FOR_ALL_CONSTRAINTS (c
)
972 enum_order
[next
++] = c
;
975 address_start
= next
;
976 FOR_ALL_CONSTRAINTS (c
)
978 enum_order
[next
++] = c
;
981 maybe_allows_none_start
= next
;
982 FOR_ALL_CONSTRAINTS (c
)
983 if (!c
->is_register
&& !c
->is_const_int
&& !c
->is_memory
&& !c
->is_address
984 && !c
->maybe_allows_reg
&& !c
->maybe_allows_mem
)
985 enum_order
[next
++] = c
;
986 maybe_allows_none_end
= next
;
988 maybe_allows_reg_start
= next
;
989 FOR_ALL_CONSTRAINTS (c
)
990 if (!c
->is_register
&& !c
->is_const_int
&& !c
->is_memory
&& !c
->is_address
991 && c
->maybe_allows_reg
&& !c
->maybe_allows_mem
)
992 enum_order
[next
++] = c
;
993 maybe_allows_reg_end
= next
;
995 maybe_allows_mem_start
= next
;
996 FOR_ALL_CONSTRAINTS (c
)
997 if (!c
->is_register
&& !c
->is_const_int
&& !c
->is_memory
&& !c
->is_address
998 && !c
->maybe_allows_reg
&& c
->maybe_allows_mem
)
999 enum_order
[next
++] = c
;
1000 maybe_allows_mem_end
= next
;
1002 FOR_ALL_CONSTRAINTS (c
)
1003 if (!c
->is_register
&& !c
->is_const_int
&& !c
->is_memory
&& !c
->is_address
1004 && c
->maybe_allows_reg
&& c
->maybe_allows_mem
)
1005 enum_order
[next
++] = c
;
1006 gcc_assert (next
== num_constraints
);
1009 /* Write out an enumeration with one entry per machine-specific
1012 write_enum_constraint_num (void)
1014 fputs ("#define CONSTRAINT_NUM_DEFINED_P 1\n", stdout
);
1015 fputs ("enum constraint_num\n"
1017 " CONSTRAINT__UNKNOWN = 0", stdout
);
1018 for (unsigned int i
= 0; i
< num_constraints
; ++i
)
1019 printf (",\n CONSTRAINT_%s", enum_order
[i
]->c_name
);
1020 puts (",\n CONSTRAINT__LIMIT\n};\n");
1023 /* Write out a function which looks at a string and determines what
1024 constraint name, if any, it begins with. */
1026 write_lookup_constraint_1 (void)
1029 puts ("enum constraint_num\n"
1030 "lookup_constraint_1 (const char *str)\n"
1032 " switch (str[0])\n"
1035 for (i
= 0; i
< ARRAY_SIZE (constraints_by_letter_table
); i
++)
1037 struct constraint_data
*c
= constraints_by_letter_table
[i
];
1041 printf (" case '%c':\n", i
);
1042 if (c
->namelen
== 1)
1043 printf (" return CONSTRAINT_%s;\n", c
->c_name
);
1048 printf (" if (!strncmp (str + 1, \"%s\", %lu))\n"
1049 " return CONSTRAINT_%s;\n",
1050 c
->name
+ 1, (unsigned long int) c
->namelen
- 1,
1052 c
= c
->next_this_letter
;
1059 puts (" default: break;\n"
1061 " return CONSTRAINT__UNKNOWN;\n"
1065 /* Write out an array that maps single-letter characters to their
1066 constraints (if that fits in a character) or 255 if lookup_constraint_1
1069 write_lookup_constraint_array (void)
1072 printf ("const unsigned char lookup_constraint_array[] = {\n ");
1073 for (i
= 0; i
< ARRAY_SIZE (constraints_by_letter_table
); i
++)
1077 struct constraint_data
*c
= constraints_by_letter_table
[i
];
1079 printf ("CONSTRAINT__UNKNOWN");
1080 else if (c
->namelen
== 1)
1081 printf ("MIN ((int) CONSTRAINT_%s, (int) UCHAR_MAX)", c
->c_name
);
1083 printf ("UCHAR_MAX");
1085 printf ("\n};\n\n");
1088 /* Write out a function which looks at a string and determines what
1089 the constraint name length is. */
1091 write_insn_constraint_len (void)
1095 puts ("static inline size_t\n"
1096 "insn_constraint_len (char fc, const char *str ATTRIBUTE_UNUSED)\n"
1101 for (i
= 0; i
< ARRAY_SIZE (constraints_by_letter_table
); i
++)
1103 struct constraint_data
*c
= constraints_by_letter_table
[i
];
1109 /* Constraints with multiple characters should have the same
1112 struct constraint_data
*c2
= c
->next_this_letter
;
1113 size_t len
= c
->namelen
;
1116 if (c2
->namelen
!= len
)
1117 error ("Multi-letter constraints with first letter '%c' "
1118 "should have same length", i
);
1119 c2
= c2
->next_this_letter
;
1123 printf (" case '%c': return %lu;\n",
1124 i
, (unsigned long int) c
->namelen
);
1127 puts (" default: break;\n"
1133 /* Write out the function which computes the register class corresponding
1134 to a register constraint. */
1136 write_reg_class_for_constraint_1 (void)
1138 struct constraint_data
*c
;
1140 puts ("enum reg_class\n"
1141 "reg_class_for_constraint_1 (enum constraint_num c)\n"
1146 FOR_ALL_CONSTRAINTS (c
)
1148 printf (" case CONSTRAINT_%s: return %s;\n", c
->c_name
, c
->regclass
);
1150 puts (" default: break;\n"
1152 " return NO_REGS;\n"
1156 /* Write out the functions which compute whether a given value matches
1157 a given non-register constraint. */
1159 write_tm_constrs_h (void)
1161 struct constraint_data
*c
;
1164 /* Generated automatically by the program '%s'\n\
1165 from the machine description file '%s'. */\n\n", progname
, in_fname
);
1168 #ifndef GCC_TM_CONSTRS_H\n\
1169 #define GCC_TM_CONSTRS_H\n");
1171 FOR_ALL_CONSTRAINTS (c
)
1172 if (!c
->is_register
)
1174 bool needs_ival
= needs_variable (c
->exp
, "ival");
1175 bool needs_hval
= needs_variable (c
->exp
, "hval");
1176 bool needs_lval
= needs_variable (c
->exp
, "lval");
1177 bool needs_rval
= needs_variable (c
->exp
, "rval");
1178 bool needs_mode
= (needs_variable (c
->exp
, "mode")
1179 || needs_hval
|| needs_lval
|| needs_rval
);
1180 bool needs_op
= (needs_variable (c
->exp
, "op")
1181 || needs_ival
|| needs_mode
);
1183 printf ("static inline bool\n"
1184 "satisfies_constraint_%s (rtx %s)\n"
1186 needs_op
? "op" : "ARG_UNUSED (op)");
1188 puts (" machine_mode mode = GET_MODE (op);");
1190 puts (" HOST_WIDE_INT ival = 0;");
1192 puts (" HOST_WIDE_INT hval = 0;");
1194 puts (" unsigned HOST_WIDE_INT lval = 0;");
1196 puts (" const REAL_VALUE_TYPE *rval = 0;");
1199 puts (" if (CONST_INT_P (op))\n"
1200 " ival = INTVAL (op);");
1201 #if TARGET_SUPPORTS_WIDE_INT
1202 if (needs_lval
|| needs_hval
)
1203 error ("you can't use lval or hval");
1206 puts (" if (GET_CODE (op) == CONST_DOUBLE && mode == VOIDmode)"
1207 " hval = CONST_DOUBLE_HIGH (op);");
1209 puts (" if (GET_CODE (op) == CONST_DOUBLE && mode == VOIDmode)"
1210 " lval = CONST_DOUBLE_LOW (op);");
1213 puts (" if (GET_CODE (op) == CONST_DOUBLE && mode != VOIDmode)"
1214 " rval = CONST_DOUBLE_REAL_VALUE (op);");
1216 write_predicate_stmts (c
->exp
);
1217 fputs ("}\n", stdout
);
1219 puts ("#endif /* tm-constrs.h */");
1222 /* Write out the wrapper function, constraint_satisfied_p, that maps
1223 a CONSTRAINT_xxx constant to one of the predicate functions generated
1226 write_constraint_satisfied_p_array (void)
1228 if (satisfied_start
== num_constraints
)
1231 printf ("bool (*constraint_satisfied_p_array[]) (rtx) = {\n ");
1232 for (unsigned int i
= satisfied_start
; i
< num_constraints
; ++i
)
1234 if (i
!= satisfied_start
)
1236 printf ("satisfies_constraint_%s", enum_order
[i
]->c_name
);
1238 printf ("\n};\n\n");
1241 /* Write out the function which computes whether a given value matches
1242 a given CONST_INT constraint. This doesn't just forward to
1243 constraint_satisfied_p because caller passes the INTVAL, not the RTX. */
1245 write_insn_const_int_ok_for_constraint (void)
1247 struct constraint_data
*c
;
1250 "insn_const_int_ok_for_constraint (HOST_WIDE_INT ival, "
1251 "enum constraint_num c)\n"
1256 FOR_ALL_CONSTRAINTS (c
)
1257 if (c
->is_const_int
)
1259 printf (" case CONSTRAINT_%s:\n return ", c
->c_name
);
1260 /* c->exp is guaranteed to be (and (match_code "const_int") (...));
1261 we know at this point that we have a const_int, so we need not
1262 bother with that part of the test. */
1263 write_predicate_expr (XEXP (c
->exp
, 1));
1264 fputs (";\n\n", stdout
);
1267 puts (" default: break;\n"
1273 /* Write a definition for a function NAME that returns true if a given
1274 constraint_num is in the range [START, END). */
1276 write_range_function (const char *name
, unsigned int start
, unsigned int end
)
1278 printf ("static inline bool\n");
1280 printf ("%s (enum constraint_num c)\n"
1282 " return c >= CONSTRAINT_%s && c <= CONSTRAINT_%s;\n"
1284 name
, enum_order
[start
]->c_name
, enum_order
[end
- 1]->c_name
);
1286 printf ("%s (enum constraint_num)\n"
1292 /* Write a definition for insn_extra_constraint_allows_reg_mem function. */
1294 write_allows_reg_mem_function (void)
1296 printf ("static inline void\n"
1297 "insn_extra_constraint_allows_reg_mem (enum constraint_num c,\n"
1298 "\t\t\t\t bool *allows_reg, bool *allows_mem)\n"
1300 if (maybe_allows_none_start
!= maybe_allows_none_end
)
1301 printf (" if (c >= CONSTRAINT_%s && c <= CONSTRAINT_%s)\n"
1303 enum_order
[maybe_allows_none_start
]->c_name
,
1304 enum_order
[maybe_allows_none_end
- 1]->c_name
);
1305 if (maybe_allows_reg_start
!= maybe_allows_reg_end
)
1306 printf (" if (c >= CONSTRAINT_%s && c <= CONSTRAINT_%s)\n"
1308 " *allows_reg = true;\n"
1311 enum_order
[maybe_allows_reg_start
]->c_name
,
1312 enum_order
[maybe_allows_reg_end
- 1]->c_name
);
1313 if (maybe_allows_mem_start
!= maybe_allows_mem_end
)
1314 printf (" if (c >= CONSTRAINT_%s && c <= CONSTRAINT_%s)\n"
1316 " *allows_mem = true;\n"
1319 enum_order
[maybe_allows_mem_start
]->c_name
,
1320 enum_order
[maybe_allows_mem_end
- 1]->c_name
);
1321 printf (" (void) c;\n"
1322 " *allows_reg = true;\n"
1323 " *allows_mem = true;\n"
1327 /* VEC is a list of key/value pairs, with the keys being lower bounds
1328 of a range. Output a decision tree that handles the keys covered by
1329 [VEC[START], VEC[END]), returning FALLBACK for keys lower then VEC[START]'s.
1330 INDENT is the number of spaces to indent the code. */
1332 print_type_tree (const vec
<std::pair
<unsigned int, const char *> > &vec
,
1333 unsigned int start
, unsigned int end
, const char *fallback
,
1334 unsigned int indent
)
1338 unsigned int mid
= (start
+ end
) / 2;
1339 printf ("%*sif (c >= CONSTRAINT_%s)\n",
1340 indent
, "", enum_order
[vec
[mid
].first
]->c_name
);
1342 print_type_tree (vec
, mid
+ 1, end
, vec
[mid
].second
, indent
+ 2);
1345 printf ("%*s{\n", indent
+ 2, "");
1346 print_type_tree (vec
, mid
+ 1, end
, vec
[mid
].second
, indent
+ 4);
1347 printf ("%*s}\n", indent
+ 2, "");
1351 printf ("%*sreturn %s;\n", indent
, "", fallback
);
1354 /* Write tm-preds.h. Unfortunately, it is impossible to forward-declare
1355 an enumeration in portable C, so we have to condition all these
1356 prototypes on HAVE_MACHINE_MODES. */
1358 write_tm_preds_h (void)
1360 struct pred_data
*p
;
1363 /* Generated automatically by the program '%s'\n\
1364 from the machine description file '%s'. */\n\n", progname
, in_fname
);
1367 #ifndef GCC_TM_PREDS_H\n\
1368 #define GCC_TM_PREDS_H\n\
1370 #ifdef HAVE_MACHINE_MODES");
1372 FOR_ALL_PREDICATES (p
)
1373 printf ("extern int %s (rtx, machine_mode);\n", p
->name
);
1375 puts ("#endif /* HAVE_MACHINE_MODES */\n");
1377 if (constraint_max_namelen
> 0)
1379 write_enum_constraint_num ();
1380 puts ("extern enum constraint_num lookup_constraint_1 (const char *);\n"
1381 "extern const unsigned char lookup_constraint_array[];\n"
1383 "/* Return the constraint at the beginning of P, or"
1384 " CONSTRAINT__UNKNOWN if it\n"
1385 " isn't recognized. */\n"
1387 "static inline enum constraint_num\n"
1388 "lookup_constraint (const char *p)\n"
1390 " unsigned int index = lookup_constraint_array"
1391 "[(unsigned char) *p];\n"
1392 " return (index == UCHAR_MAX\n"
1393 " ? lookup_constraint_1 (p)\n"
1394 " : (enum constraint_num) index);\n"
1396 if (satisfied_start
== num_constraints
)
1397 puts ("/* Return true if X satisfies constraint C. */\n"
1399 "static inline bool\n"
1400 "constraint_satisfied_p (rtx, enum constraint_num)\n"
1405 printf ("extern bool (*constraint_satisfied_p_array[]) (rtx);\n"
1407 "/* Return true if X satisfies constraint C. */\n"
1409 "static inline bool\n"
1410 "constraint_satisfied_p (rtx x, enum constraint_num c)\n"
1412 " int i = (int) c - (int) CONSTRAINT_%s;\n"
1413 " return i >= 0 && constraint_satisfied_p_array[i] (x);\n"
1416 enum_order
[satisfied_start
]->name
);
1418 write_range_function ("insn_extra_register_constraint",
1419 register_start
, register_end
);
1420 write_range_function ("insn_extra_memory_constraint",
1421 memory_start
, memory_end
);
1422 write_range_function ("insn_extra_address_constraint",
1423 address_start
, address_end
);
1424 write_allows_reg_mem_function ();
1426 if (constraint_max_namelen
> 1)
1428 write_insn_constraint_len ();
1429 puts ("#define CONSTRAINT_LEN(c_,s_) "
1430 "insn_constraint_len (c_,s_)\n");
1433 puts ("#define CONSTRAINT_LEN(c_,s_) 1\n");
1434 if (have_register_constraints
)
1435 puts ("extern enum reg_class reg_class_for_constraint_1 "
1436 "(enum constraint_num);\n"
1438 "static inline enum reg_class\n"
1439 "reg_class_for_constraint (enum constraint_num c)\n"
1441 " if (insn_extra_register_constraint (c))\n"
1442 " return reg_class_for_constraint_1 (c);\n"
1443 " return NO_REGS;\n"
1446 puts ("static inline enum reg_class\n"
1447 "reg_class_for_constraint (enum constraint_num)\n"
1449 " return NO_REGS;\n"
1451 if (have_const_int_constraints
)
1452 puts ("extern bool insn_const_int_ok_for_constraint "
1453 "(HOST_WIDE_INT, enum constraint_num);\n"
1454 "#define CONST_OK_FOR_CONSTRAINT_P(v_,c_,s_) \\\n"
1455 " insn_const_int_ok_for_constraint (v_, "
1456 "lookup_constraint (s_))\n");
1458 puts ("static inline bool\n"
1459 "insn_const_int_ok_for_constraint (HOST_WIDE_INT,"
1460 " enum constraint_num)\n"
1465 puts ("enum constraint_type\n"
1474 "static inline enum constraint_type\n"
1475 "get_constraint_type (enum constraint_num c)\n"
1477 auto_vec
<std::pair
<unsigned int, const char *>, 4> values
;
1478 if (const_int_start
!= const_int_end
)
1479 values
.safe_push (std::make_pair (const_int_start
, "CT_CONST_INT"));
1480 if (memory_start
!= memory_end
)
1481 values
.safe_push (std::make_pair (memory_start
, "CT_MEMORY"));
1482 if (address_start
!= address_end
)
1483 values
.safe_push (std::make_pair (address_start
, "CT_ADDRESS"));
1484 if (address_end
!= num_constraints
)
1485 values
.safe_push (std::make_pair (address_end
, "CT_FIXED_FORM"));
1486 print_type_tree (values
, 0, values
.length (), "CT_REGISTER", 2);
1490 puts ("#endif /* tm-preds.h */");
1493 /* Write insn-preds.c.
1494 N.B. the list of headers to include was copied from genrecog; it
1497 FUTURE: Write #line markers referring back to the machine
1498 description. (Can't practically do this now since we don't know
1499 the line number of the C block - just the line number of the enclosing
1502 write_insn_preds_c (void)
1504 struct pred_data
*p
;
1507 /* Generated automatically by the program '%s'\n\
1508 from the machine description file '%s'. */\n\n", progname
, in_fname
);
1511 #include \"config.h\"\n\
1512 #include \"system.h\"\n\
1513 #include \"coretypes.h\"\n\
1514 #include \"tm.h\"\n\
1515 #include \"rtl.h\"\n\
1516 #include \"hash-set.h\"\n\
1517 #include \"machmode.h\"\n\
1518 #include \"vec.h\"\n\
1519 #include \"double-int.h\"\n\
1520 #include \"input.h\"\n\
1521 #include \"alias.h\"\n\
1522 #include \"symtab.h\"\n\
1523 #include \"wide-int.h\"\n\
1524 #include \"inchash.h\"\n\
1525 #include \"tree.h\"\n\
1526 #include \"varasm.h\"\n\
1527 #include \"stor-layout.h\"\n\
1528 #include \"calls.h\"\n\
1529 #include \"tm_p.h\"\n\
1530 #include \"hashtab.h\"\n\
1531 #include \"hash-set.h\"\n\
1532 #include \"vec.h\"\n\
1533 #include \"machmode.h\"\n\
1534 #include \"hard-reg-set.h\"\n\
1535 #include \"input.h\"\n\
1536 #include \"function.h\"\n\
1537 #include \"insn-config.h\"\n\
1538 #include \"recog.h\"\n\
1539 #include \"output.h\"\n\
1540 #include \"flags.h\"\n\
1541 #include \"hard-reg-set.h\"\n\
1542 #include \"predict.h\"\n\
1543 #include \"basic-block.h\"\n\
1544 #include \"resource.h\"\n\
1545 #include \"diagnostic-core.h\"\n\
1546 #include \"reload.h\"\n\
1547 #include \"regs.h\"\n\
1548 #include \"tm-constrs.h\"\n");
1550 FOR_ALL_PREDICATES (p
)
1551 write_one_predicate_function (p
);
1553 if (constraint_max_namelen
> 0)
1555 write_lookup_constraint_1 ();
1556 write_lookup_constraint_array ();
1557 if (have_register_constraints
)
1558 write_reg_class_for_constraint_1 ();
1559 write_constraint_satisfied_p_array ();
1561 if (have_const_int_constraints
)
1562 write_insn_const_int_ok_for_constraint ();
1566 /* Argument parsing. */
1567 static bool gen_header
;
1568 static bool gen_constrs
;
1571 parse_option (const char *opt
)
1573 if (!strcmp (opt
, "-h"))
1578 else if (!strcmp (opt
, "-c"))
1587 /* Master control. */
1589 main (int argc
, char **argv
)
1592 int pattern_lineno
, next_insn_code
= 0;
1596 fatal ("no input file name");
1597 if (!init_rtx_reader_args_cb (argc
, argv
, parse_option
))
1598 return FATAL_EXIT_CODE
;
1600 while ((defn
= read_md_rtx (&pattern_lineno
, &next_insn_code
)) != 0)
1601 switch (GET_CODE (defn
))
1603 case DEFINE_PREDICATE
:
1604 case DEFINE_SPECIAL_PREDICATE
:
1605 process_define_predicate (defn
, pattern_lineno
);
1608 case DEFINE_CONSTRAINT
:
1609 case DEFINE_MEMORY_CONSTRAINT
:
1610 case DEFINE_ADDRESS_CONSTRAINT
:
1611 process_define_constraint (defn
, pattern_lineno
);
1614 case DEFINE_REGISTER_CONSTRAINT
:
1615 process_define_register_constraint (defn
, pattern_lineno
);
1622 choose_enum_order ();
1625 write_tm_preds_h ();
1626 else if (gen_constrs
)
1627 write_tm_constrs_h ();
1629 write_insn_preds_c ();
1631 if (have_error
|| ferror (stdout
) || fflush (stdout
) || fclose (stdout
))
1632 return FATAL_EXIT_CODE
;
1634 return SUCCESS_EXIT_CODE
;