diff options
author | Jeff Law <law@redhat.com> | 2017-05-06 09:03:40 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2017-05-06 09:03:40 -0600 |
commit | 973dfbb4a63ba7c580e4de0c99b4970ef159631c (patch) | |
tree | 4c8e6a9ca78122f5f070154b3bc851d9e0c3ed1c /gcc/tree-vrp.c | |
parent | 8ffa3150d30b90a11aba7d7bba3c6462b6461101 (diff) | |
download | gcc-973dfbb4a63ba7c580e4de0c99b4970ef159631c.zip gcc-973dfbb4a63ba7c580e4de0c99b4970ef159631c.tar.gz gcc-973dfbb4a63ba7c580e4de0c99b4970ef159631c.tar.bz2 |
re PR tree-optimization/78496 (Missed opportunities for jump threading)
PR tree-optimization/78496
* tree-vrp.c (simplify_assert_expr_using_ranges): New function.
(simplify_stmt_using_ranges): Call it.
(vrp_dom_walker::before_dom_children): Extract equivalences
from an ASSERT_EXPR with an equality comparison against a
constant.
PR tree-optimization/78496
* gcc.dg/tree-ssa/ssa-thread-16.c: New test.
* gcc.dg/tree-ssa/ssa-thread-17.c: New test.
From-SVN: r247721
Diffstat (limited to 'gcc/tree-vrp.c')
-rw-r--r-- | gcc/tree-vrp.c | 55 |
1 files changed, 52 insertions, 3 deletions
diff --git a/gcc/tree-vrp.c b/gcc/tree-vrp.c index cf50e90..461a48f 100644 --- a/gcc/tree-vrp.c +++ b/gcc/tree-vrp.c @@ -9600,6 +9600,43 @@ range_fits_type_p (value_range *vr, unsigned dest_precision, signop dest_sgn) return true; } +/* Simplify STMT, an ASSERT_EXPR, using ranges. This is helpful because jump + threading looks at the ASSERT_EXPRs. Collapsing the condition of + an ASSERT_EXPR from a relational to an equality test is where most + of the benefit occurrs, so that's the only thing we currently do. */ + +static bool +simplify_assert_expr_using_ranges (gimple *stmt) +{ + return false; + tree cond = TREE_OPERAND (gimple_assign_rhs1 (stmt), 1); + tree_code code = TREE_CODE (cond); + tree op0 = TREE_OPERAND (cond, 0); + + /* The condition of the ASSERT_EXPR must be a simple relational + between an SSA_NAME (with a range) and a constant. */ + if (TREE_CODE (op0) != SSA_NAME + || !INTEGRAL_TYPE_P (TREE_TYPE (op0))) + return false; + + tree op1 = TREE_OPERAND (cond, 1); + if (TREE_CODE (op1) != INTEGER_CST) + return false; + + value_range *vr = get_value_range (op0); + if (!vr || vr->type != VR_RANGE) + return false; + + tree res = test_for_singularity (code, op0, op1, vr); + if (res) + { + TREE_SET_CODE (cond, EQ_EXPR); + TREE_OPERAND (cond, 1) = res; + return true; + } + return false; +} + /* Simplify a conditional using a relational operator to an equality test if the range information indicates only one value can satisfy the original conditional. */ @@ -10334,6 +10371,9 @@ simplify_stmt_using_ranges (gimple_stmt_iterator *gsi) case MAX_EXPR: return simplify_min_or_max_using_ranges (gsi, stmt); + case ASSERT_EXPR: + return simplify_assert_expr_using_ranges (stmt); + default: break; } @@ -10598,6 +10638,18 @@ vrp_dom_walker::before_dom_children (basic_block bb) { tree rhs1 = gimple_assign_rhs1 (stmt); tree cond = TREE_OPERAND (rhs1, 1); + tree lhs = gimple_assign_lhs (stmt); + m_const_and_copies->record_const_or_copy (lhs, TREE_OPERAND (rhs1, 0)); + + if (TREE_CODE (cond) == EQ_EXPR) + { + tree cond_op0 = TREE_OPERAND (cond, 0); + tree cond_op1 = TREE_OPERAND (cond, 1); + if (TREE_CODE (cond_op0) == SSA_NAME) + m_const_and_copies->record_const_or_copy (cond_op0, cond_op1); + continue; + } + tree inverted = invert_truthvalue (cond); vec<cond_equivalence> p; p.create (3); @@ -10605,9 +10657,6 @@ vrp_dom_walker::before_dom_children (basic_block bb) for (unsigned int i = 0; i < p.length (); i++) m_avail_exprs_stack->record_cond (&p[i]); - tree lhs = gimple_assign_lhs (stmt); - m_const_and_copies->record_const_or_copy (lhs, - TREE_OPERAND (rhs1, 0)); p.release (); continue; } |