diff options
author | Aldy Hernandez <aldyh@redhat.com> | 2022-07-24 07:55:02 +0200 |
---|---|---|
committer | Aldy Hernandez <aldyh@redhat.com> | 2022-07-24 17:00:51 +0200 |
commit | 8b8103dcd2624936bd1f56ac2ee63d1fb779a7e4 (patch) | |
tree | 63324e877c0b2e0b4f88025af9ae2ccbc1341b1a /gcc/vr-values.cc | |
parent | 164758b02c44cba66e00103c118c6a4b5f76a812 (diff) | |
download | gcc-8b8103dcd2624936bd1f56ac2ee63d1fb779a7e4.zip gcc-8b8103dcd2624936bd1f56ac2ee63d1fb779a7e4.tar.gz gcc-8b8103dcd2624936bd1f56ac2ee63d1fb779a7e4.tar.bz2 |
Minor fixes to vr_values to not die on non integral types.
The legacy code in vr_values mostly works on integral types (with few
exceptions such as some conversions from float). This patch makes
vr_values::range_of_expr not die when asked for a range of an
unsupported type. It also keeps the min/max simplification code from
being called on non integrals, similarly to what many of the other
assignment code is doing.
This is all a nop on the current code, but will keep us from
misbehaving when VRP starts working on non-integrals.
Tested on x86-64 Linux.
gcc/ChangeLog:
* value-query.cc (range_query::get_value_range): Add assert.
* vr-values.cc (vr_values::range_of_expr): Make sure we don't ICE
on unsupported types in vr_values.
(simplify_using_ranges::simplify): Same.
Diffstat (limited to 'gcc/vr-values.cc')
-rw-r--r-- | gcc/vr-values.cc | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/gcc/vr-values.cc b/gcc/vr-values.cc index 6b9c630..626a918 100644 --- a/gcc/vr-values.cc +++ b/gcc/vr-values.cc @@ -188,6 +188,17 @@ vr_values::range_of_expr (vrange &r, tree expr, gimple *stmt) r = *vr; else { + if (!vr->supports_type_p (TREE_TYPE (expr))) + { + // vr_values::extract_range_basic() use of ranger's + // fold_range() can create a situation where we are + // asked for the range of an unsupported legacy type. + // Since get_value_range() above will return varying for + // such types, avoid copying incompatible range types. + gcc_checking_assert (vr->varying_p ()); + r.set_varying (TREE_TYPE (expr)); + return true; + } value_range tmp = *vr; tmp.normalize_symbolics (); r = tmp; @@ -4375,7 +4386,9 @@ simplify_using_ranges::simplify (gimple_stmt_iterator *gsi) case MIN_EXPR: case MAX_EXPR: - return simplify_min_or_max_using_ranges (gsi, stmt); + if (INTEGRAL_TYPE_P (TREE_TYPE (rhs1))) + return simplify_min_or_max_using_ranges (gsi, stmt); + break; case RSHIFT_EXPR: { |