summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAldy Hernandez <aldyh@redhat.com>2022-07-25 16:44:39 +0200
committerAldy Hernandez <aldyh@redhat.com>2022-08-02 14:50:25 +0200
commit5f7e187e7fa4175204dac0d2f9d468d61762c11b (patch)
treed49004bb51a727a6243d455364e35d24acebff8a
parente9f5b4fa4f2c93ef76e3766b3edabfaebc100741 (diff)
Implement streamer for frange.
This patch Allows us to export floating point ranges into the SSA name (SSA_NAME_RANGE_INFO). [Richi, in PR24021 you suggested that match.pd could use global float ranges, because it would generally not invoke ranger. This patch implements the boiler plate to save the frange globally.] [Jeff, we've also been talking in parallel of using NAN knowledge during expansion to RTL. This patch will provide the NAN bits in the SSA name.] Since frange's currently implementation is just a shell, with no actual endpoints, frange_storage_slot only contains frange_props which fits inside a byte. When we have endpoints, y'all can decide if it's worth saving them, or if the NAN/etc bits are good enough. gcc/ChangeLog: * tree-core.h (struct tree_ssa_name): Add frange_info and reshuffle the rest. * value-range-storage.cc (vrange_storage::alloc_slot): Add case for frange. (vrange_storage::set_vrange): Same. (vrange_storage::get_vrange): Same. (vrange_storage::fits_p): Same. (frange_storage_slot::alloc_slot): New. (frange_storage_slot::set_frange): New. (frange_storage_slot::get_frange): New. (frange_storage_slot::fits_p): New. * value-range-storage.h (class frange_storage_slot): New.
-rw-r--r--gcc/tree-core.h12
-rw-r--r--gcc/value-range-storage.cc61
-rw-r--r--gcc/value-range-storage.h19
3 files changed, 85 insertions, 7 deletions
diff --git a/gcc/tree-core.h b/gcc/tree-core.h
index ea9f281f1cc..86a07c282af 100644
--- a/gcc/tree-core.h
+++ b/gcc/tree-core.h
@@ -1589,17 +1589,17 @@ struct GTY(()) tree_ssa_name {
/* Value range information. */
union ssa_name_info_type {
+ /* Ranges for integers. */
+ struct GTY ((tag ("0"))) irange_storage_slot *irange_info;
+ /* Ranges for floating point numbers. */
+ struct GTY ((tag ("1"))) frange_storage_slot *frange_info;
/* Pointer attributes used for alias analysis. */
- struct GTY ((tag ("0"))) ptr_info_def *ptr_info;
+ struct GTY ((tag ("2"))) ptr_info_def *ptr_info;
/* This holds any range info supported by ranger (except ptr_info
above) and is managed by vrange_storage. */
void * GTY ((skip)) range_info;
- /* GTY tag when the range in the range_info slot above satisfies
- irange::supports_type_p. */
- struct GTY ((tag ("1"))) irange_storage_slot *irange_info;
} GTY ((desc ("%1.typed.type ?" \
- "!POINTER_TYPE_P (TREE_TYPE ((tree)&%1)) : 2"))) info;
-
+ "(POINTER_TYPE_P (TREE_TYPE ((tree)&%1)) ? 2 : SCALAR_FLOAT_TYPE_P (TREE_TYPE ((tree)&%1))) : 3"))) info;
/* Immediate uses list for this SSA_NAME. */
struct ssa_use_operand_t imm_uses;
};
diff --git a/gcc/value-range-storage.cc b/gcc/value-range-storage.cc
index 8b5ab544ce3..ea3b83ca641 100644
--- a/gcc/value-range-storage.cc
+++ b/gcc/value-range-storage.cc
@@ -40,7 +40,8 @@ vrange_storage::alloc_slot (const vrange &r)
if (is_a <irange> (r))
return irange_storage_slot::alloc_slot (*m_alloc, as_a <irange> (r));
-
+ if (is_a <frange> (r))
+ return frange_storage_slot::alloc_slot (*m_alloc, as_a <frange> (r));
return NULL;
}
@@ -55,6 +56,12 @@ vrange_storage::set_vrange (void *slot, const vrange &r)
gcc_checking_assert (s->fits_p (as_a <irange> (r)));
s->set_irange (as_a <irange> (r));
}
+ else if (is_a <frange> (r))
+ {
+ frange_storage_slot *s = static_cast <frange_storage_slot *> (slot);
+ gcc_checking_assert (s->fits_p (as_a <frange> (r)));
+ s->set_frange (as_a <frange> (r));
+ }
else
gcc_unreachable ();
}
@@ -70,6 +77,12 @@ vrange_storage::get_vrange (const void *slot, vrange &r, tree type)
= static_cast <const irange_storage_slot *> (slot);
s->get_irange (as_a <irange> (r), type);
}
+ else if (is_a <frange> (r))
+ {
+ const frange_storage_slot *s
+ = static_cast <const frange_storage_slot *> (slot);
+ s->get_frange (as_a <frange> (r), type);
+ }
else
gcc_unreachable ();
}
@@ -85,6 +98,12 @@ vrange_storage::fits_p (const void *slot, const vrange &r)
= static_cast <const irange_storage_slot *> (slot);
return s->fits_p (as_a <irange> (r));
}
+ if (is_a <frange> (r))
+ {
+ const frange_storage_slot *s
+ = static_cast <const frange_storage_slot *> (slot);
+ return s->fits_p (as_a <frange> (r));
+ }
gcc_unreachable ();
return false;
}
@@ -215,3 +234,43 @@ debug (const irange_storage_slot &storage)
storage.dump ();
fprintf (stderr, "\n");
}
+
+// Implementation of frange_storage_slot.
+
+frange_storage_slot *
+frange_storage_slot::alloc_slot (vrange_allocator &allocator, const frange &r)
+{
+ size_t size = sizeof (frange_storage_slot);
+ frange_storage_slot *p
+ = static_cast <frange_storage_slot *> (allocator.alloc (size));
+ new (p) frange_storage_slot (r);
+ return p;
+}
+
+void
+frange_storage_slot::set_frange (const frange &r)
+{
+ gcc_checking_assert (fits_p (r));
+ gcc_checking_assert (!r.undefined_p ());
+
+ m_props = r.m_props;
+}
+
+void
+frange_storage_slot::get_frange (frange &r, tree type) const
+{
+ gcc_checking_assert (r.supports_type_p (type));
+
+ r.set_varying (type);
+ r.m_props = m_props;
+ r.normalize_kind ();
+
+ if (flag_checking)
+ r.verify_range ();
+}
+
+bool
+frange_storage_slot::fits_p (const frange &) const
+{
+ return true;
+}
diff --git a/gcc/value-range-storage.h b/gcc/value-range-storage.h
index 5a3336b673b..3fac5ea2f86 100644
--- a/gcc/value-range-storage.h
+++ b/gcc/value-range-storage.h
@@ -100,6 +100,25 @@ private:
trailing_wide_ints<MAX_INTS> m_ints;
};
+// A chunk of memory to store an frange to long term memory.
+
+class GTY (()) frange_storage_slot
+{
+ public:
+ static frange_storage_slot *alloc_slot (vrange_allocator &, const frange &r);
+ void set_frange (const frange &r);
+ void get_frange (frange &r, tree type) const;
+ bool fits_p (const frange &) const;
+ private:
+ frange_storage_slot (const frange &r) { set_frange (r); }
+ DISABLE_COPY_AND_ASSIGN (frange_storage_slot);
+
+ // We can get away with just storing the properties because the type
+ // can be gotten from the SSA, and UNDEFINED is unsupported, so it
+ // can only be a range.
+ frange_props m_props;
+};
+
class obstack_vrange_allocator : public vrange_allocator
{
public: