re PR fortran/55618 (Failures with ISO_Varying_String test suite)
[gcc.git] / gcc / read-rtl.c
1 /* RTL reader for GCC.
2 Copyright (C) 1987, 1988, 1991, 1994, 1997, 1998, 1999, 2000, 2001, 2002,
3 2003, 2004, 2005, 2007, 2008, 2010, 2012
4 Free Software Foundation, Inc.
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
12
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
21
22 #include "bconfig.h"
23
24 /* Disable rtl checking; it conflicts with the iterator handling. */
25 #undef ENABLE_RTL_CHECKING
26
27 #include "system.h"
28 #include "coretypes.h"
29 #include "tm.h"
30 #include "rtl.h"
31 #include "obstack.h"
32 #include "hashtab.h"
33 #include "read-md.h"
34 #include "gensupport.h"
35
36 /* One element in a singly-linked list of (integer, string) pairs. */
37 struct map_value {
38 struct map_value *next;
39 int number;
40 const char *string;
41 };
42
43 /* Maps an iterator or attribute name to a list of (integer, string) pairs.
44 The integers are iterator values; the strings are either C conditions
45 or attribute values. */
46 struct mapping {
47 /* The name of the iterator or attribute. */
48 const char *name;
49
50 /* The group (modes or codes) to which the iterator or attribute belongs. */
51 struct iterator_group *group;
52
53 /* The list of (integer, string) pairs. */
54 struct map_value *values;
55
56 /* For iterators, records the current value of the iterator. */
57 struct map_value *current_value;
58 };
59
60 /* Vector definitions for the above. */
61 typedef struct mapping *mapping_ptr;
62
63 /* A structure for abstracting the common parts of iterators. */
64 struct iterator_group {
65 /* Tables of "mapping" structures, one for attributes and one for
66 iterators. */
67 htab_t attrs, iterators;
68
69 /* Treat the given string as the name of a standard mode, etc., and
70 return its integer value. */
71 int (*find_builtin) (const char *);
72
73 /* Make the given pointer use the given iterator value. */
74 void (*apply_iterator) (void *, int);
75 };
76
77 /* Records one use of an iterator. */
78 struct iterator_use {
79 /* The iterator itself. */
80 struct mapping *iterator;
81
82 /* The location of the use, as passed to the apply_iterator callback. */
83 void *ptr;
84 };
85
86 /* Vector definitions for the above. */
87 typedef struct iterator_use iterator_use;
88
89 /* Records one use of an attribute (the "<[iterator:]attribute>" syntax)
90 in a non-string rtx field. */
91 struct attribute_use {
92 /* The group that describes the use site. */
93 struct iterator_group *group;
94
95 /* The name of the attribute, possibly with an "iterator:" prefix. */
96 const char *value;
97
98 /* The location of the use, as passed to GROUP's apply_iterator callback. */
99 void *ptr;
100 };
101
102 /* Vector definitions for the above. */
103 typedef struct attribute_use attribute_use;
104
105 /* This struct is used to link subst_attr named ATTR_NAME with
106 corresponding define_subst named ITER_NAME. */
107 struct subst_attr_to_iter_mapping
108 {
109 char *attr_name;
110 char *iter_name;
111 };
112
113 /* Hash-table to store links between subst-attributes and
114 define_substs. */
115 htab_t subst_attr_to_iter_map = NULL;
116 /* This global stores name of subst-iterator which is currently being
117 processed. */
118 const char *current_iterator_name;
119
120 static void validate_const_int (const char *);
121 static rtx read_rtx_code (const char *);
122 static rtx read_nested_rtx (void);
123 static rtx read_rtx_variadic (rtx);
124
125 /* The mode and code iterator structures. */
126 static struct iterator_group modes, codes, ints, substs;
127
128 /* All iterators used in the current rtx. */
129 static vec<mapping_ptr> current_iterators;
130
131 /* The list of all iterator uses in the current rtx. */
132 static vec<iterator_use> iterator_uses;
133
134 /* The list of all attribute uses in the current rtx. */
135 static vec<attribute_use> attribute_uses;
136
137 /* Implementations of the iterator_group callbacks for modes. */
138
139 static int
140 find_mode (const char *name)
141 {
142 int i;
143
144 for (i = 0; i < NUM_MACHINE_MODES; i++)
145 if (strcmp (GET_MODE_NAME (i), name) == 0)
146 return i;
147
148 fatal_with_file_and_line ("unknown mode `%s'", name);
149 }
150
151 static void
152 apply_mode_iterator (void *loc, int mode)
153 {
154 PUT_MODE ((rtx) loc, (enum machine_mode) mode);
155 }
156
157 /* Implementations of the iterator_group callbacks for codes. */
158
159 static int
160 find_code (const char *name)
161 {
162 int i;
163
164 for (i = 0; i < NUM_RTX_CODE; i++)
165 if (strcmp (GET_RTX_NAME (i), name) == 0)
166 return i;
167
168 fatal_with_file_and_line ("unknown rtx code `%s'", name);
169 }
170
171 static void
172 apply_code_iterator (void *loc, int code)
173 {
174 PUT_CODE ((rtx) loc, (enum rtx_code) code);
175 }
176
177 /* Implementations of the iterator_group callbacks for ints. */
178
179 /* Since GCC does not construct a table of valid constants,
180 we have to accept any int as valid. No cross-checking can
181 be done. */
182
183 static int
184 find_int (const char *name)
185 {
186 validate_const_int (name);
187 return atoi (name);
188 }
189
190 static void
191 apply_int_iterator (void *loc, int value)
192 {
193 *(int *)loc = value;
194 }
195
196 /* This routine adds attribute or does nothing depending on VALUE. When
197 VALUE is 1, it does nothing - the first duplicate of original
198 template is kept untouched when it's subjected to a define_subst.
199 When VALUE isn't 1, the routine modifies RTL-template LOC, adding
200 attribute, named exactly as define_subst, which later will be
201 applied. If such attribute has already been added, then no the
202 routine has no effect. */
203 static void
204 apply_subst_iterator (void *loc, int value)
205 {
206 rtx rt = (rtx)loc;
207 rtx new_attr;
208 rtvec attrs_vec, new_attrs_vec;
209 int i;
210 if (value == 1)
211 return;
212 gcc_assert (GET_CODE (rt) == DEFINE_INSN
213 || GET_CODE (rt) == DEFINE_EXPAND);
214
215 attrs_vec = XVEC (rt, 4);
216
217 /* If we've already added attribute 'current_iterator_name', then we
218 have nothing to do now. */
219 if (attrs_vec)
220 {
221 for (i = 0; i < GET_NUM_ELEM (attrs_vec); i++)
222 {
223 if (strcmp (XSTR (attrs_vec->elem[i], 0), current_iterator_name) == 0)
224 return;
225 }
226 }
227
228 /* Add attribute with subst name - it serves as a mark for
229 define_subst which later would be applied to this pattern. */
230 new_attr = rtx_alloc (SET_ATTR);
231 PUT_CODE (new_attr, SET_ATTR);
232 XSTR (new_attr, 0) = xstrdup (current_iterator_name);
233 XSTR (new_attr, 1) = xstrdup ("yes");
234
235 if (!attrs_vec)
236 {
237 new_attrs_vec = rtvec_alloc (1);
238 new_attrs_vec->elem[0] = new_attr;
239 }
240 else
241 {
242 new_attrs_vec = rtvec_alloc (GET_NUM_ELEM (attrs_vec) + 1);
243 memcpy (&new_attrs_vec->elem[0], &attrs_vec->elem[0],
244 GET_NUM_ELEM (attrs_vec) * sizeof (rtx));
245 new_attrs_vec->elem[GET_NUM_ELEM (attrs_vec)] = new_attr;
246 }
247 XVEC (rt, 4) = new_attrs_vec;
248 }
249
250 /* Map subst-attribute ATTR to subst iterator ITER. */
251
252 static void
253 bind_subst_iter_and_attr (const char *iter, const char *attr)
254 {
255 struct subst_attr_to_iter_mapping *value;
256 void **slot;
257 if (!subst_attr_to_iter_map)
258 subst_attr_to_iter_map =
259 htab_create (1, leading_string_hash, leading_string_eq_p, 0);
260 value = XNEW (struct subst_attr_to_iter_mapping);
261 value->attr_name = xstrdup (attr);
262 value->iter_name = xstrdup (iter);
263 slot = htab_find_slot (subst_attr_to_iter_map, value, INSERT);
264 *slot = value;
265 }
266
267 /* Return name of a subst-iterator, corresponding to subst-attribute ATTR. */
268
269 static char*
270 find_subst_iter_by_attr (const char *attr)
271 {
272 char *iter_name = NULL;
273 struct subst_attr_to_iter_mapping *value;
274 value = (struct subst_attr_to_iter_mapping*)
275 htab_find (subst_attr_to_iter_map, &attr);
276 if (value)
277 iter_name = value->iter_name;
278 return iter_name;
279 }
280
281 /* Map attribute string P to its current value. Return null if the attribute
282 isn't known. */
283
284 static struct map_value *
285 map_attr_string (const char *p)
286 {
287 const char *attr;
288 struct mapping *iterator;
289 unsigned int i;
290 struct mapping *m;
291 struct map_value *v;
292 int iterator_name_len;
293
294 /* Peel off any "iterator:" prefix. Set ATTR to the start of the
295 attribute name. */
296 attr = strchr (p, ':');
297 if (attr == 0)
298 {
299 iterator_name_len = -1;
300 attr = p;
301 }
302 else
303 {
304 iterator_name_len = attr - p;
305 attr++;
306 }
307
308 FOR_EACH_VEC_ELT (current_iterators, i, iterator)
309 {
310 /* If an iterator name was specified, check that it matches. */
311 if (iterator_name_len >= 0
312 && (strncmp (p, iterator->name, iterator_name_len) != 0
313 || iterator->name[iterator_name_len] != 0))
314 continue;
315
316 /* Find the attribute specification. */
317 m = (struct mapping *) htab_find (iterator->group->attrs, &attr);
318 if (m)
319 {
320 /* In contrast to code/mode/int iterators, attributes of subst
321 iterators are linked to one specific subst-iterator. So, if
322 we are dealing with subst-iterator, we should check if it's
323 the one which linked with the given attribute. */
324 if (iterator->group == &substs)
325 {
326 char *iter_name = find_subst_iter_by_attr (attr);
327 if (strcmp (iter_name, iterator->name) != 0)
328 continue;
329 }
330 /* Find the attribute value associated with the current
331 iterator value. */
332 for (v = m->values; v; v = v->next)
333 if (v->number == iterator->current_value->number)
334 return v;
335 }
336 }
337 return NULL;
338 }
339
340 /* Apply the current iterator values to STRING. Return the new string
341 if any changes were needed, otherwise return STRING itself. */
342
343 static const char *
344 apply_iterator_to_string (const char *string)
345 {
346 char *base, *copy, *p, *start, *end;
347 struct map_value *v;
348
349 if (string == 0)
350 return string;
351
352 base = p = copy = ASTRDUP (string);
353 while ((start = strchr (p, '<')) && (end = strchr (start, '>')))
354 {
355 p = start + 1;
356
357 *end = 0;
358 v = map_attr_string (p);
359 *end = '>';
360 if (v == 0)
361 continue;
362
363 /* Add everything between the last copied byte and the '<',
364 then add in the attribute value. */
365 obstack_grow (&string_obstack, base, start - base);
366 obstack_grow (&string_obstack, v->string, strlen (v->string));
367 base = end + 1;
368 }
369 if (base != copy)
370 {
371 obstack_grow (&string_obstack, base, strlen (base) + 1);
372 copy = XOBFINISH (&string_obstack, char *);
373 copy_md_ptr_loc (copy, string);
374 return copy;
375 }
376 return string;
377 }
378
379 /* Return a deep copy of X, substituting the current iterator
380 values into any strings. */
381
382 static rtx
383 copy_rtx_for_iterators (rtx original)
384 {
385 const char *format_ptr;
386 int i, j;
387 rtx x;
388
389 if (original == 0)
390 return original;
391
392 /* Create a shallow copy of ORIGINAL. */
393 x = rtx_alloc (GET_CODE (original));
394 memcpy (x, original, RTX_CODE_SIZE (GET_CODE (original)));
395
396 /* Change each string and recursively change each rtx. */
397 format_ptr = GET_RTX_FORMAT (GET_CODE (original));
398 for (i = 0; format_ptr[i] != 0; i++)
399 switch (format_ptr[i])
400 {
401 case 'T':
402 XTMPL (x, i) = apply_iterator_to_string (XTMPL (x, i));
403 break;
404
405 case 'S':
406 case 's':
407 XSTR (x, i) = apply_iterator_to_string (XSTR (x, i));
408 break;
409
410 case 'e':
411 XEXP (x, i) = copy_rtx_for_iterators (XEXP (x, i));
412 break;
413
414 case 'V':
415 case 'E':
416 if (XVEC (original, i))
417 {
418 XVEC (x, i) = rtvec_alloc (XVECLEN (original, i));
419 for (j = 0; j < XVECLEN (x, i); j++)
420 XVECEXP (x, i, j)
421 = copy_rtx_for_iterators (XVECEXP (original, i, j));
422 }
423 break;
424
425 default:
426 break;
427 }
428 return x;
429 }
430
431 /* Return a condition that must satisfy both ORIGINAL and EXTRA. If ORIGINAL
432 has the form "&& ..." (as used in define_insn_and_splits), assume that
433 EXTRA is already satisfied. Empty strings are treated like "true". */
434
435 static const char *
436 add_condition_to_string (const char *original, const char *extra)
437 {
438 if (original != 0 && original[0] == '&' && original[1] == '&')
439 return original;
440 return join_c_conditions (original, extra);
441 }
442
443 /* Like add_condition, but applied to all conditions in rtx X. */
444
445 static void
446 add_condition_to_rtx (rtx x, const char *extra)
447 {
448 switch (GET_CODE (x))
449 {
450 case DEFINE_INSN:
451 case DEFINE_EXPAND:
452 case DEFINE_SUBST:
453 XSTR (x, 2) = add_condition_to_string (XSTR (x, 2), extra);
454 break;
455
456 case DEFINE_SPLIT:
457 case DEFINE_PEEPHOLE:
458 case DEFINE_PEEPHOLE2:
459 case DEFINE_COND_EXEC:
460 XSTR (x, 1) = add_condition_to_string (XSTR (x, 1), extra);
461 break;
462
463 case DEFINE_INSN_AND_SPLIT:
464 XSTR (x, 2) = add_condition_to_string (XSTR (x, 2), extra);
465 XSTR (x, 4) = add_condition_to_string (XSTR (x, 4), extra);
466 break;
467
468 default:
469 break;
470 }
471 }
472
473 /* Apply the current iterator values to all attribute_uses. */
474
475 static void
476 apply_attribute_uses (void)
477 {
478 struct map_value *v;
479 attribute_use *ause;
480 unsigned int i;
481
482 FOR_EACH_VEC_ELT (attribute_uses, i, ause)
483 {
484 v = map_attr_string (ause->value);
485 if (!v)
486 fatal_with_file_and_line ("unknown iterator value `%s'", ause->value);
487 ause->group->apply_iterator (ause->ptr,
488 ause->group->find_builtin (v->string));
489 }
490 }
491
492 /* A htab_traverse callback for iterators. Add all used iterators
493 to current_iterators. */
494
495 static int
496 add_current_iterators (void **slot, void *data ATTRIBUTE_UNUSED)
497 {
498 struct mapping *iterator;
499
500 iterator = (struct mapping *) *slot;
501 if (iterator->current_value)
502 current_iterators.safe_push (iterator);
503 return 1;
504 }
505
506 /* Expand all iterators in the current rtx, which is given as ORIGINAL.
507 Build a list of expanded rtxes in the EXPR_LIST pointed to by QUEUE. */
508
509 static void
510 apply_iterators (rtx original, rtx *queue)
511 {
512 unsigned int i;
513 const char *condition;
514 iterator_use *iuse;
515 struct mapping *iterator;
516 struct map_value *v;
517 rtx x;
518
519 if (iterator_uses.is_empty ())
520 {
521 /* Raise an error if any attributes were used. */
522 apply_attribute_uses ();
523 XEXP (*queue, 0) = original;
524 XEXP (*queue, 1) = NULL_RTX;
525 return;
526 }
527
528 /* Clear out the iterators from the previous run. */
529 FOR_EACH_VEC_ELT (current_iterators, i, iterator)
530 iterator->current_value = NULL;
531 current_iterators.truncate (0);
532
533 /* Mark the iterators that we need this time. */
534 FOR_EACH_VEC_ELT (iterator_uses, i, iuse)
535 iuse->iterator->current_value = iuse->iterator->values;
536
537 /* Get the list of iterators that are in use, preserving the
538 definition order within each group. */
539 htab_traverse (modes.iterators, add_current_iterators, NULL);
540 htab_traverse (codes.iterators, add_current_iterators, NULL);
541 htab_traverse (ints.iterators, add_current_iterators, NULL);
542 htab_traverse (substs.iterators, add_current_iterators, NULL);
543 gcc_assert (!current_iterators.is_empty ());
544
545 for (;;)
546 {
547 /* Apply the current iterator values. Accumulate a condition to
548 say when the resulting rtx can be used. */
549 condition = "";
550 FOR_EACH_VEC_ELT (iterator_uses, i, iuse)
551 {
552 if (iuse->iterator->group == &substs)
553 continue;
554 v = iuse->iterator->current_value;
555 iuse->iterator->group->apply_iterator (iuse->ptr, v->number);
556 condition = join_c_conditions (condition, v->string);
557 }
558 apply_attribute_uses ();
559 x = copy_rtx_for_iterators (original);
560 add_condition_to_rtx (x, condition);
561
562 /* We apply subst iterator after RTL-template is copied, as during
563 subst-iterator processing, we could add an attribute to the
564 RTL-template, and we don't want to do it in the original one. */
565 FOR_EACH_VEC_ELT (iterator_uses, i, iuse)
566 {
567 v = iuse->iterator->current_value;
568 if (iuse->iterator->group == &substs)
569 {
570 iuse->ptr = x;
571 current_iterator_name = iuse->iterator->name;
572 iuse->iterator->group->apply_iterator (iuse->ptr, v->number);
573 }
574 }
575 /* Add the new rtx to the end of the queue. */
576 XEXP (*queue, 0) = x;
577 XEXP (*queue, 1) = NULL_RTX;
578
579 /* Lexicographically increment the iterator value sequence.
580 That is, cycle through iterator values, starting from the right,
581 and stopping when one of them doesn't wrap around. */
582 i = current_iterators.length ();
583 for (;;)
584 {
585 if (i == 0)
586 return;
587 i--;
588 iterator = current_iterators[i];
589 iterator->current_value = iterator->current_value->next;
590 if (iterator->current_value)
591 break;
592 iterator->current_value = iterator->values;
593 }
594
595 /* At least one more rtx to go. Allocate room for it. */
596 XEXP (*queue, 1) = rtx_alloc (EXPR_LIST);
597 queue = &XEXP (*queue, 1);
598 }
599 }
600
601 /* Add a new "mapping" structure to hashtable TABLE. NAME is the name
602 of the mapping and GROUP is the group to which it belongs. */
603
604 static struct mapping *
605 add_mapping (struct iterator_group *group, htab_t table, const char *name)
606 {
607 struct mapping *m;
608 void **slot;
609
610 m = XNEW (struct mapping);
611 m->name = xstrdup (name);
612 m->group = group;
613 m->values = 0;
614 m->current_value = NULL;
615
616 slot = htab_find_slot (table, m, INSERT);
617 if (*slot != 0)
618 fatal_with_file_and_line ("`%s' already defined", name);
619
620 *slot = m;
621 return m;
622 }
623
624 /* Add the pair (NUMBER, STRING) to a list of map_value structures.
625 END_PTR points to the current null terminator for the list; return
626 a pointer the new null terminator. */
627
628 static struct map_value **
629 add_map_value (struct map_value **end_ptr, int number, const char *string)
630 {
631 struct map_value *value;
632
633 value = XNEW (struct map_value);
634 value->next = 0;
635 value->number = number;
636 value->string = string;
637
638 *end_ptr = value;
639 return &value->next;
640 }
641
642 /* Do one-time initialization of the mode and code attributes. */
643
644 static void
645 initialize_iterators (void)
646 {
647 struct mapping *lower, *upper;
648 struct map_value **lower_ptr, **upper_ptr;
649 char *copy, *p;
650 int i;
651
652 modes.attrs = htab_create (13, leading_string_hash, leading_string_eq_p, 0);
653 modes.iterators = htab_create (13, leading_string_hash,
654 leading_string_eq_p, 0);
655 modes.find_builtin = find_mode;
656 modes.apply_iterator = apply_mode_iterator;
657
658 codes.attrs = htab_create (13, leading_string_hash, leading_string_eq_p, 0);
659 codes.iterators = htab_create (13, leading_string_hash,
660 leading_string_eq_p, 0);
661 codes.find_builtin = find_code;
662 codes.apply_iterator = apply_code_iterator;
663
664 ints.attrs = htab_create (13, leading_string_hash, leading_string_eq_p, 0);
665 ints.iterators = htab_create (13, leading_string_hash,
666 leading_string_eq_p, 0);
667 ints.find_builtin = find_int;
668 ints.apply_iterator = apply_int_iterator;
669
670 substs.attrs = htab_create (13, leading_string_hash, leading_string_eq_p, 0);
671 substs.iterators = htab_create (13, leading_string_hash,
672 leading_string_eq_p, 0);
673 substs.find_builtin = find_int; /* We don't use it, anyway. */
674 substs.apply_iterator = apply_subst_iterator;
675
676 lower = add_mapping (&modes, modes.attrs, "mode");
677 upper = add_mapping (&modes, modes.attrs, "MODE");
678 lower_ptr = &lower->values;
679 upper_ptr = &upper->values;
680 for (i = 0; i < MAX_MACHINE_MODE; i++)
681 {
682 copy = xstrdup (GET_MODE_NAME (i));
683 for (p = copy; *p != 0; p++)
684 *p = TOLOWER (*p);
685
686 upper_ptr = add_map_value (upper_ptr, i, GET_MODE_NAME (i));
687 lower_ptr = add_map_value (lower_ptr, i, copy);
688 }
689
690 lower = add_mapping (&codes, codes.attrs, "code");
691 upper = add_mapping (&codes, codes.attrs, "CODE");
692 lower_ptr = &lower->values;
693 upper_ptr = &upper->values;
694 for (i = 0; i < NUM_RTX_CODE; i++)
695 {
696 copy = xstrdup (GET_RTX_NAME (i));
697 for (p = copy; *p != 0; p++)
698 *p = TOUPPER (*p);
699
700 lower_ptr = add_map_value (lower_ptr, i, GET_RTX_NAME (i));
701 upper_ptr = add_map_value (upper_ptr, i, copy);
702 }
703 }
704 \f
705 /* Provide a version of a function to read a long long if the system does
706 not provide one. */
707 #if HOST_BITS_PER_WIDE_INT > HOST_BITS_PER_LONG && !defined(HAVE_ATOLL) && !defined(HAVE_ATOQ)
708 HOST_WIDE_INT atoll (const char *);
709
710 HOST_WIDE_INT
711 atoll (const char *p)
712 {
713 int neg = 0;
714 HOST_WIDE_INT tmp_wide;
715
716 while (ISSPACE (*p))
717 p++;
718 if (*p == '-')
719 neg = 1, p++;
720 else if (*p == '+')
721 p++;
722
723 tmp_wide = 0;
724 while (ISDIGIT (*p))
725 {
726 HOST_WIDE_INT new_wide = tmp_wide*10 + (*p - '0');
727 if (new_wide < tmp_wide)
728 {
729 /* Return INT_MAX equiv on overflow. */
730 tmp_wide = (~(unsigned HOST_WIDE_INT) 0) >> 1;
731 break;
732 }
733 tmp_wide = new_wide;
734 p++;
735 }
736
737 if (neg)
738 tmp_wide = -tmp_wide;
739 return tmp_wide;
740 }
741 #endif
742 \f
743 /* Process a define_conditions directive, starting with the optional
744 space after the "define_conditions". The directive looks like this:
745
746 (define_conditions [
747 (number "string")
748 (number "string")
749 ...
750 ])
751
752 It's not intended to appear in machine descriptions. It is
753 generated by (the program generated by) genconditions.c, and
754 slipped in at the beginning of the sequence of MD files read by
755 most of the other generators. */
756 static void
757 read_conditions (void)
758 {
759 int c;
760
761 c = read_skip_spaces ();
762 if (c != '[')
763 fatal_expected_char ('[', c);
764
765 while ( (c = read_skip_spaces ()) != ']')
766 {
767 struct md_name name;
768 char *expr;
769 int value;
770
771 if (c != '(')
772 fatal_expected_char ('(', c);
773
774 read_name (&name);
775 validate_const_int (name.string);
776 value = atoi (name.string);
777
778 c = read_skip_spaces ();
779 if (c != '"')
780 fatal_expected_char ('"', c);
781 expr = read_quoted_string ();
782
783 c = read_skip_spaces ();
784 if (c != ')')
785 fatal_expected_char (')', c);
786
787 add_c_test (expr, value);
788 }
789 }
790
791 static void
792 validate_const_int (const char *string)
793 {
794 const char *cp;
795 int valid = 1;
796
797 cp = string;
798 while (*cp && ISSPACE (*cp))
799 cp++;
800 if (*cp == '-' || *cp == '+')
801 cp++;
802 if (*cp == 0)
803 valid = 0;
804 for (; *cp; cp++)
805 if (! ISDIGIT (*cp))
806 valid = 0;
807 if (!valid)
808 fatal_with_file_and_line ("invalid decimal constant \"%s\"\n", string);
809 }
810
811 /* Record that PTR uses iterator ITERATOR. */
812
813 static void
814 record_iterator_use (struct mapping *iterator, void *ptr)
815 {
816 struct iterator_use iuse = {iterator, ptr};
817 iterator_uses.safe_push (iuse);
818 }
819
820 /* Record that PTR uses attribute VALUE, which must match a built-in
821 value from group GROUP. */
822
823 static void
824 record_attribute_use (struct iterator_group *group, void *ptr,
825 const char *value)
826 {
827 struct attribute_use ause = {group, value, ptr};
828 attribute_uses.safe_push (ause);
829 }
830
831 /* Interpret NAME as either a built-in value, iterator or attribute
832 for group GROUP. PTR is the value to pass to GROUP's apply_iterator
833 callback. */
834
835 static void
836 record_potential_iterator_use (struct iterator_group *group, void *ptr,
837 const char *name)
838 {
839 struct mapping *m;
840 size_t len;
841
842 len = strlen (name);
843 if (name[0] == '<' && name[len - 1] == '>')
844 {
845 /* Copy the attribute string into permanent storage, without the
846 angle brackets around it. */
847 obstack_grow0 (&string_obstack, name + 1, len - 2);
848 record_attribute_use (group, ptr, XOBFINISH (&string_obstack, char *));
849 }
850 else
851 {
852 m = (struct mapping *) htab_find (group->iterators, &name);
853 if (m != 0)
854 record_iterator_use (m, ptr);
855 else
856 group->apply_iterator (ptr, group->find_builtin (name));
857 }
858 }
859
860 /* Finish reading a declaration of the form:
861
862 (define... <name> [<value1> ... <valuen>])
863
864 from the MD file, where each <valuei> is either a bare symbol name or a
865 "(<name> <string>)" pair. The "(define..." part has already been read.
866
867 Represent the declaration as a "mapping" structure; add it to TABLE
868 (which belongs to GROUP) and return it. */
869
870 static struct mapping *
871 read_mapping (struct iterator_group *group, htab_t table)
872 {
873 struct md_name name;
874 struct mapping *m;
875 struct map_value **end_ptr;
876 const char *string;
877 int number, c;
878
879 /* Read the mapping name and create a structure for it. */
880 read_name (&name);
881 m = add_mapping (group, table, name.string);
882
883 c = read_skip_spaces ();
884 if (c != '[')
885 fatal_expected_char ('[', c);
886
887 /* Read each value. */
888 end_ptr = &m->values;
889 c = read_skip_spaces ();
890 do
891 {
892 if (c != '(')
893 {
894 /* A bare symbol name that is implicitly paired to an
895 empty string. */
896 unread_char (c);
897 read_name (&name);
898 string = "";
899 }
900 else
901 {
902 /* A "(name string)" pair. */
903 read_name (&name);
904 string = read_string (false);
905 c = read_skip_spaces ();
906 if (c != ')')
907 fatal_expected_char (')', c);
908 }
909 number = group->find_builtin (name.string);
910 end_ptr = add_map_value (end_ptr, number, string);
911 c = read_skip_spaces ();
912 }
913 while (c != ']');
914
915 return m;
916 }
917
918 /* For iterator with name ATTR_NAME generate define_attr with values
919 'yes' and 'no'. This attribute is used to mark templates to which
920 define_subst ATTR_NAME should be applied. This attribute is set and
921 defined implicitly and automatically. */
922 static void
923 add_define_attr_for_define_subst (const char *attr_name, rtx *queue)
924 {
925 rtx const_str, return_rtx;
926
927 return_rtx = rtx_alloc (DEFINE_ATTR);
928 PUT_CODE (return_rtx, DEFINE_ATTR);
929
930 const_str = rtx_alloc (CONST_STRING);
931 PUT_CODE (const_str, CONST_STRING);
932 XSTR (const_str, 0) = xstrdup ("no");
933
934 XSTR (return_rtx, 0) = xstrdup (attr_name);
935 XSTR (return_rtx, 1) = xstrdup ("no,yes");
936 XEXP (return_rtx, 2) = const_str;
937
938 XEXP (*queue, 0) = return_rtx;
939 XEXP (*queue, 1) = NULL_RTX;
940 }
941
942 /* This routine generates DEFINE_SUBST_ATTR expression with operands
943 ATTR_OPERANDS and places it to QUEUE. */
944 static void
945 add_define_subst_attr (const char **attr_operands, rtx *queue)
946 {
947 rtx return_rtx;
948 int i;
949
950 return_rtx = rtx_alloc (DEFINE_SUBST_ATTR);
951 PUT_CODE (return_rtx, DEFINE_SUBST_ATTR);
952
953 for (i = 0; i < 4; i++)
954 XSTR (return_rtx, i) = xstrdup (attr_operands[i]);
955
956 XEXP (*queue, 0) = return_rtx;
957 XEXP (*queue, 1) = NULL_RTX;
958 }
959
960 /* Read define_subst_attribute construction. It has next form:
961 (define_subst_attribute <attribute_name> <iterator_name> <value1> <value2>)
962 Attribute is substituted with value1 when no subst is applied and with
963 value2 in the opposite case.
964 Attributes are added to SUBST_ATTRS_TABLE.
965 In case the iterator is encountered for the first time, it's added to
966 SUBST_ITERS_TABLE. Also, implicit define_attr is generated. */
967
968 static void
969 read_subst_mapping (htab_t subst_iters_table, htab_t subst_attrs_table,
970 rtx *queue)
971 {
972 struct mapping *m;
973 struct map_value **end_ptr;
974 const char *attr_operands[4];
975 rtx * queue_elem = queue;
976 int i;
977
978 for (i = 0; i < 4; i++)
979 attr_operands[i] = read_string (false);
980
981 add_define_subst_attr (attr_operands, queue_elem);
982
983 bind_subst_iter_and_attr (attr_operands[1], attr_operands[0]);
984
985 m = (struct mapping *) htab_find (substs.iterators, &attr_operands[1]);
986 if (!m)
987 {
988 m = add_mapping (&substs, subst_iters_table, attr_operands[1]);
989 end_ptr = &m->values;
990 end_ptr = add_map_value (end_ptr, 1, "");
991 end_ptr = add_map_value (end_ptr, 2, "");
992
993 /* Add element to the queue. */
994 XEXP (*queue, 1) = rtx_alloc (EXPR_LIST);
995 queue_elem = &XEXP (*queue, 1);
996
997 add_define_attr_for_define_subst (attr_operands[1], queue_elem);
998 }
999
1000 m = add_mapping (&substs, subst_attrs_table, attr_operands[0]);
1001 end_ptr = &m->values;
1002 end_ptr = add_map_value (end_ptr, 1, attr_operands[2]);
1003 end_ptr = add_map_value (end_ptr, 2, attr_operands[3]);
1004 }
1005
1006 /* Check newly-created code iterator ITERATOR to see whether every code has the
1007 same format. */
1008
1009 static void
1010 check_code_iterator (struct mapping *iterator)
1011 {
1012 struct map_value *v;
1013 enum rtx_code bellwether;
1014
1015 bellwether = (enum rtx_code) iterator->values->number;
1016 for (v = iterator->values->next; v != 0; v = v->next)
1017 if (strcmp (GET_RTX_FORMAT (bellwether), GET_RTX_FORMAT (v->number)) != 0)
1018 fatal_with_file_and_line ("code iterator `%s' combines "
1019 "different rtx formats", iterator->name);
1020 }
1021
1022 /* Read an rtx-related declaration from the MD file, given that it
1023 starts with directive name RTX_NAME. Return true if it expands to
1024 one or more rtxes (as defined by rtx.def). When returning true,
1025 store the list of rtxes as an EXPR_LIST in *X. */
1026
1027 bool
1028 read_rtx (const char *rtx_name, rtx *x)
1029 {
1030 static rtx queue_head;
1031
1032 /* Do one-time initialization. */
1033 if (queue_head == 0)
1034 {
1035 initialize_iterators ();
1036 queue_head = rtx_alloc (EXPR_LIST);
1037 }
1038
1039 /* Handle various rtx-related declarations that aren't themselves
1040 encoded as rtxes. */
1041 if (strcmp (rtx_name, "define_conditions") == 0)
1042 {
1043 read_conditions ();
1044 return false;
1045 }
1046 if (strcmp (rtx_name, "define_mode_attr") == 0)
1047 {
1048 read_mapping (&modes, modes.attrs);
1049 return false;
1050 }
1051 if (strcmp (rtx_name, "define_mode_iterator") == 0)
1052 {
1053 read_mapping (&modes, modes.iterators);
1054 return false;
1055 }
1056 if (strcmp (rtx_name, "define_code_attr") == 0)
1057 {
1058 read_mapping (&codes, codes.attrs);
1059 return false;
1060 }
1061 if (strcmp (rtx_name, "define_code_iterator") == 0)
1062 {
1063 check_code_iterator (read_mapping (&codes, codes.iterators));
1064 return false;
1065 }
1066 if (strcmp (rtx_name, "define_int_attr") == 0)
1067 {
1068 read_mapping (&ints, ints.attrs);
1069 return false;
1070 }
1071 if (strcmp (rtx_name, "define_int_iterator") == 0)
1072 {
1073 read_mapping (&ints, ints.iterators);
1074 return false;
1075 }
1076 if (strcmp (rtx_name, "define_subst_attr") == 0)
1077 {
1078 read_subst_mapping (substs.iterators, substs.attrs, &queue_head);
1079 *x = queue_head;
1080
1081 /* READ_SUBST_MAPPING could generate a new DEFINE_ATTR. Return
1082 TRUE to process it. */
1083 return true;
1084 }
1085
1086 apply_iterators (read_rtx_code (rtx_name), &queue_head);
1087 iterator_uses.truncate (0);
1088 attribute_uses.truncate (0);
1089
1090 *x = queue_head;
1091 return true;
1092 }
1093
1094 /* Subroutine of read_rtx and read_nested_rtx. CODE_NAME is the name of
1095 either an rtx code or a code iterator. Parse the rest of the rtx and
1096 return it. */
1097
1098 static rtx
1099 read_rtx_code (const char *code_name)
1100 {
1101 int i;
1102 RTX_CODE code;
1103 struct mapping *iterator, *m;
1104 const char *format_ptr;
1105 struct md_name name;
1106 rtx return_rtx;
1107 int c;
1108 HOST_WIDE_INT tmp_wide;
1109 char *str;
1110 char *start, *end, *ptr;
1111 char tmpstr[256];
1112
1113 /* Linked list structure for making RTXs: */
1114 struct rtx_list
1115 {
1116 struct rtx_list *next;
1117 rtx value; /* Value of this node. */
1118 };
1119
1120 /* If this code is an iterator, build the rtx using the iterator's
1121 first value. */
1122 iterator = (struct mapping *) htab_find (codes.iterators, &code_name);
1123 if (iterator != 0)
1124 code = (enum rtx_code) iterator->values->number;
1125 else
1126 code = (enum rtx_code) codes.find_builtin (code_name);
1127
1128 /* If we end up with an insn expression then we free this space below. */
1129 return_rtx = rtx_alloc (code);
1130 format_ptr = GET_RTX_FORMAT (code);
1131 PUT_CODE (return_rtx, code);
1132
1133 if (iterator)
1134 record_iterator_use (iterator, return_rtx);
1135
1136 /* If what follows is `: mode ', read it and
1137 store the mode in the rtx. */
1138
1139 i = read_skip_spaces ();
1140 if (i == ':')
1141 {
1142 read_name (&name);
1143 record_potential_iterator_use (&modes, return_rtx, name.string);
1144 }
1145 else
1146 unread_char (i);
1147
1148 for (i = 0; format_ptr[i] != 0; i++)
1149 switch (format_ptr[i])
1150 {
1151 /* 0 means a field for internal use only.
1152 Don't expect it to be present in the input. */
1153 case '0':
1154 break;
1155
1156 case 'e':
1157 case 'u':
1158 XEXP (return_rtx, i) = read_nested_rtx ();
1159 break;
1160
1161 case 'V':
1162 /* 'V' is an optional vector: if a closeparen follows,
1163 just store NULL for this element. */
1164 c = read_skip_spaces ();
1165 unread_char (c);
1166 if (c == ')')
1167 {
1168 XVEC (return_rtx, i) = 0;
1169 break;
1170 }
1171 /* Now process the vector. */
1172
1173 case 'E':
1174 {
1175 /* Obstack to store scratch vector in. */
1176 struct obstack vector_stack;
1177 int list_counter = 0;
1178 rtvec return_vec = NULL_RTVEC;
1179
1180 c = read_skip_spaces ();
1181 if (c != '[')
1182 fatal_expected_char ('[', c);
1183
1184 /* Add expressions to a list, while keeping a count. */
1185 obstack_init (&vector_stack);
1186 while ((c = read_skip_spaces ()) && c != ']')
1187 {
1188 if (c == EOF)
1189 fatal_expected_char (']', c);
1190 unread_char (c);
1191 list_counter++;
1192 obstack_ptr_grow (&vector_stack, read_nested_rtx ());
1193 }
1194 if (list_counter > 0)
1195 {
1196 return_vec = rtvec_alloc (list_counter);
1197 memcpy (&return_vec->elem[0], obstack_finish (&vector_stack),
1198 list_counter * sizeof (rtx));
1199 }
1200 else if (format_ptr[i] == 'E')
1201 fatal_with_file_and_line ("vector must have at least one element");
1202 XVEC (return_rtx, i) = return_vec;
1203 obstack_free (&vector_stack, NULL);
1204 /* close bracket gotten */
1205 }
1206 break;
1207
1208 case 'S':
1209 case 'T':
1210 case 's':
1211 {
1212 char *stringbuf;
1213 int star_if_braced;
1214
1215 c = read_skip_spaces ();
1216 unread_char (c);
1217 if (c == ')')
1218 {
1219 /* 'S' fields are optional and should be NULL if no string
1220 was given. Also allow normal 's' and 'T' strings to be
1221 omitted, treating them in the same way as empty strings. */
1222 XSTR (return_rtx, i) = (format_ptr[i] == 'S' ? NULL : "");
1223 break;
1224 }
1225
1226 /* The output template slot of a DEFINE_INSN,
1227 DEFINE_INSN_AND_SPLIT, or DEFINE_PEEPHOLE automatically
1228 gets a star inserted as its first character, if it is
1229 written with a brace block instead of a string constant. */
1230 star_if_braced = (format_ptr[i] == 'T');
1231
1232 stringbuf = read_string (star_if_braced);
1233
1234 /* For insn patterns, we want to provide a default name
1235 based on the file and line, like "*foo.md:12", if the
1236 given name is blank. These are only for define_insn and
1237 define_insn_and_split, to aid debugging. */
1238 if (*stringbuf == '\0'
1239 && i == 0
1240 && (GET_CODE (return_rtx) == DEFINE_INSN
1241 || GET_CODE (return_rtx) == DEFINE_INSN_AND_SPLIT))
1242 {
1243 char line_name[20];
1244 const char *fn = (read_md_filename ? read_md_filename : "rtx");
1245 const char *slash;
1246 for (slash = fn; *slash; slash ++)
1247 if (*slash == '/' || *slash == '\\' || *slash == ':')
1248 fn = slash + 1;
1249 obstack_1grow (&string_obstack, '*');
1250 obstack_grow (&string_obstack, fn, strlen (fn));
1251 sprintf (line_name, ":%d", read_md_lineno);
1252 obstack_grow (&string_obstack, line_name, strlen (line_name)+1);
1253 stringbuf = XOBFINISH (&string_obstack, char *);
1254 }
1255
1256 /* Find attr-names in the string. */
1257 ptr = &tmpstr[0];
1258 end = stringbuf;
1259 while ((start = strchr (end, '<')) && (end = strchr (start, '>')))
1260 {
1261 if ((end - start - 1 > 0)
1262 && (end - start - 1 < (int)sizeof (tmpstr)))
1263 {
1264 strncpy (tmpstr, start+1, end-start-1);
1265 tmpstr[end-start-1] = 0;
1266 end++;
1267 }
1268 else
1269 break;
1270 m = (struct mapping *) htab_find (substs.attrs, &ptr);
1271 if (m != 0)
1272 {
1273 /* Here we should find linked subst-iter. */
1274 str = find_subst_iter_by_attr (ptr);
1275 if (str)
1276 m = (struct mapping *) htab_find (substs.iterators, &str);
1277 else
1278 m = 0;
1279 }
1280 if (m != 0)
1281 record_iterator_use (m, return_rtx);
1282 }
1283
1284 if (star_if_braced)
1285 XTMPL (return_rtx, i) = stringbuf;
1286 else
1287 XSTR (return_rtx, i) = stringbuf;
1288 }
1289 break;
1290
1291 case 'w':
1292 read_name (&name);
1293 validate_const_int (name.string);
1294 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
1295 tmp_wide = atoi (name.string);
1296 #else
1297 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG
1298 tmp_wide = atol (name.string);
1299 #else
1300 /* Prefer atoll over atoq, since the former is in the ISO C99 standard.
1301 But prefer not to use our hand-rolled function above either. */
1302 #if defined(HAVE_ATOLL) || !defined(HAVE_ATOQ)
1303 tmp_wide = atoll (name.string);
1304 #else
1305 tmp_wide = atoq (name.string);
1306 #endif
1307 #endif
1308 #endif
1309 XWINT (return_rtx, i) = tmp_wide;
1310 break;
1311
1312 case 'i':
1313 case 'n':
1314 /* Can be an iterator or an integer constant. */
1315 read_name (&name);
1316 record_potential_iterator_use (&ints, &XINT (return_rtx, i),
1317 name.string);
1318 break;
1319
1320 default:
1321 gcc_unreachable ();
1322 }
1323
1324 c = read_skip_spaces ();
1325 /* Syntactic sugar for AND and IOR, allowing Lisp-like
1326 arbitrary number of arguments for them. */
1327 if (c == '('
1328 && (GET_CODE (return_rtx) == AND
1329 || GET_CODE (return_rtx) == IOR))
1330 return read_rtx_variadic (return_rtx);
1331
1332 unread_char (c);
1333 return return_rtx;
1334 }
1335
1336 /* Read a nested rtx construct from the MD file and return it. */
1337
1338 static rtx
1339 read_nested_rtx (void)
1340 {
1341 struct md_name name;
1342 int c;
1343 rtx return_rtx;
1344
1345 c = read_skip_spaces ();
1346 if (c != '(')
1347 fatal_expected_char ('(', c);
1348
1349 read_name (&name);
1350 if (strcmp (name.string, "nil") == 0)
1351 return_rtx = NULL;
1352 else
1353 return_rtx = read_rtx_code (name.string);
1354
1355 c = read_skip_spaces ();
1356 if (c != ')')
1357 fatal_expected_char (')', c);
1358
1359 return return_rtx;
1360 }
1361
1362 /* Mutually recursive subroutine of read_rtx which reads
1363 (thing x1 x2 x3 ...) and produces RTL as if
1364 (thing x1 (thing x2 (thing x3 ...))) had been written.
1365 When called, FORM is (thing x1 x2), and the file position
1366 is just past the leading parenthesis of x3. Only works
1367 for THINGs which are dyadic expressions, e.g. AND, IOR. */
1368 static rtx
1369 read_rtx_variadic (rtx form)
1370 {
1371 char c = '(';
1372 rtx p = form, q;
1373
1374 do
1375 {
1376 unread_char (c);
1377
1378 q = rtx_alloc (GET_CODE (p));
1379 PUT_MODE (q, GET_MODE (p));
1380
1381 XEXP (q, 0) = XEXP (p, 1);
1382 XEXP (q, 1) = read_nested_rtx ();
1383
1384 XEXP (p, 1) = q;
1385 p = q;
1386 c = read_skip_spaces ();
1387 }
1388 while (c == '(');
1389 unread_char (c);
1390 return form;
1391 }