d: Add testcase from PR108962
[official-gcc.git] / gcc / tree-vrp.cc
blobd61b087b7303cb38f8ec7c6f8377ad130b314d33
1 /* Support routines for Value Range Propagation (VRP).
2 Copyright (C) 2005-2023 Free Software Foundation, Inc.
3 Contributed by Diego Novillo <dnovillo@redhat.com>.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "basic-block.h"
25 #include "bitmap.h"
26 #include "sbitmap.h"
27 #include "options.h"
28 #include "dominance.h"
29 #include "function.h"
30 #include "cfg.h"
31 #include "tree.h"
32 #include "gimple.h"
33 #include "tree-pass.h"
34 #include "ssa.h"
35 #include "gimple-pretty-print.h"
36 #include "fold-const.h"
37 #include "cfganal.h"
38 #include "gimple-iterator.h"
39 #include "tree-cfg.h"
40 #include "tree-ssa-loop-manip.h"
41 #include "tree-ssa-loop-niter.h"
42 #include "tree-into-ssa.h"
43 #include "cfgloop.h"
44 #include "tree-scalar-evolution.h"
45 #include "tree-ssa-propagate.h"
46 #include "domwalk.h"
47 #include "vr-values.h"
48 #include "gimple-array-bounds.h"
49 #include "gimple-range.h"
50 #include "gimple-range-path.h"
51 #include "value-pointer-equiv.h"
52 #include "gimple-fold.h"
53 #include "tree-dfa.h"
54 #include "tree-ssa-dce.h"
56 // This class is utilized by VRP and ranger to remove __builtin_unreachable
57 // calls, and reflect any resulting global ranges.
59 // maybe_register_block () is called on basic blocks, and if that block
60 // matches the pattern of one branch being a builtin_unreachable, register
61 // the resulting executable edge in a list.
63 // After all blocks have been processed, remove_and_update_globals() will
64 // - check all exports from registered blocks
65 // - ensure the cache entry of each export is set with the appropriate range
66 // - rewrite the conditions to take the executable edge
67 // - perform DCE on any feeding instructions to those rewritten conditions
69 // Then each of the immediate use chain of each export is walked, and a new
70 // global range created by unioning the ranges at all remaining use locations.
72 class remove_unreachable {
73 public:
74 remove_unreachable (gimple_ranger &r) : m_ranger (r) { m_list.create (30); }
75 ~remove_unreachable () { m_list.release (); }
76 void maybe_register_block (basic_block bb);
77 bool remove_and_update_globals (bool final_p);
78 vec<std::pair<int, int> > m_list;
79 gimple_ranger &m_ranger;
82 // Check if block BB has a __builtin_unreachable () call on one arm, and
83 // register the executable edge if so.
85 void
86 remove_unreachable::maybe_register_block (basic_block bb)
88 gimple *s = gimple_outgoing_range_stmt_p (bb);
89 if (!s || gimple_code (s) != GIMPLE_COND)
90 return;
92 edge e0 = EDGE_SUCC (bb, 0);
93 basic_block bb0 = e0->dest;
94 bool un0 = EDGE_COUNT (bb0->succs) == 0
95 && gimple_seq_unreachable_p (bb_seq (bb0));
96 edge e1 = EDGE_SUCC (bb, 1);
97 basic_block bb1 = e1->dest;
98 bool un1 = EDGE_COUNT (bb1->succs) == 0
99 && gimple_seq_unreachable_p (bb_seq (bb1));
101 // If the 2 blocks are not different, ignore.
102 if (un0 == un1)
103 return;
105 if (un0)
106 m_list.safe_push (std::make_pair (e1->src->index, e1->dest->index));
107 else
108 m_list.safe_push (std::make_pair (e0->src->index, e0->dest->index));
111 // Process the edges in the list, change the conditions and removing any
112 // dead code feeding those conditions. Calculate the range of any
113 // names that may have been exported from those blocks, and determine if
114 // there is any updates to their global ranges..
115 // FINAL_P indicates all builtin_unreachable calls should be removed.
116 // Return true if any builtin_unreachables/globals eliminated/updated.
118 bool
119 remove_unreachable::remove_and_update_globals (bool final_p)
121 if (m_list.length () == 0)
122 return false;
124 // Ensure the cache in SCEV has been cleared before processing
125 // globals to be removed.
126 scev_reset ();
128 bool change = false;
129 tree name;
130 unsigned i;
131 bitmap_iterator bi;
132 auto_bitmap all_exports;
133 for (i = 0; i < m_list.length (); i++)
135 auto eb = m_list[i];
136 basic_block src = BASIC_BLOCK_FOR_FN (cfun, eb.first);
137 basic_block dest = BASIC_BLOCK_FOR_FN (cfun, eb.second);
138 if (!src || !dest)
139 continue;
140 edge e = find_edge (src, dest);
141 gimple *s = gimple_outgoing_range_stmt_p (e->src);
142 gcc_checking_assert (gimple_code (s) == GIMPLE_COND);
143 bool lhs_p = TREE_CODE (gimple_cond_lhs (s)) == SSA_NAME;
144 bool rhs_p = TREE_CODE (gimple_cond_rhs (s)) == SSA_NAME;
145 // Do not remove __builtin_unreachable if it confers a relation, or
146 // that relation will be lost in subsequent passes. Unless its the
147 // final pass.
148 if (!final_p && lhs_p && rhs_p)
149 continue;
150 // If this is already a constant condition, don't look either
151 if (!lhs_p && !rhs_p)
152 continue;
153 // Do not remove addresses early. ie if (x == &y)
154 if (!final_p && lhs_p && TREE_CODE (gimple_cond_rhs (s)) == ADDR_EXPR)
155 continue;
156 bool dominate_exit_p = true;
157 FOR_EACH_GORI_EXPORT_NAME (m_ranger.gori (), e->src, name)
159 // Ensure the cache is set for NAME in the succ block.
160 Value_Range r(TREE_TYPE (name));
161 Value_Range ex(TREE_TYPE (name));
162 m_ranger.range_on_entry (r, e->dest, name);
163 m_ranger.range_on_entry (ex, EXIT_BLOCK_PTR_FOR_FN (cfun), name);
164 // If the range produced by this __builtin_unreachacble expression
165 // is not fully reflected in the range at exit, then it does not
166 // dominate the exit of the function.
167 if (ex.intersect (r))
168 dominate_exit_p = false;
171 // If the exit is dominated, add to the export list. Otherwise if this
172 // isn't the final VRP pass, leave the call in the IL.
173 if (dominate_exit_p)
174 bitmap_ior_into (all_exports, m_ranger.gori ().exports (e->src));
175 else if (!final_p)
176 continue;
178 change = true;
179 // Rewrite the condition.
180 if (e->flags & EDGE_TRUE_VALUE)
181 gimple_cond_make_true (as_a<gcond *> (s));
182 else
183 gimple_cond_make_false (as_a<gcond *> (s));
184 update_stmt (s);
187 if (bitmap_empty_p (all_exports))
188 return false;
189 // Invoke DCE on all exported names to eliminate dead feeding defs.
190 auto_bitmap dce;
191 bitmap_copy (dce, all_exports);
192 // Don't attempt to DCE parameters.
193 EXECUTE_IF_SET_IN_BITMAP (all_exports, 0, i, bi)
194 if (!ssa_name (i) || SSA_NAME_IS_DEFAULT_DEF (ssa_name (i)))
195 bitmap_clear_bit (dce, i);
196 simple_dce_from_worklist (dce);
198 // Loop over all uses of each name and find maximal range. This is the
199 // new global range.
200 use_operand_p use_p;
201 imm_use_iterator iter;
202 EXECUTE_IF_SET_IN_BITMAP (all_exports, 0, i, bi)
204 name = ssa_name (i);
205 if (!name || SSA_NAME_IN_FREE_LIST (name))
206 continue;
207 Value_Range r (TREE_TYPE (name));
208 Value_Range exp_range (TREE_TYPE (name));
209 r.set_undefined ();
210 FOR_EACH_IMM_USE_FAST (use_p, iter, name)
212 gimple *use_stmt = USE_STMT (use_p);
213 if (is_gimple_debug (use_stmt))
214 continue;
215 if (!m_ranger.range_of_expr (exp_range, name, use_stmt))
216 exp_range.set_varying (TREE_TYPE (name));
217 r.union_ (exp_range);
218 if (r.varying_p ())
219 break;
221 // Include the on-exit range to ensure non-dominated unreachables
222 // don't incorrectly impact the global range.
223 m_ranger.range_on_entry (exp_range, EXIT_BLOCK_PTR_FOR_FN (cfun), name);
224 r.union_ (exp_range);
225 if (r.varying_p () || r.undefined_p ())
226 continue;
227 if (!set_range_info (name, r))
228 continue;
229 change = true;
230 if (dump_file)
232 fprintf (dump_file, "Global Exported (via unreachable): ");
233 print_generic_expr (dump_file, name, TDF_SLIM);
234 fprintf (dump_file, " = ");
235 gimple_range_global (r, name);
236 r.dump (dump_file);
237 fputc ('\n', dump_file);
240 return change;
243 /* VR_TYPE describes a range with minimum value *MIN and maximum
244 value *MAX. Restrict the range to the set of values that have
245 no bits set outside NONZERO_BITS. Update *MIN and *MAX and
246 return the new range type.
248 SGN gives the sign of the values described by the range. */
250 enum value_range_kind
251 intersect_range_with_nonzero_bits (enum value_range_kind vr_type,
252 wide_int *min, wide_int *max,
253 const wide_int &nonzero_bits,
254 signop sgn)
256 if (vr_type == VR_ANTI_RANGE)
258 /* The VR_ANTI_RANGE is equivalent to the union of the ranges
259 A: [-INF, *MIN) and B: (*MAX, +INF]. First use NONZERO_BITS
260 to create an inclusive upper bound for A and an inclusive lower
261 bound for B. */
262 wide_int a_max = wi::round_down_for_mask (*min - 1, nonzero_bits);
263 wide_int b_min = wi::round_up_for_mask (*max + 1, nonzero_bits);
265 /* If the calculation of A_MAX wrapped, A is effectively empty
266 and A_MAX is the highest value that satisfies NONZERO_BITS.
267 Likewise if the calculation of B_MIN wrapped, B is effectively
268 empty and B_MIN is the lowest value that satisfies NONZERO_BITS. */
269 bool a_empty = wi::ge_p (a_max, *min, sgn);
270 bool b_empty = wi::le_p (b_min, *max, sgn);
272 /* If both A and B are empty, there are no valid values. */
273 if (a_empty && b_empty)
274 return VR_UNDEFINED;
276 /* If exactly one of A or B is empty, return a VR_RANGE for the
277 other one. */
278 if (a_empty || b_empty)
280 *min = b_min;
281 *max = a_max;
282 gcc_checking_assert (wi::le_p (*min, *max, sgn));
283 return VR_RANGE;
286 /* Update the VR_ANTI_RANGE bounds. */
287 *min = a_max + 1;
288 *max = b_min - 1;
289 gcc_checking_assert (wi::le_p (*min, *max, sgn));
291 /* Now check whether the excluded range includes any values that
292 satisfy NONZERO_BITS. If not, switch to a full VR_RANGE. */
293 if (wi::round_up_for_mask (*min, nonzero_bits) == b_min)
295 unsigned int precision = min->get_precision ();
296 *min = wi::min_value (precision, sgn);
297 *max = wi::max_value (precision, sgn);
298 vr_type = VR_RANGE;
301 if (vr_type == VR_RANGE || vr_type == VR_VARYING)
303 *max = wi::round_down_for_mask (*max, nonzero_bits);
305 /* Check that the range contains at least one valid value. */
306 if (wi::gt_p (*min, *max, sgn))
307 return VR_UNDEFINED;
309 *min = wi::round_up_for_mask (*min, nonzero_bits);
310 gcc_checking_assert (wi::le_p (*min, *max, sgn));
312 return vr_type;
315 /* Return the single symbol (an SSA_NAME) contained in T if any, or NULL_TREE
316 otherwise. We only handle additive operations and set NEG to true if the
317 symbol is negated and INV to the invariant part, if any. */
319 static tree
320 get_single_symbol (tree t, bool *neg, tree *inv)
322 bool neg_;
323 tree inv_;
325 *inv = NULL_TREE;
326 *neg = false;
328 if (TREE_CODE (t) == PLUS_EXPR
329 || TREE_CODE (t) == POINTER_PLUS_EXPR
330 || TREE_CODE (t) == MINUS_EXPR)
332 if (is_gimple_min_invariant (TREE_OPERAND (t, 0)))
334 neg_ = (TREE_CODE (t) == MINUS_EXPR);
335 inv_ = TREE_OPERAND (t, 0);
336 t = TREE_OPERAND (t, 1);
338 else if (is_gimple_min_invariant (TREE_OPERAND (t, 1)))
340 neg_ = false;
341 inv_ = TREE_OPERAND (t, 1);
342 t = TREE_OPERAND (t, 0);
344 else
345 return NULL_TREE;
347 else
349 neg_ = false;
350 inv_ = NULL_TREE;
353 if (TREE_CODE (t) == NEGATE_EXPR)
355 t = TREE_OPERAND (t, 0);
356 neg_ = !neg_;
359 if (TREE_CODE (t) != SSA_NAME)
360 return NULL_TREE;
362 if (inv_ && TREE_OVERFLOW_P (inv_))
363 inv_ = drop_tree_overflow (inv_);
365 *neg = neg_;
366 *inv = inv_;
367 return t;
370 /* Compare two values VAL1 and VAL2. Return
372 -2 if VAL1 and VAL2 cannot be compared at compile-time,
373 -1 if VAL1 < VAL2,
374 0 if VAL1 == VAL2,
375 +1 if VAL1 > VAL2, and
376 +2 if VAL1 != VAL2
378 This is similar to tree_int_cst_compare but supports pointer values
379 and values that cannot be compared at compile time.
381 If STRICT_OVERFLOW_P is not NULL, then set *STRICT_OVERFLOW_P to
382 true if the return value is only valid if we assume that signed
383 overflow is undefined. */
386 compare_values_warnv (tree val1, tree val2, bool *strict_overflow_p)
388 if (val1 == val2)
389 return 0;
391 /* Below we rely on the fact that VAL1 and VAL2 are both pointers or
392 both integers. */
393 gcc_assert (POINTER_TYPE_P (TREE_TYPE (val1))
394 == POINTER_TYPE_P (TREE_TYPE (val2)));
396 /* Convert the two values into the same type. This is needed because
397 sizetype causes sign extension even for unsigned types. */
398 if (!useless_type_conversion_p (TREE_TYPE (val1), TREE_TYPE (val2)))
399 val2 = fold_convert (TREE_TYPE (val1), val2);
401 const bool overflow_undefined
402 = INTEGRAL_TYPE_P (TREE_TYPE (val1))
403 && TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (val1));
404 tree inv1, inv2;
405 bool neg1, neg2;
406 tree sym1 = get_single_symbol (val1, &neg1, &inv1);
407 tree sym2 = get_single_symbol (val2, &neg2, &inv2);
409 /* If VAL1 and VAL2 are of the form '[-]NAME [+ CST]', return -1 or +1
410 accordingly. If VAL1 and VAL2 don't use the same name, return -2. */
411 if (sym1 && sym2)
413 /* Both values must use the same name with the same sign. */
414 if (sym1 != sym2 || neg1 != neg2)
415 return -2;
417 /* [-]NAME + CST == [-]NAME + CST. */
418 if (inv1 == inv2)
419 return 0;
421 /* If overflow is defined we cannot simplify more. */
422 if (!overflow_undefined)
423 return -2;
425 if (strict_overflow_p != NULL
426 /* Symbolic range building sets the no-warning bit to declare
427 that overflow doesn't happen. */
428 && (!inv1 || !warning_suppressed_p (val1, OPT_Woverflow))
429 && (!inv2 || !warning_suppressed_p (val2, OPT_Woverflow)))
430 *strict_overflow_p = true;
432 if (!inv1)
433 inv1 = build_int_cst (TREE_TYPE (val1), 0);
434 if (!inv2)
435 inv2 = build_int_cst (TREE_TYPE (val2), 0);
437 return wi::cmp (wi::to_wide (inv1), wi::to_wide (inv2),
438 TYPE_SIGN (TREE_TYPE (val1)));
441 const bool cst1 = is_gimple_min_invariant (val1);
442 const bool cst2 = is_gimple_min_invariant (val2);
444 /* If one is of the form '[-]NAME + CST' and the other is constant, then
445 it might be possible to say something depending on the constants. */
446 if ((sym1 && inv1 && cst2) || (sym2 && inv2 && cst1))
448 if (!overflow_undefined)
449 return -2;
451 if (strict_overflow_p != NULL
452 /* Symbolic range building sets the no-warning bit to declare
453 that overflow doesn't happen. */
454 && (!sym1 || !warning_suppressed_p (val1, OPT_Woverflow))
455 && (!sym2 || !warning_suppressed_p (val2, OPT_Woverflow)))
456 *strict_overflow_p = true;
458 const signop sgn = TYPE_SIGN (TREE_TYPE (val1));
459 tree cst = cst1 ? val1 : val2;
460 tree inv = cst1 ? inv2 : inv1;
462 /* Compute the difference between the constants. If it overflows or
463 underflows, this means that we can trivially compare the NAME with
464 it and, consequently, the two values with each other. */
465 wide_int diff = wi::to_wide (cst) - wi::to_wide (inv);
466 if (wi::cmp (0, wi::to_wide (inv), sgn)
467 != wi::cmp (diff, wi::to_wide (cst), sgn))
469 const int res = wi::cmp (wi::to_wide (cst), wi::to_wide (inv), sgn);
470 return cst1 ? res : -res;
473 return -2;
476 /* We cannot say anything more for non-constants. */
477 if (!cst1 || !cst2)
478 return -2;
480 if (!POINTER_TYPE_P (TREE_TYPE (val1)))
482 /* We cannot compare overflowed values. */
483 if (TREE_OVERFLOW (val1) || TREE_OVERFLOW (val2))
484 return -2;
486 if (TREE_CODE (val1) == INTEGER_CST
487 && TREE_CODE (val2) == INTEGER_CST)
488 return tree_int_cst_compare (val1, val2);
490 if (poly_int_tree_p (val1) && poly_int_tree_p (val2))
492 if (known_eq (wi::to_poly_widest (val1),
493 wi::to_poly_widest (val2)))
494 return 0;
495 if (known_lt (wi::to_poly_widest (val1),
496 wi::to_poly_widest (val2)))
497 return -1;
498 if (known_gt (wi::to_poly_widest (val1),
499 wi::to_poly_widest (val2)))
500 return 1;
503 return -2;
505 else
507 if (TREE_CODE (val1) == INTEGER_CST && TREE_CODE (val2) == INTEGER_CST)
509 /* We cannot compare overflowed values. */
510 if (TREE_OVERFLOW (val1) || TREE_OVERFLOW (val2))
511 return -2;
513 return tree_int_cst_compare (val1, val2);
516 /* First see if VAL1 and VAL2 are not the same. */
517 if (operand_equal_p (val1, val2, 0))
518 return 0;
520 fold_defer_overflow_warnings ();
522 /* If VAL1 is a lower address than VAL2, return -1. */
523 tree t = fold_binary_to_constant (LT_EXPR, boolean_type_node, val1, val2);
524 if (t && integer_onep (t))
526 fold_undefer_and_ignore_overflow_warnings ();
527 return -1;
530 /* If VAL1 is a higher address than VAL2, return +1. */
531 t = fold_binary_to_constant (LT_EXPR, boolean_type_node, val2, val1);
532 if (t && integer_onep (t))
534 fold_undefer_and_ignore_overflow_warnings ();
535 return 1;
538 /* If VAL1 is different than VAL2, return +2. */
539 t = fold_binary_to_constant (NE_EXPR, boolean_type_node, val1, val2);
540 fold_undefer_and_ignore_overflow_warnings ();
541 if (t && integer_onep (t))
542 return 2;
544 return -2;
548 /* Compare values like compare_values_warnv. */
551 compare_values (tree val1, tree val2)
553 bool sop;
554 return compare_values_warnv (val1, val2, &sop);
557 /* Helper for overflow_comparison_p
559 OP0 CODE OP1 is a comparison. Examine the comparison and potentially
560 OP1's defining statement to see if it ultimately has the form
561 OP0 CODE (OP0 PLUS INTEGER_CST)
563 If so, return TRUE indicating this is an overflow test and store into
564 *NEW_CST an updated constant that can be used in a narrowed range test.
566 REVERSED indicates if the comparison was originally:
568 OP1 CODE' OP0.
570 This affects how we build the updated constant. */
572 static bool
573 overflow_comparison_p_1 (enum tree_code code, tree op0, tree op1,
574 bool reversed, tree *new_cst)
576 /* See if this is a relational operation between two SSA_NAMES with
577 unsigned, overflow wrapping values. If so, check it more deeply. */
578 if ((code == LT_EXPR || code == LE_EXPR
579 || code == GE_EXPR || code == GT_EXPR)
580 && TREE_CODE (op0) == SSA_NAME
581 && TREE_CODE (op1) == SSA_NAME
582 && INTEGRAL_TYPE_P (TREE_TYPE (op0))
583 && TYPE_UNSIGNED (TREE_TYPE (op0))
584 && TYPE_OVERFLOW_WRAPS (TREE_TYPE (op0)))
586 gimple *op1_def = SSA_NAME_DEF_STMT (op1);
588 /* Now look at the defining statement of OP1 to see if it adds
589 or subtracts a nonzero constant from another operand. */
590 if (op1_def
591 && is_gimple_assign (op1_def)
592 && gimple_assign_rhs_code (op1_def) == PLUS_EXPR
593 && TREE_CODE (gimple_assign_rhs2 (op1_def)) == INTEGER_CST
594 && !integer_zerop (gimple_assign_rhs2 (op1_def)))
596 tree target = gimple_assign_rhs1 (op1_def);
598 /* If we did not find our target SSA_NAME, then this is not
599 an overflow test. */
600 if (op0 != target)
601 return false;
603 tree type = TREE_TYPE (op0);
604 wide_int max = wi::max_value (TYPE_PRECISION (type), UNSIGNED);
605 tree inc = gimple_assign_rhs2 (op1_def);
606 if (reversed)
607 *new_cst = wide_int_to_tree (type, max + wi::to_wide (inc));
608 else
609 *new_cst = wide_int_to_tree (type, max - wi::to_wide (inc));
610 return true;
613 return false;
616 /* OP0 CODE OP1 is a comparison. Examine the comparison and potentially
617 OP1's defining statement to see if it ultimately has the form
618 OP0 CODE (OP0 PLUS INTEGER_CST)
620 If so, return TRUE indicating this is an overflow test and store into
621 *NEW_CST an updated constant that can be used in a narrowed range test.
623 These statements are left as-is in the IL to facilitate discovery of
624 {ADD,SUB}_OVERFLOW sequences later in the optimizer pipeline. But
625 the alternate range representation is often useful within VRP. */
627 bool
628 overflow_comparison_p (tree_code code, tree name, tree val, tree *new_cst)
630 if (overflow_comparison_p_1 (code, name, val, false, new_cst))
631 return true;
632 return overflow_comparison_p_1 (swap_tree_comparison (code), val, name,
633 true, new_cst);
636 /* Searches the case label vector VEC for the index *IDX of the CASE_LABEL
637 that includes the value VAL. The search is restricted to the range
638 [START_IDX, n - 1] where n is the size of VEC.
640 If there is a CASE_LABEL for VAL, its index is placed in IDX and true is
641 returned.
643 If there is no CASE_LABEL for VAL and there is one that is larger than VAL,
644 it is placed in IDX and false is returned.
646 If VAL is larger than any CASE_LABEL, n is placed on IDX and false is
647 returned. */
649 bool
650 find_case_label_index (gswitch *stmt, size_t start_idx, tree val, size_t *idx)
652 size_t n = gimple_switch_num_labels (stmt);
653 size_t low, high;
655 /* Find case label for minimum of the value range or the next one.
656 At each iteration we are searching in [low, high - 1]. */
658 for (low = start_idx, high = n; high != low; )
660 tree t;
661 int cmp;
662 /* Note that i != high, so we never ask for n. */
663 size_t i = (high + low) / 2;
664 t = gimple_switch_label (stmt, i);
666 /* Cache the result of comparing CASE_LOW and val. */
667 cmp = tree_int_cst_compare (CASE_LOW (t), val);
669 if (cmp == 0)
671 /* Ranges cannot be empty. */
672 *idx = i;
673 return true;
675 else if (cmp > 0)
676 high = i;
677 else
679 low = i + 1;
680 if (CASE_HIGH (t) != NULL
681 && tree_int_cst_compare (CASE_HIGH (t), val) >= 0)
683 *idx = i;
684 return true;
689 *idx = high;
690 return false;
693 /* Searches the case label vector VEC for the range of CASE_LABELs that is used
694 for values between MIN and MAX. The first index is placed in MIN_IDX. The
695 last index is placed in MAX_IDX. If the range of CASE_LABELs is empty
696 then MAX_IDX < MIN_IDX.
697 Returns true if the default label is not needed. */
699 bool
700 find_case_label_range (gswitch *stmt, tree min, tree max, size_t *min_idx,
701 size_t *max_idx)
703 size_t i, j;
704 bool min_take_default = !find_case_label_index (stmt, 1, min, &i);
705 bool max_take_default = !find_case_label_index (stmt, i, max, &j);
707 if (i == j
708 && min_take_default
709 && max_take_default)
711 /* Only the default case label reached.
712 Return an empty range. */
713 *min_idx = 1;
714 *max_idx = 0;
715 return false;
717 else
719 bool take_default = min_take_default || max_take_default;
720 tree low, high;
721 size_t k;
723 if (max_take_default)
724 j--;
726 /* If the case label range is continuous, we do not need
727 the default case label. Verify that. */
728 high = CASE_LOW (gimple_switch_label (stmt, i));
729 if (CASE_HIGH (gimple_switch_label (stmt, i)))
730 high = CASE_HIGH (gimple_switch_label (stmt, i));
731 for (k = i + 1; k <= j; ++k)
733 low = CASE_LOW (gimple_switch_label (stmt, k));
734 if (!integer_onep (int_const_binop (MINUS_EXPR, low, high)))
736 take_default = true;
737 break;
739 high = low;
740 if (CASE_HIGH (gimple_switch_label (stmt, k)))
741 high = CASE_HIGH (gimple_switch_label (stmt, k));
744 *min_idx = i;
745 *max_idx = j;
746 return !take_default;
750 /* Given a SWITCH_STMT, return the case label that encompasses the
751 known possible values for the switch operand. RANGE_OF_OP is a
752 range for the known values of the switch operand. */
754 tree
755 find_case_label_range (gswitch *switch_stmt, const irange *range_of_op)
757 if (range_of_op->undefined_p ()
758 || range_of_op->varying_p ())
759 return NULL_TREE;
761 size_t i, j;
762 tree op = gimple_switch_index (switch_stmt);
763 tree type = TREE_TYPE (op);
764 unsigned prec = TYPE_PRECISION (type);
765 signop sign = TYPE_SIGN (type);
766 tree tmin = wide_int_to_tree (type, range_of_op->lower_bound ());
767 tree tmax = wide_int_to_tree (type, range_of_op->upper_bound ());
768 find_case_label_range (switch_stmt, tmin, tmax, &i, &j);
769 if (i == j)
771 /* Look for exactly one label that encompasses the range of
772 the operand. */
773 tree label = gimple_switch_label (switch_stmt, i);
774 tree case_high
775 = CASE_HIGH (label) ? CASE_HIGH (label) : CASE_LOW (label);
776 wide_int wlow = wi::to_wide (CASE_LOW (label));
777 wide_int whigh = wi::to_wide (case_high);
778 int_range_max label_range (type,
779 wide_int::from (wlow, prec, sign),
780 wide_int::from (whigh, prec, sign));
781 if (!types_compatible_p (label_range.type (), range_of_op->type ()))
782 range_cast (label_range, range_of_op->type ());
783 label_range.intersect (*range_of_op);
784 if (label_range == *range_of_op)
785 return label;
787 else if (i > j)
789 /* If there are no labels at all, take the default. */
790 return gimple_switch_label (switch_stmt, 0);
792 else
794 /* Otherwise, there are various labels that can encompass
795 the range of operand. In which case, see if the range of
796 the operand is entirely *outside* the bounds of all the
797 (non-default) case labels. If so, take the default. */
798 unsigned n = gimple_switch_num_labels (switch_stmt);
799 tree min_label = gimple_switch_label (switch_stmt, 1);
800 tree max_label = gimple_switch_label (switch_stmt, n - 1);
801 tree case_high = CASE_HIGH (max_label);
802 if (!case_high)
803 case_high = CASE_LOW (max_label);
804 int_range_max label_range (TREE_TYPE (CASE_LOW (min_label)),
805 wi::to_wide (CASE_LOW (min_label)),
806 wi::to_wide (case_high));
807 if (!types_compatible_p (label_range.type (), range_of_op->type ()))
808 range_cast (label_range, range_of_op->type ());
809 label_range.intersect (*range_of_op);
810 if (label_range.undefined_p ())
811 return gimple_switch_label (switch_stmt, 0);
813 return NULL_TREE;
816 struct case_info
818 tree expr;
819 basic_block bb;
822 // This is a ranger based folder which continues to use the dominator
823 // walk to access the substitute and fold machinery. Ranges are calculated
824 // on demand.
826 class rvrp_folder : public substitute_and_fold_engine
828 public:
830 rvrp_folder (gimple_ranger *r) : substitute_and_fold_engine (),
831 m_unreachable (*r),
832 m_simplifier (r, r->non_executable_edge_flag)
834 m_ranger = r;
835 m_pta = new pointer_equiv_analyzer (m_ranger);
836 m_last_bb_stmt = NULL;
839 ~rvrp_folder ()
841 delete m_pta;
844 tree value_of_expr (tree name, gimple *s = NULL) override
846 // Shortcircuit subst_and_fold callbacks for abnormal ssa_names.
847 if (TREE_CODE (name) == SSA_NAME && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (name))
848 return NULL;
849 tree ret = m_ranger->value_of_expr (name, s);
850 if (!ret && supported_pointer_equiv_p (name))
851 ret = m_pta->get_equiv (name);
852 return ret;
855 tree value_on_edge (edge e, tree name) override
857 // Shortcircuit subst_and_fold callbacks for abnormal ssa_names.
858 if (TREE_CODE (name) == SSA_NAME && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (name))
859 return NULL;
860 tree ret = m_ranger->value_on_edge (e, name);
861 if (!ret && supported_pointer_equiv_p (name))
862 ret = m_pta->get_equiv (name);
863 return ret;
866 tree value_of_stmt (gimple *s, tree name = NULL) override
868 // Shortcircuit subst_and_fold callbacks for abnormal ssa_names.
869 if (TREE_CODE (name) == SSA_NAME && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (name))
870 return NULL;
871 return m_ranger->value_of_stmt (s, name);
874 void pre_fold_bb (basic_block bb) override
876 m_pta->enter (bb);
877 for (gphi_iterator gsi = gsi_start_phis (bb); !gsi_end_p (gsi);
878 gsi_next (&gsi))
879 m_ranger->register_inferred_ranges (gsi.phi ());
880 m_last_bb_stmt = last_nondebug_stmt (bb);
883 void post_fold_bb (basic_block bb) override
885 m_pta->leave (bb);
886 if (cfun->after_inlining)
887 m_unreachable.maybe_register_block (bb);
890 void pre_fold_stmt (gimple *stmt) override
892 m_pta->visit_stmt (stmt);
893 // If this is the last stmt and there are inferred ranges, reparse the
894 // block for transitive inferred ranges that occur earlier in the block.
895 if (stmt == m_last_bb_stmt)
896 m_ranger->register_transitive_inferred_ranges (gimple_bb (stmt));
899 bool fold_stmt (gimple_stmt_iterator *gsi) override
901 bool ret = m_simplifier.simplify (gsi);
902 if (!ret)
903 ret = m_ranger->fold_stmt (gsi, follow_single_use_edges);
904 m_ranger->register_inferred_ranges (gsi_stmt (*gsi));
905 return ret;
908 remove_unreachable m_unreachable;
909 private:
910 DISABLE_COPY_AND_ASSIGN (rvrp_folder);
911 gimple_ranger *m_ranger;
912 simplify_using_ranges m_simplifier;
913 pointer_equiv_analyzer *m_pta;
914 gimple *m_last_bb_stmt;
917 /* Main entry point for a VRP pass using just ranger. This can be called
918 from anywhere to perform a VRP pass, including from EVRP. */
920 unsigned int
921 execute_ranger_vrp (struct function *fun, bool warn_array_bounds_p,
922 bool final_p)
924 loop_optimizer_init (LOOPS_NORMAL | LOOPS_HAVE_RECORDED_EXITS);
925 rewrite_into_loop_closed_ssa (NULL, TODO_update_ssa);
926 scev_initialize ();
927 calculate_dominance_info (CDI_DOMINATORS);
929 set_all_edges_as_executable (fun);
930 gimple_ranger *ranger = enable_ranger (fun, false);
931 rvrp_folder folder (ranger);
932 phi_analysis_initialize (ranger->const_query ());
933 folder.substitute_and_fold ();
934 // Remove tagged builtin-unreachable and maybe update globals.
935 folder.m_unreachable.remove_and_update_globals (final_p);
936 if (dump_file && (dump_flags & TDF_DETAILS))
938 phi_analysis ().dump (dump_file);
939 ranger->dump (dump_file);
942 if ((warn_array_bounds || warn_strict_flex_arrays) && warn_array_bounds_p)
944 // Set all edges as executable, except those ranger says aren't.
945 int non_exec_flag = ranger->non_executable_edge_flag;
946 basic_block bb;
947 FOR_ALL_BB_FN (bb, fun)
949 edge_iterator ei;
950 edge e;
951 FOR_EACH_EDGE (e, ei, bb->succs)
952 if (e->flags & non_exec_flag)
953 e->flags &= ~EDGE_EXECUTABLE;
954 else
955 e->flags |= EDGE_EXECUTABLE;
957 scev_reset ();
958 array_bounds_checker array_checker (fun, ranger);
959 array_checker.check ();
962 phi_analysis_finalize ();
963 disable_ranger (fun);
964 scev_finalize ();
965 loop_optimizer_finalize ();
966 return 0;
969 namespace {
971 const pass_data pass_data_vrp =
973 GIMPLE_PASS, /* type */
974 "vrp", /* name */
975 OPTGROUP_NONE, /* optinfo_flags */
976 TV_TREE_VRP, /* tv_id */
977 PROP_ssa, /* properties_required */
978 0, /* properties_provided */
979 0, /* properties_destroyed */
980 0, /* todo_flags_start */
981 ( TODO_cleanup_cfg | TODO_update_ssa ), /* todo_flags_finish */
984 const pass_data pass_data_early_vrp =
986 GIMPLE_PASS, /* type */
987 "evrp", /* name */
988 OPTGROUP_NONE, /* optinfo_flags */
989 TV_TREE_EARLY_VRP, /* tv_id */
990 PROP_ssa, /* properties_required */
991 0, /* properties_provided */
992 0, /* properties_destroyed */
993 0, /* todo_flags_start */
994 ( TODO_cleanup_cfg | TODO_update_ssa | TODO_verify_all ),
997 static int vrp_pass_num = 0;
998 class pass_vrp : public gimple_opt_pass
1000 public:
1001 pass_vrp (gcc::context *ctxt, const pass_data &data_)
1002 : gimple_opt_pass (data_, ctxt), data (data_), warn_array_bounds_p (false),
1003 my_pass (vrp_pass_num++)
1006 /* opt_pass methods: */
1007 opt_pass * clone () final override { return new pass_vrp (m_ctxt, data); }
1008 void set_pass_param (unsigned int n, bool param) final override
1010 gcc_assert (n == 0);
1011 warn_array_bounds_p = param;
1013 bool gate (function *) final override { return flag_tree_vrp != 0; }
1014 unsigned int execute (function *fun) final override
1016 // Early VRP pass.
1017 if (my_pass == 0)
1018 return execute_ranger_vrp (fun, /*warn_array_bounds_p=*/false, false);
1020 return execute_ranger_vrp (fun, warn_array_bounds_p, my_pass == 2);
1023 private:
1024 const pass_data &data;
1025 bool warn_array_bounds_p;
1026 int my_pass;
1027 }; // class pass_vrp
1029 const pass_data pass_data_assumptions =
1031 GIMPLE_PASS, /* type */
1032 "assumptions", /* name */
1033 OPTGROUP_NONE, /* optinfo_flags */
1034 TV_TREE_ASSUMPTIONS, /* tv_id */
1035 PROP_ssa, /* properties_required */
1036 PROP_assumptions_done, /* properties_provided */
1037 0, /* properties_destroyed */
1038 0, /* todo_flags_start */
1039 0, /* todo_flags_end */
1042 class pass_assumptions : public gimple_opt_pass
1044 public:
1045 pass_assumptions (gcc::context *ctxt)
1046 : gimple_opt_pass (pass_data_assumptions, ctxt)
1049 /* opt_pass methods: */
1050 bool gate (function *fun) final override { return fun->assume_function; }
1051 unsigned int execute (function *) final override
1053 assume_query query;
1054 if (dump_file)
1055 fprintf (dump_file, "Assumptions :\n--------------\n");
1057 for (tree arg = DECL_ARGUMENTS (cfun->decl); arg; arg = DECL_CHAIN (arg))
1059 tree name = ssa_default_def (cfun, arg);
1060 if (!name || !gimple_range_ssa_p (name))
1061 continue;
1062 tree type = TREE_TYPE (name);
1063 if (!Value_Range::supports_type_p (type))
1064 continue;
1065 Value_Range assume_range (type);
1066 if (query.assume_range_p (assume_range, name))
1068 // Set the global range of NAME to anything calculated.
1069 set_range_info (name, assume_range);
1070 if (dump_file)
1072 print_generic_expr (dump_file, name, TDF_SLIM);
1073 fprintf (dump_file, " -> ");
1074 assume_range.dump (dump_file);
1075 fputc ('\n', dump_file);
1079 if (dump_file)
1081 fputc ('\n', dump_file);
1082 gimple_dump_cfg (dump_file, dump_flags & ~TDF_DETAILS);
1083 if (dump_flags & TDF_DETAILS)
1084 query.dump (dump_file);
1086 return TODO_discard_function;
1089 }; // class pass_assumptions
1091 } // anon namespace
1093 gimple_opt_pass *
1094 make_pass_vrp (gcc::context *ctxt)
1096 return new pass_vrp (ctxt, pass_data_vrp);
1099 gimple_opt_pass *
1100 make_pass_early_vrp (gcc::context *ctxt)
1102 return new pass_vrp (ctxt, pass_data_early_vrp);
1105 gimple_opt_pass *
1106 make_pass_assumptions (gcc::context *ctx)
1108 return new pass_assumptions (ctx);