aboutsummaryrefslogtreecommitdiff
path: root/gcc/read-rtl.c
diff options
context:
space:
mode:
authorTejas Belagod <tejas.belagod@arm.com>2012-06-18 11:43:03 +0100
committerTejas Belagod <belagod@gcc.gnu.org>2012-06-18 11:43:03 +0100
commit57a4717bd3f09f2270cf928a381fe204fd702a90 (patch)
tree3f348986a905d10f6625171379da020acb5abe77 /gcc/read-rtl.c
parentb7104c55e7d5c7335d1263131ac12ec9214b1dce (diff)
downloadgcc-57a4717bd3f09f2270cf928a381fe204fd702a90.zip
gcc-57a4717bd3f09f2270cf928a381fe204fd702a90.tar.gz
gcc-57a4717bd3f09f2270cf928a381fe204fd702a90.tar.bz2
Implement support for int iterators.
From-SVN: r188726
Diffstat (limited to 'gcc/read-rtl.c')
-rw-r--r--gcc/read-rtl.c45
1 files changed, 40 insertions, 5 deletions
diff --git a/gcc/read-rtl.c b/gcc/read-rtl.c
index c588722..71ecf53 100644
--- a/gcc/read-rtl.c
+++ b/gcc/read-rtl.c
@@ -114,7 +114,7 @@ static rtx read_nested_rtx (void);
static rtx read_rtx_variadic (rtx);
/* The mode and code iterator structures. */
-static struct iterator_group modes, codes;
+static struct iterator_group modes, codes, ints;
/* All iterators used in the current rtx. */
static VEC (mapping_ptr, heap) *current_iterators;
@@ -165,6 +165,25 @@ apply_code_iterator (void *loc, int code)
PUT_CODE ((rtx) loc, (enum rtx_code) code);
}
+/* Implementations of the iterator_group callbacks for ints. */
+
+/* Since GCC does not construct a table of valid constants,
+ we have to accept any int as valid. No cross-checking can
+ be done. */
+
+static int
+find_int (const char *name)
+{
+ validate_const_int (name);
+ return atoi (name);
+}
+
+static void
+apply_int_iterator (void *loc, int value)
+{
+ *(int *)loc = value;
+}
+
/* Map attribute string P to its current value. Return null if the attribute
isn't known. */
@@ -412,6 +431,7 @@ apply_iterators (rtx original, rtx *queue)
definition order within each group. */
htab_traverse (modes.iterators, add_current_iterators, NULL);
htab_traverse (codes.iterators, add_current_iterators, NULL);
+ htab_traverse (ints.iterators, add_current_iterators, NULL);
gcc_assert (!VEC_empty (mapping_ptr, current_iterators));
for (;;)
@@ -518,6 +538,12 @@ initialize_iterators (void)
codes.find_builtin = find_code;
codes.apply_iterator = apply_code_iterator;
+ ints.attrs = htab_create (13, leading_string_hash, leading_string_eq_p, 0);
+ ints.iterators = htab_create (13, leading_string_hash,
+ leading_string_eq_p, 0);
+ ints.find_builtin = find_int;
+ ints.apply_iterator = apply_int_iterator;
+
lower = add_mapping (&modes, modes.attrs, "mode");
upper = add_mapping (&modes, modes.attrs, "MODE");
lower_ptr = &lower->values;
@@ -827,6 +853,16 @@ read_rtx (const char *rtx_name, rtx *x)
check_code_iterator (read_mapping (&codes, codes.iterators));
return false;
}
+ if (strcmp (rtx_name, "define_int_attr") == 0)
+ {
+ read_mapping (&ints, ints.attrs);
+ return false;
+ }
+ if (strcmp (rtx_name, "define_int_iterator") == 0)
+ {
+ read_mapping (&ints, ints.iterators);
+ return false;
+ }
apply_iterators (read_rtx_code (rtx_name), &queue_head);
VEC_truncate (iterator_use, iterator_uses, 0);
@@ -850,7 +886,6 @@ read_rtx_code (const char *code_name)
struct md_name name;
rtx return_rtx;
int c;
- int tmp_int;
HOST_WIDE_INT tmp_wide;
/* Linked list structure for making RTXs: */
@@ -1026,10 +1061,10 @@ read_rtx_code (const char *code_name)
case 'i':
case 'n':
+ /* Can be an iterator or an integer constant. */
read_name (&name);
- validate_const_int (name.string);
- tmp_int = atoi (name.string);
- XINT (return_rtx, i) = tmp_int;
+ record_potential_iterator_use (&ints, &XINT (return_rtx, i),
+ name.string);
break;
default: