2 Copyright (C) 1987-2015 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
22 /* Disable rtl checking; it conflicts with the iterator handling. */
23 #undef ENABLE_RTL_CHECKING
26 #include "coretypes.h"
32 #include "gensupport.h"
34 /* One element in a singly-linked list of (integer, string) pairs. */
36 struct map_value
*next
;
41 /* Maps an iterator or attribute name to a list of (integer, string) pairs.
42 The integers are iterator values; the strings are either C conditions
43 or attribute values. */
45 /* The name of the iterator or attribute. */
48 /* The group (modes or codes) to which the iterator or attribute belongs. */
49 struct iterator_group
*group
;
51 /* The list of (integer, string) pairs. */
52 struct map_value
*values
;
54 /* For iterators, records the current value of the iterator. */
55 struct map_value
*current_value
;
58 /* Vector definitions for the above. */
59 typedef struct mapping
*mapping_ptr
;
61 /* A structure for abstracting the common parts of iterators. */
62 struct iterator_group
{
63 /* Tables of "mapping" structures, one for attributes and one for
65 htab_t attrs
, iterators
;
67 /* Treat the given string as the name of a standard mode, etc., and
68 return its integer value. */
69 int (*find_builtin
) (const char *);
71 /* Make the given pointer use the given iterator value. */
72 void (*apply_iterator
) (void *, int);
75 /* Records one use of an iterator. */
77 /* The iterator itself. */
78 struct mapping
*iterator
;
80 /* The location of the use, as passed to the apply_iterator callback. */
84 /* Vector definitions for the above. */
85 typedef struct iterator_use iterator_use
;
87 /* Records one use of an attribute (the "<[iterator:]attribute>" syntax)
88 in a non-string rtx field. */
89 struct attribute_use
{
90 /* The group that describes the use site. */
91 struct iterator_group
*group
;
93 /* The name of the attribute, possibly with an "iterator:" prefix. */
96 /* The location of the use, as passed to GROUP's apply_iterator callback. */
100 /* Vector definitions for the above. */
101 typedef struct attribute_use attribute_use
;
103 /* This struct is used to link subst_attr named ATTR_NAME with
104 corresponding define_subst named ITER_NAME. */
105 struct subst_attr_to_iter_mapping
111 /* Hash-table to store links between subst-attributes and
113 htab_t subst_attr_to_iter_map
= NULL
;
114 /* This global stores name of subst-iterator which is currently being
116 const char *current_iterator_name
;
118 static void validate_const_int (const char *);
119 static rtx
read_rtx_code (const char *);
120 static rtx
read_nested_rtx (void);
121 static rtx
read_rtx_variadic (rtx
);
123 /* The mode and code iterator structures. */
124 static struct iterator_group modes
, codes
, ints
, substs
;
126 /* All iterators used in the current rtx. */
127 static vec
<mapping_ptr
> current_iterators
;
129 /* The list of all iterator uses in the current rtx. */
130 static vec
<iterator_use
> iterator_uses
;
132 /* The list of all attribute uses in the current rtx. */
133 static vec
<attribute_use
> attribute_uses
;
135 /* Implementations of the iterator_group callbacks for modes. */
138 find_mode (const char *name
)
142 for (i
= 0; i
< NUM_MACHINE_MODES
; i
++)
143 if (strcmp (GET_MODE_NAME (i
), name
) == 0)
146 fatal_with_file_and_line ("unknown mode `%s'", name
);
150 apply_mode_iterator (void *loc
, int mode
)
152 PUT_MODE ((rtx
) loc
, (machine_mode
) mode
);
155 /* Implementations of the iterator_group callbacks for codes. */
158 find_code (const char *name
)
162 for (i
= 0; i
< NUM_RTX_CODE
; i
++)
163 if (strcmp (GET_RTX_NAME (i
), name
) == 0)
166 fatal_with_file_and_line ("unknown rtx code `%s'", name
);
170 apply_code_iterator (void *loc
, int code
)
172 PUT_CODE ((rtx
) loc
, (enum rtx_code
) code
);
175 /* Implementations of the iterator_group callbacks for ints. */
177 /* Since GCC does not construct a table of valid constants,
178 we have to accept any int as valid. No cross-checking can
182 find_int (const char *name
)
184 validate_const_int (name
);
189 apply_int_iterator (void *loc
, int value
)
194 /* This routine adds attribute or does nothing depending on VALUE. When
195 VALUE is 1, it does nothing - the first duplicate of original
196 template is kept untouched when it's subjected to a define_subst.
197 When VALUE isn't 1, the routine modifies RTL-template LOC, adding
198 attribute, named exactly as define_subst, which later will be
199 applied. If such attribute has already been added, then no the
200 routine has no effect. */
202 apply_subst_iterator (void *loc
, int value
)
206 rtvec attrs_vec
, new_attrs_vec
;
210 gcc_assert (GET_CODE (rt
) == DEFINE_INSN
211 || GET_CODE (rt
) == DEFINE_EXPAND
);
213 attrs_vec
= XVEC (rt
, 4);
215 /* If we've already added attribute 'current_iterator_name', then we
216 have nothing to do now. */
219 for (i
= 0; i
< GET_NUM_ELEM (attrs_vec
); i
++)
221 if (strcmp (XSTR (attrs_vec
->elem
[i
], 0), current_iterator_name
) == 0)
226 /* Add attribute with subst name - it serves as a mark for
227 define_subst which later would be applied to this pattern. */
228 new_attr
= rtx_alloc (SET_ATTR
);
229 PUT_CODE (new_attr
, SET_ATTR
);
230 XSTR (new_attr
, 0) = xstrdup (current_iterator_name
);
231 XSTR (new_attr
, 1) = xstrdup ("yes");
235 new_attrs_vec
= rtvec_alloc (1);
236 new_attrs_vec
->elem
[0] = new_attr
;
240 new_attrs_vec
= rtvec_alloc (GET_NUM_ELEM (attrs_vec
) + 1);
241 memcpy (&new_attrs_vec
->elem
[0], &attrs_vec
->elem
[0],
242 GET_NUM_ELEM (attrs_vec
) * sizeof (rtx
));
243 new_attrs_vec
->elem
[GET_NUM_ELEM (attrs_vec
)] = new_attr
;
245 XVEC (rt
, 4) = new_attrs_vec
;
248 /* Map subst-attribute ATTR to subst iterator ITER. */
251 bind_subst_iter_and_attr (const char *iter
, const char *attr
)
253 struct subst_attr_to_iter_mapping
*value
;
255 if (!subst_attr_to_iter_map
)
256 subst_attr_to_iter_map
=
257 htab_create (1, leading_string_hash
, leading_string_eq_p
, 0);
258 value
= XNEW (struct subst_attr_to_iter_mapping
);
259 value
->attr_name
= xstrdup (attr
);
260 value
->iter_name
= xstrdup (iter
);
261 slot
= htab_find_slot (subst_attr_to_iter_map
, value
, INSERT
);
265 /* Return name of a subst-iterator, corresponding to subst-attribute ATTR. */
268 find_subst_iter_by_attr (const char *attr
)
270 char *iter_name
= NULL
;
271 struct subst_attr_to_iter_mapping
*value
;
272 value
= (struct subst_attr_to_iter_mapping
*)
273 htab_find (subst_attr_to_iter_map
, &attr
);
275 iter_name
= value
->iter_name
;
279 /* Map attribute string P to its current value. Return null if the attribute
282 static struct map_value
*
283 map_attr_string (const char *p
)
286 struct mapping
*iterator
;
290 int iterator_name_len
;
292 /* Peel off any "iterator:" prefix. Set ATTR to the start of the
294 attr
= strchr (p
, ':');
297 iterator_name_len
= -1;
302 iterator_name_len
= attr
- p
;
306 FOR_EACH_VEC_ELT (current_iterators
, i
, iterator
)
308 /* If an iterator name was specified, check that it matches. */
309 if (iterator_name_len
>= 0
310 && (strncmp (p
, iterator
->name
, iterator_name_len
) != 0
311 || iterator
->name
[iterator_name_len
] != 0))
314 /* Find the attribute specification. */
315 m
= (struct mapping
*) htab_find (iterator
->group
->attrs
, &attr
);
318 /* In contrast to code/mode/int iterators, attributes of subst
319 iterators are linked to one specific subst-iterator. So, if
320 we are dealing with subst-iterator, we should check if it's
321 the one which linked with the given attribute. */
322 if (iterator
->group
== &substs
)
324 char *iter_name
= find_subst_iter_by_attr (attr
);
325 if (strcmp (iter_name
, iterator
->name
) != 0)
328 /* Find the attribute value associated with the current
330 for (v
= m
->values
; v
; v
= v
->next
)
331 if (v
->number
== iterator
->current_value
->number
)
338 /* Apply the current iterator values to STRING. Return the new string
339 if any changes were needed, otherwise return STRING itself. */
342 apply_iterator_to_string (const char *string
)
344 char *base
, *copy
, *p
, *start
, *end
;
350 base
= p
= copy
= ASTRDUP (string
);
351 while ((start
= strchr (p
, '<')) && (end
= strchr (start
, '>')))
356 v
= map_attr_string (p
);
361 /* Add everything between the last copied byte and the '<',
362 then add in the attribute value. */
363 obstack_grow (&string_obstack
, base
, start
- base
);
364 obstack_grow (&string_obstack
, v
->string
, strlen (v
->string
));
369 obstack_grow (&string_obstack
, base
, strlen (base
) + 1);
370 copy
= XOBFINISH (&string_obstack
, char *);
371 copy_md_ptr_loc (copy
, string
);
377 /* Return a deep copy of X, substituting the current iterator
378 values into any strings. */
381 copy_rtx_for_iterators (rtx original
)
383 const char *format_ptr
, *p
;
390 /* Create a shallow copy of ORIGINAL. */
391 x
= rtx_alloc (GET_CODE (original
));
392 memcpy (x
, original
, RTX_CODE_SIZE (GET_CODE (original
)));
394 /* Change each string and recursively change each rtx. */
395 format_ptr
= GET_RTX_FORMAT (GET_CODE (original
));
396 for (i
= 0; format_ptr
[i
] != 0; i
++)
397 switch (format_ptr
[i
])
400 while (XTMPL (x
, i
) != (p
= apply_iterator_to_string (XTMPL (x
, i
))))
406 while (XSTR (x
, i
) != (p
= apply_iterator_to_string (XSTR (x
, i
))))
411 XEXP (x
, i
) = copy_rtx_for_iterators (XEXP (x
, i
));
416 if (XVEC (original
, i
))
418 XVEC (x
, i
) = rtvec_alloc (XVECLEN (original
, i
));
419 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
421 = copy_rtx_for_iterators (XVECEXP (original
, i
, j
));
431 /* Return a condition that must satisfy both ORIGINAL and EXTRA. If ORIGINAL
432 has the form "&& ..." (as used in define_insn_and_splits), assume that
433 EXTRA is already satisfied. Empty strings are treated like "true". */
436 add_condition_to_string (const char *original
, const char *extra
)
438 if (original
!= 0 && original
[0] == '&' && original
[1] == '&')
440 return join_c_conditions (original
, extra
);
443 /* Like add_condition, but applied to all conditions in rtx X. */
446 add_condition_to_rtx (rtx x
, const char *extra
)
448 switch (GET_CODE (x
))
453 XSTR (x
, 2) = add_condition_to_string (XSTR (x
, 2), extra
);
457 case DEFINE_PEEPHOLE
:
458 case DEFINE_PEEPHOLE2
:
459 case DEFINE_COND_EXEC
:
460 XSTR (x
, 1) = add_condition_to_string (XSTR (x
, 1), extra
);
463 case DEFINE_INSN_AND_SPLIT
:
464 XSTR (x
, 2) = add_condition_to_string (XSTR (x
, 2), extra
);
465 XSTR (x
, 4) = add_condition_to_string (XSTR (x
, 4), extra
);
473 /* Apply the current iterator values to all attribute_uses. */
476 apply_attribute_uses (void)
482 FOR_EACH_VEC_ELT (attribute_uses
, i
, ause
)
484 v
= map_attr_string (ause
->value
);
486 fatal_with_file_and_line ("unknown iterator value `%s'", ause
->value
);
487 ause
->group
->apply_iterator (ause
->ptr
,
488 ause
->group
->find_builtin (v
->string
));
492 /* A htab_traverse callback for iterators. Add all used iterators
493 to current_iterators. */
496 add_current_iterators (void **slot
, void *data ATTRIBUTE_UNUSED
)
498 struct mapping
*iterator
;
500 iterator
= (struct mapping
*) *slot
;
501 if (iterator
->current_value
)
502 current_iterators
.safe_push (iterator
);
506 /* Expand all iterators in the current rtx, which is given as ORIGINAL.
507 Build a list of expanded rtxes in the EXPR_LIST pointed to by QUEUE. */
510 apply_iterators (rtx original
, rtx
*queue
)
513 const char *condition
;
515 struct mapping
*iterator
;
519 if (iterator_uses
.is_empty ())
521 /* Raise an error if any attributes were used. */
522 apply_attribute_uses ();
523 XEXP (*queue
, 0) = original
;
524 XEXP (*queue
, 1) = NULL_RTX
;
528 /* Clear out the iterators from the previous run. */
529 FOR_EACH_VEC_ELT (current_iterators
, i
, iterator
)
530 iterator
->current_value
= NULL
;
531 current_iterators
.truncate (0);
533 /* Mark the iterators that we need this time. */
534 FOR_EACH_VEC_ELT (iterator_uses
, i
, iuse
)
535 iuse
->iterator
->current_value
= iuse
->iterator
->values
;
537 /* Get the list of iterators that are in use, preserving the
538 definition order within each group. */
539 htab_traverse (modes
.iterators
, add_current_iterators
, NULL
);
540 htab_traverse (codes
.iterators
, add_current_iterators
, NULL
);
541 htab_traverse (ints
.iterators
, add_current_iterators
, NULL
);
542 htab_traverse (substs
.iterators
, add_current_iterators
, NULL
);
543 gcc_assert (!current_iterators
.is_empty ());
547 /* Apply the current iterator values. Accumulate a condition to
548 say when the resulting rtx can be used. */
550 FOR_EACH_VEC_ELT (iterator_uses
, i
, iuse
)
552 if (iuse
->iterator
->group
== &substs
)
554 v
= iuse
->iterator
->current_value
;
555 iuse
->iterator
->group
->apply_iterator (iuse
->ptr
, v
->number
);
556 condition
= join_c_conditions (condition
, v
->string
);
558 apply_attribute_uses ();
559 x
= copy_rtx_for_iterators (original
);
560 add_condition_to_rtx (x
, condition
);
562 /* We apply subst iterator after RTL-template is copied, as during
563 subst-iterator processing, we could add an attribute to the
564 RTL-template, and we don't want to do it in the original one. */
565 FOR_EACH_VEC_ELT (iterator_uses
, i
, iuse
)
567 v
= iuse
->iterator
->current_value
;
568 if (iuse
->iterator
->group
== &substs
)
571 current_iterator_name
= iuse
->iterator
->name
;
572 iuse
->iterator
->group
->apply_iterator (iuse
->ptr
, v
->number
);
575 /* Add the new rtx to the end of the queue. */
576 XEXP (*queue
, 0) = x
;
577 XEXP (*queue
, 1) = NULL_RTX
;
579 /* Lexicographically increment the iterator value sequence.
580 That is, cycle through iterator values, starting from the right,
581 and stopping when one of them doesn't wrap around. */
582 i
= current_iterators
.length ();
588 iterator
= current_iterators
[i
];
589 iterator
->current_value
= iterator
->current_value
->next
;
590 if (iterator
->current_value
)
592 iterator
->current_value
= iterator
->values
;
595 /* At least one more rtx to go. Allocate room for it. */
596 XEXP (*queue
, 1) = rtx_alloc (EXPR_LIST
);
597 queue
= &XEXP (*queue
, 1);
601 /* Add a new "mapping" structure to hashtable TABLE. NAME is the name
602 of the mapping and GROUP is the group to which it belongs. */
604 static struct mapping
*
605 add_mapping (struct iterator_group
*group
, htab_t table
, const char *name
)
610 m
= XNEW (struct mapping
);
611 m
->name
= xstrdup (name
);
614 m
->current_value
= NULL
;
616 slot
= htab_find_slot (table
, m
, INSERT
);
618 fatal_with_file_and_line ("`%s' already defined", name
);
624 /* Add the pair (NUMBER, STRING) to a list of map_value structures.
625 END_PTR points to the current null terminator for the list; return
626 a pointer the new null terminator. */
628 static struct map_value
**
629 add_map_value (struct map_value
**end_ptr
, int number
, const char *string
)
631 struct map_value
*value
;
633 value
= XNEW (struct map_value
);
635 value
->number
= number
;
636 value
->string
= string
;
642 /* Do one-time initialization of the mode and code attributes. */
645 initialize_iterators (void)
647 struct mapping
*lower
, *upper
;
648 struct map_value
**lower_ptr
, **upper_ptr
;
652 modes
.attrs
= htab_create (13, leading_string_hash
, leading_string_eq_p
, 0);
653 modes
.iterators
= htab_create (13, leading_string_hash
,
654 leading_string_eq_p
, 0);
655 modes
.find_builtin
= find_mode
;
656 modes
.apply_iterator
= apply_mode_iterator
;
658 codes
.attrs
= htab_create (13, leading_string_hash
, leading_string_eq_p
, 0);
659 codes
.iterators
= htab_create (13, leading_string_hash
,
660 leading_string_eq_p
, 0);
661 codes
.find_builtin
= find_code
;
662 codes
.apply_iterator
= apply_code_iterator
;
664 ints
.attrs
= htab_create (13, leading_string_hash
, leading_string_eq_p
, 0);
665 ints
.iterators
= htab_create (13, leading_string_hash
,
666 leading_string_eq_p
, 0);
667 ints
.find_builtin
= find_int
;
668 ints
.apply_iterator
= apply_int_iterator
;
670 substs
.attrs
= htab_create (13, leading_string_hash
, leading_string_eq_p
, 0);
671 substs
.iterators
= htab_create (13, leading_string_hash
,
672 leading_string_eq_p
, 0);
673 substs
.find_builtin
= find_int
; /* We don't use it, anyway. */
674 substs
.apply_iterator
= apply_subst_iterator
;
676 lower
= add_mapping (&modes
, modes
.attrs
, "mode");
677 upper
= add_mapping (&modes
, modes
.attrs
, "MODE");
678 lower_ptr
= &lower
->values
;
679 upper_ptr
= &upper
->values
;
680 for (i
= 0; i
< MAX_MACHINE_MODE
; i
++)
682 copy
= xstrdup (GET_MODE_NAME (i
));
683 for (p
= copy
; *p
!= 0; p
++)
686 upper_ptr
= add_map_value (upper_ptr
, i
, GET_MODE_NAME (i
));
687 lower_ptr
= add_map_value (lower_ptr
, i
, copy
);
690 lower
= add_mapping (&codes
, codes
.attrs
, "code");
691 upper
= add_mapping (&codes
, codes
.attrs
, "CODE");
692 lower_ptr
= &lower
->values
;
693 upper_ptr
= &upper
->values
;
694 for (i
= 0; i
< NUM_RTX_CODE
; i
++)
696 copy
= xstrdup (GET_RTX_NAME (i
));
697 for (p
= copy
; *p
!= 0; p
++)
700 lower_ptr
= add_map_value (lower_ptr
, i
, GET_RTX_NAME (i
));
701 upper_ptr
= add_map_value (upper_ptr
, i
, copy
);
705 /* Provide a version of a function to read a long long if the system does
707 #if HOST_BITS_PER_WIDE_INT > HOST_BITS_PER_LONG && !defined(HAVE_ATOLL) && !defined(HAVE_ATOQ)
708 HOST_WIDE_INT
atoll (const char *);
711 atoll (const char *p
)
714 HOST_WIDE_INT tmp_wide
;
726 HOST_WIDE_INT new_wide
= tmp_wide
*10 + (*p
- '0');
727 if (new_wide
< tmp_wide
)
729 /* Return INT_MAX equiv on overflow. */
730 tmp_wide
= (~(unsigned HOST_WIDE_INT
) 0) >> 1;
738 tmp_wide
= -tmp_wide
;
743 /* Process a define_conditions directive, starting with the optional
744 space after the "define_conditions". The directive looks like this:
752 It's not intended to appear in machine descriptions. It is
753 generated by (the program generated by) genconditions.c, and
754 slipped in at the beginning of the sequence of MD files read by
755 most of the other generators. */
757 read_conditions (void)
761 c
= read_skip_spaces ();
763 fatal_expected_char ('[', c
);
765 while ( (c
= read_skip_spaces ()) != ']')
772 fatal_expected_char ('(', c
);
775 validate_const_int (name
.string
);
776 value
= atoi (name
.string
);
778 c
= read_skip_spaces ();
780 fatal_expected_char ('"', c
);
781 expr
= read_quoted_string ();
783 c
= read_skip_spaces ();
785 fatal_expected_char (')', c
);
787 add_c_test (expr
, value
);
792 validate_const_int (const char *string
)
798 while (*cp
&& ISSPACE (*cp
))
800 if (*cp
== '-' || *cp
== '+')
811 fatal_with_file_and_line ("invalid decimal constant \"%s\"\n", string
);
815 validate_const_wide_int (const char *string
)
821 while (*cp
&& ISSPACE (*cp
))
823 /* Skip the leading 0x. */
824 if (cp
[0] == '0' || cp
[1] == 'x')
831 if (! ISXDIGIT (*cp
))
834 fatal_with_file_and_line ("invalid hex constant \"%s\"\n", string
);
837 /* Record that PTR uses iterator ITERATOR. */
840 record_iterator_use (struct mapping
*iterator
, void *ptr
)
842 struct iterator_use iuse
= {iterator
, ptr
};
843 iterator_uses
.safe_push (iuse
);
846 /* Record that PTR uses attribute VALUE, which must match a built-in
847 value from group GROUP. */
850 record_attribute_use (struct iterator_group
*group
, void *ptr
,
853 struct attribute_use ause
= {group
, value
, ptr
};
854 attribute_uses
.safe_push (ause
);
857 /* Interpret NAME as either a built-in value, iterator or attribute
858 for group GROUP. PTR is the value to pass to GROUP's apply_iterator
862 record_potential_iterator_use (struct iterator_group
*group
, void *ptr
,
869 if (name
[0] == '<' && name
[len
- 1] == '>')
871 /* Copy the attribute string into permanent storage, without the
872 angle brackets around it. */
873 obstack_grow0 (&string_obstack
, name
+ 1, len
- 2);
874 record_attribute_use (group
, ptr
, XOBFINISH (&string_obstack
, char *));
878 m
= (struct mapping
*) htab_find (group
->iterators
, &name
);
880 record_iterator_use (m
, ptr
);
882 group
->apply_iterator (ptr
, group
->find_builtin (name
));
886 /* Finish reading a declaration of the form:
888 (define... <name> [<value1> ... <valuen>])
890 from the MD file, where each <valuei> is either a bare symbol name or a
891 "(<name> <string>)" pair. The "(define..." part has already been read.
893 Represent the declaration as a "mapping" structure; add it to TABLE
894 (which belongs to GROUP) and return it. */
896 static struct mapping
*
897 read_mapping (struct iterator_group
*group
, htab_t table
)
901 struct map_value
**end_ptr
;
905 /* Read the mapping name and create a structure for it. */
907 m
= add_mapping (group
, table
, name
.string
);
909 c
= read_skip_spaces ();
911 fatal_expected_char ('[', c
);
913 /* Read each value. */
914 end_ptr
= &m
->values
;
915 c
= read_skip_spaces ();
920 /* A bare symbol name that is implicitly paired to an
928 /* A "(name string)" pair. */
930 string
= read_string (false);
931 c
= read_skip_spaces ();
933 fatal_expected_char (')', c
);
935 number
= group
->find_builtin (name
.string
);
936 end_ptr
= add_map_value (end_ptr
, number
, string
);
937 c
= read_skip_spaces ();
944 /* For iterator with name ATTR_NAME generate define_attr with values
945 'yes' and 'no'. This attribute is used to mark templates to which
946 define_subst ATTR_NAME should be applied. This attribute is set and
947 defined implicitly and automatically. */
949 add_define_attr_for_define_subst (const char *attr_name
, rtx
*queue
)
951 rtx const_str
, return_rtx
;
953 return_rtx
= rtx_alloc (DEFINE_ATTR
);
954 PUT_CODE (return_rtx
, DEFINE_ATTR
);
956 const_str
= rtx_alloc (CONST_STRING
);
957 PUT_CODE (const_str
, CONST_STRING
);
958 XSTR (const_str
, 0) = xstrdup ("no");
960 XSTR (return_rtx
, 0) = xstrdup (attr_name
);
961 XSTR (return_rtx
, 1) = xstrdup ("no,yes");
962 XEXP (return_rtx
, 2) = const_str
;
964 XEXP (*queue
, 0) = return_rtx
;
965 XEXP (*queue
, 1) = NULL_RTX
;
968 /* This routine generates DEFINE_SUBST_ATTR expression with operands
969 ATTR_OPERANDS and places it to QUEUE. */
971 add_define_subst_attr (const char **attr_operands
, rtx
*queue
)
976 return_rtx
= rtx_alloc (DEFINE_SUBST_ATTR
);
977 PUT_CODE (return_rtx
, DEFINE_SUBST_ATTR
);
979 for (i
= 0; i
< 4; i
++)
980 XSTR (return_rtx
, i
) = xstrdup (attr_operands
[i
]);
982 XEXP (*queue
, 0) = return_rtx
;
983 XEXP (*queue
, 1) = NULL_RTX
;
986 /* Read define_subst_attribute construction. It has next form:
987 (define_subst_attribute <attribute_name> <iterator_name> <value1> <value2>)
988 Attribute is substituted with value1 when no subst is applied and with
989 value2 in the opposite case.
990 Attributes are added to SUBST_ATTRS_TABLE.
991 In case the iterator is encountered for the first time, it's added to
992 SUBST_ITERS_TABLE. Also, implicit define_attr is generated. */
995 read_subst_mapping (htab_t subst_iters_table
, htab_t subst_attrs_table
,
999 struct map_value
**end_ptr
;
1000 const char *attr_operands
[4];
1001 rtx
* queue_elem
= queue
;
1004 for (i
= 0; i
< 4; i
++)
1005 attr_operands
[i
] = read_string (false);
1007 add_define_subst_attr (attr_operands
, queue_elem
);
1009 bind_subst_iter_and_attr (attr_operands
[1], attr_operands
[0]);
1011 m
= (struct mapping
*) htab_find (substs
.iterators
, &attr_operands
[1]);
1014 m
= add_mapping (&substs
, subst_iters_table
, attr_operands
[1]);
1015 end_ptr
= &m
->values
;
1016 end_ptr
= add_map_value (end_ptr
, 1, "");
1017 end_ptr
= add_map_value (end_ptr
, 2, "");
1019 /* Add element to the queue. */
1020 XEXP (*queue
, 1) = rtx_alloc (EXPR_LIST
);
1021 queue_elem
= &XEXP (*queue
, 1);
1023 add_define_attr_for_define_subst (attr_operands
[1], queue_elem
);
1026 m
= add_mapping (&substs
, subst_attrs_table
, attr_operands
[0]);
1027 end_ptr
= &m
->values
;
1028 end_ptr
= add_map_value (end_ptr
, 1, attr_operands
[2]);
1029 end_ptr
= add_map_value (end_ptr
, 2, attr_operands
[3]);
1032 /* Check newly-created code iterator ITERATOR to see whether every code has the
1036 check_code_iterator (struct mapping
*iterator
)
1038 struct map_value
*v
;
1039 enum rtx_code bellwether
;
1041 bellwether
= (enum rtx_code
) iterator
->values
->number
;
1042 for (v
= iterator
->values
->next
; v
!= 0; v
= v
->next
)
1043 if (strcmp (GET_RTX_FORMAT (bellwether
), GET_RTX_FORMAT (v
->number
)) != 0)
1044 fatal_with_file_and_line ("code iterator `%s' combines "
1045 "different rtx formats", iterator
->name
);
1048 /* Read an rtx-related declaration from the MD file, given that it
1049 starts with directive name RTX_NAME. Return true if it expands to
1050 one or more rtxes (as defined by rtx.def). When returning true,
1051 store the list of rtxes as an EXPR_LIST in *X. */
1054 read_rtx (const char *rtx_name
, rtx
*x
)
1056 static rtx queue_head
;
1058 /* Do one-time initialization. */
1059 if (queue_head
== 0)
1061 initialize_iterators ();
1062 queue_head
= rtx_alloc (EXPR_LIST
);
1065 /* Handle various rtx-related declarations that aren't themselves
1066 encoded as rtxes. */
1067 if (strcmp (rtx_name
, "define_conditions") == 0)
1072 if (strcmp (rtx_name
, "define_mode_attr") == 0)
1074 read_mapping (&modes
, modes
.attrs
);
1077 if (strcmp (rtx_name
, "define_mode_iterator") == 0)
1079 read_mapping (&modes
, modes
.iterators
);
1082 if (strcmp (rtx_name
, "define_code_attr") == 0)
1084 read_mapping (&codes
, codes
.attrs
);
1087 if (strcmp (rtx_name
, "define_code_iterator") == 0)
1089 check_code_iterator (read_mapping (&codes
, codes
.iterators
));
1092 if (strcmp (rtx_name
, "define_int_attr") == 0)
1094 read_mapping (&ints
, ints
.attrs
);
1097 if (strcmp (rtx_name
, "define_int_iterator") == 0)
1099 read_mapping (&ints
, ints
.iterators
);
1102 if (strcmp (rtx_name
, "define_subst_attr") == 0)
1104 read_subst_mapping (substs
.iterators
, substs
.attrs
, &queue_head
);
1107 /* READ_SUBST_MAPPING could generate a new DEFINE_ATTR. Return
1108 TRUE to process it. */
1112 apply_iterators (read_rtx_code (rtx_name
), &queue_head
);
1113 iterator_uses
.truncate (0);
1114 attribute_uses
.truncate (0);
1120 /* Subroutine of read_rtx and read_nested_rtx. CODE_NAME is the name of
1121 either an rtx code or a code iterator. Parse the rest of the rtx and
1125 read_rtx_code (const char *code_name
)
1129 struct mapping
*iterator
, *m
;
1130 const char *format_ptr
;
1131 struct md_name name
;
1134 HOST_WIDE_INT tmp_wide
;
1136 char *start
, *end
, *ptr
;
1139 /* Linked list structure for making RTXs: */
1142 struct rtx_list
*next
;
1143 rtx value
; /* Value of this node. */
1146 /* If this code is an iterator, build the rtx using the iterator's
1148 iterator
= (struct mapping
*) htab_find (codes
.iterators
, &code_name
);
1150 code
= (enum rtx_code
) iterator
->values
->number
;
1152 code
= (enum rtx_code
) codes
.find_builtin (code_name
);
1154 /* If we end up with an insn expression then we free this space below. */
1155 return_rtx
= rtx_alloc (code
);
1156 format_ptr
= GET_RTX_FORMAT (code
);
1157 memset (return_rtx
, 0, RTX_CODE_SIZE (code
));
1158 PUT_CODE (return_rtx
, code
);
1161 record_iterator_use (iterator
, return_rtx
);
1163 /* If what follows is `: mode ', read it and
1164 store the mode in the rtx. */
1166 i
= read_skip_spaces ();
1170 record_potential_iterator_use (&modes
, return_rtx
, name
.string
);
1175 for (i
= 0; format_ptr
[i
] != 0; i
++)
1176 switch (format_ptr
[i
])
1178 /* 0 means a field for internal use only.
1179 Don't expect it to be present in the input. */
1182 ORIGINAL_REGNO (return_rtx
) = REGNO (return_rtx
);
1187 XEXP (return_rtx
, i
) = read_nested_rtx ();
1191 /* 'V' is an optional vector: if a closeparen follows,
1192 just store NULL for this element. */
1193 c
= read_skip_spaces ();
1197 XVEC (return_rtx
, i
) = 0;
1200 /* Now process the vector. */
1204 /* Obstack to store scratch vector in. */
1205 struct obstack vector_stack
;
1206 int list_counter
= 0;
1207 rtvec return_vec
= NULL_RTVEC
;
1209 c
= read_skip_spaces ();
1211 fatal_expected_char ('[', c
);
1213 /* Add expressions to a list, while keeping a count. */
1214 obstack_init (&vector_stack
);
1215 while ((c
= read_skip_spaces ()) && c
!= ']')
1218 fatal_expected_char (']', c
);
1221 obstack_ptr_grow (&vector_stack
, read_nested_rtx ());
1223 if (list_counter
> 0)
1225 return_vec
= rtvec_alloc (list_counter
);
1226 memcpy (&return_vec
->elem
[0], obstack_finish (&vector_stack
),
1227 list_counter
* sizeof (rtx
));
1229 else if (format_ptr
[i
] == 'E')
1230 fatal_with_file_and_line ("vector must have at least one element");
1231 XVEC (return_rtx
, i
) = return_vec
;
1232 obstack_free (&vector_stack
, NULL
);
1233 /* close bracket gotten */
1244 c
= read_skip_spaces ();
1248 /* 'S' fields are optional and should be NULL if no string
1249 was given. Also allow normal 's' and 'T' strings to be
1250 omitted, treating them in the same way as empty strings. */
1251 XSTR (return_rtx
, i
) = (format_ptr
[i
] == 'S' ? NULL
: "");
1255 /* The output template slot of a DEFINE_INSN,
1256 DEFINE_INSN_AND_SPLIT, or DEFINE_PEEPHOLE automatically
1257 gets a star inserted as its first character, if it is
1258 written with a brace block instead of a string constant. */
1259 star_if_braced
= (format_ptr
[i
] == 'T');
1261 stringbuf
= read_string (star_if_braced
);
1263 /* For insn patterns, we want to provide a default name
1264 based on the file and line, like "*foo.md:12", if the
1265 given name is blank. These are only for define_insn and
1266 define_insn_and_split, to aid debugging. */
1267 if (*stringbuf
== '\0'
1269 && (GET_CODE (return_rtx
) == DEFINE_INSN
1270 || GET_CODE (return_rtx
) == DEFINE_INSN_AND_SPLIT
))
1273 const char *fn
= (read_md_filename
? read_md_filename
: "rtx");
1275 for (slash
= fn
; *slash
; slash
++)
1276 if (*slash
== '/' || *slash
== '\\' || *slash
== ':')
1278 obstack_1grow (&string_obstack
, '*');
1279 obstack_grow (&string_obstack
, fn
, strlen (fn
));
1280 sprintf (line_name
, ":%d", read_md_lineno
);
1281 obstack_grow (&string_obstack
, line_name
, strlen (line_name
)+1);
1282 stringbuf
= XOBFINISH (&string_obstack
, char *);
1285 /* Find attr-names in the string. */
1288 while ((start
= strchr (end
, '<')) && (end
= strchr (start
, '>')))
1290 if ((end
- start
- 1 > 0)
1291 && (end
- start
- 1 < (int)sizeof (tmpstr
)))
1293 strncpy (tmpstr
, start
+1, end
-start
-1);
1294 tmpstr
[end
-start
-1] = 0;
1299 m
= (struct mapping
*) htab_find (substs
.attrs
, &ptr
);
1302 /* Here we should find linked subst-iter. */
1303 str
= find_subst_iter_by_attr (ptr
);
1305 m
= (struct mapping
*) htab_find (substs
.iterators
, &str
);
1310 record_iterator_use (m
, return_rtx
);
1314 XTMPL (return_rtx
, i
) = stringbuf
;
1316 XSTR (return_rtx
, i
) = stringbuf
;
1322 validate_const_int (name
.string
);
1323 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
1324 tmp_wide
= atoi (name
.string
);
1326 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG
1327 tmp_wide
= atol (name
.string
);
1329 /* Prefer atoll over atoq, since the former is in the ISO C99 standard.
1330 But prefer not to use our hand-rolled function above either. */
1331 #if defined(HAVE_ATOLL) || !defined(HAVE_ATOQ)
1332 tmp_wide
= atoll (name
.string
);
1334 tmp_wide
= atoq (name
.string
);
1338 XWINT (return_rtx
, i
) = tmp_wide
;
1343 /* Can be an iterator or an integer constant. */
1345 record_potential_iterator_use (&ints
, &XINT (return_rtx
, i
),
1353 if (CONST_WIDE_INT_P (return_rtx
))
1356 validate_const_wide_int (name
.string
);
1358 const char *s
= name
.string
;
1361 int gs
= HOST_BITS_PER_WIDE_INT
/4;
1363 char * buf
= XALLOCAVEC (char, gs
+ 1);
1364 unsigned HOST_WIDE_INT wi
;
1367 /* Skip the leading spaces. */
1368 while (*s
&& ISSPACE (*s
))
1371 /* Skip the leading 0x. */
1372 gcc_assert (s
[0] == '0');
1373 gcc_assert (s
[1] == 'x');
1378 wlen
= (len
+ gs
- 1) / gs
; /* Number of words needed */
1380 return_rtx
= const_wide_int_alloc (wlen
);
1384 #if HOST_BITS_PER_WIDE_INT == 64
1385 sscanf (s
+ pos
, "%16" HOST_WIDE_INT_PRINT
"x", &wi
);
1387 sscanf (s
+ pos
, "%8" HOST_WIDE_INT_PRINT
"x", &wi
);
1389 CWI_ELT (return_rtx
, index
++) = wi
;
1392 strncpy (buf
, s
, gs
- pos
);
1394 sscanf (buf
, "%" HOST_WIDE_INT_PRINT
"x", &wi
);
1395 CWI_ELT (return_rtx
, index
++) = wi
;
1396 /* TODO: After reading, do we want to canonicalize with:
1397 value = lookup_const_wide_int (value); ? */
1401 c
= read_skip_spaces ();
1402 /* Syntactic sugar for AND and IOR, allowing Lisp-like
1403 arbitrary number of arguments for them. */
1405 && (GET_CODE (return_rtx
) == AND
1406 || GET_CODE (return_rtx
) == IOR
))
1407 return read_rtx_variadic (return_rtx
);
1413 /* Read a nested rtx construct from the MD file and return it. */
1416 read_nested_rtx (void)
1418 struct md_name name
;
1422 c
= read_skip_spaces ();
1424 fatal_expected_char ('(', c
);
1427 if (strcmp (name
.string
, "nil") == 0)
1430 return_rtx
= read_rtx_code (name
.string
);
1432 c
= read_skip_spaces ();
1434 fatal_expected_char (')', c
);
1439 /* Mutually recursive subroutine of read_rtx which reads
1440 (thing x1 x2 x3 ...) and produces RTL as if
1441 (thing x1 (thing x2 (thing x3 ...))) had been written.
1442 When called, FORM is (thing x1 x2), and the file position
1443 is just past the leading parenthesis of x3. Only works
1444 for THINGs which are dyadic expressions, e.g. AND, IOR. */
1446 read_rtx_variadic (rtx form
)
1455 q
= rtx_alloc (GET_CODE (p
));
1456 PUT_MODE (q
, GET_MODE (p
));
1458 XEXP (q
, 0) = XEXP (p
, 1);
1459 XEXP (q
, 1) = read_nested_rtx ();
1463 c
= read_skip_spaces ();