arc: Use separate predicated patterns for mpyd(u)
[gcc.git] / gcc / read-rtl.c
1 /* RTL reader for GCC.
2 Copyright (C) 1987-2020 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
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
9 version.
10
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
14 for more details.
15
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/>. */
19
20 /* This file is compiled twice: once for the generator programs
21 once for the compiler. */
22 #ifdef GENERATOR_FILE
23 #include "bconfig.h"
24 #else
25 #include "config.h"
26 #endif
27
28 /* Disable rtl checking; it conflicts with the iterator handling. */
29 #undef ENABLE_RTL_CHECKING
30
31 #include "system.h"
32 #include "coretypes.h"
33 #include "tm.h"
34 #include "rtl.h"
35 #include "obstack.h"
36 #include "read-md.h"
37 #include "gensupport.h"
38
39 #ifndef GENERATOR_FILE
40 #include "function.h"
41 #include "memmodel.h"
42 #include "emit-rtl.h"
43 #endif
44
45 /* One element in a singly-linked list of (integer, string) pairs. */
46 struct map_value {
47 struct map_value *next;
48 int number;
49 const char *string;
50 };
51
52 /* Maps an iterator or attribute name to a list of (integer, string) pairs.
53 The integers are iterator values; the strings are either C conditions
54 or attribute values. */
55 struct mapping {
56 /* The name of the iterator or attribute. */
57 const char *name;
58
59 /* The group (modes or codes) to which the iterator or attribute belongs. */
60 struct iterator_group *group;
61
62 /* The list of (integer, string) pairs. */
63 struct map_value *values;
64
65 /* For iterators, records the current value of the iterator. */
66 struct map_value *current_value;
67 };
68
69 /* A structure for abstracting the common parts of iterators. */
70 struct iterator_group {
71 /* Tables of "mapping" structures, one for attributes and one for
72 iterators. */
73 htab_t attrs, iterators;
74
75 /* The C++ type of the iterator, such as "machine_mode" for modes. */
76 const char *type;
77
78 /* Treat the given string as the name of a standard mode, etc., and
79 return its integer value. */
80 HOST_WIDE_INT (*find_builtin) (const char *);
81
82 /* Make the given rtx use the iterator value given by the third argument.
83 If the iterator applies to operands, the second argument gives the
84 operand index, otherwise it is ignored. */
85 void (*apply_iterator) (rtx, unsigned int, HOST_WIDE_INT);
86
87 /* Return the C token for the given standard mode, code, etc. */
88 const char *(*get_c_token) (int);
89 };
90
91 /* Records one use of an iterator. */
92 struct iterator_use {
93 /* The iterator itself. */
94 struct mapping *iterator;
95
96 /* The location of the use, as passed to the apply_iterator callback.
97 The index is the number of the operand that used the iterator
98 if applicable, otherwise it is ignored. */
99 rtx x;
100 unsigned int index;
101 };
102
103 /* Records one use of an attribute (the "<[iterator:]attribute>" syntax)
104 in a non-string rtx field. */
105 struct attribute_use {
106 /* The group that describes the use site. */
107 struct iterator_group *group;
108
109 /* The location at which the use occurs. */
110 file_location loc;
111
112 /* The name of the attribute, possibly with an "iterator:" prefix. */
113 const char *value;
114
115 /* The location of the use, as passed to GROUP's apply_iterator callback.
116 The index is the number of the operand that used the iterator
117 if applicable, otherwise it is ignored. */
118 rtx x;
119 unsigned int index;
120 };
121
122 /* This struct is used to link subst_attr named ATTR_NAME with
123 corresponding define_subst named ITER_NAME. */
124 struct subst_attr_to_iter_mapping
125 {
126 char *attr_name;
127 char *iter_name;
128 };
129
130 /* Hash-table to store links between subst-attributes and
131 define_substs. */
132 htab_t subst_attr_to_iter_map = NULL;
133 /* This global stores name of subst-iterator which is currently being
134 processed. */
135 const char *current_iterator_name;
136
137 static void validate_const_int (const char *);
138 static void one_time_initialization (void);
139
140 /* Global singleton. */
141 rtx_reader *rtx_reader_ptr = NULL;
142 \f
143 /* The mode and code iterator structures. */
144 static struct iterator_group modes, codes, ints, substs;
145
146 /* All iterators used in the current rtx. */
147 static vec<mapping *> current_iterators;
148
149 /* The list of all iterator uses in the current rtx. */
150 static vec<iterator_use> iterator_uses;
151
152 /* The list of all attribute uses in the current rtx. */
153 static vec<attribute_use> attribute_uses;
154
155 /* Provide a version of a function to read a long long if the system does
156 not provide one. */
157 #if (HOST_BITS_PER_WIDE_INT > HOST_BITS_PER_LONG \
158 && !HAVE_DECL_ATOLL \
159 && !defined (HAVE_ATOQ))
160 HOST_WIDE_INT atoll (const char *);
161
162 HOST_WIDE_INT
163 atoll (const char *p)
164 {
165 int neg = 0;
166 HOST_WIDE_INT tmp_wide;
167
168 while (ISSPACE (*p))
169 p++;
170 if (*p == '-')
171 neg = 1, p++;
172 else if (*p == '+')
173 p++;
174
175 tmp_wide = 0;
176 while (ISDIGIT (*p))
177 {
178 HOST_WIDE_INT new_wide = tmp_wide*10 + (*p - '0');
179 if (new_wide < tmp_wide)
180 {
181 /* Return INT_MAX equiv on overflow. */
182 tmp_wide = HOST_WIDE_INT_M1U >> 1;
183 break;
184 }
185 tmp_wide = new_wide;
186 p++;
187 }
188
189 if (neg)
190 tmp_wide = -tmp_wide;
191 return tmp_wide;
192 }
193 #endif
194
195 /* Implementations of the iterator_group callbacks for modes. */
196
197 static HOST_WIDE_INT
198 find_mode (const char *name)
199 {
200 int i;
201
202 for (i = 0; i < NUM_MACHINE_MODES; i++)
203 if (strcmp (GET_MODE_NAME (i), name) == 0)
204 return i;
205
206 fatal_with_file_and_line ("unknown mode `%s'", name);
207 }
208
209 static void
210 apply_mode_iterator (rtx x, unsigned int, HOST_WIDE_INT mode)
211 {
212 PUT_MODE (x, (machine_mode) mode);
213 }
214
215 static const char *
216 get_mode_token (int mode)
217 {
218 return concat ("E_", GET_MODE_NAME (mode), "mode", NULL);
219 }
220
221 /* In compact dumps, the code of insns is prefixed with "c", giving "cinsn",
222 "cnote" etc, and CODE_LABEL is special-cased as "clabel". */
223
224 struct compact_insn_name {
225 RTX_CODE code;
226 const char *name;
227 };
228
229 static const compact_insn_name compact_insn_names[] = {
230 { DEBUG_INSN, "cdebug_insn" },
231 { INSN, "cinsn" },
232 { JUMP_INSN, "cjump_insn" },
233 { CALL_INSN, "ccall_insn" },
234 { JUMP_TABLE_DATA, "cjump_table_data" },
235 { BARRIER, "cbarrier" },
236 { CODE_LABEL, "clabel" },
237 { NOTE, "cnote" }
238 };
239
240 /* Return the rtx code for NAME, or UNKNOWN if NAME isn't a valid rtx code. */
241
242 static rtx_code
243 maybe_find_code (const char *name)
244 {
245 for (int i = 0; i < NUM_RTX_CODE; i++)
246 if (strcmp (GET_RTX_NAME (i), name) == 0)
247 return (rtx_code) i;
248
249 for (int i = 0; i < (signed)ARRAY_SIZE (compact_insn_names); i++)
250 if (strcmp (compact_insn_names[i].name, name) == 0)
251 return compact_insn_names[i].code;
252
253 return UNKNOWN;
254 }
255
256 /* Implementations of the iterator_group callbacks for codes. */
257
258 static HOST_WIDE_INT
259 find_code (const char *name)
260 {
261 rtx_code code = maybe_find_code (name);
262 if (code == UNKNOWN)
263 fatal_with_file_and_line ("unknown rtx code `%s'", name);
264 return code;
265 }
266
267 static void
268 apply_code_iterator (rtx x, unsigned int, HOST_WIDE_INT code)
269 {
270 PUT_CODE (x, (enum rtx_code) code);
271 }
272
273 static const char *
274 get_code_token (int code)
275 {
276 char *name = xstrdup (GET_RTX_NAME (code));
277 for (int i = 0; name[i]; ++i)
278 name[i] = TOUPPER (name[i]);
279 return name;
280 }
281
282 /* Implementations of the iterator_group callbacks for ints. */
283
284 /* Since GCC does not construct a table of valid constants,
285 we have to accept any int as valid. No cross-checking can
286 be done. */
287
288 static HOST_WIDE_INT
289 find_int (const char *name)
290 {
291 HOST_WIDE_INT tmp;
292
293 validate_const_int (name);
294 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
295 tmp = atoi (name);
296 #else
297 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG
298 tmp = atol (name);
299 #else
300 /* Prefer atoll over atoq, since the former is in the ISO C99 standard.
301 But prefer not to use our hand-rolled function above either. */
302 #if HAVE_DECL_ATOLL || !defined(HAVE_ATOQ)
303 tmp = atoll (name);
304 #else
305 tmp = atoq (name);
306 #endif
307 #endif
308 #endif
309 return tmp;
310 }
311
312 static void
313 apply_int_iterator (rtx x, unsigned int index, HOST_WIDE_INT value)
314 {
315 RTX_CODE code = GET_CODE (x);
316 const char *format_ptr = GET_RTX_FORMAT (code);
317
318 switch (format_ptr[index])
319 {
320 case 'i':
321 case 'n':
322 XINT (x, index) = value;
323 break;
324 case 'w':
325 XWINT (x, index) = value;
326 break;
327 case 'p':
328 gcc_assert (code == SUBREG);
329 SUBREG_BYTE (x) = value;
330 break;
331 default:
332 gcc_unreachable ();
333 }
334 }
335
336 static const char *
337 get_int_token (int value)
338 {
339 char buffer[HOST_BITS_PER_INT + 1];
340 sprintf (buffer, "%d", value);
341 return xstrdup (buffer);
342 }
343
344 #ifdef GENERATOR_FILE
345
346 /* This routine adds attribute or does nothing depending on VALUE. When
347 VALUE is 1, it does nothing - the first duplicate of original
348 template is kept untouched when it's subjected to a define_subst.
349 When VALUE isn't 1, the routine modifies RTL-template RT, adding
350 attribute, named exactly as define_subst, which later will be
351 applied. If such attribute has already been added, then no the
352 routine has no effect. */
353 static void
354 apply_subst_iterator (rtx rt, unsigned int, HOST_WIDE_INT value)
355 {
356 rtx new_attr;
357 rtvec attrs_vec, new_attrs_vec;
358 int i;
359 /* define_split has no attributes. */
360 if (value == 1 || GET_CODE (rt) == DEFINE_SPLIT)
361 return;
362 gcc_assert (GET_CODE (rt) == DEFINE_INSN
363 || GET_CODE (rt) == DEFINE_INSN_AND_SPLIT
364 || GET_CODE (rt) == DEFINE_INSN_AND_REWRITE
365 || GET_CODE (rt) == DEFINE_EXPAND);
366
367 int attrs = (GET_CODE (rt) == DEFINE_INSN_AND_SPLIT ? 7
368 : GET_CODE (rt) == DEFINE_INSN_AND_REWRITE ? 6 : 4);
369 attrs_vec = XVEC (rt, attrs);
370
371 /* If we've already added attribute 'current_iterator_name', then we
372 have nothing to do now. */
373 if (attrs_vec)
374 {
375 for (i = 0; i < GET_NUM_ELEM (attrs_vec); i++)
376 {
377 if (strcmp (XSTR (attrs_vec->elem[i], 0), current_iterator_name) == 0)
378 return;
379 }
380 }
381
382 /* Add attribute with subst name - it serves as a mark for
383 define_subst which later would be applied to this pattern. */
384 new_attr = rtx_alloc (SET_ATTR);
385 PUT_CODE (new_attr, SET_ATTR);
386 XSTR (new_attr, 0) = xstrdup (current_iterator_name);
387 XSTR (new_attr, 1) = xstrdup ("yes");
388
389 if (!attrs_vec)
390 {
391 new_attrs_vec = rtvec_alloc (1);
392 new_attrs_vec->elem[0] = new_attr;
393 }
394 else
395 {
396 new_attrs_vec = rtvec_alloc (GET_NUM_ELEM (attrs_vec) + 1);
397 memcpy (&new_attrs_vec->elem[0], &attrs_vec->elem[0],
398 GET_NUM_ELEM (attrs_vec) * sizeof (rtx));
399 new_attrs_vec->elem[GET_NUM_ELEM (attrs_vec)] = new_attr;
400 }
401 XVEC (rt, attrs) = new_attrs_vec;
402 }
403
404 /* Map subst-attribute ATTR to subst iterator ITER. */
405
406 static void
407 bind_subst_iter_and_attr (const char *iter, const char *attr)
408 {
409 struct subst_attr_to_iter_mapping *value;
410 void **slot;
411 if (!subst_attr_to_iter_map)
412 subst_attr_to_iter_map =
413 htab_create (1, leading_string_hash, leading_string_eq_p, 0);
414 value = XNEW (struct subst_attr_to_iter_mapping);
415 value->attr_name = xstrdup (attr);
416 value->iter_name = xstrdup (iter);
417 slot = htab_find_slot (subst_attr_to_iter_map, value, INSERT);
418 *slot = value;
419 }
420
421 #endif /* #ifdef GENERATOR_FILE */
422
423 /* Return name of a subst-iterator, corresponding to subst-attribute ATTR. */
424
425 static char*
426 find_subst_iter_by_attr (const char *attr)
427 {
428 char *iter_name = NULL;
429 struct subst_attr_to_iter_mapping *value;
430 value = (struct subst_attr_to_iter_mapping*)
431 htab_find (subst_attr_to_iter_map, &attr);
432 if (value)
433 iter_name = value->iter_name;
434 return iter_name;
435 }
436
437 /* Map attribute string P to its current value. Return null if the attribute
438 isn't known. If ITERATOR_OUT is nonnull, store the associated iterator
439 there. Report any errors against location LOC. */
440
441 static struct map_value *
442 map_attr_string (file_location loc, const char *p, mapping **iterator_out = 0)
443 {
444 const char *attr;
445 struct mapping *iterator;
446 unsigned int i;
447 struct mapping *m;
448 struct map_value *v;
449 int iterator_name_len;
450 struct map_value *res = NULL;
451 struct mapping *prev = NULL;
452
453 /* Peel off any "iterator:" prefix. Set ATTR to the start of the
454 attribute name. */
455 attr = strchr (p, ':');
456 if (attr == 0)
457 {
458 iterator_name_len = -1;
459 attr = p;
460 }
461 else
462 {
463 iterator_name_len = attr - p;
464 attr++;
465 }
466
467 FOR_EACH_VEC_ELT (current_iterators, i, iterator)
468 {
469 /* If an iterator name was specified, check that it matches. */
470 if (iterator_name_len >= 0
471 && (strncmp (p, iterator->name, iterator_name_len) != 0
472 || iterator->name[iterator_name_len] != 0))
473 continue;
474
475 /* Find the attribute specification. */
476 m = (struct mapping *) htab_find (iterator->group->attrs, &attr);
477 if (m)
478 {
479 /* In contrast to code/mode/int iterators, attributes of subst
480 iterators are linked to one specific subst-iterator. So, if
481 we are dealing with subst-iterator, we should check if it's
482 the one which linked with the given attribute. */
483 if (iterator->group == &substs)
484 {
485 char *iter_name = find_subst_iter_by_attr (attr);
486 if (strcmp (iter_name, iterator->name) != 0)
487 continue;
488 }
489 /* Find the attribute value associated with the current
490 iterator value. */
491 for (v = m->values; v; v = v->next)
492 if (v->number == iterator->current_value->number)
493 {
494 if (res && strcmp (v->string, res->string) != 0)
495 {
496 error_at (loc, "ambiguous attribute '%s'; could be"
497 " '%s' (via '%s:%s') or '%s' (via '%s:%s')",
498 attr, res->string, prev->name, attr,
499 v->string, iterator->name, attr);
500 return v;
501 }
502 if (iterator_out)
503 *iterator_out = iterator;
504 prev = iterator;
505 res = v;
506 }
507 }
508 }
509 return res;
510 }
511
512 /* Apply the current iterator values to STRING. Return the new string
513 if any changes were needed, otherwise return STRING itself. */
514
515 const char *
516 md_reader::apply_iterator_to_string (const char *string)
517 {
518 char *base, *copy, *p, *start, *end;
519 struct map_value *v;
520
521 if (string == 0 || string[0] == 0)
522 return string;
523
524 file_location loc = get_md_ptr_loc (string)->loc;
525 base = p = copy = ASTRDUP (string);
526 while ((start = strchr (p, '<')) && (end = strchr (start, '>')))
527 {
528 p = start + 1;
529
530 *end = 0;
531 v = map_attr_string (loc, p);
532 *end = '>';
533 if (v == 0)
534 continue;
535
536 /* Add everything between the last copied byte and the '<',
537 then add in the attribute value. */
538 obstack_grow (&m_string_obstack, base, start - base);
539 obstack_grow (&m_string_obstack, v->string, strlen (v->string));
540 base = end + 1;
541 }
542 if (base != copy)
543 {
544 obstack_grow (&m_string_obstack, base, strlen (base) + 1);
545 copy = XOBFINISH (&m_string_obstack, char *);
546 copy_md_ptr_loc (copy, string);
547 return copy;
548 }
549 return string;
550 }
551
552 /* Return a deep copy of X, substituting the current iterator
553 values into any strings. */
554
555 rtx
556 md_reader::copy_rtx_for_iterators (rtx original)
557 {
558 const char *format_ptr, *p;
559 int i, j;
560 rtx x;
561
562 if (original == 0)
563 return original;
564
565 /* Create a shallow copy of ORIGINAL. */
566 x = rtx_alloc (GET_CODE (original));
567 memcpy (x, original, RTX_CODE_SIZE (GET_CODE (original)));
568
569 /* Change each string and recursively change each rtx. */
570 format_ptr = GET_RTX_FORMAT (GET_CODE (original));
571 for (i = 0; format_ptr[i] != 0; i++)
572 switch (format_ptr[i])
573 {
574 case 'T':
575 while (XTMPL (x, i) != (p = apply_iterator_to_string (XTMPL (x, i))))
576 XTMPL (x, i) = p;
577 break;
578
579 case 'S':
580 case 's':
581 while (XSTR (x, i) != (p = apply_iterator_to_string (XSTR (x, i))))
582 XSTR (x, i) = p;
583 break;
584
585 case 'e':
586 XEXP (x, i) = copy_rtx_for_iterators (XEXP (x, i));
587 break;
588
589 case 'V':
590 case 'E':
591 if (XVEC (original, i))
592 {
593 XVEC (x, i) = rtvec_alloc (XVECLEN (original, i));
594 for (j = 0; j < XVECLEN (x, i); j++)
595 XVECEXP (x, i, j)
596 = copy_rtx_for_iterators (XVECEXP (original, i, j));
597 }
598 break;
599
600 default:
601 break;
602 }
603 return x;
604 }
605
606 #ifdef GENERATOR_FILE
607
608 /* Return a condition that must satisfy both ORIGINAL and EXTRA. If ORIGINAL
609 has the form "&& ..." (as used in define_insn_and_splits), assume that
610 EXTRA is already satisfied. Empty strings are treated like "true". */
611
612 static const char *
613 add_condition_to_string (const char *original, const char *extra)
614 {
615 if (original != 0 && original[0] == '&' && original[1] == '&')
616 return original;
617 return rtx_reader_ptr->join_c_conditions (original, extra);
618 }
619
620 /* Like add_condition, but applied to all conditions in rtx X. */
621
622 static void
623 add_condition_to_rtx (rtx x, const char *extra)
624 {
625 switch (GET_CODE (x))
626 {
627 case DEFINE_INSN:
628 case DEFINE_EXPAND:
629 case DEFINE_SUBST:
630 XSTR (x, 2) = add_condition_to_string (XSTR (x, 2), extra);
631 break;
632
633 case DEFINE_SPLIT:
634 case DEFINE_PEEPHOLE:
635 case DEFINE_PEEPHOLE2:
636 case DEFINE_COND_EXEC:
637 XSTR (x, 1) = add_condition_to_string (XSTR (x, 1), extra);
638 break;
639
640 case DEFINE_INSN_AND_SPLIT:
641 case DEFINE_INSN_AND_REWRITE:
642 XSTR (x, 2) = add_condition_to_string (XSTR (x, 2), extra);
643 XSTR (x, 4) = add_condition_to_string (XSTR (x, 4), extra);
644 break;
645
646 default:
647 break;
648 }
649 }
650
651 /* Apply the current iterator values to all attribute_uses. */
652
653 static void
654 apply_attribute_uses (void)
655 {
656 struct map_value *v;
657 attribute_use *ause;
658 unsigned int i;
659
660 FOR_EACH_VEC_ELT (attribute_uses, i, ause)
661 {
662 v = map_attr_string (ause->loc, ause->value);
663 if (!v)
664 fatal_with_file_and_line ("unknown iterator value `%s'", ause->value);
665 ause->group->apply_iterator (ause->x, ause->index,
666 ause->group->find_builtin (v->string));
667 }
668 }
669
670 /* A htab_traverse callback for iterators. Add all used iterators
671 to current_iterators. */
672
673 static int
674 add_current_iterators (void **slot, void *data ATTRIBUTE_UNUSED)
675 {
676 struct mapping *iterator;
677
678 iterator = (struct mapping *) *slot;
679 if (iterator->current_value)
680 current_iterators.safe_push (iterator);
681 return 1;
682 }
683
684 /* Return a hash value for overloaded_name UNCAST_ONAME. There shouldn't
685 be many instances of two overloaded_names having the same name but
686 different arguments, so hashing on the name should be good enough in
687 practice. */
688
689 static hashval_t
690 overloaded_name_hash (const void *uncast_oname)
691 {
692 const overloaded_name *oname = (const overloaded_name *) uncast_oname;
693 return htab_hash_string (oname->name);
694 }
695
696 /* Return true if two overloaded_names are similar enough to share
697 the same generated functions. */
698
699 static int
700 overloaded_name_eq_p (const void *uncast_oname1, const void *uncast_oname2)
701 {
702 const overloaded_name *oname1 = (const overloaded_name *) uncast_oname1;
703 const overloaded_name *oname2 = (const overloaded_name *) uncast_oname2;
704 if (strcmp (oname1->name, oname2->name) != 0
705 || oname1->arg_types.length () != oname2->arg_types.length ())
706 return 0;
707
708 for (unsigned int i = 0; i < oname1->arg_types.length (); ++i)
709 if (strcmp (oname1->arg_types[i], oname2->arg_types[i]) != 0)
710 return 0;
711
712 return 1;
713 }
714
715 /* Return true if X has an instruction name in XSTR (X, 0). */
716
717 static bool
718 named_rtx_p (rtx x)
719 {
720 switch (GET_CODE (x))
721 {
722 case DEFINE_EXPAND:
723 case DEFINE_INSN:
724 case DEFINE_INSN_AND_SPLIT:
725 case DEFINE_INSN_AND_REWRITE:
726 return true;
727
728 default:
729 return false;
730 }
731 }
732
733 /* Check whether ORIGINAL is a named pattern whose name starts with '@'.
734 If so, return the associated overloaded_name and add the iterator for
735 each argument to ITERATORS. Return null otherwise. */
736
737 overloaded_name *
738 md_reader::handle_overloaded_name (rtx original, vec<mapping *> *iterators)
739 {
740 /* Check for the leading '@'. */
741 if (!named_rtx_p (original) || XSTR (original, 0)[0] != '@')
742 return NULL;
743
744 /* Remove the '@', so that no other code needs to worry about it. */
745 const char *name = XSTR (original, 0);
746 file_location loc = get_md_ptr_loc (name)->loc;
747 copy_md_ptr_loc (name + 1, name);
748 name += 1;
749 XSTR (original, 0) = name;
750
751 /* Build a copy of the name without the '<...>' attribute strings.
752 Add the iterator associated with each such attribute string to ITERATORS
753 and add an associated argument to TMP_ONAME. */
754 char *copy = ASTRDUP (name);
755 char *base = copy, *start, *end;
756 overloaded_name tmp_oname;
757 tmp_oname.arg_types.create (current_iterators.length ());
758 bool pending_underscore_p = false;
759 while ((start = strchr (base, '<')) && (end = strchr (start, '>')))
760 {
761 *end = 0;
762 mapping *iterator;
763 if (!map_attr_string (loc, start + 1, &iterator))
764 fatal_with_file_and_line ("unknown iterator `%s'", start + 1);
765 *end = '>';
766
767 /* Remove a trailing underscore, so that we don't end a name
768 with "_" or turn "_<...>_" into "__". */
769 if (start != base && start[-1] == '_')
770 {
771 start -= 1;
772 pending_underscore_p = true;
773 }
774
775 /* Add the text between either the last '>' or the start of
776 the string and this '<'. */
777 obstack_grow (&m_string_obstack, base, start - base);
778 base = end + 1;
779
780 /* If there's a character we need to keep after the '>', check
781 whether we should prefix it with a previously-dropped '_'. */
782 if (base[0] != 0 && base[0] != '<')
783 {
784 if (pending_underscore_p && base[0] != '_')
785 obstack_1grow (&m_string_obstack, '_');
786 pending_underscore_p = false;
787 }
788
789 /* Record an argument for ITERATOR. */
790 iterators->safe_push (iterator);
791 tmp_oname.arg_types.safe_push (iterator->group->type);
792 }
793 if (base == copy)
794 fatal_with_file_and_line ("no iterator attributes in name `%s'", name);
795
796 size_t length = obstack_object_size (&m_string_obstack);
797 if (length == 0)
798 fatal_with_file_and_line ("`%s' only contains iterator attributes", name);
799
800 /* Get the completed name. */
801 obstack_grow (&m_string_obstack, base, strlen (base) + 1);
802 char *new_name = XOBFINISH (&m_string_obstack, char *);
803 tmp_oname.name = new_name;
804
805 if (!m_overloads_htab)
806 m_overloads_htab = htab_create (31, overloaded_name_hash,
807 overloaded_name_eq_p, NULL);
808
809 /* See whether another pattern had the same overload name and list
810 of argument types. Create a new permanent one if not. */
811 void **slot = htab_find_slot (m_overloads_htab, &tmp_oname, INSERT);
812 overloaded_name *oname = (overloaded_name *) *slot;
813 if (!oname)
814 {
815 *slot = oname = new overloaded_name;
816 oname->name = tmp_oname.name;
817 oname->arg_types = tmp_oname.arg_types;
818 oname->next = NULL;
819 oname->first_instance = NULL;
820 oname->next_instance_ptr = &oname->first_instance;
821
822 *m_next_overload_ptr = oname;
823 m_next_overload_ptr = &oname->next;
824 }
825 else
826 {
827 obstack_free (&m_string_obstack, new_name);
828 tmp_oname.arg_types.release ();
829 }
830
831 return oname;
832 }
833
834 /* Add an instance of ONAME for instruction pattern X. ITERATORS[I]
835 gives the iterator associated with argument I of ONAME. */
836
837 static void
838 add_overload_instance (overloaded_name *oname, vec<mapping *> iterators, rtx x)
839 {
840 /* Create the instance. */
841 overloaded_instance *instance = new overloaded_instance;
842 instance->next = NULL;
843 instance->arg_values.create (oname->arg_types.length ());
844 for (unsigned int i = 0; i < iterators.length (); ++i)
845 {
846 int value = iterators[i]->current_value->number;
847 const char *name = iterators[i]->group->get_c_token (value);
848 instance->arg_values.quick_push (name);
849 }
850 instance->name = XSTR (x, 0);
851 instance->insn = x;
852
853 /* Chain it onto the end of ONAME's list. */
854 *oname->next_instance_ptr = instance;
855 oname->next_instance_ptr = &instance->next;
856 }
857
858 /* Expand all iterators in the current rtx, which is given as ORIGINAL.
859 Build a list of expanded rtxes in the EXPR_LIST pointed to by QUEUE. */
860
861 static void
862 apply_iterators (rtx original, vec<rtx> *queue)
863 {
864 unsigned int i;
865 const char *condition;
866 iterator_use *iuse;
867 struct mapping *iterator;
868 struct map_value *v;
869 rtx x;
870
871 if (iterator_uses.is_empty ())
872 {
873 /* Raise an error if any attributes were used. */
874 apply_attribute_uses ();
875
876 if (named_rtx_p (original) && XSTR (original, 0)[0] == '@')
877 fatal_with_file_and_line ("'@' used without iterators");
878
879 queue->safe_push (original);
880 return;
881 }
882
883 /* Clear out the iterators from the previous run. */
884 FOR_EACH_VEC_ELT (current_iterators, i, iterator)
885 iterator->current_value = NULL;
886 current_iterators.truncate (0);
887
888 /* Mark the iterators that we need this time. */
889 FOR_EACH_VEC_ELT (iterator_uses, i, iuse)
890 iuse->iterator->current_value = iuse->iterator->values;
891
892 /* Get the list of iterators that are in use, preserving the
893 definition order within each group. */
894 htab_traverse (modes.iterators, add_current_iterators, NULL);
895 htab_traverse (codes.iterators, add_current_iterators, NULL);
896 htab_traverse (ints.iterators, add_current_iterators, NULL);
897 htab_traverse (substs.iterators, add_current_iterators, NULL);
898 gcc_assert (!current_iterators.is_empty ());
899
900 /* Check whether this is a '@' overloaded pattern. */
901 auto_vec<mapping *, 16> iterators;
902 overloaded_name *oname
903 = rtx_reader_ptr->handle_overloaded_name (original, &iterators);
904
905 for (;;)
906 {
907 /* Apply the current iterator values. Accumulate a condition to
908 say when the resulting rtx can be used. */
909 condition = "";
910 FOR_EACH_VEC_ELT (iterator_uses, i, iuse)
911 {
912 if (iuse->iterator->group == &substs)
913 continue;
914 v = iuse->iterator->current_value;
915 iuse->iterator->group->apply_iterator (iuse->x, iuse->index,
916 v->number);
917 condition = rtx_reader_ptr->join_c_conditions (condition, v->string);
918 }
919 apply_attribute_uses ();
920 x = rtx_reader_ptr->copy_rtx_for_iterators (original);
921 add_condition_to_rtx (x, condition);
922
923 /* We apply subst iterator after RTL-template is copied, as during
924 subst-iterator processing, we could add an attribute to the
925 RTL-template, and we don't want to do it in the original one. */
926 FOR_EACH_VEC_ELT (iterator_uses, i, iuse)
927 {
928 v = iuse->iterator->current_value;
929 if (iuse->iterator->group == &substs)
930 {
931 iuse->x = x;
932 iuse->index = 0;
933 current_iterator_name = iuse->iterator->name;
934 iuse->iterator->group->apply_iterator (iuse->x, iuse->index,
935 v->number);
936 }
937 }
938
939 if (oname)
940 add_overload_instance (oname, iterators, x);
941
942 /* Add the new rtx to the end of the queue. */
943 queue->safe_push (x);
944
945 /* Lexicographically increment the iterator value sequence.
946 That is, cycle through iterator values, starting from the right,
947 and stopping when one of them doesn't wrap around. */
948 i = current_iterators.length ();
949 for (;;)
950 {
951 if (i == 0)
952 return;
953 i--;
954 iterator = current_iterators[i];
955 iterator->current_value = iterator->current_value->next;
956 if (iterator->current_value)
957 break;
958 iterator->current_value = iterator->values;
959 }
960 }
961 }
962 #endif /* #ifdef GENERATOR_FILE */
963
964 /* Add a new "mapping" structure to hashtable TABLE. NAME is the name
965 of the mapping and GROUP is the group to which it belongs. */
966
967 static struct mapping *
968 add_mapping (struct iterator_group *group, htab_t table, const char *name)
969 {
970 struct mapping *m;
971 void **slot;
972
973 m = XNEW (struct mapping);
974 m->name = xstrdup (name);
975 m->group = group;
976 m->values = 0;
977 m->current_value = NULL;
978
979 slot = htab_find_slot (table, m, INSERT);
980 if (*slot != 0)
981 fatal_with_file_and_line ("`%s' already defined", name);
982
983 *slot = m;
984 return m;
985 }
986
987 /* Add the pair (NUMBER, STRING) to a list of map_value structures.
988 END_PTR points to the current null terminator for the list; return
989 a pointer the new null terminator. */
990
991 static struct map_value **
992 add_map_value (struct map_value **end_ptr, int number, const char *string)
993 {
994 struct map_value *value;
995
996 value = XNEW (struct map_value);
997 value->next = 0;
998 value->number = number;
999 value->string = string;
1000
1001 *end_ptr = value;
1002 return &value->next;
1003 }
1004
1005 /* Do one-time initialization of the mode and code attributes. */
1006
1007 static void
1008 initialize_iterators (void)
1009 {
1010 struct mapping *lower, *upper;
1011 struct map_value **lower_ptr, **upper_ptr;
1012 char *copy, *p;
1013 int i;
1014
1015 modes.attrs = htab_create (13, leading_string_hash, leading_string_eq_p, 0);
1016 modes.iterators = htab_create (13, leading_string_hash,
1017 leading_string_eq_p, 0);
1018 modes.type = "machine_mode";
1019 modes.find_builtin = find_mode;
1020 modes.apply_iterator = apply_mode_iterator;
1021 modes.get_c_token = get_mode_token;
1022
1023 codes.attrs = htab_create (13, leading_string_hash, leading_string_eq_p, 0);
1024 codes.iterators = htab_create (13, leading_string_hash,
1025 leading_string_eq_p, 0);
1026 codes.type = "rtx_code";
1027 codes.find_builtin = find_code;
1028 codes.apply_iterator = apply_code_iterator;
1029 codes.get_c_token = get_code_token;
1030
1031 ints.attrs = htab_create (13, leading_string_hash, leading_string_eq_p, 0);
1032 ints.iterators = htab_create (13, leading_string_hash,
1033 leading_string_eq_p, 0);
1034 ints.type = "int";
1035 ints.find_builtin = find_int;
1036 ints.apply_iterator = apply_int_iterator;
1037 ints.get_c_token = get_int_token;
1038
1039 substs.attrs = htab_create (13, leading_string_hash, leading_string_eq_p, 0);
1040 substs.iterators = htab_create (13, leading_string_hash,
1041 leading_string_eq_p, 0);
1042 substs.type = "int";
1043 substs.find_builtin = find_int; /* We don't use it, anyway. */
1044 #ifdef GENERATOR_FILE
1045 substs.apply_iterator = apply_subst_iterator;
1046 #endif
1047 substs.get_c_token = get_int_token;
1048
1049 lower = add_mapping (&modes, modes.attrs, "mode");
1050 upper = add_mapping (&modes, modes.attrs, "MODE");
1051 lower_ptr = &lower->values;
1052 upper_ptr = &upper->values;
1053 for (i = 0; i < MAX_MACHINE_MODE; i++)
1054 {
1055 copy = xstrdup (GET_MODE_NAME (i));
1056 for (p = copy; *p != 0; p++)
1057 *p = TOLOWER (*p);
1058
1059 upper_ptr = add_map_value (upper_ptr, i, GET_MODE_NAME (i));
1060 lower_ptr = add_map_value (lower_ptr, i, copy);
1061 }
1062
1063 lower = add_mapping (&codes, codes.attrs, "code");
1064 upper = add_mapping (&codes, codes.attrs, "CODE");
1065 lower_ptr = &lower->values;
1066 upper_ptr = &upper->values;
1067 for (i = 0; i < NUM_RTX_CODE; i++)
1068 {
1069 copy = xstrdup (GET_RTX_NAME (i));
1070 for (p = copy; *p != 0; p++)
1071 *p = TOUPPER (*p);
1072
1073 lower_ptr = add_map_value (lower_ptr, i, GET_RTX_NAME (i));
1074 upper_ptr = add_map_value (upper_ptr, i, copy);
1075 }
1076 }
1077 \f
1078
1079 #ifdef GENERATOR_FILE
1080 /* Process a define_conditions directive, starting with the optional
1081 space after the "define_conditions". The directive looks like this:
1082
1083 (define_conditions [
1084 (number "string")
1085 (number "string")
1086 ...
1087 ])
1088
1089 It's not intended to appear in machine descriptions. It is
1090 generated by (the program generated by) genconditions.c, and
1091 slipped in at the beginning of the sequence of MD files read by
1092 most of the other generators. */
1093 void
1094 md_reader::read_conditions ()
1095 {
1096 int c;
1097
1098 require_char_ws ('[');
1099
1100 while ( (c = read_skip_spaces ()) != ']')
1101 {
1102 struct md_name name;
1103 char *expr;
1104 int value;
1105
1106 if (c != '(')
1107 fatal_expected_char ('(', c);
1108
1109 read_name (&name);
1110 validate_const_int (name.string);
1111 value = atoi (name.string);
1112
1113 require_char_ws ('"');
1114 expr = read_quoted_string ();
1115
1116 require_char_ws (')');
1117
1118 add_c_test (expr, value);
1119 }
1120 }
1121 #endif /* #ifdef GENERATOR_FILE */
1122
1123 static void
1124 validate_const_int (const char *string)
1125 {
1126 const char *cp;
1127 int valid = 1;
1128
1129 cp = string;
1130 while (*cp && ISSPACE (*cp))
1131 cp++;
1132 if (*cp == '-' || *cp == '+')
1133 cp++;
1134 if (*cp == 0)
1135 valid = 0;
1136 for (; *cp; cp++)
1137 if (! ISDIGIT (*cp))
1138 {
1139 valid = 0;
1140 break;
1141 }
1142 if (!valid)
1143 fatal_with_file_and_line ("invalid decimal constant \"%s\"\n", string);
1144 }
1145
1146 static void
1147 validate_const_wide_int (const char *string)
1148 {
1149 const char *cp;
1150 int valid = 1;
1151
1152 cp = string;
1153 while (*cp && ISSPACE (*cp))
1154 cp++;
1155 /* Skip the leading 0x. */
1156 if (cp[0] == '0' || cp[1] == 'x')
1157 cp += 2;
1158 else
1159 valid = 0;
1160 if (*cp == 0)
1161 valid = 0;
1162 for (; *cp; cp++)
1163 if (! ISXDIGIT (*cp))
1164 valid = 0;
1165 if (!valid)
1166 fatal_with_file_and_line ("invalid hex constant \"%s\"\n", string);
1167 }
1168
1169 /* Record that X uses iterator ITERATOR. If the use is in an operand
1170 of X, INDEX is the index of that operand, otherwise it is ignored. */
1171
1172 static void
1173 record_iterator_use (struct mapping *iterator, rtx x, unsigned int index)
1174 {
1175 struct iterator_use iuse = {iterator, x, index};
1176 iterator_uses.safe_push (iuse);
1177 }
1178
1179 /* Record that X uses attribute VALUE at location LOC, where VALUE must
1180 match a built-in value from group GROUP. If the use is in an operand
1181 of X, INDEX is the index of that operand, otherwise it is ignored. */
1182
1183 static void
1184 record_attribute_use (struct iterator_group *group, file_location loc, rtx x,
1185 unsigned int index, const char *value)
1186 {
1187 struct attribute_use ause = {group, loc, value, x, index};
1188 attribute_uses.safe_push (ause);
1189 }
1190
1191 /* Interpret NAME as either a built-in value, iterator or attribute
1192 for group GROUP. X and INDEX are the values to pass to GROUP's
1193 apply_iterator callback. LOC is the location of the use. */
1194
1195 void
1196 md_reader::record_potential_iterator_use (struct iterator_group *group,
1197 file_location loc,
1198 rtx x, unsigned int index,
1199 const char *name)
1200 {
1201 struct mapping *m;
1202 size_t len;
1203
1204 len = strlen (name);
1205 if (name[0] == '<' && name[len - 1] == '>')
1206 {
1207 /* Copy the attribute string into permanent storage, without the
1208 angle brackets around it. */
1209 obstack_grow0 (&m_string_obstack, name + 1, len - 2);
1210 record_attribute_use (group, loc, x, index,
1211 XOBFINISH (&m_string_obstack, char *));
1212 }
1213 else
1214 {
1215 m = (struct mapping *) htab_find (group->iterators, &name);
1216 if (m != 0)
1217 record_iterator_use (m, x, index);
1218 else
1219 group->apply_iterator (x, index, group->find_builtin (name));
1220 }
1221 }
1222
1223 #ifdef GENERATOR_FILE
1224
1225 /* Finish reading a declaration of the form:
1226
1227 (define... <name> [<value1> ... <valuen>])
1228
1229 from the MD file, where each <valuei> is either a bare symbol name or a
1230 "(<name> <string>)" pair. The "(define..." part has already been read.
1231
1232 Represent the declaration as a "mapping" structure; add it to TABLE
1233 (which belongs to GROUP) and return it. */
1234
1235 struct mapping *
1236 md_reader::read_mapping (struct iterator_group *group, htab_t table)
1237 {
1238 struct md_name name;
1239 struct mapping *m;
1240 struct map_value **end_ptr;
1241 const char *string;
1242 int number, c;
1243
1244 /* Read the mapping name and create a structure for it. */
1245 read_name (&name);
1246 m = add_mapping (group, table, name.string);
1247
1248 require_char_ws ('[');
1249
1250 /* Read each value. */
1251 end_ptr = &m->values;
1252 c = read_skip_spaces ();
1253 do
1254 {
1255 if (c != '(')
1256 {
1257 /* A bare symbol name that is implicitly paired to an
1258 empty string. */
1259 unread_char (c);
1260 read_name (&name);
1261 string = "";
1262 }
1263 else
1264 {
1265 /* A "(name string)" pair. */
1266 read_name (&name);
1267 string = read_string (false);
1268 require_char_ws (')');
1269 }
1270 number = group->find_builtin (name.string);
1271 end_ptr = add_map_value (end_ptr, number, string);
1272 c = read_skip_spaces ();
1273 }
1274 while (c != ']');
1275
1276 return m;
1277 }
1278
1279 /* For iterator with name ATTR_NAME generate define_attr with values
1280 'yes' and 'no'. This attribute is used to mark templates to which
1281 define_subst ATTR_NAME should be applied. This attribute is set and
1282 defined implicitly and automatically. */
1283 static void
1284 add_define_attr_for_define_subst (const char *attr_name, vec<rtx> *queue)
1285 {
1286 rtx const_str, return_rtx;
1287
1288 return_rtx = rtx_alloc (DEFINE_ATTR);
1289 PUT_CODE (return_rtx, DEFINE_ATTR);
1290
1291 const_str = rtx_alloc (CONST_STRING);
1292 PUT_CODE (const_str, CONST_STRING);
1293 XSTR (const_str, 0) = xstrdup ("no");
1294
1295 XSTR (return_rtx, 0) = xstrdup (attr_name);
1296 XSTR (return_rtx, 1) = xstrdup ("no,yes");
1297 XEXP (return_rtx, 2) = const_str;
1298
1299 queue->safe_push (return_rtx);
1300 }
1301
1302 /* This routine generates DEFINE_SUBST_ATTR expression with operands
1303 ATTR_OPERANDS and places it to QUEUE. */
1304 static void
1305 add_define_subst_attr (const char **attr_operands, vec<rtx> *queue)
1306 {
1307 rtx return_rtx;
1308 int i;
1309
1310 return_rtx = rtx_alloc (DEFINE_SUBST_ATTR);
1311 PUT_CODE (return_rtx, DEFINE_SUBST_ATTR);
1312
1313 for (i = 0; i < 4; i++)
1314 XSTR (return_rtx, i) = xstrdup (attr_operands[i]);
1315
1316 queue->safe_push (return_rtx);
1317 }
1318
1319 /* Read define_subst_attribute construction. It has next form:
1320 (define_subst_attribute <attribute_name> <iterator_name> <value1> <value2>)
1321 Attribute is substituted with value1 when no subst is applied and with
1322 value2 in the opposite case.
1323 Attributes are added to SUBST_ATTRS_TABLE.
1324 In case the iterator is encountered for the first time, it's added to
1325 SUBST_ITERS_TABLE. Also, implicit define_attr is generated. */
1326
1327 static void
1328 read_subst_mapping (htab_t subst_iters_table, htab_t subst_attrs_table,
1329 vec<rtx> *queue)
1330 {
1331 struct mapping *m;
1332 struct map_value **end_ptr;
1333 const char *attr_operands[4];
1334 int i;
1335
1336 for (i = 0; i < 4; i++)
1337 attr_operands[i] = rtx_reader_ptr->read_string (false);
1338
1339 add_define_subst_attr (attr_operands, queue);
1340
1341 bind_subst_iter_and_attr (attr_operands[1], attr_operands[0]);
1342
1343 m = (struct mapping *) htab_find (substs.iterators, &attr_operands[1]);
1344 if (!m)
1345 {
1346 m = add_mapping (&substs, subst_iters_table, attr_operands[1]);
1347 end_ptr = &m->values;
1348 end_ptr = add_map_value (end_ptr, 1, "");
1349 add_map_value (end_ptr, 2, "");
1350
1351 add_define_attr_for_define_subst (attr_operands[1], queue);
1352 }
1353
1354 m = add_mapping (&substs, subst_attrs_table, attr_operands[0]);
1355 end_ptr = &m->values;
1356 end_ptr = add_map_value (end_ptr, 1, attr_operands[2]);
1357 add_map_value (end_ptr, 2, attr_operands[3]);
1358 }
1359
1360 /* Check newly-created code iterator ITERATOR to see whether every code has the
1361 same format. */
1362
1363 static void
1364 check_code_iterator (struct mapping *iterator)
1365 {
1366 struct map_value *v;
1367 enum rtx_code bellwether;
1368
1369 bellwether = (enum rtx_code) iterator->values->number;
1370 for (v = iterator->values->next; v != 0; v = v->next)
1371 if (strcmp (GET_RTX_FORMAT (bellwether), GET_RTX_FORMAT (v->number)) != 0)
1372 fatal_with_file_and_line ("code iterator `%s' combines "
1373 "`%s' and `%s', which have different "
1374 "rtx formats", iterator->name,
1375 GET_RTX_NAME (bellwether),
1376 GET_RTX_NAME (v->number));
1377 }
1378
1379 /* Check that all values of attribute ATTR are rtx codes that have a
1380 consistent format. Return a representative code. */
1381
1382 static rtx_code
1383 check_code_attribute (mapping *attr)
1384 {
1385 rtx_code bellwether = UNKNOWN;
1386 for (map_value *v = attr->values; v != 0; v = v->next)
1387 {
1388 rtx_code code = maybe_find_code (v->string);
1389 if (code == UNKNOWN)
1390 fatal_with_file_and_line ("code attribute `%s' contains "
1391 "unrecognized rtx code `%s'",
1392 attr->name, v->string);
1393 if (bellwether == UNKNOWN)
1394 bellwether = code;
1395 else if (strcmp (GET_RTX_FORMAT (bellwether),
1396 GET_RTX_FORMAT (code)) != 0)
1397 fatal_with_file_and_line ("code attribute `%s' combines "
1398 "`%s' and `%s', which have different "
1399 "rtx formats", attr->name,
1400 GET_RTX_NAME (bellwether),
1401 GET_RTX_NAME (code));
1402 }
1403 return bellwether;
1404 }
1405
1406 /* Read an rtx-related declaration from the MD file, given that it
1407 starts with directive name RTX_NAME. Return true if it expands to
1408 one or more rtxes (as defined by rtx.def). When returning true,
1409 store the list of rtxes as an EXPR_LIST in *X. */
1410
1411 bool
1412 rtx_reader::read_rtx (const char *rtx_name, vec<rtx> *rtxen)
1413 {
1414 /* Handle various rtx-related declarations that aren't themselves
1415 encoded as rtxes. */
1416 if (strcmp (rtx_name, "define_conditions") == 0)
1417 {
1418 read_conditions ();
1419 return false;
1420 }
1421 if (strcmp (rtx_name, "define_mode_attr") == 0)
1422 {
1423 read_mapping (&modes, modes.attrs);
1424 return false;
1425 }
1426 if (strcmp (rtx_name, "define_mode_iterator") == 0)
1427 {
1428 read_mapping (&modes, modes.iterators);
1429 return false;
1430 }
1431 if (strcmp (rtx_name, "define_code_attr") == 0)
1432 {
1433 read_mapping (&codes, codes.attrs);
1434 return false;
1435 }
1436 if (strcmp (rtx_name, "define_code_iterator") == 0)
1437 {
1438 check_code_iterator (read_mapping (&codes, codes.iterators));
1439 return false;
1440 }
1441 if (strcmp (rtx_name, "define_int_attr") == 0)
1442 {
1443 read_mapping (&ints, ints.attrs);
1444 return false;
1445 }
1446 if (strcmp (rtx_name, "define_int_iterator") == 0)
1447 {
1448 read_mapping (&ints, ints.iterators);
1449 return false;
1450 }
1451 if (strcmp (rtx_name, "define_subst_attr") == 0)
1452 {
1453 read_subst_mapping (substs.iterators, substs.attrs, rtxen);
1454
1455 /* READ_SUBST_MAPPING could generate a new DEFINE_ATTR. Return
1456 TRUE to process it. */
1457 return true;
1458 }
1459
1460 apply_iterators (rtx_reader_ptr->read_rtx_code (rtx_name), rtxen);
1461 iterator_uses.truncate (0);
1462 attribute_uses.truncate (0);
1463
1464 return true;
1465 }
1466
1467 #endif /* #ifdef GENERATOR_FILE */
1468
1469 /* Do one-time initialization. */
1470
1471 static void
1472 one_time_initialization (void)
1473 {
1474 static bool initialized = false;
1475
1476 if (!initialized)
1477 {
1478 initialize_iterators ();
1479 initialized = true;
1480 }
1481 }
1482
1483 /* Consume characters until encountering a character in TERMINATOR_CHARS,
1484 consuming the terminator character if CONSUME_TERMINATOR is true.
1485 Return all characters before the terminator as an allocated buffer. */
1486
1487 char *
1488 rtx_reader::read_until (const char *terminator_chars, bool consume_terminator)
1489 {
1490 int ch = read_skip_spaces ();
1491 unread_char (ch);
1492 auto_vec<char> buf;
1493 while (1)
1494 {
1495 ch = read_char ();
1496 if (strchr (terminator_chars, ch))
1497 {
1498 if (!consume_terminator)
1499 unread_char (ch);
1500 break;
1501 }
1502 buf.safe_push (ch);
1503 }
1504 buf.safe_push ('\0');
1505 return xstrdup (buf.address ());
1506 }
1507
1508 /* Subroutine of read_rtx_code, for parsing zero or more flags. */
1509
1510 static void
1511 read_flags (rtx return_rtx)
1512 {
1513 while (1)
1514 {
1515 int ch = read_char ();
1516 if (ch != '/')
1517 {
1518 unread_char (ch);
1519 break;
1520 }
1521
1522 int flag_char = read_char ();
1523 switch (flag_char)
1524 {
1525 case 's':
1526 RTX_FLAG (return_rtx, in_struct) = 1;
1527 break;
1528 case 'v':
1529 RTX_FLAG (return_rtx, volatil) = 1;
1530 break;
1531 case 'u':
1532 RTX_FLAG (return_rtx, unchanging) = 1;
1533 break;
1534 case 'f':
1535 RTX_FLAG (return_rtx, frame_related) = 1;
1536 break;
1537 case 'j':
1538 RTX_FLAG (return_rtx, jump) = 1;
1539 break;
1540 case 'c':
1541 RTX_FLAG (return_rtx, call) = 1;
1542 break;
1543 case 'i':
1544 RTX_FLAG (return_rtx, return_val) = 1;
1545 break;
1546 default:
1547 fatal_with_file_and_line ("unrecognized flag: `%c'", flag_char);
1548 }
1549 }
1550 }
1551
1552 /* Return the numeric value n for GET_REG_NOTE_NAME (n) for STRING,
1553 or fail if STRING isn't recognized. */
1554
1555 static int
1556 parse_reg_note_name (const char *string)
1557 {
1558 for (int i = 0; i < REG_NOTE_MAX; i++)
1559 if (strcmp (string, GET_REG_NOTE_NAME (i)) == 0)
1560 return i;
1561 fatal_with_file_and_line ("unrecognized REG_NOTE name: `%s'", string);
1562 }
1563
1564 /* Allocate an rtx for code NAME. If NAME is a code iterator or code
1565 attribute, record its use for later and use one of its possible
1566 values as an interim rtx code. */
1567
1568 rtx
1569 rtx_reader::rtx_alloc_for_name (const char *name)
1570 {
1571 #ifdef GENERATOR_FILE
1572 size_t len = strlen (name);
1573 if (name[0] == '<' && name[len - 1] == '>')
1574 {
1575 /* Copy the attribute string into permanent storage, without the
1576 angle brackets around it. */
1577 obstack *strings = get_string_obstack ();
1578 obstack_grow0 (strings, name + 1, len - 2);
1579 char *deferred_name = XOBFINISH (strings, char *);
1580
1581 /* Find the name of the attribute. */
1582 const char *attr = strchr (deferred_name, ':');
1583 if (!attr)
1584 attr = deferred_name;
1585
1586 /* Find the attribute itself. */
1587 mapping *m = (mapping *) htab_find (codes.attrs, &attr);
1588 if (!m)
1589 fatal_with_file_and_line ("unknown code attribute `%s'", attr);
1590
1591 /* Pick the first possible code for now, and record the attribute
1592 use for later. */
1593 rtx x = rtx_alloc (check_code_attribute (m));
1594 record_attribute_use (&codes, get_current_location (),
1595 x, 0, deferred_name);
1596 return x;
1597 }
1598
1599 mapping *iterator = (mapping *) htab_find (codes.iterators, &name);
1600 if (iterator != 0)
1601 {
1602 /* Pick the first possible code for now, and record the iterator
1603 use for later. */
1604 rtx x = rtx_alloc (rtx_code (iterator->values->number));
1605 record_iterator_use (iterator, x, 0);
1606 return x;
1607 }
1608 #endif
1609
1610 return rtx_alloc (rtx_code (codes.find_builtin (name)));
1611 }
1612
1613 /* Subroutine of read_rtx and read_nested_rtx. CODE_NAME is the name of
1614 either an rtx code or a code iterator. Parse the rest of the rtx and
1615 return it. */
1616
1617 rtx
1618 rtx_reader::read_rtx_code (const char *code_name)
1619 {
1620 RTX_CODE code;
1621 const char *format_ptr;
1622 struct md_name name;
1623 rtx return_rtx;
1624 int c;
1625 long reuse_id = -1;
1626
1627 /* Linked list structure for making RTXs: */
1628 struct rtx_list
1629 {
1630 struct rtx_list *next;
1631 rtx value; /* Value of this node. */
1632 };
1633
1634 /* Handle reuse_rtx ids e.g. "(0|scratch:DI)". */
1635 if (ISDIGIT (code_name[0]))
1636 {
1637 reuse_id = atoi (code_name);
1638 while (char ch = *code_name++)
1639 if (ch == '|')
1640 break;
1641 }
1642
1643 /* Handle "reuse_rtx". */
1644 if (strcmp (code_name, "reuse_rtx") == 0)
1645 {
1646 read_name (&name);
1647 unsigned idx = atoi (name.string);
1648 /* Look it up by ID. */
1649 gcc_assert (idx < m_reuse_rtx_by_id.length ());
1650 return_rtx = m_reuse_rtx_by_id[idx];
1651 return return_rtx;
1652 }
1653
1654 /* Handle "const_double_zero". */
1655 if (strcmp (code_name, "const_double_zero") == 0)
1656 {
1657 code = CONST_DOUBLE;
1658 return_rtx = rtx_alloc (code);
1659 memset (return_rtx, 0, RTX_CODE_SIZE (code));
1660 PUT_CODE (return_rtx, code);
1661 return return_rtx;
1662 }
1663
1664 /* If we end up with an insn expression then we free this space below. */
1665 return_rtx = rtx_alloc_for_name (code_name);
1666 code = GET_CODE (return_rtx);
1667 format_ptr = GET_RTX_FORMAT (code);
1668 memset (return_rtx, 0, RTX_CODE_SIZE (code));
1669 PUT_CODE (return_rtx, code);
1670
1671 if (reuse_id != -1)
1672 {
1673 /* Store away for later reuse. */
1674 m_reuse_rtx_by_id.safe_grow_cleared (reuse_id + 1, true);
1675 m_reuse_rtx_by_id[reuse_id] = return_rtx;
1676 }
1677
1678 /* Check for flags. */
1679 read_flags (return_rtx);
1680
1681 /* Read REG_NOTE names for EXPR_LIST and INSN_LIST. */
1682 if ((GET_CODE (return_rtx) == EXPR_LIST
1683 || GET_CODE (return_rtx) == INSN_LIST
1684 || GET_CODE (return_rtx) == INT_LIST)
1685 && !m_in_call_function_usage)
1686 {
1687 char ch = read_char ();
1688 if (ch == ':')
1689 {
1690 read_name (&name);
1691 PUT_MODE_RAW (return_rtx,
1692 (machine_mode)parse_reg_note_name (name.string));
1693 }
1694 else
1695 unread_char (ch);
1696 }
1697
1698 /* If what follows is `: mode ', read it and
1699 store the mode in the rtx. */
1700
1701 c = read_skip_spaces ();
1702 if (c == ':')
1703 {
1704 file_location loc = read_name (&name);
1705 record_potential_iterator_use (&modes, loc, return_rtx, 0, name.string);
1706 }
1707 else
1708 unread_char (c);
1709
1710 if (INSN_CHAIN_CODE_P (code))
1711 {
1712 read_name (&name);
1713 INSN_UID (return_rtx) = atoi (name.string);
1714 }
1715
1716 /* Use the format_ptr to parse the various operands of this rtx. */
1717 for (int idx = 0; format_ptr[idx] != 0; idx++)
1718 return_rtx = read_rtx_operand (return_rtx, idx);
1719
1720 /* Handle any additional information that after the regular fields
1721 (e.g. when parsing function dumps). */
1722 handle_any_trailing_information (return_rtx);
1723
1724 if (CONST_WIDE_INT_P (return_rtx))
1725 {
1726 read_name (&name);
1727 validate_const_wide_int (name.string);
1728 {
1729 const char *s = name.string;
1730 int len;
1731 int index = 0;
1732 int gs = HOST_BITS_PER_WIDE_INT/4;
1733 int pos;
1734 char * buf = XALLOCAVEC (char, gs + 1);
1735 unsigned HOST_WIDE_INT wi;
1736 int wlen;
1737
1738 /* Skip the leading spaces. */
1739 while (*s && ISSPACE (*s))
1740 s++;
1741
1742 /* Skip the leading 0x. */
1743 gcc_assert (s[0] == '0');
1744 gcc_assert (s[1] == 'x');
1745 s += 2;
1746
1747 len = strlen (s);
1748 pos = len - gs;
1749 wlen = (len + gs - 1) / gs; /* Number of words needed */
1750
1751 return_rtx = const_wide_int_alloc (wlen);
1752
1753 while (pos > 0)
1754 {
1755 #if HOST_BITS_PER_WIDE_INT == 64
1756 sscanf (s + pos, "%16" HOST_WIDE_INT_PRINT "x", &wi);
1757 #else
1758 sscanf (s + pos, "%8" HOST_WIDE_INT_PRINT "x", &wi);
1759 #endif
1760 CWI_ELT (return_rtx, index++) = wi;
1761 pos -= gs;
1762 }
1763 strncpy (buf, s, gs - pos);
1764 buf [gs - pos] = 0;
1765 sscanf (buf, "%" HOST_WIDE_INT_PRINT "x", &wi);
1766 CWI_ELT (return_rtx, index++) = wi;
1767 /* TODO: After reading, do we want to canonicalize with:
1768 value = lookup_const_wide_int (value); ? */
1769 }
1770 }
1771
1772 c = read_skip_spaces ();
1773 /* Syntactic sugar for AND and IOR, allowing Lisp-like
1774 arbitrary number of arguments for them. */
1775 if (c == '('
1776 && (GET_CODE (return_rtx) == AND
1777 || GET_CODE (return_rtx) == IOR))
1778 return read_rtx_variadic (return_rtx);
1779
1780 unread_char (c);
1781 return return_rtx;
1782 }
1783
1784 /* Subroutine of read_rtx_code. Parse operand IDX within RETURN_RTX,
1785 based on the corresponding format character within GET_RTX_FORMAT
1786 for the GET_CODE (RETURN_RTX), and return RETURN_RTX.
1787 This is a virtual function, so that function_reader can override
1788 some parsing, and potentially return a different rtx. */
1789
1790 rtx
1791 rtx_reader::read_rtx_operand (rtx return_rtx, int idx)
1792 {
1793 RTX_CODE code = GET_CODE (return_rtx);
1794 const char *format_ptr = GET_RTX_FORMAT (code);
1795 int c;
1796 struct md_name name;
1797
1798 switch (format_ptr[idx])
1799 {
1800 /* 0 means a field for internal use only.
1801 Don't expect it to be present in the input. */
1802 case '0':
1803 if (code == REG)
1804 ORIGINAL_REGNO (return_rtx) = REGNO (return_rtx);
1805 break;
1806
1807 case 'e':
1808 XEXP (return_rtx, idx) = read_nested_rtx ();
1809 break;
1810
1811 case 'u':
1812 XEXP (return_rtx, idx) = read_nested_rtx ();
1813 break;
1814
1815 case 'V':
1816 /* 'V' is an optional vector: if a closeparen follows,
1817 just store NULL for this element. */
1818 c = read_skip_spaces ();
1819 unread_char (c);
1820 if (c == ')')
1821 {
1822 XVEC (return_rtx, idx) = 0;
1823 break;
1824 }
1825 /* Now process the vector. */
1826 /* FALLTHRU */
1827
1828 case 'E':
1829 {
1830 /* Obstack to store scratch vector in. */
1831 struct obstack vector_stack;
1832 int list_counter = 0;
1833 rtvec return_vec = NULL_RTVEC;
1834 rtx saved_rtx = NULL_RTX;
1835
1836 require_char_ws ('[');
1837
1838 /* Add expressions to a list, while keeping a count. */
1839 obstack_init (&vector_stack);
1840 while ((c = read_skip_spaces ()) && c != ']')
1841 {
1842 if (c == EOF)
1843 fatal_expected_char (']', c);
1844 unread_char (c);
1845
1846 rtx value;
1847 int repeat_count = 1;
1848 if (c == 'r')
1849 {
1850 /* Process "repeated xN" directive. */
1851 read_name (&name);
1852 if (strcmp (name.string, "repeated"))
1853 fatal_with_file_and_line ("invalid directive \"%s\"\n",
1854 name.string);
1855 read_name (&name);
1856 if (!sscanf (name.string, "x%d", &repeat_count))
1857 fatal_with_file_and_line ("invalid repeat count \"%s\"\n",
1858 name.string);
1859
1860 /* We already saw one of the instances. */
1861 repeat_count--;
1862 value = saved_rtx;
1863 }
1864 else
1865 value = read_nested_rtx ();
1866
1867 for (; repeat_count > 0; repeat_count--)
1868 {
1869 list_counter++;
1870 obstack_ptr_grow (&vector_stack, value);
1871 }
1872 saved_rtx = value;
1873 }
1874 if (list_counter > 0)
1875 {
1876 return_vec = rtvec_alloc (list_counter);
1877 memcpy (&return_vec->elem[0], obstack_finish (&vector_stack),
1878 list_counter * sizeof (rtx));
1879 }
1880 else if (format_ptr[idx] == 'E')
1881 fatal_with_file_and_line ("vector must have at least one element");
1882 XVEC (return_rtx, idx) = return_vec;
1883 obstack_free (&vector_stack, NULL);
1884 /* close bracket gotten */
1885 }
1886 break;
1887
1888 case 'S':
1889 case 'T':
1890 case 's':
1891 {
1892 char *stringbuf;
1893 int star_if_braced;
1894
1895 c = read_skip_spaces ();
1896 unread_char (c);
1897 if (c == ')')
1898 {
1899 /* 'S' fields are optional and should be NULL if no string
1900 was given. Also allow normal 's' and 'T' strings to be
1901 omitted, treating them in the same way as empty strings. */
1902 XSTR (return_rtx, idx) = (format_ptr[idx] == 'S' ? NULL : "");
1903 break;
1904 }
1905
1906 /* The output template slot of a DEFINE_INSN, DEFINE_INSN_AND_SPLIT,
1907 DEFINE_INSN_AND_REWRITE or DEFINE_PEEPHOLE automatically
1908 gets a star inserted as its first character, if it is
1909 written with a brace block instead of a string constant. */
1910 star_if_braced = (format_ptr[idx] == 'T');
1911
1912 stringbuf = read_string (star_if_braced);
1913 if (!stringbuf)
1914 break;
1915
1916 #ifdef GENERATOR_FILE
1917 /* For insn patterns, we want to provide a default name
1918 based on the file and line, like "*foo.md:12", if the
1919 given name is blank. These are only for define_insn and
1920 define_insn_and_split, to aid debugging. */
1921 if (*stringbuf == '\0'
1922 && idx == 0
1923 && (GET_CODE (return_rtx) == DEFINE_INSN
1924 || GET_CODE (return_rtx) == DEFINE_INSN_AND_SPLIT
1925 || GET_CODE (return_rtx) == DEFINE_INSN_AND_REWRITE))
1926 {
1927 const char *old_stringbuf = stringbuf;
1928 struct obstack *string_obstack = get_string_obstack ();
1929 char line_name[20];
1930 const char *read_md_filename = get_filename ();
1931 const char *fn = (read_md_filename ? read_md_filename : "rtx");
1932 const char *slash;
1933 for (slash = fn; *slash; slash ++)
1934 if (*slash == '/' || *slash == '\\' || *slash == ':')
1935 fn = slash + 1;
1936 obstack_1grow (string_obstack, '*');
1937 obstack_grow (string_obstack, fn, strlen (fn));
1938 sprintf (line_name, ":%d", get_lineno ());
1939 obstack_grow (string_obstack, line_name, strlen (line_name)+1);
1940 stringbuf = XOBFINISH (string_obstack, char *);
1941 copy_md_ptr_loc (stringbuf, old_stringbuf);
1942 }
1943
1944 /* Find attr-names in the string. */
1945 char *str;
1946 char *start, *end, *ptr;
1947 char tmpstr[256];
1948 ptr = &tmpstr[0];
1949 end = stringbuf;
1950 while ((start = strchr (end, '<')) && (end = strchr (start, '>')))
1951 {
1952 if ((end - start - 1 > 0)
1953 && (end - start - 1 < (int)sizeof (tmpstr)))
1954 {
1955 strncpy (tmpstr, start+1, end-start-1);
1956 tmpstr[end-start-1] = 0;
1957 end++;
1958 }
1959 else
1960 break;
1961 struct mapping *m
1962 = (struct mapping *) htab_find (substs.attrs, &ptr);
1963 if (m != 0)
1964 {
1965 /* Here we should find linked subst-iter. */
1966 str = find_subst_iter_by_attr (ptr);
1967 if (str)
1968 m = (struct mapping *) htab_find (substs.iterators, &str);
1969 else
1970 m = 0;
1971 }
1972 if (m != 0)
1973 record_iterator_use (m, return_rtx, 0);
1974 }
1975 #endif /* #ifdef GENERATOR_FILE */
1976
1977 const char *string_ptr = finalize_string (stringbuf);
1978
1979 if (star_if_braced)
1980 XTMPL (return_rtx, idx) = string_ptr;
1981 else
1982 XSTR (return_rtx, idx) = string_ptr;
1983 }
1984 break;
1985
1986 case 'i':
1987 case 'n':
1988 case 'w':
1989 case 'p':
1990 {
1991 /* Can be an iterator or an integer constant. */
1992 file_location loc = read_name (&name);
1993 record_potential_iterator_use (&ints, loc, return_rtx, idx,
1994 name.string);
1995 break;
1996 }
1997
1998 case 'r':
1999 read_name (&name);
2000 validate_const_int (name.string);
2001 set_regno_raw (return_rtx, atoi (name.string), 1);
2002 REG_ATTRS (return_rtx) = NULL;
2003 break;
2004
2005 default:
2006 gcc_unreachable ();
2007 }
2008
2009 return return_rtx;
2010 }
2011
2012 /* Read a nested rtx construct from the MD file and return it. */
2013
2014 rtx
2015 rtx_reader::read_nested_rtx ()
2016 {
2017 struct md_name name;
2018 rtx return_rtx;
2019
2020 /* In compact dumps, trailing "(nil)" values can be omitted.
2021 Handle such dumps. */
2022 if (peek_char () == ')')
2023 return NULL_RTX;
2024
2025 require_char_ws ('(');
2026
2027 read_name (&name);
2028 if (strcmp (name.string, "nil") == 0)
2029 return_rtx = NULL;
2030 else
2031 return_rtx = read_rtx_code (name.string);
2032
2033 require_char_ws (')');
2034
2035 return_rtx = postprocess (return_rtx);
2036
2037 return return_rtx;
2038 }
2039
2040 /* Mutually recursive subroutine of read_rtx which reads
2041 (thing x1 x2 x3 ...) and produces RTL as if
2042 (thing x1 (thing x2 (thing x3 ...))) had been written.
2043 When called, FORM is (thing x1 x2), and the file position
2044 is just past the leading parenthesis of x3. Only works
2045 for THINGs which are dyadic expressions, e.g. AND, IOR. */
2046 rtx
2047 rtx_reader::read_rtx_variadic (rtx form)
2048 {
2049 char c = '(';
2050 rtx p = form, q;
2051
2052 do
2053 {
2054 unread_char (c);
2055
2056 q = rtx_alloc (GET_CODE (p));
2057 PUT_MODE (q, GET_MODE (p));
2058
2059 XEXP (q, 0) = XEXP (p, 1);
2060 XEXP (q, 1) = read_nested_rtx ();
2061
2062 XEXP (p, 1) = q;
2063 p = q;
2064 c = read_skip_spaces ();
2065 }
2066 while (c == '(');
2067 unread_char (c);
2068 return form;
2069 }
2070
2071 /* Constructor for class rtx_reader. */
2072
2073 rtx_reader::rtx_reader (bool compact)
2074 : md_reader (compact),
2075 m_in_call_function_usage (false)
2076 {
2077 /* Set the global singleton pointer. */
2078 rtx_reader_ptr = this;
2079
2080 one_time_initialization ();
2081 }
2082
2083 /* Destructor for class rtx_reader. */
2084
2085 rtx_reader::~rtx_reader ()
2086 {
2087 /* Clear the global singleton pointer. */
2088 rtx_reader_ptr = NULL;
2089 }