2 Copyright (C) 1987-2016 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"
31 #include "gensupport.h"
33 /* One element in a singly-linked list of (integer, string) pairs. */
35 struct map_value
*next
;
40 /* Maps an iterator or attribute name to a list of (integer, string) pairs.
41 The integers are iterator values; the strings are either C conditions
42 or attribute values. */
44 /* The name of the iterator or attribute. */
47 /* The group (modes or codes) to which the iterator or attribute belongs. */
48 struct iterator_group
*group
;
50 /* The list of (integer, string) pairs. */
51 struct map_value
*values
;
53 /* For iterators, records the current value of the iterator. */
54 struct map_value
*current_value
;
57 /* A structure for abstracting the common parts of iterators. */
58 struct iterator_group
{
59 /* Tables of "mapping" structures, one for attributes and one for
61 htab_t attrs
, iterators
;
63 /* Treat the given string as the name of a standard mode, etc., and
64 return its integer value. */
65 int (*find_builtin
) (const char *);
67 /* Make the given pointer use the given iterator value. */
68 void (*apply_iterator
) (void *, int);
71 /* Records one use of an iterator. */
73 /* The iterator itself. */
74 struct mapping
*iterator
;
76 /* The location of the use, as passed to the apply_iterator callback. */
80 /* Records one use of an attribute (the "<[iterator:]attribute>" syntax)
81 in a non-string rtx field. */
82 struct attribute_use
{
83 /* The group that describes the use site. */
84 struct iterator_group
*group
;
86 /* The name of the attribute, possibly with an "iterator:" prefix. */
89 /* The location of the use, as passed to GROUP's apply_iterator callback. */
93 /* This struct is used to link subst_attr named ATTR_NAME with
94 corresponding define_subst named ITER_NAME. */
95 struct subst_attr_to_iter_mapping
101 /* Hash-table to store links between subst-attributes and
103 htab_t subst_attr_to_iter_map
= NULL
;
104 /* This global stores name of subst-iterator which is currently being
106 const char *current_iterator_name
;
108 static void validate_const_int (const char *);
109 static rtx
read_rtx_code (const char *);
110 static rtx
read_nested_rtx (void);
111 static rtx
read_rtx_variadic (rtx
);
113 /* The mode and code iterator structures. */
114 static struct iterator_group modes
, codes
, ints
, substs
;
116 /* All iterators used in the current rtx. */
117 static vec
<mapping
*> current_iterators
;
119 /* The list of all iterator uses in the current rtx. */
120 static vec
<iterator_use
> iterator_uses
;
122 /* The list of all attribute uses in the current rtx. */
123 static vec
<attribute_use
> attribute_uses
;
125 /* Implementations of the iterator_group callbacks for modes. */
128 find_mode (const char *name
)
132 for (i
= 0; i
< NUM_MACHINE_MODES
; i
++)
133 if (strcmp (GET_MODE_NAME (i
), name
) == 0)
136 fatal_with_file_and_line ("unknown mode `%s'", name
);
140 apply_mode_iterator (void *loc
, int mode
)
142 PUT_MODE ((rtx
) loc
, (machine_mode
) mode
);
145 /* Implementations of the iterator_group callbacks for codes. */
148 find_code (const char *name
)
152 for (i
= 0; i
< NUM_RTX_CODE
; i
++)
153 if (strcmp (GET_RTX_NAME (i
), name
) == 0)
156 fatal_with_file_and_line ("unknown rtx code `%s'", name
);
160 apply_code_iterator (void *loc
, int code
)
162 PUT_CODE ((rtx
) loc
, (enum rtx_code
) code
);
165 /* Implementations of the iterator_group callbacks for ints. */
167 /* Since GCC does not construct a table of valid constants,
168 we have to accept any int as valid. No cross-checking can
172 find_int (const char *name
)
174 validate_const_int (name
);
179 apply_int_iterator (void *loc
, int value
)
184 /* This routine adds attribute or does nothing depending on VALUE. When
185 VALUE is 1, it does nothing - the first duplicate of original
186 template is kept untouched when it's subjected to a define_subst.
187 When VALUE isn't 1, the routine modifies RTL-template LOC, adding
188 attribute, named exactly as define_subst, which later will be
189 applied. If such attribute has already been added, then no the
190 routine has no effect. */
192 apply_subst_iterator (void *loc
, int value
)
196 rtvec attrs_vec
, new_attrs_vec
;
200 gcc_assert (GET_CODE (rt
) == DEFINE_INSN
201 || GET_CODE (rt
) == DEFINE_EXPAND
);
203 attrs_vec
= XVEC (rt
, 4);
205 /* If we've already added attribute 'current_iterator_name', then we
206 have nothing to do now. */
209 for (i
= 0; i
< GET_NUM_ELEM (attrs_vec
); i
++)
211 if (strcmp (XSTR (attrs_vec
->elem
[i
], 0), current_iterator_name
) == 0)
216 /* Add attribute with subst name - it serves as a mark for
217 define_subst which later would be applied to this pattern. */
218 new_attr
= rtx_alloc (SET_ATTR
);
219 PUT_CODE (new_attr
, SET_ATTR
);
220 XSTR (new_attr
, 0) = xstrdup (current_iterator_name
);
221 XSTR (new_attr
, 1) = xstrdup ("yes");
225 new_attrs_vec
= rtvec_alloc (1);
226 new_attrs_vec
->elem
[0] = new_attr
;
230 new_attrs_vec
= rtvec_alloc (GET_NUM_ELEM (attrs_vec
) + 1);
231 memcpy (&new_attrs_vec
->elem
[0], &attrs_vec
->elem
[0],
232 GET_NUM_ELEM (attrs_vec
) * sizeof (rtx
));
233 new_attrs_vec
->elem
[GET_NUM_ELEM (attrs_vec
)] = new_attr
;
235 XVEC (rt
, 4) = new_attrs_vec
;
238 /* Map subst-attribute ATTR to subst iterator ITER. */
241 bind_subst_iter_and_attr (const char *iter
, const char *attr
)
243 struct subst_attr_to_iter_mapping
*value
;
245 if (!subst_attr_to_iter_map
)
246 subst_attr_to_iter_map
=
247 htab_create (1, leading_string_hash
, leading_string_eq_p
, 0);
248 value
= XNEW (struct subst_attr_to_iter_mapping
);
249 value
->attr_name
= xstrdup (attr
);
250 value
->iter_name
= xstrdup (iter
);
251 slot
= htab_find_slot (subst_attr_to_iter_map
, value
, INSERT
);
255 /* Return name of a subst-iterator, corresponding to subst-attribute ATTR. */
258 find_subst_iter_by_attr (const char *attr
)
260 char *iter_name
= NULL
;
261 struct subst_attr_to_iter_mapping
*value
;
262 value
= (struct subst_attr_to_iter_mapping
*)
263 htab_find (subst_attr_to_iter_map
, &attr
);
265 iter_name
= value
->iter_name
;
269 /* Map attribute string P to its current value. Return null if the attribute
272 static struct map_value
*
273 map_attr_string (const char *p
)
276 struct mapping
*iterator
;
280 int iterator_name_len
;
282 /* Peel off any "iterator:" prefix. Set ATTR to the start of the
284 attr
= strchr (p
, ':');
287 iterator_name_len
= -1;
292 iterator_name_len
= attr
- p
;
296 FOR_EACH_VEC_ELT (current_iterators
, i
, iterator
)
298 /* If an iterator name was specified, check that it matches. */
299 if (iterator_name_len
>= 0
300 && (strncmp (p
, iterator
->name
, iterator_name_len
) != 0
301 || iterator
->name
[iterator_name_len
] != 0))
304 /* Find the attribute specification. */
305 m
= (struct mapping
*) htab_find (iterator
->group
->attrs
, &attr
);
308 /* In contrast to code/mode/int iterators, attributes of subst
309 iterators are linked to one specific subst-iterator. So, if
310 we are dealing with subst-iterator, we should check if it's
311 the one which linked with the given attribute. */
312 if (iterator
->group
== &substs
)
314 char *iter_name
= find_subst_iter_by_attr (attr
);
315 if (strcmp (iter_name
, iterator
->name
) != 0)
318 /* Find the attribute value associated with the current
320 for (v
= m
->values
; v
; v
= v
->next
)
321 if (v
->number
== iterator
->current_value
->number
)
328 /* Apply the current iterator values to STRING. Return the new string
329 if any changes were needed, otherwise return STRING itself. */
332 apply_iterator_to_string (const char *string
)
334 char *base
, *copy
, *p
, *start
, *end
;
340 base
= p
= copy
= ASTRDUP (string
);
341 while ((start
= strchr (p
, '<')) && (end
= strchr (start
, '>')))
346 v
= map_attr_string (p
);
351 /* Add everything between the last copied byte and the '<',
352 then add in the attribute value. */
353 obstack_grow (&string_obstack
, base
, start
- base
);
354 obstack_grow (&string_obstack
, v
->string
, strlen (v
->string
));
359 obstack_grow (&string_obstack
, base
, strlen (base
) + 1);
360 copy
= XOBFINISH (&string_obstack
, char *);
361 copy_md_ptr_loc (copy
, string
);
367 /* Return a deep copy of X, substituting the current iterator
368 values into any strings. */
371 copy_rtx_for_iterators (rtx original
)
373 const char *format_ptr
, *p
;
380 /* Create a shallow copy of ORIGINAL. */
381 x
= rtx_alloc (GET_CODE (original
));
382 memcpy (x
, original
, RTX_CODE_SIZE (GET_CODE (original
)));
384 /* Change each string and recursively change each rtx. */
385 format_ptr
= GET_RTX_FORMAT (GET_CODE (original
));
386 for (i
= 0; format_ptr
[i
] != 0; i
++)
387 switch (format_ptr
[i
])
390 while (XTMPL (x
, i
) != (p
= apply_iterator_to_string (XTMPL (x
, i
))))
396 while (XSTR (x
, i
) != (p
= apply_iterator_to_string (XSTR (x
, i
))))
401 XEXP (x
, i
) = copy_rtx_for_iterators (XEXP (x
, i
));
406 if (XVEC (original
, i
))
408 XVEC (x
, i
) = rtvec_alloc (XVECLEN (original
, i
));
409 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
411 = copy_rtx_for_iterators (XVECEXP (original
, i
, j
));
421 /* Return a condition that must satisfy both ORIGINAL and EXTRA. If ORIGINAL
422 has the form "&& ..." (as used in define_insn_and_splits), assume that
423 EXTRA is already satisfied. Empty strings are treated like "true". */
426 add_condition_to_string (const char *original
, const char *extra
)
428 if (original
!= 0 && original
[0] == '&' && original
[1] == '&')
430 return join_c_conditions (original
, extra
);
433 /* Like add_condition, but applied to all conditions in rtx X. */
436 add_condition_to_rtx (rtx x
, const char *extra
)
438 switch (GET_CODE (x
))
443 XSTR (x
, 2) = add_condition_to_string (XSTR (x
, 2), extra
);
447 case DEFINE_PEEPHOLE
:
448 case DEFINE_PEEPHOLE2
:
449 case DEFINE_COND_EXEC
:
450 XSTR (x
, 1) = add_condition_to_string (XSTR (x
, 1), extra
);
453 case DEFINE_INSN_AND_SPLIT
:
454 XSTR (x
, 2) = add_condition_to_string (XSTR (x
, 2), extra
);
455 XSTR (x
, 4) = add_condition_to_string (XSTR (x
, 4), extra
);
463 /* Apply the current iterator values to all attribute_uses. */
466 apply_attribute_uses (void)
472 FOR_EACH_VEC_ELT (attribute_uses
, i
, ause
)
474 v
= map_attr_string (ause
->value
);
476 fatal_with_file_and_line ("unknown iterator value `%s'", ause
->value
);
477 ause
->group
->apply_iterator (ause
->ptr
,
478 ause
->group
->find_builtin (v
->string
));
482 /* A htab_traverse callback for iterators. Add all used iterators
483 to current_iterators. */
486 add_current_iterators (void **slot
, void *data ATTRIBUTE_UNUSED
)
488 struct mapping
*iterator
;
490 iterator
= (struct mapping
*) *slot
;
491 if (iterator
->current_value
)
492 current_iterators
.safe_push (iterator
);
496 /* Expand all iterators in the current rtx, which is given as ORIGINAL.
497 Build a list of expanded rtxes in the EXPR_LIST pointed to by QUEUE. */
500 apply_iterators (rtx original
, vec
<rtx
> *queue
)
503 const char *condition
;
505 struct mapping
*iterator
;
509 if (iterator_uses
.is_empty ())
511 /* Raise an error if any attributes were used. */
512 apply_attribute_uses ();
513 queue
->safe_push (original
);
517 /* Clear out the iterators from the previous run. */
518 FOR_EACH_VEC_ELT (current_iterators
, i
, iterator
)
519 iterator
->current_value
= NULL
;
520 current_iterators
.truncate (0);
522 /* Mark the iterators that we need this time. */
523 FOR_EACH_VEC_ELT (iterator_uses
, i
, iuse
)
524 iuse
->iterator
->current_value
= iuse
->iterator
->values
;
526 /* Get the list of iterators that are in use, preserving the
527 definition order within each group. */
528 htab_traverse (modes
.iterators
, add_current_iterators
, NULL
);
529 htab_traverse (codes
.iterators
, add_current_iterators
, NULL
);
530 htab_traverse (ints
.iterators
, add_current_iterators
, NULL
);
531 htab_traverse (substs
.iterators
, add_current_iterators
, NULL
);
532 gcc_assert (!current_iterators
.is_empty ());
536 /* Apply the current iterator values. Accumulate a condition to
537 say when the resulting rtx can be used. */
539 FOR_EACH_VEC_ELT (iterator_uses
, i
, iuse
)
541 if (iuse
->iterator
->group
== &substs
)
543 v
= iuse
->iterator
->current_value
;
544 iuse
->iterator
->group
->apply_iterator (iuse
->ptr
, v
->number
);
545 condition
= join_c_conditions (condition
, v
->string
);
547 apply_attribute_uses ();
548 x
= copy_rtx_for_iterators (original
);
549 add_condition_to_rtx (x
, condition
);
551 /* We apply subst iterator after RTL-template is copied, as during
552 subst-iterator processing, we could add an attribute to the
553 RTL-template, and we don't want to do it in the original one. */
554 FOR_EACH_VEC_ELT (iterator_uses
, i
, iuse
)
556 v
= iuse
->iterator
->current_value
;
557 if (iuse
->iterator
->group
== &substs
)
560 current_iterator_name
= iuse
->iterator
->name
;
561 iuse
->iterator
->group
->apply_iterator (iuse
->ptr
, v
->number
);
564 /* Add the new rtx to the end of the queue. */
565 queue
->safe_push (x
);
567 /* Lexicographically increment the iterator value sequence.
568 That is, cycle through iterator values, starting from the right,
569 and stopping when one of them doesn't wrap around. */
570 i
= current_iterators
.length ();
576 iterator
= current_iterators
[i
];
577 iterator
->current_value
= iterator
->current_value
->next
;
578 if (iterator
->current_value
)
580 iterator
->current_value
= iterator
->values
;
585 /* Add a new "mapping" structure to hashtable TABLE. NAME is the name
586 of the mapping and GROUP is the group to which it belongs. */
588 static struct mapping
*
589 add_mapping (struct iterator_group
*group
, htab_t table
, const char *name
)
594 m
= XNEW (struct mapping
);
595 m
->name
= xstrdup (name
);
598 m
->current_value
= NULL
;
600 slot
= htab_find_slot (table
, m
, INSERT
);
602 fatal_with_file_and_line ("`%s' already defined", name
);
608 /* Add the pair (NUMBER, STRING) to a list of map_value structures.
609 END_PTR points to the current null terminator for the list; return
610 a pointer the new null terminator. */
612 static struct map_value
**
613 add_map_value (struct map_value
**end_ptr
, int number
, const char *string
)
615 struct map_value
*value
;
617 value
= XNEW (struct map_value
);
619 value
->number
= number
;
620 value
->string
= string
;
626 /* Do one-time initialization of the mode and code attributes. */
629 initialize_iterators (void)
631 struct mapping
*lower
, *upper
;
632 struct map_value
**lower_ptr
, **upper_ptr
;
636 modes
.attrs
= htab_create (13, leading_string_hash
, leading_string_eq_p
, 0);
637 modes
.iterators
= htab_create (13, leading_string_hash
,
638 leading_string_eq_p
, 0);
639 modes
.find_builtin
= find_mode
;
640 modes
.apply_iterator
= apply_mode_iterator
;
642 codes
.attrs
= htab_create (13, leading_string_hash
, leading_string_eq_p
, 0);
643 codes
.iterators
= htab_create (13, leading_string_hash
,
644 leading_string_eq_p
, 0);
645 codes
.find_builtin
= find_code
;
646 codes
.apply_iterator
= apply_code_iterator
;
648 ints
.attrs
= htab_create (13, leading_string_hash
, leading_string_eq_p
, 0);
649 ints
.iterators
= htab_create (13, leading_string_hash
,
650 leading_string_eq_p
, 0);
651 ints
.find_builtin
= find_int
;
652 ints
.apply_iterator
= apply_int_iterator
;
654 substs
.attrs
= htab_create (13, leading_string_hash
, leading_string_eq_p
, 0);
655 substs
.iterators
= htab_create (13, leading_string_hash
,
656 leading_string_eq_p
, 0);
657 substs
.find_builtin
= find_int
; /* We don't use it, anyway. */
658 substs
.apply_iterator
= apply_subst_iterator
;
660 lower
= add_mapping (&modes
, modes
.attrs
, "mode");
661 upper
= add_mapping (&modes
, modes
.attrs
, "MODE");
662 lower_ptr
= &lower
->values
;
663 upper_ptr
= &upper
->values
;
664 for (i
= 0; i
< MAX_MACHINE_MODE
; i
++)
666 copy
= xstrdup (GET_MODE_NAME (i
));
667 for (p
= copy
; *p
!= 0; p
++)
670 upper_ptr
= add_map_value (upper_ptr
, i
, GET_MODE_NAME (i
));
671 lower_ptr
= add_map_value (lower_ptr
, i
, copy
);
674 lower
= add_mapping (&codes
, codes
.attrs
, "code");
675 upper
= add_mapping (&codes
, codes
.attrs
, "CODE");
676 lower_ptr
= &lower
->values
;
677 upper_ptr
= &upper
->values
;
678 for (i
= 0; i
< NUM_RTX_CODE
; i
++)
680 copy
= xstrdup (GET_RTX_NAME (i
));
681 for (p
= copy
; *p
!= 0; p
++)
684 lower_ptr
= add_map_value (lower_ptr
, i
, GET_RTX_NAME (i
));
685 upper_ptr
= add_map_value (upper_ptr
, i
, copy
);
689 /* Provide a version of a function to read a long long if the system does
691 #if HOST_BITS_PER_WIDE_INT > HOST_BITS_PER_LONG && !HAVE_DECL_ATOLL && !defined(HAVE_ATOQ)
692 HOST_WIDE_INT
atoll (const char *);
695 atoll (const char *p
)
698 HOST_WIDE_INT tmp_wide
;
710 HOST_WIDE_INT new_wide
= tmp_wide
*10 + (*p
- '0');
711 if (new_wide
< tmp_wide
)
713 /* Return INT_MAX equiv on overflow. */
714 tmp_wide
= (~(unsigned HOST_WIDE_INT
) 0) >> 1;
722 tmp_wide
= -tmp_wide
;
727 /* Process a define_conditions directive, starting with the optional
728 space after the "define_conditions". The directive looks like this:
736 It's not intended to appear in machine descriptions. It is
737 generated by (the program generated by) genconditions.c, and
738 slipped in at the beginning of the sequence of MD files read by
739 most of the other generators. */
741 read_conditions (void)
745 c
= read_skip_spaces ();
747 fatal_expected_char ('[', c
);
749 while ( (c
= read_skip_spaces ()) != ']')
756 fatal_expected_char ('(', c
);
759 validate_const_int (name
.string
);
760 value
= atoi (name
.string
);
762 c
= read_skip_spaces ();
764 fatal_expected_char ('"', c
);
765 expr
= read_quoted_string ();
767 c
= read_skip_spaces ();
769 fatal_expected_char (')', c
);
771 add_c_test (expr
, value
);
776 validate_const_int (const char *string
)
782 while (*cp
&& ISSPACE (*cp
))
784 if (*cp
== '-' || *cp
== '+')
795 fatal_with_file_and_line ("invalid decimal constant \"%s\"\n", string
);
799 validate_const_wide_int (const char *string
)
805 while (*cp
&& ISSPACE (*cp
))
807 /* Skip the leading 0x. */
808 if (cp
[0] == '0' || cp
[1] == 'x')
815 if (! ISXDIGIT (*cp
))
818 fatal_with_file_and_line ("invalid hex constant \"%s\"\n", string
);
821 /* Record that PTR uses iterator ITERATOR. */
824 record_iterator_use (struct mapping
*iterator
, void *ptr
)
826 struct iterator_use iuse
= {iterator
, ptr
};
827 iterator_uses
.safe_push (iuse
);
830 /* Record that PTR uses attribute VALUE, which must match a built-in
831 value from group GROUP. */
834 record_attribute_use (struct iterator_group
*group
, void *ptr
,
837 struct attribute_use ause
= {group
, value
, ptr
};
838 attribute_uses
.safe_push (ause
);
841 /* Interpret NAME as either a built-in value, iterator or attribute
842 for group GROUP. PTR is the value to pass to GROUP's apply_iterator
846 record_potential_iterator_use (struct iterator_group
*group
, void *ptr
,
853 if (name
[0] == '<' && name
[len
- 1] == '>')
855 /* Copy the attribute string into permanent storage, without the
856 angle brackets around it. */
857 obstack_grow0 (&string_obstack
, name
+ 1, len
- 2);
858 record_attribute_use (group
, ptr
, XOBFINISH (&string_obstack
, char *));
862 m
= (struct mapping
*) htab_find (group
->iterators
, &name
);
864 record_iterator_use (m
, ptr
);
866 group
->apply_iterator (ptr
, group
->find_builtin (name
));
870 /* Finish reading a declaration of the form:
872 (define... <name> [<value1> ... <valuen>])
874 from the MD file, where each <valuei> is either a bare symbol name or a
875 "(<name> <string>)" pair. The "(define..." part has already been read.
877 Represent the declaration as a "mapping" structure; add it to TABLE
878 (which belongs to GROUP) and return it. */
880 static struct mapping
*
881 read_mapping (struct iterator_group
*group
, htab_t table
)
885 struct map_value
**end_ptr
;
889 /* Read the mapping name and create a structure for it. */
891 m
= add_mapping (group
, table
, name
.string
);
893 c
= read_skip_spaces ();
895 fatal_expected_char ('[', c
);
897 /* Read each value. */
898 end_ptr
= &m
->values
;
899 c
= read_skip_spaces ();
904 /* A bare symbol name that is implicitly paired to an
912 /* A "(name string)" pair. */
914 string
= read_string (false);
915 c
= read_skip_spaces ();
917 fatal_expected_char (')', c
);
919 number
= group
->find_builtin (name
.string
);
920 end_ptr
= add_map_value (end_ptr
, number
, string
);
921 c
= read_skip_spaces ();
928 /* For iterator with name ATTR_NAME generate define_attr with values
929 'yes' and 'no'. This attribute is used to mark templates to which
930 define_subst ATTR_NAME should be applied. This attribute is set and
931 defined implicitly and automatically. */
933 add_define_attr_for_define_subst (const char *attr_name
, vec
<rtx
> *queue
)
935 rtx const_str
, return_rtx
;
937 return_rtx
= rtx_alloc (DEFINE_ATTR
);
938 PUT_CODE (return_rtx
, DEFINE_ATTR
);
940 const_str
= rtx_alloc (CONST_STRING
);
941 PUT_CODE (const_str
, CONST_STRING
);
942 XSTR (const_str
, 0) = xstrdup ("no");
944 XSTR (return_rtx
, 0) = xstrdup (attr_name
);
945 XSTR (return_rtx
, 1) = xstrdup ("no,yes");
946 XEXP (return_rtx
, 2) = const_str
;
948 queue
->safe_push (return_rtx
);
951 /* This routine generates DEFINE_SUBST_ATTR expression with operands
952 ATTR_OPERANDS and places it to QUEUE. */
954 add_define_subst_attr (const char **attr_operands
, vec
<rtx
> *queue
)
959 return_rtx
= rtx_alloc (DEFINE_SUBST_ATTR
);
960 PUT_CODE (return_rtx
, DEFINE_SUBST_ATTR
);
962 for (i
= 0; i
< 4; i
++)
963 XSTR (return_rtx
, i
) = xstrdup (attr_operands
[i
]);
965 queue
->safe_push (return_rtx
);
968 /* Read define_subst_attribute construction. It has next form:
969 (define_subst_attribute <attribute_name> <iterator_name> <value1> <value2>)
970 Attribute is substituted with value1 when no subst is applied and with
971 value2 in the opposite case.
972 Attributes are added to SUBST_ATTRS_TABLE.
973 In case the iterator is encountered for the first time, it's added to
974 SUBST_ITERS_TABLE. Also, implicit define_attr is generated. */
977 read_subst_mapping (htab_t subst_iters_table
, htab_t subst_attrs_table
,
981 struct map_value
**end_ptr
;
982 const char *attr_operands
[4];
985 for (i
= 0; i
< 4; i
++)
986 attr_operands
[i
] = read_string (false);
988 add_define_subst_attr (attr_operands
, queue
);
990 bind_subst_iter_and_attr (attr_operands
[1], attr_operands
[0]);
992 m
= (struct mapping
*) htab_find (substs
.iterators
, &attr_operands
[1]);
995 m
= add_mapping (&substs
, subst_iters_table
, attr_operands
[1]);
996 end_ptr
= &m
->values
;
997 end_ptr
= add_map_value (end_ptr
, 1, "");
998 end_ptr
= add_map_value (end_ptr
, 2, "");
1000 add_define_attr_for_define_subst (attr_operands
[1], queue
);
1003 m
= add_mapping (&substs
, subst_attrs_table
, attr_operands
[0]);
1004 end_ptr
= &m
->values
;
1005 end_ptr
= add_map_value (end_ptr
, 1, attr_operands
[2]);
1006 end_ptr
= add_map_value (end_ptr
, 2, attr_operands
[3]);
1009 /* Check newly-created code iterator ITERATOR to see whether every code has the
1013 check_code_iterator (struct mapping
*iterator
)
1015 struct map_value
*v
;
1016 enum rtx_code bellwether
;
1018 bellwether
= (enum rtx_code
) iterator
->values
->number
;
1019 for (v
= iterator
->values
->next
; v
!= 0; v
= v
->next
)
1020 if (strcmp (GET_RTX_FORMAT (bellwether
), GET_RTX_FORMAT (v
->number
)) != 0)
1021 fatal_with_file_and_line ("code iterator `%s' combines "
1022 "different rtx formats", iterator
->name
);
1025 /* Read an rtx-related declaration from the MD file, given that it
1026 starts with directive name RTX_NAME. Return true if it expands to
1027 one or more rtxes (as defined by rtx.def). When returning true,
1028 store the list of rtxes as an EXPR_LIST in *X. */
1031 read_rtx (const char *rtx_name
, vec
<rtx
> *rtxen
)
1033 static bool initialized
= false;
1035 /* Do one-time initialization. */
1038 initialize_iterators ();
1042 /* Handle various rtx-related declarations that aren't themselves
1043 encoded as rtxes. */
1044 if (strcmp (rtx_name
, "define_conditions") == 0)
1049 if (strcmp (rtx_name
, "define_mode_attr") == 0)
1051 read_mapping (&modes
, modes
.attrs
);
1054 if (strcmp (rtx_name
, "define_mode_iterator") == 0)
1056 read_mapping (&modes
, modes
.iterators
);
1059 if (strcmp (rtx_name
, "define_code_attr") == 0)
1061 read_mapping (&codes
, codes
.attrs
);
1064 if (strcmp (rtx_name
, "define_code_iterator") == 0)
1066 check_code_iterator (read_mapping (&codes
, codes
.iterators
));
1069 if (strcmp (rtx_name
, "define_int_attr") == 0)
1071 read_mapping (&ints
, ints
.attrs
);
1074 if (strcmp (rtx_name
, "define_int_iterator") == 0)
1076 read_mapping (&ints
, ints
.iterators
);
1079 if (strcmp (rtx_name
, "define_subst_attr") == 0)
1081 read_subst_mapping (substs
.iterators
, substs
.attrs
, rtxen
);
1083 /* READ_SUBST_MAPPING could generate a new DEFINE_ATTR. Return
1084 TRUE to process it. */
1088 apply_iterators (read_rtx_code (rtx_name
), rtxen
);
1089 iterator_uses
.truncate (0);
1090 attribute_uses
.truncate (0);
1095 /* Subroutine of read_rtx and read_nested_rtx. CODE_NAME is the name of
1096 either an rtx code or a code iterator. Parse the rest of the rtx and
1100 read_rtx_code (const char *code_name
)
1104 struct mapping
*iterator
, *m
;
1105 const char *format_ptr
;
1106 struct md_name name
;
1109 HOST_WIDE_INT tmp_wide
;
1111 char *start
, *end
, *ptr
;
1114 /* Linked list structure for making RTXs: */
1117 struct rtx_list
*next
;
1118 rtx value
; /* Value of this node. */
1121 /* If this code is an iterator, build the rtx using the iterator's
1123 iterator
= (struct mapping
*) htab_find (codes
.iterators
, &code_name
);
1125 code
= (enum rtx_code
) iterator
->values
->number
;
1127 code
= (enum rtx_code
) codes
.find_builtin (code_name
);
1129 /* If we end up with an insn expression then we free this space below. */
1130 return_rtx
= rtx_alloc (code
);
1131 format_ptr
= GET_RTX_FORMAT (code
);
1132 memset (return_rtx
, 0, RTX_CODE_SIZE (code
));
1133 PUT_CODE (return_rtx
, code
);
1136 record_iterator_use (iterator
, return_rtx
);
1138 /* If what follows is `: mode ', read it and
1139 store the mode in the rtx. */
1141 i
= read_skip_spaces ();
1145 record_potential_iterator_use (&modes
, return_rtx
, name
.string
);
1150 for (i
= 0; format_ptr
[i
] != 0; i
++)
1151 switch (format_ptr
[i
])
1153 /* 0 means a field for internal use only.
1154 Don't expect it to be present in the input. */
1157 ORIGINAL_REGNO (return_rtx
) = REGNO (return_rtx
);
1162 XEXP (return_rtx
, i
) = read_nested_rtx ();
1166 /* 'V' is an optional vector: if a closeparen follows,
1167 just store NULL for this element. */
1168 c
= read_skip_spaces ();
1172 XVEC (return_rtx
, i
) = 0;
1175 /* Now process the vector. */
1179 /* Obstack to store scratch vector in. */
1180 struct obstack vector_stack
;
1181 int list_counter
= 0;
1182 rtvec return_vec
= NULL_RTVEC
;
1184 c
= read_skip_spaces ();
1186 fatal_expected_char ('[', c
);
1188 /* Add expressions to a list, while keeping a count. */
1189 obstack_init (&vector_stack
);
1190 while ((c
= read_skip_spaces ()) && c
!= ']')
1193 fatal_expected_char (']', c
);
1196 obstack_ptr_grow (&vector_stack
, read_nested_rtx ());
1198 if (list_counter
> 0)
1200 return_vec
= rtvec_alloc (list_counter
);
1201 memcpy (&return_vec
->elem
[0], obstack_finish (&vector_stack
),
1202 list_counter
* sizeof (rtx
));
1204 else if (format_ptr
[i
] == 'E')
1205 fatal_with_file_and_line ("vector must have at least one element");
1206 XVEC (return_rtx
, i
) = return_vec
;
1207 obstack_free (&vector_stack
, NULL
);
1208 /* close bracket gotten */
1219 c
= read_skip_spaces ();
1223 /* 'S' fields are optional and should be NULL if no string
1224 was given. Also allow normal 's' and 'T' strings to be
1225 omitted, treating them in the same way as empty strings. */
1226 XSTR (return_rtx
, i
) = (format_ptr
[i
] == 'S' ? NULL
: "");
1230 /* The output template slot of a DEFINE_INSN,
1231 DEFINE_INSN_AND_SPLIT, or DEFINE_PEEPHOLE automatically
1232 gets a star inserted as its first character, if it is
1233 written with a brace block instead of a string constant. */
1234 star_if_braced
= (format_ptr
[i
] == 'T');
1236 stringbuf
= read_string (star_if_braced
);
1238 /* For insn patterns, we want to provide a default name
1239 based on the file and line, like "*foo.md:12", if the
1240 given name is blank. These are only for define_insn and
1241 define_insn_and_split, to aid debugging. */
1242 if (*stringbuf
== '\0'
1244 && (GET_CODE (return_rtx
) == DEFINE_INSN
1245 || GET_CODE (return_rtx
) == DEFINE_INSN_AND_SPLIT
))
1248 const char *fn
= (read_md_filename
? read_md_filename
: "rtx");
1250 for (slash
= fn
; *slash
; slash
++)
1251 if (*slash
== '/' || *slash
== '\\' || *slash
== ':')
1253 obstack_1grow (&string_obstack
, '*');
1254 obstack_grow (&string_obstack
, fn
, strlen (fn
));
1255 sprintf (line_name
, ":%d", read_md_lineno
);
1256 obstack_grow (&string_obstack
, line_name
, strlen (line_name
)+1);
1257 stringbuf
= XOBFINISH (&string_obstack
, char *);
1260 /* Find attr-names in the string. */
1263 while ((start
= strchr (end
, '<')) && (end
= strchr (start
, '>')))
1265 if ((end
- start
- 1 > 0)
1266 && (end
- start
- 1 < (int)sizeof (tmpstr
)))
1268 strncpy (tmpstr
, start
+1, end
-start
-1);
1269 tmpstr
[end
-start
-1] = 0;
1274 m
= (struct mapping
*) htab_find (substs
.attrs
, &ptr
);
1277 /* Here we should find linked subst-iter. */
1278 str
= find_subst_iter_by_attr (ptr
);
1280 m
= (struct mapping
*) htab_find (substs
.iterators
, &str
);
1285 record_iterator_use (m
, return_rtx
);
1289 XTMPL (return_rtx
, i
) = stringbuf
;
1291 XSTR (return_rtx
, i
) = stringbuf
;
1297 validate_const_int (name
.string
);
1298 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
1299 tmp_wide
= atoi (name
.string
);
1301 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG
1302 tmp_wide
= atol (name
.string
);
1304 /* Prefer atoll over atoq, since the former is in the ISO C99 standard.
1305 But prefer not to use our hand-rolled function above either. */
1306 #if HAVE_DECL_ATOLL || !defined(HAVE_ATOQ)
1307 tmp_wide
= atoll (name
.string
);
1309 tmp_wide
= atoq (name
.string
);
1313 XWINT (return_rtx
, i
) = tmp_wide
;
1318 /* Can be an iterator or an integer constant. */
1320 record_potential_iterator_use (&ints
, &XINT (return_rtx
, i
),
1326 validate_const_int (name
.string
);
1327 set_regno_raw (return_rtx
, atoi (name
.string
), 1);
1328 REG_ATTRS (return_rtx
) = NULL
;
1335 if (CONST_WIDE_INT_P (return_rtx
))
1338 validate_const_wide_int (name
.string
);
1340 const char *s
= name
.string
;
1343 int gs
= HOST_BITS_PER_WIDE_INT
/4;
1345 char * buf
= XALLOCAVEC (char, gs
+ 1);
1346 unsigned HOST_WIDE_INT wi
;
1349 /* Skip the leading spaces. */
1350 while (*s
&& ISSPACE (*s
))
1353 /* Skip the leading 0x. */
1354 gcc_assert (s
[0] == '0');
1355 gcc_assert (s
[1] == 'x');
1360 wlen
= (len
+ gs
- 1) / gs
; /* Number of words needed */
1362 return_rtx
= const_wide_int_alloc (wlen
);
1366 #if HOST_BITS_PER_WIDE_INT == 64
1367 sscanf (s
+ pos
, "%16" HOST_WIDE_INT_PRINT
"x", &wi
);
1369 sscanf (s
+ pos
, "%8" HOST_WIDE_INT_PRINT
"x", &wi
);
1371 CWI_ELT (return_rtx
, index
++) = wi
;
1374 strncpy (buf
, s
, gs
- pos
);
1376 sscanf (buf
, "%" HOST_WIDE_INT_PRINT
"x", &wi
);
1377 CWI_ELT (return_rtx
, index
++) = wi
;
1378 /* TODO: After reading, do we want to canonicalize with:
1379 value = lookup_const_wide_int (value); ? */
1383 c
= read_skip_spaces ();
1384 /* Syntactic sugar for AND and IOR, allowing Lisp-like
1385 arbitrary number of arguments for them. */
1387 && (GET_CODE (return_rtx
) == AND
1388 || GET_CODE (return_rtx
) == IOR
))
1389 return read_rtx_variadic (return_rtx
);
1395 /* Read a nested rtx construct from the MD file and return it. */
1398 read_nested_rtx (void)
1400 struct md_name name
;
1404 c
= read_skip_spaces ();
1406 fatal_expected_char ('(', c
);
1409 if (strcmp (name
.string
, "nil") == 0)
1412 return_rtx
= read_rtx_code (name
.string
);
1414 c
= read_skip_spaces ();
1416 fatal_expected_char (')', c
);
1421 /* Mutually recursive subroutine of read_rtx which reads
1422 (thing x1 x2 x3 ...) and produces RTL as if
1423 (thing x1 (thing x2 (thing x3 ...))) had been written.
1424 When called, FORM is (thing x1 x2), and the file position
1425 is just past the leading parenthesis of x3. Only works
1426 for THINGs which are dyadic expressions, e.g. AND, IOR. */
1428 read_rtx_variadic (rtx form
)
1437 q
= rtx_alloc (GET_CODE (p
));
1438 PUT_MODE (q
, GET_MODE (p
));
1440 XEXP (q
, 0) = XEXP (p
, 1);
1441 XEXP (q
, 1) = read_nested_rtx ();
1445 c
= read_skip_spaces ();