testsuite: Update scanning symbol sections to support AIX.
[official-gcc.git] / gcc / vr-values.c
blob3db72a360a603885b731ae0c1ea9c624900078ed
1 /* Support routines for Value Range Propagation (VRP).
2 Copyright (C) 2005-2020 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
9 any later version.
11 GCC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "backend.h"
24 #include "insn-codes.h"
25 #include "tree.h"
26 #include "gimple.h"
27 #include "ssa.h"
28 #include "optabs-tree.h"
29 #include "gimple-pretty-print.h"
30 #include "diagnostic-core.h"
31 #include "flags.h"
32 #include "fold-const.h"
33 #include "calls.h"
34 #include "cfganal.h"
35 #include "gimple-fold.h"
36 #include "gimple-iterator.h"
37 #include "tree-cfg.h"
38 #include "tree-ssa-loop-niter.h"
39 #include "tree-ssa-loop.h"
40 #include "intl.h"
41 #include "cfgloop.h"
42 #include "tree-scalar-evolution.h"
43 #include "tree-ssa-propagate.h"
44 #include "tree-chrec.h"
45 #include "omp-general.h"
46 #include "case-cfn-macros.h"
47 #include "alloc-pool.h"
48 #include "attribs.h"
49 #include "range.h"
50 #include "vr-values.h"
51 #include "cfghooks.h"
52 #include "range-op.h"
53 #include "gimple-range.h"
55 /* Set value range VR to a non-negative range of type TYPE. */
57 static inline void
58 set_value_range_to_nonnegative (value_range_equiv *vr, tree type)
60 tree zero = build_int_cst (type, 0);
61 vr->update (zero, vrp_val_max (type));
64 /* Set value range VR to a range of a truthvalue of type TYPE. */
66 static inline void
67 set_value_range_to_truthvalue (value_range_equiv *vr, tree type)
69 if (TYPE_PRECISION (type) == 1)
70 vr->set_varying (type);
71 else
72 vr->update (build_int_cst (type, 0), build_int_cst (type, 1));
75 /* Return the lattice entry for VAR or NULL if it doesn't exist or cannot
76 be initialized. */
78 value_range_equiv *
79 vr_values::get_lattice_entry (const_tree var)
81 value_range_equiv *vr;
82 tree sym;
83 unsigned ver = SSA_NAME_VERSION (var);
85 /* If we query the entry for a new SSA name avoid reallocating the lattice
86 since we should get here at most from the substitute-and-fold stage which
87 will never try to change values. */
88 if (ver >= num_vr_values)
89 return NULL;
91 vr = vr_value[ver];
92 if (vr)
93 return vr;
95 /* Create a default value range. */
96 vr = allocate_value_range_equiv ();
97 vr_value[ver] = vr;
99 /* After propagation finished return varying. */
100 if (values_propagated)
102 vr->set_varying (TREE_TYPE (var));
103 return vr;
106 vr->set_undefined ();
108 /* If VAR is a default definition of a parameter, the variable can
109 take any value in VAR's type. */
110 if (SSA_NAME_IS_DEFAULT_DEF (var))
112 sym = SSA_NAME_VAR (var);
113 if (TREE_CODE (sym) == PARM_DECL)
115 /* Try to use the "nonnull" attribute to create ~[0, 0]
116 anti-ranges for pointers. Note that this is only valid with
117 default definitions of PARM_DECLs. */
118 if (POINTER_TYPE_P (TREE_TYPE (sym))
119 && (nonnull_arg_p (sym)
120 || get_ptr_nonnull (var)))
122 vr->set_nonzero (TREE_TYPE (sym));
123 vr->equiv_clear ();
125 else if (INTEGRAL_TYPE_P (TREE_TYPE (sym)))
127 get_range_info (var, *vr);
128 if (vr->undefined_p ())
129 vr->set_varying (TREE_TYPE (sym));
131 else
132 vr->set_varying (TREE_TYPE (sym));
134 else if (TREE_CODE (sym) == RESULT_DECL
135 && DECL_BY_REFERENCE (sym))
137 vr->set_nonzero (TREE_TYPE (sym));
138 vr->equiv_clear ();
142 return vr;
145 /* Return value range information for VAR.
147 If we have no values ranges recorded (ie, VRP is not running), then
148 return NULL. Otherwise create an empty range if none existed for VAR. */
150 const value_range_equiv *
151 vr_values::get_value_range (const_tree var,
152 gimple *stmt ATTRIBUTE_UNUSED)
154 /* If we have no recorded ranges, then return NULL. */
155 if (!vr_value)
156 return NULL;
158 value_range_equiv *vr = get_lattice_entry (var);
160 /* Reallocate the lattice if needed. */
161 if (!vr)
163 unsigned int old_sz = num_vr_values;
164 num_vr_values = num_ssa_names + num_ssa_names / 10;
165 vr_value = XRESIZEVEC (value_range_equiv *, vr_value, num_vr_values);
166 for ( ; old_sz < num_vr_values; old_sz++)
167 vr_value [old_sz] = NULL;
169 /* Now that the lattice has been resized, we should never fail. */
170 vr = get_lattice_entry (var);
171 gcc_assert (vr);
174 return vr;
177 bool
178 vr_values::range_of_expr (irange &r, tree expr, gimple *stmt)
180 if (!gimple_range_ssa_p (expr))
181 return get_tree_range (r, expr);
183 if (const value_range *vr = get_value_range (expr, stmt))
185 if (vr->undefined_p () || vr->varying_p () || vr->constant_p ())
186 r = *vr;
187 else
189 value_range tmp = *vr;
190 tmp.normalize_symbolics ();
191 r = tmp;
193 return true;
195 return false;
198 tree
199 vr_values::value_of_expr (tree op, gimple *)
201 return op_with_constant_singleton_value_range (op);
204 tree
205 vr_values::value_on_edge (edge, tree op)
207 return op_with_constant_singleton_value_range (op);
210 tree
211 vr_values::value_of_stmt (gimple *stmt, tree op)
213 if (!op)
214 op = gimple_get_lhs (stmt);
216 gcc_checking_assert (!op|| op == gimple_get_lhs (stmt));
218 if (op)
219 return op_with_constant_singleton_value_range (op);
220 return NULL_TREE;
223 /* Set the lattice entry for DEF to VARYING. */
225 void
226 vr_values::set_def_to_varying (const_tree def)
228 value_range_equiv *vr = get_lattice_entry (def);
229 if (vr)
230 vr->set_varying (TREE_TYPE (def));
233 /* Set value-ranges of all SSA names defined by STMT to varying. */
235 void
236 vr_values::set_defs_to_varying (gimple *stmt)
238 ssa_op_iter i;
239 tree def;
240 FOR_EACH_SSA_TREE_OPERAND (def, stmt, i, SSA_OP_DEF)
241 set_def_to_varying (def);
244 /* Update the value range and equivalence set for variable VAR to
245 NEW_VR. Return true if NEW_VR is different from VAR's previous
246 value.
248 NOTE: This function assumes that NEW_VR is a temporary value range
249 object created for the sole purpose of updating VAR's range. The
250 storage used by the equivalence set from NEW_VR will be freed by
251 this function. Do not call update_value_range when NEW_VR
252 is the range object associated with another SSA name. */
254 bool
255 vr_values::update_value_range (const_tree var, value_range_equiv *new_vr)
257 value_range_equiv *old_vr;
258 bool is_new;
260 /* If there is a value-range on the SSA name from earlier analysis
261 factor that in. */
262 if (INTEGRAL_TYPE_P (TREE_TYPE (var)))
264 value_range_equiv nr;
265 get_range_info (var, nr);
266 if (!nr.undefined_p ())
267 new_vr->intersect (&nr);
270 /* Update the value range, if necessary. If we cannot allocate a lattice
271 entry for VAR keep it at VARYING. This happens when DOM feeds us stmts
272 with SSA names allocated after setting up the lattice. */
273 old_vr = get_lattice_entry (var);
274 if (!old_vr)
275 return false;
276 is_new = !old_vr->equal_p (*new_vr, /*ignore_equivs=*/false);
278 if (is_new)
280 /* Do not allow transitions up the lattice. The following
281 is slightly more awkward than just new_vr->type < old_vr->type
282 because VR_RANGE and VR_ANTI_RANGE need to be considered
283 the same. We may not have is_new when transitioning to
284 UNDEFINED. If old_vr->type is VARYING, we shouldn't be
285 called, if we are anyway, keep it VARYING. */
286 if (old_vr->varying_p ())
288 new_vr->set_varying (TREE_TYPE (var));
289 is_new = false;
291 else if (new_vr->undefined_p ())
293 old_vr->set_varying (TREE_TYPE (var));
294 new_vr->set_varying (TREE_TYPE (var));
295 return true;
297 else
298 old_vr->set (new_vr->min (), new_vr->max (), new_vr->equiv (),
299 new_vr->kind ());
302 new_vr->equiv_clear ();
304 return is_new;
307 /* Return true if value range VR involves exactly one symbol SYM. */
309 static bool
310 symbolic_range_based_on_p (value_range *vr, const_tree sym)
312 bool neg, min_has_symbol, max_has_symbol;
313 tree inv;
315 if (is_gimple_min_invariant (vr->min ()))
316 min_has_symbol = false;
317 else if (get_single_symbol (vr->min (), &neg, &inv) == sym)
318 min_has_symbol = true;
319 else
320 return false;
322 if (is_gimple_min_invariant (vr->max ()))
323 max_has_symbol = false;
324 else if (get_single_symbol (vr->max (), &neg, &inv) == sym)
325 max_has_symbol = true;
326 else
327 return false;
329 return (min_has_symbol || max_has_symbol);
332 /* Return true if the result of assignment STMT is know to be non-zero. */
334 static bool
335 gimple_assign_nonzero_p (gimple *stmt)
337 enum tree_code code = gimple_assign_rhs_code (stmt);
338 bool strict_overflow_p;
339 switch (get_gimple_rhs_class (code))
341 case GIMPLE_UNARY_RHS:
342 return tree_unary_nonzero_warnv_p (gimple_assign_rhs_code (stmt),
343 gimple_expr_type (stmt),
344 gimple_assign_rhs1 (stmt),
345 &strict_overflow_p);
346 case GIMPLE_BINARY_RHS:
347 return tree_binary_nonzero_warnv_p (gimple_assign_rhs_code (stmt),
348 gimple_expr_type (stmt),
349 gimple_assign_rhs1 (stmt),
350 gimple_assign_rhs2 (stmt),
351 &strict_overflow_p);
352 case GIMPLE_TERNARY_RHS:
353 return false;
354 case GIMPLE_SINGLE_RHS:
355 return tree_single_nonzero_warnv_p (gimple_assign_rhs1 (stmt),
356 &strict_overflow_p);
357 case GIMPLE_INVALID_RHS:
358 gcc_unreachable ();
359 default:
360 gcc_unreachable ();
364 /* Return true if STMT is known to compute a non-zero value. */
366 static bool
367 gimple_stmt_nonzero_p (gimple *stmt)
369 switch (gimple_code (stmt))
371 case GIMPLE_ASSIGN:
372 return gimple_assign_nonzero_p (stmt);
373 case GIMPLE_CALL:
375 gcall *call_stmt = as_a<gcall *> (stmt);
376 return (gimple_call_nonnull_result_p (call_stmt)
377 || gimple_call_nonnull_arg (call_stmt));
379 default:
380 gcc_unreachable ();
383 /* Like tree_expr_nonzero_p, but this function uses value ranges
384 obtained so far. */
386 bool
387 vr_values::vrp_stmt_computes_nonzero (gimple *stmt)
389 if (gimple_stmt_nonzero_p (stmt))
390 return true;
392 /* If we have an expression of the form &X->a, then the expression
393 is nonnull if X is nonnull. */
394 if (is_gimple_assign (stmt)
395 && gimple_assign_rhs_code (stmt) == ADDR_EXPR)
397 tree expr = gimple_assign_rhs1 (stmt);
398 poly_int64 bitsize, bitpos;
399 tree offset;
400 machine_mode mode;
401 int unsignedp, reversep, volatilep;
402 tree base = get_inner_reference (TREE_OPERAND (expr, 0), &bitsize,
403 &bitpos, &offset, &mode, &unsignedp,
404 &reversep, &volatilep);
406 if (base != NULL_TREE
407 && TREE_CODE (base) == MEM_REF
408 && TREE_CODE (TREE_OPERAND (base, 0)) == SSA_NAME)
410 poly_offset_int off = 0;
411 bool off_cst = false;
412 if (offset == NULL_TREE || TREE_CODE (offset) == INTEGER_CST)
414 off = mem_ref_offset (base);
415 if (offset)
416 off += poly_offset_int::from (wi::to_poly_wide (offset),
417 SIGNED);
418 off <<= LOG2_BITS_PER_UNIT;
419 off += bitpos;
420 off_cst = true;
422 /* If &X->a is equal to X and X is ~[0, 0], the result is too.
423 For -fdelete-null-pointer-checks -fno-wrapv-pointer we don't
424 allow going from non-NULL pointer to NULL. */
425 if ((off_cst && known_eq (off, 0))
426 || (flag_delete_null_pointer_checks
427 && !TYPE_OVERFLOW_WRAPS (TREE_TYPE (expr))))
429 const value_range_equiv *vr
430 = get_value_range (TREE_OPERAND (base, 0));
431 if (!range_includes_zero_p (vr))
432 return true;
434 /* If MEM_REF has a "positive" offset, consider it non-NULL
435 always, for -fdelete-null-pointer-checks also "negative"
436 ones. Punt for unknown offsets (e.g. variable ones). */
437 if (!TYPE_OVERFLOW_WRAPS (TREE_TYPE (expr))
438 && off_cst
439 && known_ne (off, 0)
440 && (flag_delete_null_pointer_checks || known_gt (off, 0)))
441 return true;
445 return false;
448 /* Returns true if EXPR is a valid value (as expected by compare_values) --
449 a gimple invariant, or SSA_NAME +- CST. */
451 static bool
452 valid_value_p (tree expr)
454 if (TREE_CODE (expr) == SSA_NAME)
455 return true;
457 if (TREE_CODE (expr) == PLUS_EXPR
458 || TREE_CODE (expr) == MINUS_EXPR)
459 return (TREE_CODE (TREE_OPERAND (expr, 0)) == SSA_NAME
460 && TREE_CODE (TREE_OPERAND (expr, 1)) == INTEGER_CST);
462 return is_gimple_min_invariant (expr);
465 /* If OP has a value range with a single constant value return that,
466 otherwise return NULL_TREE. This returns OP itself if OP is a
467 constant. */
469 tree
470 vr_values::op_with_constant_singleton_value_range (tree op)
472 if (is_gimple_min_invariant (op))
473 return op;
475 if (TREE_CODE (op) != SSA_NAME)
476 return NULL_TREE;
478 tree t;
479 if (get_value_range (op)->singleton_p (&t))
480 return t;
481 return NULL;
484 /* Return true if op is in a boolean [0, 1] value-range. */
486 bool
487 simplify_using_ranges::op_with_boolean_value_range_p (tree op)
489 if (TYPE_PRECISION (TREE_TYPE (op)) == 1)
490 return true;
492 if (integer_zerop (op)
493 || integer_onep (op))
494 return true;
496 if (TREE_CODE (op) != SSA_NAME)
497 return false;
499 /* ?? Errr, this should probably check for [0,0] and [1,1] as well
500 as [0,1]. */
501 const value_range *vr = query->get_value_range (op);
502 return *vr == value_range (build_zero_cst (TREE_TYPE (op)),
503 build_one_cst (TREE_TYPE (op)));
506 /* Extract value range information for VAR when (OP COND_CODE LIMIT) is
507 true and store it in *VR_P. */
509 void
510 vr_values::extract_range_for_var_from_comparison_expr (tree var,
511 enum tree_code cond_code,
512 tree op, tree limit,
513 value_range_equiv *vr_p)
515 tree min, max, type;
516 const value_range_equiv *limit_vr;
517 type = TREE_TYPE (var);
519 /* For pointer arithmetic, we only keep track of pointer equality
520 and inequality. If we arrive here with unfolded conditions like
521 _1 > _1 do not derive anything. */
522 if ((POINTER_TYPE_P (type) && cond_code != NE_EXPR && cond_code != EQ_EXPR)
523 || limit == var)
525 vr_p->set_varying (type);
526 return;
529 /* If LIMIT is another SSA name and LIMIT has a range of its own,
530 try to use LIMIT's range to avoid creating symbolic ranges
531 unnecessarily. */
532 limit_vr = (TREE_CODE (limit) == SSA_NAME) ? get_value_range (limit) : NULL;
534 /* LIMIT's range is only interesting if it has any useful information. */
535 if (! limit_vr
536 || limit_vr->undefined_p ()
537 || limit_vr->varying_p ()
538 || (limit_vr->symbolic_p ()
539 && ! (limit_vr->kind () == VR_RANGE
540 && (limit_vr->min () == limit_vr->max ()
541 || operand_equal_p (limit_vr->min (),
542 limit_vr->max (), 0)))))
543 limit_vr = NULL;
545 /* Initially, the new range has the same set of equivalences of
546 VAR's range. This will be revised before returning the final
547 value. Since assertions may be chained via mutually exclusive
548 predicates, we will need to trim the set of equivalences before
549 we are done. */
550 gcc_assert (vr_p->equiv () == NULL);
551 vr_p->equiv_add (var, get_value_range (var), &vrp_equiv_obstack);
553 /* Extract a new range based on the asserted comparison for VAR and
554 LIMIT's value range. Notice that if LIMIT has an anti-range, we
555 will only use it for equality comparisons (EQ_EXPR). For any
556 other kind of assertion, we cannot derive a range from LIMIT's
557 anti-range that can be used to describe the new range. For
558 instance, ASSERT_EXPR <x_2, x_2 <= b_4>. If b_4 is ~[2, 10],
559 then b_4 takes on the ranges [-INF, 1] and [11, +INF]. There is
560 no single range for x_2 that could describe LE_EXPR, so we might
561 as well build the range [b_4, +INF] for it.
562 One special case we handle is extracting a range from a
563 range test encoded as (unsigned)var + CST <= limit. */
564 if (TREE_CODE (op) == NOP_EXPR
565 || TREE_CODE (op) == PLUS_EXPR)
567 if (TREE_CODE (op) == PLUS_EXPR)
569 min = fold_build1 (NEGATE_EXPR, TREE_TYPE (TREE_OPERAND (op, 1)),
570 TREE_OPERAND (op, 1));
571 max = int_const_binop (PLUS_EXPR, limit, min);
572 op = TREE_OPERAND (op, 0);
574 else
576 min = build_int_cst (TREE_TYPE (var), 0);
577 max = limit;
580 /* Make sure to not set TREE_OVERFLOW on the final type
581 conversion. We are willingly interpreting large positive
582 unsigned values as negative signed values here. */
583 min = force_fit_type (TREE_TYPE (var), wi::to_widest (min), 0, false);
584 max = force_fit_type (TREE_TYPE (var), wi::to_widest (max), 0, false);
586 /* We can transform a max, min range to an anti-range or
587 vice-versa. Use set_and_canonicalize which does this for
588 us. */
589 if (cond_code == LE_EXPR)
590 vr_p->set (min, max, vr_p->equiv ());
591 else if (cond_code == GT_EXPR)
592 vr_p->set (min, max, vr_p->equiv (), VR_ANTI_RANGE);
593 else
594 gcc_unreachable ();
596 else if (cond_code == EQ_EXPR)
598 enum value_range_kind range_kind;
600 if (limit_vr)
602 range_kind = limit_vr->kind ();
603 min = limit_vr->min ();
604 max = limit_vr->max ();
606 else
608 range_kind = VR_RANGE;
609 min = limit;
610 max = limit;
613 vr_p->update (min, max, range_kind);
615 /* When asserting the equality VAR == LIMIT and LIMIT is another
616 SSA name, the new range will also inherit the equivalence set
617 from LIMIT. */
618 if (TREE_CODE (limit) == SSA_NAME)
619 vr_p->equiv_add (limit, get_value_range (limit), &vrp_equiv_obstack);
621 else if (cond_code == NE_EXPR)
623 /* As described above, when LIMIT's range is an anti-range and
624 this assertion is an inequality (NE_EXPR), then we cannot
625 derive anything from the anti-range. For instance, if
626 LIMIT's range was ~[0, 0], the assertion 'VAR != LIMIT' does
627 not imply that VAR's range is [0, 0]. So, in the case of
628 anti-ranges, we just assert the inequality using LIMIT and
629 not its anti-range.
631 If LIMIT_VR is a range, we can only use it to build a new
632 anti-range if LIMIT_VR is a single-valued range. For
633 instance, if LIMIT_VR is [0, 1], the predicate
634 VAR != [0, 1] does not mean that VAR's range is ~[0, 1].
635 Rather, it means that for value 0 VAR should be ~[0, 0]
636 and for value 1, VAR should be ~[1, 1]. We cannot
637 represent these ranges.
639 The only situation in which we can build a valid
640 anti-range is when LIMIT_VR is a single-valued range
641 (i.e., LIMIT_VR->MIN == LIMIT_VR->MAX). In that case,
642 build the anti-range ~[LIMIT_VR->MIN, LIMIT_VR->MAX]. */
643 if (limit_vr
644 && limit_vr->kind () == VR_RANGE
645 && compare_values (limit_vr->min (), limit_vr->max ()) == 0)
647 min = limit_vr->min ();
648 max = limit_vr->max ();
650 else
652 /* In any other case, we cannot use LIMIT's range to build a
653 valid anti-range. */
654 min = max = limit;
657 /* If MIN and MAX cover the whole range for their type, then
658 just use the original LIMIT. */
659 if (INTEGRAL_TYPE_P (type)
660 && vrp_val_is_min (min)
661 && vrp_val_is_max (max))
662 min = max = limit;
664 vr_p->set (min, max, vr_p->equiv (), VR_ANTI_RANGE);
666 else if (cond_code == LE_EXPR || cond_code == LT_EXPR)
668 min = TYPE_MIN_VALUE (type);
670 if (limit_vr == NULL || limit_vr->kind () == VR_ANTI_RANGE)
671 max = limit;
672 else
674 /* If LIMIT_VR is of the form [N1, N2], we need to build the
675 range [MIN, N2] for LE_EXPR and [MIN, N2 - 1] for
676 LT_EXPR. */
677 max = limit_vr->max ();
680 /* If the maximum value forces us to be out of bounds, simply punt.
681 It would be pointless to try and do anything more since this
682 all should be optimized away above us. */
683 if (cond_code == LT_EXPR
684 && compare_values (max, min) == 0)
685 vr_p->set_varying (TREE_TYPE (min));
686 else
688 /* For LT_EXPR, we create the range [MIN, MAX - 1]. */
689 if (cond_code == LT_EXPR)
691 if (TYPE_PRECISION (TREE_TYPE (max)) == 1
692 && !TYPE_UNSIGNED (TREE_TYPE (max)))
693 max = fold_build2 (PLUS_EXPR, TREE_TYPE (max), max,
694 build_int_cst (TREE_TYPE (max), -1));
695 else
696 max = fold_build2 (MINUS_EXPR, TREE_TYPE (max), max,
697 build_int_cst (TREE_TYPE (max), 1));
698 /* Signal to compare_values_warnv this expr doesn't overflow. */
699 if (EXPR_P (max))
700 TREE_NO_WARNING (max) = 1;
703 vr_p->update (min, max);
706 else if (cond_code == GE_EXPR || cond_code == GT_EXPR)
708 max = TYPE_MAX_VALUE (type);
710 if (limit_vr == NULL || limit_vr->kind () == VR_ANTI_RANGE)
711 min = limit;
712 else
714 /* If LIMIT_VR is of the form [N1, N2], we need to build the
715 range [N1, MAX] for GE_EXPR and [N1 + 1, MAX] for
716 GT_EXPR. */
717 min = limit_vr->min ();
720 /* If the minimum value forces us to be out of bounds, simply punt.
721 It would be pointless to try and do anything more since this
722 all should be optimized away above us. */
723 if (cond_code == GT_EXPR
724 && compare_values (min, max) == 0)
725 vr_p->set_varying (TREE_TYPE (min));
726 else
728 /* For GT_EXPR, we create the range [MIN + 1, MAX]. */
729 if (cond_code == GT_EXPR)
731 if (TYPE_PRECISION (TREE_TYPE (min)) == 1
732 && !TYPE_UNSIGNED (TREE_TYPE (min)))
733 min = fold_build2 (MINUS_EXPR, TREE_TYPE (min), min,
734 build_int_cst (TREE_TYPE (min), -1));
735 else
736 min = fold_build2 (PLUS_EXPR, TREE_TYPE (min), min,
737 build_int_cst (TREE_TYPE (min), 1));
738 /* Signal to compare_values_warnv this expr doesn't overflow. */
739 if (EXPR_P (min))
740 TREE_NO_WARNING (min) = 1;
743 vr_p->update (min, max);
746 else
747 gcc_unreachable ();
749 /* Finally intersect the new range with what we already know about var. */
750 vr_p->intersect (get_value_range (var));
753 /* Extract value range information from an ASSERT_EXPR EXPR and store
754 it in *VR_P. */
756 void
757 vr_values::extract_range_from_assert (value_range_equiv *vr_p, tree expr)
759 tree var = ASSERT_EXPR_VAR (expr);
760 tree cond = ASSERT_EXPR_COND (expr);
761 tree limit, op;
762 enum tree_code cond_code;
763 gcc_assert (COMPARISON_CLASS_P (cond));
765 /* Find VAR in the ASSERT_EXPR conditional. */
766 if (var == TREE_OPERAND (cond, 0)
767 || TREE_CODE (TREE_OPERAND (cond, 0)) == PLUS_EXPR
768 || TREE_CODE (TREE_OPERAND (cond, 0)) == NOP_EXPR)
770 /* If the predicate is of the form VAR COMP LIMIT, then we just
771 take LIMIT from the RHS and use the same comparison code. */
772 cond_code = TREE_CODE (cond);
773 limit = TREE_OPERAND (cond, 1);
774 op = TREE_OPERAND (cond, 0);
776 else
778 /* If the predicate is of the form LIMIT COMP VAR, then we need
779 to flip around the comparison code to create the proper range
780 for VAR. */
781 cond_code = swap_tree_comparison (TREE_CODE (cond));
782 limit = TREE_OPERAND (cond, 0);
783 op = TREE_OPERAND (cond, 1);
785 extract_range_for_var_from_comparison_expr (var, cond_code, op,
786 limit, vr_p);
789 /* Extract range information from SSA name VAR and store it in VR. If
790 VAR has an interesting range, use it. Otherwise, create the
791 range [VAR, VAR] and return it. This is useful in situations where
792 we may have conditionals testing values of VARYING names. For
793 instance,
795 x_3 = y_5;
796 if (x_3 > y_5)
799 Even if y_5 is deemed VARYING, we can determine that x_3 > y_5 is
800 always false. */
802 void
803 vr_values::extract_range_from_ssa_name (value_range_equiv *vr, tree var)
805 const value_range_equiv *var_vr = get_value_range (var);
807 if (!var_vr->varying_p ())
808 vr->deep_copy (var_vr);
809 else
810 vr->set (var);
812 if (!vr->undefined_p ())
813 vr->equiv_add (var, get_value_range (var), &vrp_equiv_obstack);
816 /* Extract range information from a binary expression OP0 CODE OP1 based on
817 the ranges of each of its operands with resulting type EXPR_TYPE.
818 The resulting range is stored in *VR. */
820 void
821 vr_values::extract_range_from_binary_expr (value_range_equiv *vr,
822 enum tree_code code,
823 tree expr_type, tree op0, tree op1)
825 /* Get value ranges for each operand. For constant operands, create
826 a new value range with the operand to simplify processing. */
827 value_range vr0, vr1;
828 if (TREE_CODE (op0) == SSA_NAME)
829 vr0 = *(get_value_range (op0));
830 else if (is_gimple_min_invariant (op0))
831 vr0.set (op0);
832 else
833 vr0.set_varying (TREE_TYPE (op0));
835 if (TREE_CODE (op1) == SSA_NAME)
836 vr1 = *(get_value_range (op1));
837 else if (is_gimple_min_invariant (op1))
838 vr1.set (op1);
839 else
840 vr1.set_varying (TREE_TYPE (op1));
842 /* If one argument is varying, we can sometimes still deduce a
843 range for the output: any + [3, +INF] is in [MIN+3, +INF]. */
844 if (INTEGRAL_TYPE_P (TREE_TYPE (op0))
845 && TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (op0)))
847 if (vr0.varying_p () && !vr1.varying_p ())
848 vr0 = value_range (vrp_val_min (expr_type), vrp_val_max (expr_type));
849 else if (vr1.varying_p () && !vr0.varying_p ())
850 vr1 = value_range (vrp_val_min (expr_type), vrp_val_max (expr_type));
853 range_fold_binary_expr (vr, code, expr_type, &vr0, &vr1);
855 /* Set value_range for n in following sequence:
856 def = __builtin_memchr (arg, 0, sz)
857 n = def - arg
858 Here the range for n can be set to [0, PTRDIFF_MAX - 1]. */
860 if (vr->varying_p ()
861 && code == POINTER_DIFF_EXPR
862 && TREE_CODE (op0) == SSA_NAME
863 && TREE_CODE (op1) == SSA_NAME)
865 tree op0_ptype = TREE_TYPE (TREE_TYPE (op0));
866 tree op1_ptype = TREE_TYPE (TREE_TYPE (op1));
867 gcall *call_stmt = NULL;
869 if (TYPE_MODE (op0_ptype) == TYPE_MODE (char_type_node)
870 && TYPE_PRECISION (op0_ptype) == TYPE_PRECISION (char_type_node)
871 && TYPE_MODE (op1_ptype) == TYPE_MODE (char_type_node)
872 && TYPE_PRECISION (op1_ptype) == TYPE_PRECISION (char_type_node)
873 && (call_stmt = dyn_cast<gcall *>(SSA_NAME_DEF_STMT (op0)))
874 && gimple_call_builtin_p (call_stmt, BUILT_IN_MEMCHR)
875 && operand_equal_p (op0, gimple_call_lhs (call_stmt), 0)
876 && operand_equal_p (op1, gimple_call_arg (call_stmt, 0), 0)
877 && integer_zerop (gimple_call_arg (call_stmt, 1)))
879 tree max = vrp_val_max (ptrdiff_type_node);
880 wide_int wmax = wi::to_wide (max, TYPE_PRECISION (TREE_TYPE (max)));
881 tree range_min = build_zero_cst (expr_type);
882 tree range_max = wide_int_to_tree (expr_type, wmax - 1);
883 vr->set (range_min, range_max);
884 return;
888 /* Try harder for PLUS and MINUS if the range of one operand is symbolic
889 and based on the other operand, for example if it was deduced from a
890 symbolic comparison. When a bound of the range of the first operand
891 is invariant, we set the corresponding bound of the new range to INF
892 in order to avoid recursing on the range of the second operand. */
893 if (vr->varying_p ()
894 && (code == PLUS_EXPR || code == MINUS_EXPR)
895 && TREE_CODE (op1) == SSA_NAME
896 && vr0.kind () == VR_RANGE
897 && symbolic_range_based_on_p (&vr0, op1))
899 const bool minus_p = (code == MINUS_EXPR);
900 value_range n_vr1;
902 /* Try with VR0 and [-INF, OP1]. */
903 if (is_gimple_min_invariant (minus_p ? vr0.max () : vr0.min ()))
904 n_vr1.set (vrp_val_min (expr_type), op1);
906 /* Try with VR0 and [OP1, +INF]. */
907 else if (is_gimple_min_invariant (minus_p ? vr0.min () : vr0.max ()))
908 n_vr1.set (op1, vrp_val_max (expr_type));
910 /* Try with VR0 and [OP1, OP1]. */
911 else
912 n_vr1.set (op1, op1);
914 range_fold_binary_expr (vr, code, expr_type, &vr0, &n_vr1);
917 if (vr->varying_p ()
918 && (code == PLUS_EXPR || code == MINUS_EXPR)
919 && TREE_CODE (op0) == SSA_NAME
920 && vr1.kind () == VR_RANGE
921 && symbolic_range_based_on_p (&vr1, op0))
923 const bool minus_p = (code == MINUS_EXPR);
924 value_range n_vr0;
926 /* Try with [-INF, OP0] and VR1. */
927 if (is_gimple_min_invariant (minus_p ? vr1.max () : vr1.min ()))
928 n_vr0.set (vrp_val_min (expr_type), op0);
930 /* Try with [OP0, +INF] and VR1. */
931 else if (is_gimple_min_invariant (minus_p ? vr1.min (): vr1.max ()))
932 n_vr0.set (op0, vrp_val_max (expr_type));
934 /* Try with [OP0, OP0] and VR1. */
935 else
936 n_vr0.set (op0);
938 range_fold_binary_expr (vr, code, expr_type, &n_vr0, &vr1);
941 /* If we didn't derive a range for MINUS_EXPR, and
942 op1's range is ~[op0,op0] or vice-versa, then we
943 can derive a non-null range. This happens often for
944 pointer subtraction. */
945 if (vr->varying_p ()
946 && (code == MINUS_EXPR || code == POINTER_DIFF_EXPR)
947 && TREE_CODE (op0) == SSA_NAME
948 && ((vr0.kind () == VR_ANTI_RANGE
949 && vr0.min () == op1
950 && vr0.min () == vr0.max ())
951 || (vr1.kind () == VR_ANTI_RANGE
952 && vr1.min () == op0
953 && vr1.min () == vr1.max ())))
955 vr->set_nonzero (expr_type);
956 vr->equiv_clear ();
960 /* Extract range information from a unary expression CODE OP0 based on
961 the range of its operand with resulting type TYPE.
962 The resulting range is stored in *VR. */
964 void
965 vr_values::extract_range_from_unary_expr (value_range_equiv *vr,
966 enum tree_code code,
967 tree type, tree op0)
969 value_range vr0;
971 /* Get value ranges for the operand. For constant operands, create
972 a new value range with the operand to simplify processing. */
973 if (TREE_CODE (op0) == SSA_NAME)
974 vr0 = *(get_value_range (op0));
975 else if (is_gimple_min_invariant (op0))
976 vr0.set (op0);
977 else
978 vr0.set_varying (type);
980 range_fold_unary_expr (vr, code, type, &vr0, TREE_TYPE (op0));
984 /* Extract range information from a conditional expression STMT based on
985 the ranges of each of its operands and the expression code. */
987 void
988 vr_values::extract_range_from_cond_expr (value_range_equiv *vr, gassign *stmt)
990 /* Get value ranges for each operand. For constant operands, create
991 a new value range with the operand to simplify processing. */
992 tree op0 = gimple_assign_rhs2 (stmt);
993 value_range_equiv tem0;
994 const value_range_equiv *vr0 = &tem0;
995 if (TREE_CODE (op0) == SSA_NAME)
996 vr0 = get_value_range (op0);
997 else if (is_gimple_min_invariant (op0))
998 tem0.set (op0);
999 else
1000 tem0.set_varying (TREE_TYPE (op0));
1002 tree op1 = gimple_assign_rhs3 (stmt);
1003 value_range_equiv tem1;
1004 const value_range_equiv *vr1 = &tem1;
1005 if (TREE_CODE (op1) == SSA_NAME)
1006 vr1 = get_value_range (op1);
1007 else if (is_gimple_min_invariant (op1))
1008 tem1.set (op1);
1009 else
1010 tem1.set_varying (TREE_TYPE (op1));
1012 /* The resulting value range is the union of the operand ranges */
1013 vr->deep_copy (vr0);
1014 vr->union_ (vr1);
1018 /* Extract range information from a comparison expression EXPR based
1019 on the range of its operand and the expression code. */
1021 void
1022 vr_values::extract_range_from_comparison (value_range_equiv *vr,
1023 gimple *stmt)
1025 enum tree_code code = gimple_assign_rhs_code (stmt);
1026 tree type = gimple_expr_type (stmt);
1027 tree op0 = gimple_assign_rhs1 (stmt);
1028 tree op1 = gimple_assign_rhs2 (stmt);
1029 bool sop;
1030 tree val
1031 = simplifier.vrp_evaluate_conditional_warnv_with_ops (stmt, code, op0, op1,
1032 false, &sop, NULL);
1033 if (val)
1035 /* Since this expression was found on the RHS of an assignment,
1036 its type may be different from _Bool. Convert VAL to EXPR's
1037 type. */
1038 val = fold_convert (type, val);
1039 if (is_gimple_min_invariant (val))
1040 vr->set (val);
1041 else
1042 vr->update (val, val);
1044 else
1045 /* The result of a comparison is always true or false. */
1046 set_value_range_to_truthvalue (vr, type);
1049 /* Helper function for simplify_internal_call_using_ranges and
1050 extract_range_basic. Return true if OP0 SUBCODE OP1 for
1051 SUBCODE {PLUS,MINUS,MULT}_EXPR is known to never overflow or
1052 always overflow. Set *OVF to true if it is known to always
1053 overflow. */
1055 static bool
1056 check_for_binary_op_overflow (range_query *query,
1057 enum tree_code subcode, tree type,
1058 tree op0, tree op1, bool *ovf)
1060 value_range vr0, vr1;
1061 if (TREE_CODE (op0) == SSA_NAME)
1062 vr0 = *query->get_value_range (op0);
1063 else if (TREE_CODE (op0) == INTEGER_CST)
1064 vr0.set (op0);
1065 else
1066 vr0.set_varying (TREE_TYPE (op0));
1068 if (TREE_CODE (op1) == SSA_NAME)
1069 vr1 = *query->get_value_range (op1);
1070 else if (TREE_CODE (op1) == INTEGER_CST)
1071 vr1.set (op1);
1072 else
1073 vr1.set_varying (TREE_TYPE (op1));
1075 tree vr0min = vr0.min (), vr0max = vr0.max ();
1076 tree vr1min = vr1.min (), vr1max = vr1.max ();
1077 if (!range_int_cst_p (&vr0)
1078 || TREE_OVERFLOW (vr0min)
1079 || TREE_OVERFLOW (vr0max))
1081 vr0min = vrp_val_min (TREE_TYPE (op0));
1082 vr0max = vrp_val_max (TREE_TYPE (op0));
1084 if (!range_int_cst_p (&vr1)
1085 || TREE_OVERFLOW (vr1min)
1086 || TREE_OVERFLOW (vr1max))
1088 vr1min = vrp_val_min (TREE_TYPE (op1));
1089 vr1max = vrp_val_max (TREE_TYPE (op1));
1091 *ovf = arith_overflowed_p (subcode, type, vr0min,
1092 subcode == MINUS_EXPR ? vr1max : vr1min);
1093 if (arith_overflowed_p (subcode, type, vr0max,
1094 subcode == MINUS_EXPR ? vr1min : vr1max) != *ovf)
1095 return false;
1096 if (subcode == MULT_EXPR)
1098 if (arith_overflowed_p (subcode, type, vr0min, vr1max) != *ovf
1099 || arith_overflowed_p (subcode, type, vr0max, vr1min) != *ovf)
1100 return false;
1102 if (*ovf)
1104 /* So far we found that there is an overflow on the boundaries.
1105 That doesn't prove that there is an overflow even for all values
1106 in between the boundaries. For that compute widest_int range
1107 of the result and see if it doesn't overlap the range of
1108 type. */
1109 widest_int wmin, wmax;
1110 widest_int w[4];
1111 int i;
1112 w[0] = wi::to_widest (vr0min);
1113 w[1] = wi::to_widest (vr0max);
1114 w[2] = wi::to_widest (vr1min);
1115 w[3] = wi::to_widest (vr1max);
1116 for (i = 0; i < 4; i++)
1118 widest_int wt;
1119 switch (subcode)
1121 case PLUS_EXPR:
1122 wt = wi::add (w[i & 1], w[2 + (i & 2) / 2]);
1123 break;
1124 case MINUS_EXPR:
1125 wt = wi::sub (w[i & 1], w[2 + (i & 2) / 2]);
1126 break;
1127 case MULT_EXPR:
1128 wt = wi::mul (w[i & 1], w[2 + (i & 2) / 2]);
1129 break;
1130 default:
1131 gcc_unreachable ();
1133 if (i == 0)
1135 wmin = wt;
1136 wmax = wt;
1138 else
1140 wmin = wi::smin (wmin, wt);
1141 wmax = wi::smax (wmax, wt);
1144 /* The result of op0 CODE op1 is known to be in range
1145 [wmin, wmax]. */
1146 widest_int wtmin = wi::to_widest (vrp_val_min (type));
1147 widest_int wtmax = wi::to_widest (vrp_val_max (type));
1148 /* If all values in [wmin, wmax] are smaller than
1149 [wtmin, wtmax] or all are larger than [wtmin, wtmax],
1150 the arithmetic operation will always overflow. */
1151 if (wmax < wtmin || wmin > wtmax)
1152 return true;
1153 return false;
1155 return true;
1158 /* Derive a range from a builtin. Set range in VR and return TRUE if
1159 successful. */
1161 bool
1162 vr_values::extract_range_from_ubsan_builtin (value_range_equiv *vr, gimple *stmt)
1164 gcc_assert (is_gimple_call (stmt));
1165 tree type = gimple_expr_type (stmt);
1166 enum tree_code subcode = ERROR_MARK;
1167 combined_fn cfn = gimple_call_combined_fn (stmt);
1168 scalar_int_mode mode;
1170 switch (cfn)
1172 case CFN_UBSAN_CHECK_ADD:
1173 subcode = PLUS_EXPR;
1174 break;
1175 case CFN_UBSAN_CHECK_SUB:
1176 subcode = MINUS_EXPR;
1177 break;
1178 case CFN_UBSAN_CHECK_MUL:
1179 subcode = MULT_EXPR;
1180 break;
1181 default:
1182 break;
1184 if (subcode != ERROR_MARK)
1186 bool saved_flag_wrapv = flag_wrapv;
1187 /* Pretend the arithmetics is wrapping. If there is
1188 any overflow, we'll complain, but will actually do
1189 wrapping operation. */
1190 flag_wrapv = 1;
1191 extract_range_from_binary_expr (vr, subcode, type,
1192 gimple_call_arg (stmt, 0),
1193 gimple_call_arg (stmt, 1));
1194 flag_wrapv = saved_flag_wrapv;
1196 /* If for both arguments vrp_valueize returned non-NULL,
1197 this should have been already folded and if not, it
1198 wasn't folded because of overflow. Avoid removing the
1199 UBSAN_CHECK_* calls in that case. */
1200 if (vr->kind () == VR_RANGE
1201 && (vr->min () == vr->max ()
1202 || operand_equal_p (vr->min (), vr->max (), 0)))
1203 vr->set_varying (vr->type ());
1205 return !vr->varying_p ();
1207 return false;
1210 /* Try to derive a nonnegative or nonzero range out of STMT relying
1211 primarily on generic routines in fold in conjunction with range data.
1212 Store the result in *VR */
1214 void
1215 vr_values::extract_range_basic (value_range_equiv *vr, gimple *stmt)
1217 bool sop;
1218 tree type = gimple_expr_type (stmt);
1220 if (is_gimple_call (stmt))
1222 combined_fn cfn = gimple_call_combined_fn (stmt);
1223 switch (cfn)
1225 case CFN_UBSAN_CHECK_ADD:
1226 case CFN_UBSAN_CHECK_SUB:
1227 case CFN_UBSAN_CHECK_MUL:
1228 if (extract_range_from_ubsan_builtin (vr, stmt))
1229 return;
1230 break;
1231 default:
1232 if (range_of_builtin_call (*this, *vr, as_a<gcall *> (stmt)))
1234 /* The original code nuked equivalences every time a
1235 range was found, so do the same here. */
1236 vr->equiv_clear ();
1237 return;
1239 break;
1242 /* Handle extraction of the two results (result of arithmetics and
1243 a flag whether arithmetics overflowed) from {ADD,SUB,MUL}_OVERFLOW
1244 internal function. Similarly from ATOMIC_COMPARE_EXCHANGE. */
1245 else if (is_gimple_assign (stmt)
1246 && (gimple_assign_rhs_code (stmt) == REALPART_EXPR
1247 || gimple_assign_rhs_code (stmt) == IMAGPART_EXPR)
1248 && INTEGRAL_TYPE_P (type))
1250 enum tree_code code = gimple_assign_rhs_code (stmt);
1251 tree op = gimple_assign_rhs1 (stmt);
1252 if (TREE_CODE (op) == code && TREE_CODE (TREE_OPERAND (op, 0)) == SSA_NAME)
1254 gimple *g = SSA_NAME_DEF_STMT (TREE_OPERAND (op, 0));
1255 if (is_gimple_call (g) && gimple_call_internal_p (g))
1257 enum tree_code subcode = ERROR_MARK;
1258 switch (gimple_call_internal_fn (g))
1260 case IFN_ADD_OVERFLOW:
1261 subcode = PLUS_EXPR;
1262 break;
1263 case IFN_SUB_OVERFLOW:
1264 subcode = MINUS_EXPR;
1265 break;
1266 case IFN_MUL_OVERFLOW:
1267 subcode = MULT_EXPR;
1268 break;
1269 case IFN_ATOMIC_COMPARE_EXCHANGE:
1270 if (code == IMAGPART_EXPR)
1272 /* This is the boolean return value whether compare and
1273 exchange changed anything or not. */
1274 vr->set (build_int_cst (type, 0),
1275 build_int_cst (type, 1));
1276 return;
1278 break;
1279 default:
1280 break;
1282 if (subcode != ERROR_MARK)
1284 tree op0 = gimple_call_arg (g, 0);
1285 tree op1 = gimple_call_arg (g, 1);
1286 if (code == IMAGPART_EXPR)
1288 bool ovf = false;
1289 if (check_for_binary_op_overflow (this, subcode, type,
1290 op0, op1, &ovf))
1291 vr->set (build_int_cst (type, ovf));
1292 else if (TYPE_PRECISION (type) == 1
1293 && !TYPE_UNSIGNED (type))
1294 vr->set_varying (type);
1295 else
1296 vr->set (build_int_cst (type, 0),
1297 build_int_cst (type, 1));
1299 else if (types_compatible_p (type, TREE_TYPE (op0))
1300 && types_compatible_p (type, TREE_TYPE (op1)))
1302 bool saved_flag_wrapv = flag_wrapv;
1303 /* Pretend the arithmetics is wrapping. If there is
1304 any overflow, IMAGPART_EXPR will be set. */
1305 flag_wrapv = 1;
1306 extract_range_from_binary_expr (vr, subcode, type,
1307 op0, op1);
1308 flag_wrapv = saved_flag_wrapv;
1310 else
1312 value_range_equiv vr0, vr1;
1313 bool saved_flag_wrapv = flag_wrapv;
1314 /* Pretend the arithmetics is wrapping. If there is
1315 any overflow, IMAGPART_EXPR will be set. */
1316 flag_wrapv = 1;
1317 extract_range_from_unary_expr (&vr0, NOP_EXPR,
1318 type, op0);
1319 extract_range_from_unary_expr (&vr1, NOP_EXPR,
1320 type, op1);
1321 range_fold_binary_expr (vr, subcode, type, &vr0, &vr1);
1322 flag_wrapv = saved_flag_wrapv;
1324 return;
1329 if (INTEGRAL_TYPE_P (type)
1330 && gimple_stmt_nonnegative_warnv_p (stmt, &sop))
1331 set_value_range_to_nonnegative (vr, type);
1332 else if (vrp_stmt_computes_nonzero (stmt))
1334 vr->set_nonzero (type);
1335 vr->equiv_clear ();
1337 else
1338 vr->set_varying (type);
1342 /* Try to compute a useful range out of assignment STMT and store it
1343 in *VR. */
1345 void
1346 vr_values::extract_range_from_assignment (value_range_equiv *vr, gassign *stmt)
1348 enum tree_code code = gimple_assign_rhs_code (stmt);
1350 if (code == ASSERT_EXPR)
1351 extract_range_from_assert (vr, gimple_assign_rhs1 (stmt));
1352 else if (code == SSA_NAME)
1353 extract_range_from_ssa_name (vr, gimple_assign_rhs1 (stmt));
1354 else if (TREE_CODE_CLASS (code) == tcc_binary)
1355 extract_range_from_binary_expr (vr, gimple_assign_rhs_code (stmt),
1356 gimple_expr_type (stmt),
1357 gimple_assign_rhs1 (stmt),
1358 gimple_assign_rhs2 (stmt));
1359 else if (TREE_CODE_CLASS (code) == tcc_unary)
1360 extract_range_from_unary_expr (vr, gimple_assign_rhs_code (stmt),
1361 gimple_expr_type (stmt),
1362 gimple_assign_rhs1 (stmt));
1363 else if (code == COND_EXPR)
1364 extract_range_from_cond_expr (vr, stmt);
1365 else if (TREE_CODE_CLASS (code) == tcc_comparison)
1366 extract_range_from_comparison (vr, stmt);
1367 else if (get_gimple_rhs_class (code) == GIMPLE_SINGLE_RHS
1368 && is_gimple_min_invariant (gimple_assign_rhs1 (stmt)))
1369 vr->set (gimple_assign_rhs1 (stmt));
1370 else
1371 vr->set_varying (TREE_TYPE (gimple_assign_lhs (stmt)));
1373 if (vr->varying_p ())
1374 extract_range_basic (vr, stmt);
1377 /* Given two numeric value ranges VR0, VR1 and a comparison code COMP:
1379 - Return BOOLEAN_TRUE_NODE if VR0 COMP VR1 always returns true for
1380 all the values in the ranges.
1382 - Return BOOLEAN_FALSE_NODE if the comparison always returns false.
1384 - Return NULL_TREE if it is not always possible to determine the
1385 value of the comparison.
1387 Also set *STRICT_OVERFLOW_P to indicate whether comparision evaluation
1388 assumed signed overflow is undefined. */
1391 static tree
1392 compare_ranges (enum tree_code comp, const value_range_equiv *vr0,
1393 const value_range_equiv *vr1, bool *strict_overflow_p)
1395 /* VARYING or UNDEFINED ranges cannot be compared. */
1396 if (vr0->varying_p ()
1397 || vr0->undefined_p ()
1398 || vr1->varying_p ()
1399 || vr1->undefined_p ())
1400 return NULL_TREE;
1402 /* Anti-ranges need to be handled separately. */
1403 if (vr0->kind () == VR_ANTI_RANGE || vr1->kind () == VR_ANTI_RANGE)
1405 /* If both are anti-ranges, then we cannot compute any
1406 comparison. */
1407 if (vr0->kind () == VR_ANTI_RANGE && vr1->kind () == VR_ANTI_RANGE)
1408 return NULL_TREE;
1410 /* These comparisons are never statically computable. */
1411 if (comp == GT_EXPR
1412 || comp == GE_EXPR
1413 || comp == LT_EXPR
1414 || comp == LE_EXPR)
1415 return NULL_TREE;
1417 /* Equality can be computed only between a range and an
1418 anti-range. ~[VAL1, VAL2] == [VAL1, VAL2] is always false. */
1419 if (vr0->kind () == VR_RANGE)
1420 /* To simplify processing, make VR0 the anti-range. */
1421 std::swap (vr0, vr1);
1423 gcc_assert (comp == NE_EXPR || comp == EQ_EXPR);
1425 if (compare_values_warnv (vr0->min (), vr1->min (), strict_overflow_p) == 0
1426 && compare_values_warnv (vr0->max (), vr1->max (), strict_overflow_p) == 0)
1427 return (comp == NE_EXPR) ? boolean_true_node : boolean_false_node;
1429 return NULL_TREE;
1432 /* Simplify processing. If COMP is GT_EXPR or GE_EXPR, switch the
1433 operands around and change the comparison code. */
1434 if (comp == GT_EXPR || comp == GE_EXPR)
1436 comp = (comp == GT_EXPR) ? LT_EXPR : LE_EXPR;
1437 std::swap (vr0, vr1);
1440 if (comp == EQ_EXPR)
1442 /* Equality may only be computed if both ranges represent
1443 exactly one value. */
1444 if (compare_values_warnv (vr0->min (), vr0->max (), strict_overflow_p) == 0
1445 && compare_values_warnv (vr1->min (), vr1->max (), strict_overflow_p) == 0)
1447 int cmp_min = compare_values_warnv (vr0->min (), vr1->min (),
1448 strict_overflow_p);
1449 int cmp_max = compare_values_warnv (vr0->max (), vr1->max (),
1450 strict_overflow_p);
1451 if (cmp_min == 0 && cmp_max == 0)
1452 return boolean_true_node;
1453 else if (cmp_min != -2 && cmp_max != -2)
1454 return boolean_false_node;
1456 /* If [V0_MIN, V1_MAX] < [V1_MIN, V1_MAX] then V0 != V1. */
1457 else if (compare_values_warnv (vr0->min (), vr1->max (),
1458 strict_overflow_p) == 1
1459 || compare_values_warnv (vr1->min (), vr0->max (),
1460 strict_overflow_p) == 1)
1461 return boolean_false_node;
1463 return NULL_TREE;
1465 else if (comp == NE_EXPR)
1467 int cmp1, cmp2;
1469 /* If VR0 is completely to the left or completely to the right
1470 of VR1, they are always different. Notice that we need to
1471 make sure that both comparisons yield similar results to
1472 avoid comparing values that cannot be compared at
1473 compile-time. */
1474 cmp1 = compare_values_warnv (vr0->max (), vr1->min (), strict_overflow_p);
1475 cmp2 = compare_values_warnv (vr0->min (), vr1->max (), strict_overflow_p);
1476 if ((cmp1 == -1 && cmp2 == -1) || (cmp1 == 1 && cmp2 == 1))
1477 return boolean_true_node;
1479 /* If VR0 and VR1 represent a single value and are identical,
1480 return false. */
1481 else if (compare_values_warnv (vr0->min (), vr0->max (),
1482 strict_overflow_p) == 0
1483 && compare_values_warnv (vr1->min (), vr1->max (),
1484 strict_overflow_p) == 0
1485 && compare_values_warnv (vr0->min (), vr1->min (),
1486 strict_overflow_p) == 0
1487 && compare_values_warnv (vr0->max (), vr1->max (),
1488 strict_overflow_p) == 0)
1489 return boolean_false_node;
1491 /* Otherwise, they may or may not be different. */
1492 else
1493 return NULL_TREE;
1495 else if (comp == LT_EXPR || comp == LE_EXPR)
1497 int tst;
1499 /* If VR0 is to the left of VR1, return true. */
1500 tst = compare_values_warnv (vr0->max (), vr1->min (), strict_overflow_p);
1501 if ((comp == LT_EXPR && tst == -1)
1502 || (comp == LE_EXPR && (tst == -1 || tst == 0)))
1503 return boolean_true_node;
1505 /* If VR0 is to the right of VR1, return false. */
1506 tst = compare_values_warnv (vr0->min (), vr1->max (), strict_overflow_p);
1507 if ((comp == LT_EXPR && (tst == 0 || tst == 1))
1508 || (comp == LE_EXPR && tst == 1))
1509 return boolean_false_node;
1511 /* Otherwise, we don't know. */
1512 return NULL_TREE;
1515 gcc_unreachable ();
1518 /* Given a value range VR, a value VAL and a comparison code COMP, return
1519 BOOLEAN_TRUE_NODE if VR COMP VAL always returns true for all the
1520 values in VR. Return BOOLEAN_FALSE_NODE if the comparison
1521 always returns false. Return NULL_TREE if it is not always
1522 possible to determine the value of the comparison. Also set
1523 *STRICT_OVERFLOW_P to indicate whether comparision evaluation
1524 assumed signed overflow is undefined. */
1526 static tree
1527 compare_range_with_value (enum tree_code comp, const value_range *vr,
1528 tree val, bool *strict_overflow_p)
1530 if (vr->varying_p () || vr->undefined_p ())
1531 return NULL_TREE;
1533 /* Anti-ranges need to be handled separately. */
1534 if (vr->kind () == VR_ANTI_RANGE)
1536 /* For anti-ranges, the only predicates that we can compute at
1537 compile time are equality and inequality. */
1538 if (comp == GT_EXPR
1539 || comp == GE_EXPR
1540 || comp == LT_EXPR
1541 || comp == LE_EXPR)
1542 return NULL_TREE;
1544 /* ~[VAL_1, VAL_2] OP VAL is known if VAL_1 <= VAL <= VAL_2. */
1545 if (!vr->may_contain_p (val))
1546 return (comp == NE_EXPR) ? boolean_true_node : boolean_false_node;
1548 return NULL_TREE;
1551 if (comp == EQ_EXPR)
1553 /* EQ_EXPR may only be computed if VR represents exactly
1554 one value. */
1555 if (compare_values_warnv (vr->min (), vr->max (), strict_overflow_p) == 0)
1557 int cmp = compare_values_warnv (vr->min (), val, strict_overflow_p);
1558 if (cmp == 0)
1559 return boolean_true_node;
1560 else if (cmp == -1 || cmp == 1 || cmp == 2)
1561 return boolean_false_node;
1563 else if (compare_values_warnv (val, vr->min (), strict_overflow_p) == -1
1564 || compare_values_warnv (vr->max (), val, strict_overflow_p) == -1)
1565 return boolean_false_node;
1567 return NULL_TREE;
1569 else if (comp == NE_EXPR)
1571 /* If VAL is not inside VR, then they are always different. */
1572 if (compare_values_warnv (vr->max (), val, strict_overflow_p) == -1
1573 || compare_values_warnv (vr->min (), val, strict_overflow_p) == 1)
1574 return boolean_true_node;
1576 /* If VR represents exactly one value equal to VAL, then return
1577 false. */
1578 if (compare_values_warnv (vr->min (), vr->max (), strict_overflow_p) == 0
1579 && compare_values_warnv (vr->min (), val, strict_overflow_p) == 0)
1580 return boolean_false_node;
1582 /* Otherwise, they may or may not be different. */
1583 return NULL_TREE;
1585 else if (comp == LT_EXPR || comp == LE_EXPR)
1587 int tst;
1589 /* If VR is to the left of VAL, return true. */
1590 tst = compare_values_warnv (vr->max (), val, strict_overflow_p);
1591 if ((comp == LT_EXPR && tst == -1)
1592 || (comp == LE_EXPR && (tst == -1 || tst == 0)))
1593 return boolean_true_node;
1595 /* If VR is to the right of VAL, return false. */
1596 tst = compare_values_warnv (vr->min (), val, strict_overflow_p);
1597 if ((comp == LT_EXPR && (tst == 0 || tst == 1))
1598 || (comp == LE_EXPR && tst == 1))
1599 return boolean_false_node;
1601 /* Otherwise, we don't know. */
1602 return NULL_TREE;
1604 else if (comp == GT_EXPR || comp == GE_EXPR)
1606 int tst;
1608 /* If VR is to the right of VAL, return true. */
1609 tst = compare_values_warnv (vr->min (), val, strict_overflow_p);
1610 if ((comp == GT_EXPR && tst == 1)
1611 || (comp == GE_EXPR && (tst == 0 || tst == 1)))
1612 return boolean_true_node;
1614 /* If VR is to the left of VAL, return false. */
1615 tst = compare_values_warnv (vr->max (), val, strict_overflow_p);
1616 if ((comp == GT_EXPR && (tst == -1 || tst == 0))
1617 || (comp == GE_EXPR && tst == -1))
1618 return boolean_false_node;
1620 /* Otherwise, we don't know. */
1621 return NULL_TREE;
1624 gcc_unreachable ();
1627 /* Given a VAR in STMT within LOOP, determine the bounds of the
1628 variable and store it in MIN/MAX and return TRUE. If no bounds
1629 could be determined, return FALSE. */
1631 bool
1632 bounds_of_var_in_loop (tree *min, tree *max, range_query *query,
1633 class loop *loop, gimple *stmt, tree var)
1635 tree init, step, chrec, tmin, tmax, type = TREE_TYPE (var);
1636 enum ev_direction dir;
1638 chrec = instantiate_parameters (loop, analyze_scalar_evolution (loop, var));
1640 /* Like in PR19590, scev can return a constant function. */
1641 if (is_gimple_min_invariant (chrec))
1643 *min = *max = chrec;
1644 goto fix_overflow;
1647 if (TREE_CODE (chrec) != POLYNOMIAL_CHREC)
1648 return false;
1650 init = initial_condition_in_loop_num (chrec, loop->num);
1651 step = evolution_part_in_loop_num (chrec, loop->num);
1653 /* If INIT is an SSA with a singleton range, set INIT to said
1654 singleton, otherwise leave INIT alone. */
1655 if (TREE_CODE (init) == SSA_NAME)
1656 query->get_value_range (init, stmt)->singleton_p (&init);
1657 /* Likewise for step. */
1658 if (TREE_CODE (step) == SSA_NAME)
1659 query->get_value_range (step, stmt)->singleton_p (&step);
1661 /* If STEP is symbolic, we can't know whether INIT will be the
1662 minimum or maximum value in the range. Also, unless INIT is
1663 a simple expression, compare_values and possibly other functions
1664 in tree-vrp won't be able to handle it. */
1665 if (step == NULL_TREE
1666 || !is_gimple_min_invariant (step)
1667 || !valid_value_p (init))
1668 return false;
1670 dir = scev_direction (chrec);
1671 if (/* Do not adjust ranges if we do not know whether the iv increases
1672 or decreases, ... */
1673 dir == EV_DIR_UNKNOWN
1674 /* ... or if it may wrap. */
1675 || scev_probably_wraps_p (NULL_TREE, init, step, stmt,
1676 get_chrec_loop (chrec), true))
1677 return false;
1679 if (POINTER_TYPE_P (type) || !TYPE_MIN_VALUE (type))
1680 tmin = lower_bound_in_type (type, type);
1681 else
1682 tmin = TYPE_MIN_VALUE (type);
1683 if (POINTER_TYPE_P (type) || !TYPE_MAX_VALUE (type))
1684 tmax = upper_bound_in_type (type, type);
1685 else
1686 tmax = TYPE_MAX_VALUE (type);
1688 /* Try to use estimated number of iterations for the loop to constrain the
1689 final value in the evolution. */
1690 if (TREE_CODE (step) == INTEGER_CST
1691 && is_gimple_val (init)
1692 && (TREE_CODE (init) != SSA_NAME
1693 || query->get_value_range (init, stmt)->kind () == VR_RANGE))
1695 widest_int nit;
1697 /* We are only entering here for loop header PHI nodes, so using
1698 the number of latch executions is the correct thing to use. */
1699 if (max_loop_iterations (loop, &nit))
1701 signop sgn = TYPE_SIGN (TREE_TYPE (step));
1702 wi::overflow_type overflow;
1704 widest_int wtmp = wi::mul (wi::to_widest (step), nit, sgn,
1705 &overflow);
1706 /* If the multiplication overflowed we can't do a meaningful
1707 adjustment. Likewise if the result doesn't fit in the type
1708 of the induction variable. For a signed type we have to
1709 check whether the result has the expected signedness which
1710 is that of the step as number of iterations is unsigned. */
1711 if (!overflow
1712 && wi::fits_to_tree_p (wtmp, TREE_TYPE (init))
1713 && (sgn == UNSIGNED
1714 || wi::gts_p (wtmp, 0) == wi::gts_p (wi::to_wide (step), 0)))
1716 value_range maxvr, vr0, vr1;
1717 if (TREE_CODE (init) == SSA_NAME)
1718 vr0 = *(query->get_value_range (init, stmt));
1719 else if (is_gimple_min_invariant (init))
1720 vr0.set (init);
1721 else
1722 vr0.set_varying (TREE_TYPE (init));
1723 tree tem = wide_int_to_tree (TREE_TYPE (init), wtmp);
1724 vr1.set (tem, tem);
1725 range_fold_binary_expr (&maxvr, PLUS_EXPR,
1726 TREE_TYPE (init), &vr0, &vr1);
1728 /* Likewise if the addition did. */
1729 if (maxvr.kind () == VR_RANGE)
1731 value_range initvr;
1733 if (TREE_CODE (init) == SSA_NAME)
1734 initvr = *(query->get_value_range (init, stmt));
1735 else if (is_gimple_min_invariant (init))
1736 initvr.set (init);
1737 else
1738 return false;
1740 /* Check if init + nit * step overflows. Though we checked
1741 scev {init, step}_loop doesn't wrap, it is not enough
1742 because the loop may exit immediately. Overflow could
1743 happen in the plus expression in this case. */
1744 if ((dir == EV_DIR_DECREASES
1745 && compare_values (maxvr.min (), initvr.min ()) != -1)
1746 || (dir == EV_DIR_GROWS
1747 && compare_values (maxvr.max (), initvr.max ()) != 1))
1748 return false;
1750 tmin = maxvr.min ();
1751 tmax = maxvr.max ();
1757 *min = tmin;
1758 *max = tmax;
1759 if (dir == EV_DIR_DECREASES)
1760 *max = init;
1761 else
1762 *min = init;
1764 fix_overflow:
1765 /* Even for valid range info, sometimes overflow flag will leak in.
1766 As GIMPLE IL should have no constants with TREE_OVERFLOW set, we
1767 drop them. */
1768 if (TREE_OVERFLOW_P (*min))
1769 *min = drop_tree_overflow (*min);
1770 if (TREE_OVERFLOW_P (*max))
1771 *max = drop_tree_overflow (*max);
1773 gcc_checking_assert (compare_values (*min, *max) != 1);
1774 return true;
1777 /* Given a range VR, a LOOP and a variable VAR, determine whether it
1778 would be profitable to adjust VR using scalar evolution information
1779 for VAR. If so, update VR with the new limits. */
1781 void
1782 vr_values::adjust_range_with_scev (value_range_equiv *vr, class loop *loop,
1783 gimple *stmt, tree var)
1785 tree min, max;
1786 if (bounds_of_var_in_loop (&min, &max, this, loop, stmt, var))
1788 if (vr->undefined_p () || vr->varying_p ())
1790 /* For VARYING or UNDEFINED ranges, just about anything we get
1791 from scalar evolutions should be better. */
1792 vr->update (min, max);
1794 else if (vr->kind () == VR_RANGE)
1796 /* Start with the input range... */
1797 tree vrmin = vr->min ();
1798 tree vrmax = vr->max ();
1800 /* ...and narrow it down with what we got from SCEV. */
1801 if (compare_values (min, vrmin) == 1)
1802 vrmin = min;
1803 if (compare_values (max, vrmax) == -1)
1804 vrmax = max;
1806 vr->update (vrmin, vrmax);
1808 else if (vr->kind () == VR_ANTI_RANGE)
1810 /* ?? As an enhancement, if VR, MIN, and MAX are constants, one
1811 could just intersect VR with a range of [MIN,MAX]. */
1816 /* Dump value ranges of all SSA_NAMEs to FILE. */
1818 void
1819 vr_values::dump_all_value_ranges (FILE *file)
1821 size_t i;
1823 for (i = 0; i < num_vr_values; i++)
1825 if (vr_value[i] && ssa_name (i))
1827 print_generic_expr (file, ssa_name (i));
1828 fprintf (file, ": ");
1829 dump_value_range (file, vr_value[i]);
1830 fprintf (file, "\n");
1834 fprintf (file, "\n");
1837 /* Initialize VRP lattice. */
1839 vr_values::vr_values () : simplifier (this)
1841 values_propagated = false;
1842 num_vr_values = num_ssa_names * 2;
1843 vr_value = XCNEWVEC (value_range_equiv *, num_vr_values);
1844 vr_phi_edge_counts = XCNEWVEC (int, num_ssa_names);
1845 bitmap_obstack_initialize (&vrp_equiv_obstack);
1848 /* Free VRP lattice. */
1850 vr_values::~vr_values ()
1852 /* Free allocated memory. */
1853 free (vr_value);
1854 free (vr_phi_edge_counts);
1855 bitmap_obstack_release (&vrp_equiv_obstack);
1857 /* So that we can distinguish between VRP data being available
1858 and not available. */
1859 vr_value = NULL;
1860 vr_phi_edge_counts = NULL;
1864 /* A hack. */
1865 static class vr_values *x_vr_values;
1867 /* Return the singleton value-range for NAME or NAME. */
1869 static inline tree
1870 vrp_valueize (tree name)
1872 if (TREE_CODE (name) == SSA_NAME)
1874 const value_range_equiv *vr = x_vr_values->get_value_range (name);
1875 if (vr->kind () == VR_RANGE
1876 && (TREE_CODE (vr->min ()) == SSA_NAME
1877 || is_gimple_min_invariant (vr->min ()))
1878 && vrp_operand_equal_p (vr->min (), vr->max ()))
1879 return vr->min ();
1881 return name;
1884 /* Return the singleton value-range for NAME if that is a constant
1885 but signal to not follow SSA edges. */
1887 static inline tree
1888 vrp_valueize_1 (tree name)
1890 if (TREE_CODE (name) == SSA_NAME)
1892 /* If the definition may be simulated again we cannot follow
1893 this SSA edge as the SSA propagator does not necessarily
1894 re-visit the use. */
1895 gimple *def_stmt = SSA_NAME_DEF_STMT (name);
1896 if (!gimple_nop_p (def_stmt)
1897 && prop_simulate_again_p (def_stmt))
1898 return NULL_TREE;
1899 const value_range_equiv *vr = x_vr_values->get_value_range (name);
1900 tree singleton;
1901 if (vr->singleton_p (&singleton))
1902 return singleton;
1904 return name;
1907 /* Given STMT, an assignment or call, return its LHS if the type
1908 of the LHS is suitable for VRP analysis, else return NULL_TREE. */
1910 tree
1911 get_output_for_vrp (gimple *stmt)
1913 if (!is_gimple_assign (stmt) && !is_gimple_call (stmt))
1914 return NULL_TREE;
1916 /* We only keep track of ranges in integral and pointer types. */
1917 tree lhs = gimple_get_lhs (stmt);
1918 if (TREE_CODE (lhs) == SSA_NAME
1919 && ((INTEGRAL_TYPE_P (TREE_TYPE (lhs))
1920 /* It is valid to have NULL MIN/MAX values on a type. See
1921 build_range_type. */
1922 && TYPE_MIN_VALUE (TREE_TYPE (lhs))
1923 && TYPE_MAX_VALUE (TREE_TYPE (lhs)))
1924 || POINTER_TYPE_P (TREE_TYPE (lhs))))
1925 return lhs;
1927 return NULL_TREE;
1930 /* Visit assignment STMT. If it produces an interesting range, record
1931 the range in VR and set LHS to OUTPUT_P. */
1933 void
1934 vr_values::vrp_visit_assignment_or_call (gimple *stmt, tree *output_p,
1935 value_range_equiv *vr)
1937 tree lhs = get_output_for_vrp (stmt);
1938 *output_p = lhs;
1940 /* We only keep track of ranges in integral and pointer types. */
1941 if (lhs)
1943 enum gimple_code code = gimple_code (stmt);
1945 /* Try folding the statement to a constant first. */
1946 x_vr_values = this;
1947 tree tem = gimple_fold_stmt_to_constant_1 (stmt, vrp_valueize,
1948 vrp_valueize_1);
1949 x_vr_values = NULL;
1950 if (tem)
1952 if (TREE_CODE (tem) == SSA_NAME
1953 && (SSA_NAME_IS_DEFAULT_DEF (tem)
1954 || ! prop_simulate_again_p (SSA_NAME_DEF_STMT (tem))))
1956 extract_range_from_ssa_name (vr, tem);
1957 return;
1959 else if (is_gimple_min_invariant (tem))
1961 vr->set (tem);
1962 return;
1965 /* Then dispatch to value-range extracting functions. */
1966 if (code == GIMPLE_CALL)
1967 extract_range_basic (vr, stmt);
1968 else
1969 extract_range_from_assignment (vr, as_a <gassign *> (stmt));
1973 /* Helper that gets the value range of the SSA_NAME with version I
1974 or a symbolic range containing the SSA_NAME only if the value range
1975 is varying or undefined. Uses TEM as storage for the alternate range. */
1977 const value_range_equiv *
1978 simplify_using_ranges::get_vr_for_comparison (int i, value_range_equiv *tem)
1980 /* Shallow-copy equiv bitmap. */
1981 const value_range_equiv *vr = query->get_value_range (ssa_name (i));
1983 /* If name N_i does not have a valid range, use N_i as its own
1984 range. This allows us to compare against names that may
1985 have N_i in their ranges. */
1986 if (vr->varying_p () || vr->undefined_p ())
1988 tem->set (ssa_name (i));
1989 return tem;
1992 return vr;
1995 /* Compare all the value ranges for names equivalent to VAR with VAL
1996 using comparison code COMP. Return the same value returned by
1997 compare_range_with_value, including the setting of
1998 *STRICT_OVERFLOW_P. */
2000 tree
2001 simplify_using_ranges::compare_name_with_value
2002 (enum tree_code comp, tree var, tree val,
2003 bool *strict_overflow_p, bool use_equiv_p)
2005 /* Get the set of equivalences for VAR. */
2006 bitmap e = query->get_value_range (var)->equiv ();
2008 /* Start at -1. Set it to 0 if we do a comparison without relying
2009 on overflow, or 1 if all comparisons rely on overflow. */
2010 int used_strict_overflow = -1;
2012 /* Compare vars' value range with val. */
2013 value_range_equiv tem_vr;
2014 const value_range_equiv *equiv_vr
2015 = get_vr_for_comparison (SSA_NAME_VERSION (var), &tem_vr);
2016 bool sop = false;
2017 tree retval = compare_range_with_value (comp, equiv_vr, val, &sop);
2018 if (retval)
2019 used_strict_overflow = sop ? 1 : 0;
2021 /* If the equiv set is empty we have done all work we need to do. */
2022 if (e == NULL)
2024 if (retval && used_strict_overflow > 0)
2025 *strict_overflow_p = true;
2026 return retval;
2029 unsigned i;
2030 bitmap_iterator bi;
2031 EXECUTE_IF_SET_IN_BITMAP (e, 0, i, bi)
2033 tree name = ssa_name (i);
2034 if (!name)
2035 continue;
2037 if (!use_equiv_p
2038 && !SSA_NAME_IS_DEFAULT_DEF (name)
2039 && prop_simulate_again_p (SSA_NAME_DEF_STMT (name)))
2040 continue;
2042 equiv_vr = get_vr_for_comparison (i, &tem_vr);
2043 sop = false;
2044 tree t = compare_range_with_value (comp, equiv_vr, val, &sop);
2045 if (t)
2047 /* If we get different answers from different members
2048 of the equivalence set this check must be in a dead
2049 code region. Folding it to a trap representation
2050 would be correct here. For now just return don't-know. */
2051 if (retval != NULL
2052 && t != retval)
2054 retval = NULL_TREE;
2055 break;
2057 retval = t;
2059 if (!sop)
2060 used_strict_overflow = 0;
2061 else if (used_strict_overflow < 0)
2062 used_strict_overflow = 1;
2066 if (retval && used_strict_overflow > 0)
2067 *strict_overflow_p = true;
2069 return retval;
2073 /* Given a comparison code COMP and names N1 and N2, compare all the
2074 ranges equivalent to N1 against all the ranges equivalent to N2
2075 to determine the value of N1 COMP N2. Return the same value
2076 returned by compare_ranges. Set *STRICT_OVERFLOW_P to indicate
2077 whether we relied on undefined signed overflow in the comparison. */
2080 tree
2081 simplify_using_ranges::compare_names (enum tree_code comp, tree n1, tree n2,
2082 bool *strict_overflow_p)
2084 /* Compare the ranges of every name equivalent to N1 against the
2085 ranges of every name equivalent to N2. */
2086 bitmap e1 = query->get_value_range (n1)->equiv ();
2087 bitmap e2 = query->get_value_range (n2)->equiv ();
2089 /* Use the fake bitmaps if e1 or e2 are not available. */
2090 static bitmap s_e1 = NULL, s_e2 = NULL;
2091 static bitmap_obstack *s_obstack = NULL;
2092 if (s_obstack == NULL)
2094 s_obstack = XNEW (bitmap_obstack);
2095 bitmap_obstack_initialize (s_obstack);
2096 s_e1 = BITMAP_ALLOC (s_obstack);
2097 s_e2 = BITMAP_ALLOC (s_obstack);
2099 if (e1 == NULL)
2100 e1 = s_e1;
2101 if (e2 == NULL)
2102 e2 = s_e2;
2104 /* Add N1 and N2 to their own set of equivalences to avoid
2105 duplicating the body of the loop just to check N1 and N2
2106 ranges. */
2107 bitmap_set_bit (e1, SSA_NAME_VERSION (n1));
2108 bitmap_set_bit (e2, SSA_NAME_VERSION (n2));
2110 /* If the equivalence sets have a common intersection, then the two
2111 names can be compared without checking their ranges. */
2112 if (bitmap_intersect_p (e1, e2))
2114 bitmap_clear_bit (e1, SSA_NAME_VERSION (n1));
2115 bitmap_clear_bit (e2, SSA_NAME_VERSION (n2));
2117 return (comp == EQ_EXPR || comp == GE_EXPR || comp == LE_EXPR)
2118 ? boolean_true_node
2119 : boolean_false_node;
2122 /* Start at -1. Set it to 0 if we do a comparison without relying
2123 on overflow, or 1 if all comparisons rely on overflow. */
2124 int used_strict_overflow = -1;
2126 /* Otherwise, compare all the equivalent ranges. First, add N1 and
2127 N2 to their own set of equivalences to avoid duplicating the body
2128 of the loop just to check N1 and N2 ranges. */
2129 bitmap_iterator bi1;
2130 unsigned i1;
2131 EXECUTE_IF_SET_IN_BITMAP (e1, 0, i1, bi1)
2133 if (!ssa_name (i1))
2134 continue;
2136 value_range_equiv tem_vr1;
2137 const value_range_equiv *vr1 = get_vr_for_comparison (i1, &tem_vr1);
2139 tree t = NULL_TREE, retval = NULL_TREE;
2140 bitmap_iterator bi2;
2141 unsigned i2;
2142 EXECUTE_IF_SET_IN_BITMAP (e2, 0, i2, bi2)
2144 if (!ssa_name (i2))
2145 continue;
2147 bool sop = false;
2149 value_range_equiv tem_vr2;
2150 const value_range_equiv *vr2 = get_vr_for_comparison (i2, &tem_vr2);
2152 t = compare_ranges (comp, vr1, vr2, &sop);
2153 if (t)
2155 /* If we get different answers from different members
2156 of the equivalence set this check must be in a dead
2157 code region. Folding it to a trap representation
2158 would be correct here. For now just return don't-know. */
2159 if (retval != NULL && t != retval)
2161 bitmap_clear_bit (e1, SSA_NAME_VERSION (n1));
2162 bitmap_clear_bit (e2, SSA_NAME_VERSION (n2));
2163 return NULL_TREE;
2165 retval = t;
2167 if (!sop)
2168 used_strict_overflow = 0;
2169 else if (used_strict_overflow < 0)
2170 used_strict_overflow = 1;
2174 if (retval)
2176 bitmap_clear_bit (e1, SSA_NAME_VERSION (n1));
2177 bitmap_clear_bit (e2, SSA_NAME_VERSION (n2));
2178 if (used_strict_overflow > 0)
2179 *strict_overflow_p = true;
2180 return retval;
2184 /* None of the equivalent ranges are useful in computing this
2185 comparison. */
2186 bitmap_clear_bit (e1, SSA_NAME_VERSION (n1));
2187 bitmap_clear_bit (e2, SSA_NAME_VERSION (n2));
2188 return NULL_TREE;
2191 /* Helper function for vrp_evaluate_conditional_warnv & other
2192 optimizers. */
2194 tree
2195 simplify_using_ranges::vrp_evaluate_conditional_warnv_with_ops_using_ranges
2196 (enum tree_code code, tree op0, tree op1, bool * strict_overflow_p)
2198 const value_range_equiv *vr0, *vr1;
2199 vr0 = (TREE_CODE (op0) == SSA_NAME) ? query->get_value_range (op0) : NULL;
2200 vr1 = (TREE_CODE (op1) == SSA_NAME) ? query->get_value_range (op1) : NULL;
2202 tree res = NULL_TREE;
2203 if (vr0 && vr1)
2204 res = compare_ranges (code, vr0, vr1, strict_overflow_p);
2205 if (!res && vr0)
2206 res = compare_range_with_value (code, vr0, op1, strict_overflow_p);
2207 if (!res && vr1)
2208 res = (compare_range_with_value
2209 (swap_tree_comparison (code), vr1, op0, strict_overflow_p));
2210 return res;
2213 /* Helper function for vrp_evaluate_conditional_warnv. */
2215 tree
2216 simplify_using_ranges::vrp_evaluate_conditional_warnv_with_ops
2217 (gimple *stmt,
2218 enum tree_code code,
2219 tree op0, tree op1,
2220 bool use_equiv_p,
2221 bool *strict_overflow_p,
2222 bool *only_ranges)
2224 tree ret;
2225 if (only_ranges)
2226 *only_ranges = true;
2228 /* We only deal with integral and pointer types. */
2229 if (!INTEGRAL_TYPE_P (TREE_TYPE (op0))
2230 && !POINTER_TYPE_P (TREE_TYPE (op0)))
2231 return NULL_TREE;
2233 /* If OP0 CODE OP1 is an overflow comparison, if it can be expressed
2234 as a simple equality test, then prefer that over its current form
2235 for evaluation.
2237 An overflow test which collapses to an equality test can always be
2238 expressed as a comparison of one argument against zero. Overflow
2239 occurs when the chosen argument is zero and does not occur if the
2240 chosen argument is not zero. */
2241 tree x;
2242 if (overflow_comparison_p (code, op0, op1, use_equiv_p, &x))
2244 wide_int max = wi::max_value (TYPE_PRECISION (TREE_TYPE (op0)), UNSIGNED);
2245 /* B = A - 1; if (A < B) -> B = A - 1; if (A == 0)
2246 B = A - 1; if (A > B) -> B = A - 1; if (A != 0)
2247 B = A + 1; if (B < A) -> B = A + 1; if (B == 0)
2248 B = A + 1; if (B > A) -> B = A + 1; if (B != 0) */
2249 if (integer_zerop (x))
2251 op1 = x;
2252 code = (code == LT_EXPR || code == LE_EXPR) ? EQ_EXPR : NE_EXPR;
2254 /* B = A + 1; if (A > B) -> B = A + 1; if (B == 0)
2255 B = A + 1; if (A < B) -> B = A + 1; if (B != 0)
2256 B = A - 1; if (B > A) -> B = A - 1; if (A == 0)
2257 B = A - 1; if (B < A) -> B = A - 1; if (A != 0) */
2258 else if (wi::to_wide (x) == max - 1)
2260 op0 = op1;
2261 op1 = wide_int_to_tree (TREE_TYPE (op0), 0);
2262 code = (code == GT_EXPR || code == GE_EXPR) ? EQ_EXPR : NE_EXPR;
2264 else
2266 value_range vro, vri;
2267 if (code == GT_EXPR || code == GE_EXPR)
2269 vro.set (TYPE_MIN_VALUE (TREE_TYPE (op0)), x, VR_ANTI_RANGE);
2270 vri.set (TYPE_MIN_VALUE (TREE_TYPE (op0)), x);
2272 else if (code == LT_EXPR || code == LE_EXPR)
2274 vro.set (TYPE_MIN_VALUE (TREE_TYPE (op0)), x);
2275 vri.set (TYPE_MIN_VALUE (TREE_TYPE (op0)), x, VR_ANTI_RANGE);
2277 else
2278 gcc_unreachable ();
2279 const value_range_equiv *vr0 = query->get_value_range (op0, stmt);
2280 /* If vro, the range for OP0 to pass the overflow test, has
2281 no intersection with *vr0, OP0's known range, then the
2282 overflow test can't pass, so return the node for false.
2283 If it is the inverted range, vri, that has no
2284 intersection, then the overflow test must pass, so return
2285 the node for true. In other cases, we could proceed with
2286 a simplified condition comparing OP0 and X, with LE_EXPR
2287 for previously LE_ or LT_EXPR and GT_EXPR otherwise, but
2288 the comments next to the enclosing if suggest it's not
2289 generally profitable to do so. */
2290 vro.intersect (vr0);
2291 if (vro.undefined_p ())
2292 return boolean_false_node;
2293 vri.intersect (vr0);
2294 if (vri.undefined_p ())
2295 return boolean_true_node;
2299 if ((ret = vrp_evaluate_conditional_warnv_with_ops_using_ranges
2300 (code, op0, op1, strict_overflow_p)))
2301 return ret;
2302 if (only_ranges)
2303 *only_ranges = false;
2304 /* Do not use compare_names during propagation, it's quadratic. */
2305 if (TREE_CODE (op0) == SSA_NAME && TREE_CODE (op1) == SSA_NAME
2306 && use_equiv_p)
2307 return compare_names (code, op0, op1, strict_overflow_p);
2308 else if (TREE_CODE (op0) == SSA_NAME)
2309 return compare_name_with_value (code, op0, op1,
2310 strict_overflow_p, use_equiv_p);
2311 else if (TREE_CODE (op1) == SSA_NAME)
2312 return compare_name_with_value (swap_tree_comparison (code), op1, op0,
2313 strict_overflow_p, use_equiv_p);
2314 return NULL_TREE;
2317 /* Given (CODE OP0 OP1) within STMT, try to simplify it based on value range
2318 information. Return NULL if the conditional cannot be evaluated.
2319 The ranges of all the names equivalent with the operands in COND
2320 will be used when trying to compute the value. If the result is
2321 based on undefined signed overflow, issue a warning if
2322 appropriate. */
2324 tree
2325 simplify_using_ranges::vrp_evaluate_conditional (tree_code code, tree op0,
2326 tree op1, gimple *stmt)
2328 bool sop;
2329 tree ret;
2330 bool only_ranges;
2332 /* Some passes and foldings leak constants with overflow flag set
2333 into the IL. Avoid doing wrong things with these and bail out. */
2334 if ((TREE_CODE (op0) == INTEGER_CST
2335 && TREE_OVERFLOW (op0))
2336 || (TREE_CODE (op1) == INTEGER_CST
2337 && TREE_OVERFLOW (op1)))
2338 return NULL_TREE;
2340 sop = false;
2341 ret = vrp_evaluate_conditional_warnv_with_ops (stmt, code, op0, op1, true,
2342 &sop, &only_ranges);
2344 if (ret && sop)
2346 enum warn_strict_overflow_code wc;
2347 const char* warnmsg;
2349 if (is_gimple_min_invariant (ret))
2351 wc = WARN_STRICT_OVERFLOW_CONDITIONAL;
2352 warnmsg = G_("assuming signed overflow does not occur when "
2353 "simplifying conditional to constant");
2355 else
2357 wc = WARN_STRICT_OVERFLOW_COMPARISON;
2358 warnmsg = G_("assuming signed overflow does not occur when "
2359 "simplifying conditional");
2362 if (issue_strict_overflow_warning (wc))
2364 location_t location;
2366 if (!gimple_has_location (stmt))
2367 location = input_location;
2368 else
2369 location = gimple_location (stmt);
2370 warning_at (location, OPT_Wstrict_overflow, "%s", warnmsg);
2374 if (warn_type_limits
2375 && ret && only_ranges
2376 && TREE_CODE_CLASS (code) == tcc_comparison
2377 && TREE_CODE (op0) == SSA_NAME)
2379 /* If the comparison is being folded and the operand on the LHS
2380 is being compared against a constant value that is outside of
2381 the natural range of OP0's type, then the predicate will
2382 always fold regardless of the value of OP0. If -Wtype-limits
2383 was specified, emit a warning. */
2384 tree type = TREE_TYPE (op0);
2385 const value_range_equiv *vr0 = query->get_value_range (op0, stmt);
2387 if (vr0->varying_p ()
2388 && INTEGRAL_TYPE_P (type)
2389 && is_gimple_min_invariant (op1))
2391 location_t location;
2393 if (!gimple_has_location (stmt))
2394 location = input_location;
2395 else
2396 location = gimple_location (stmt);
2398 warning_at (location, OPT_Wtype_limits,
2399 integer_zerop (ret)
2400 ? G_("comparison always false "
2401 "due to limited range of data type")
2402 : G_("comparison always true "
2403 "due to limited range of data type"));
2407 return ret;
2411 /* Visit conditional statement STMT. If we can determine which edge
2412 will be taken out of STMT's basic block, record it in
2413 *TAKEN_EDGE_P. Otherwise, set *TAKEN_EDGE_P to NULL. */
2415 void
2416 simplify_using_ranges::vrp_visit_cond_stmt (gcond *stmt, edge *taken_edge_p)
2418 tree val;
2420 *taken_edge_p = NULL;
2422 if (dump_file && (dump_flags & TDF_DETAILS))
2424 tree use;
2425 ssa_op_iter i;
2427 fprintf (dump_file, "\nVisiting conditional with predicate: ");
2428 print_gimple_stmt (dump_file, stmt, 0);
2429 fprintf (dump_file, "\nWith known ranges\n");
2431 FOR_EACH_SSA_TREE_OPERAND (use, stmt, i, SSA_OP_USE)
2433 fprintf (dump_file, "\t");
2434 print_generic_expr (dump_file, use);
2435 fprintf (dump_file, ": ");
2436 dump_value_range (dump_file, query->get_value_range (use, stmt));
2439 fprintf (dump_file, "\n");
2442 /* Compute the value of the predicate COND by checking the known
2443 ranges of each of its operands.
2445 Note that we cannot evaluate all the equivalent ranges here
2446 because those ranges may not yet be final and with the current
2447 propagation strategy, we cannot determine when the value ranges
2448 of the names in the equivalence set have changed.
2450 For instance, given the following code fragment
2452 i_5 = PHI <8, i_13>
2454 i_14 = ASSERT_EXPR <i_5, i_5 != 0>
2455 if (i_14 == 1)
2458 Assume that on the first visit to i_14, i_5 has the temporary
2459 range [8, 8] because the second argument to the PHI function is
2460 not yet executable. We derive the range ~[0, 0] for i_14 and the
2461 equivalence set { i_5 }. So, when we visit 'if (i_14 == 1)' for
2462 the first time, since i_14 is equivalent to the range [8, 8], we
2463 determine that the predicate is always false.
2465 On the next round of propagation, i_13 is determined to be
2466 VARYING, which causes i_5 to drop down to VARYING. So, another
2467 visit to i_14 is scheduled. In this second visit, we compute the
2468 exact same range and equivalence set for i_14, namely ~[0, 0] and
2469 { i_5 }. But we did not have the previous range for i_5
2470 registered, so vrp_visit_assignment thinks that the range for
2471 i_14 has not changed. Therefore, the predicate 'if (i_14 == 1)'
2472 is not visited again, which stops propagation from visiting
2473 statements in the THEN clause of that if().
2475 To properly fix this we would need to keep the previous range
2476 value for the names in the equivalence set. This way we would've
2477 discovered that from one visit to the other i_5 changed from
2478 range [8, 8] to VR_VARYING.
2480 However, fixing this apparent limitation may not be worth the
2481 additional checking. Testing on several code bases (GCC, DLV,
2482 MICO, TRAMP3D and SPEC2000) showed that doing this results in
2483 4 more predicates folded in SPEC. */
2485 bool sop;
2486 val = vrp_evaluate_conditional_warnv_with_ops (stmt,
2487 gimple_cond_code (stmt),
2488 gimple_cond_lhs (stmt),
2489 gimple_cond_rhs (stmt),
2490 false, &sop, NULL);
2491 if (val)
2492 *taken_edge_p = find_taken_edge (gimple_bb (stmt), val);
2494 if (dump_file && (dump_flags & TDF_DETAILS))
2496 fprintf (dump_file, "\nPredicate evaluates to: ");
2497 if (val == NULL_TREE)
2498 fprintf (dump_file, "DON'T KNOW\n");
2499 else
2500 print_generic_stmt (dump_file, val);
2504 /* Searches the case label vector VEC for the ranges of CASE_LABELs that are
2505 used in range VR. The indices are placed in MIN_IDX1, MAX_IDX, MIN_IDX2 and
2506 MAX_IDX2. If the ranges of CASE_LABELs are empty then MAX_IDX1 < MIN_IDX1.
2507 Returns true if the default label is not needed. */
2509 static bool
2510 find_case_label_ranges (gswitch *stmt, const value_range *vr,
2511 size_t *min_idx1, size_t *max_idx1,
2512 size_t *min_idx2, size_t *max_idx2)
2514 size_t i, j, k, l;
2515 unsigned int n = gimple_switch_num_labels (stmt);
2516 bool take_default;
2517 tree case_low, case_high;
2518 tree min = vr->min (), max = vr->max ();
2520 gcc_checking_assert (!vr->varying_p () && !vr->undefined_p ());
2522 take_default = !find_case_label_range (stmt, min, max, &i, &j);
2524 /* Set second range to empty. */
2525 *min_idx2 = 1;
2526 *max_idx2 = 0;
2528 if (vr->kind () == VR_RANGE)
2530 *min_idx1 = i;
2531 *max_idx1 = j;
2532 return !take_default;
2535 /* Set first range to all case labels. */
2536 *min_idx1 = 1;
2537 *max_idx1 = n - 1;
2539 if (i > j)
2540 return false;
2542 /* Make sure all the values of case labels [i , j] are contained in
2543 range [MIN, MAX]. */
2544 case_low = CASE_LOW (gimple_switch_label (stmt, i));
2545 case_high = CASE_HIGH (gimple_switch_label (stmt, j));
2546 if (tree_int_cst_compare (case_low, min) < 0)
2547 i += 1;
2548 if (case_high != NULL_TREE
2549 && tree_int_cst_compare (max, case_high) < 0)
2550 j -= 1;
2552 if (i > j)
2553 return false;
2555 /* If the range spans case labels [i, j], the corresponding anti-range spans
2556 the labels [1, i - 1] and [j + 1, n - 1]. */
2557 k = j + 1;
2558 l = n - 1;
2559 if (k > l)
2561 k = 1;
2562 l = 0;
2565 j = i - 1;
2566 i = 1;
2567 if (i > j)
2569 i = k;
2570 j = l;
2571 k = 1;
2572 l = 0;
2575 *min_idx1 = i;
2576 *max_idx1 = j;
2577 *min_idx2 = k;
2578 *max_idx2 = l;
2579 return false;
2582 /* Visit switch statement STMT. If we can determine which edge
2583 will be taken out of STMT's basic block, record it in
2584 *TAKEN_EDGE_P. Otherwise, *TAKEN_EDGE_P set to NULL. */
2586 void
2587 vr_values::vrp_visit_switch_stmt (gswitch *stmt, edge *taken_edge_p)
2589 tree op, val;
2590 const value_range_equiv *vr;
2591 size_t i = 0, j = 0, k, l;
2592 bool take_default;
2594 *taken_edge_p = NULL;
2595 op = gimple_switch_index (stmt);
2596 if (TREE_CODE (op) != SSA_NAME)
2597 return;
2599 vr = get_value_range (op);
2600 if (dump_file && (dump_flags & TDF_DETAILS))
2602 fprintf (dump_file, "\nVisiting switch expression with operand ");
2603 print_generic_expr (dump_file, op);
2604 fprintf (dump_file, " with known range ");
2605 dump_value_range (dump_file, vr);
2606 fprintf (dump_file, "\n");
2609 if (vr->undefined_p ()
2610 || vr->varying_p ()
2611 || vr->symbolic_p ())
2612 return;
2614 /* Find the single edge that is taken from the switch expression. */
2615 take_default = !find_case_label_ranges (stmt, vr, &i, &j, &k, &l);
2617 /* Check if the range spans no CASE_LABEL. If so, we only reach the default
2618 label */
2619 if (j < i)
2621 gcc_assert (take_default);
2622 val = gimple_switch_default_label (stmt);
2624 else
2626 /* Check if labels with index i to j and maybe the default label
2627 are all reaching the same label. */
2629 val = gimple_switch_label (stmt, i);
2630 if (take_default
2631 && CASE_LABEL (gimple_switch_default_label (stmt))
2632 != CASE_LABEL (val))
2634 if (dump_file && (dump_flags & TDF_DETAILS))
2635 fprintf (dump_file, " not a single destination for this "
2636 "range\n");
2637 return;
2639 for (++i; i <= j; ++i)
2641 if (CASE_LABEL (gimple_switch_label (stmt, i)) != CASE_LABEL (val))
2643 if (dump_file && (dump_flags & TDF_DETAILS))
2644 fprintf (dump_file, " not a single destination for this "
2645 "range\n");
2646 return;
2649 for (; k <= l; ++k)
2651 if (CASE_LABEL (gimple_switch_label (stmt, k)) != CASE_LABEL (val))
2653 if (dump_file && (dump_flags & TDF_DETAILS))
2654 fprintf (dump_file, " not a single destination for this "
2655 "range\n");
2656 return;
2661 *taken_edge_p = find_edge (gimple_bb (stmt),
2662 label_to_block (cfun, CASE_LABEL (val)));
2664 if (dump_file && (dump_flags & TDF_DETAILS))
2666 fprintf (dump_file, " will take edge to ");
2667 print_generic_stmt (dump_file, CASE_LABEL (val));
2672 /* Evaluate statement STMT. If the statement produces a useful range,
2673 set VR and corepsponding OUTPUT_P.
2675 If STMT is a conditional branch and we can determine its truth
2676 value, the taken edge is recorded in *TAKEN_EDGE_P. */
2678 void
2679 vr_values::extract_range_from_stmt (gimple *stmt, edge *taken_edge_p,
2680 tree *output_p, value_range_equiv *vr)
2683 if (dump_file && (dump_flags & TDF_DETAILS))
2685 fprintf (dump_file, "\nextract_range_from_stmt visiting:\n");
2686 print_gimple_stmt (dump_file, stmt, 0, dump_flags);
2689 if (!stmt_interesting_for_vrp (stmt))
2690 gcc_assert (stmt_ends_bb_p (stmt));
2691 else if (is_gimple_assign (stmt) || is_gimple_call (stmt))
2692 vrp_visit_assignment_or_call (stmt, output_p, vr);
2693 else if (gimple_code (stmt) == GIMPLE_COND)
2694 simplifier.vrp_visit_cond_stmt (as_a <gcond *> (stmt), taken_edge_p);
2695 else if (gimple_code (stmt) == GIMPLE_SWITCH)
2696 vrp_visit_switch_stmt (as_a <gswitch *> (stmt), taken_edge_p);
2699 /* Visit all arguments for PHI node PHI that flow through executable
2700 edges. If a valid value range can be derived from all the incoming
2701 value ranges, set a new range in VR_RESULT. */
2703 void
2704 vr_values::extract_range_from_phi_node (gphi *phi,
2705 value_range_equiv *vr_result)
2707 tree lhs = PHI_RESULT (phi);
2708 const value_range_equiv *lhs_vr = get_value_range (lhs);
2709 bool first = true;
2710 int old_edges;
2711 class loop *l;
2713 if (dump_file && (dump_flags & TDF_DETAILS))
2715 fprintf (dump_file, "\nVisiting PHI node: ");
2716 print_gimple_stmt (dump_file, phi, 0, dump_flags);
2719 bool may_simulate_backedge_again = false;
2720 int edges = 0;
2721 for (size_t i = 0; i < gimple_phi_num_args (phi); i++)
2723 edge e = gimple_phi_arg_edge (phi, i);
2725 if (dump_file && (dump_flags & TDF_DETAILS))
2727 fprintf (dump_file,
2728 " Argument #%d (%d -> %d %sexecutable)\n",
2729 (int) i, e->src->index, e->dest->index,
2730 (e->flags & EDGE_EXECUTABLE) ? "" : "not ");
2733 if (e->flags & EDGE_EXECUTABLE)
2735 value_range_equiv vr_arg_tem;
2736 const value_range_equiv *vr_arg = &vr_arg_tem;
2738 ++edges;
2740 tree arg = PHI_ARG_DEF (phi, i);
2741 if (TREE_CODE (arg) == SSA_NAME)
2743 /* See if we are eventually going to change one of the args. */
2744 gimple *def_stmt = SSA_NAME_DEF_STMT (arg);
2745 if (! gimple_nop_p (def_stmt)
2746 && prop_simulate_again_p (def_stmt)
2747 && e->flags & EDGE_DFS_BACK)
2748 may_simulate_backedge_again = true;
2750 const value_range_equiv *vr_arg_ = get_value_range (arg);
2751 /* Do not allow equivalences or symbolic ranges to leak in from
2752 backedges. That creates invalid equivalencies.
2753 See PR53465 and PR54767. */
2754 if (e->flags & EDGE_DFS_BACK)
2756 if (!vr_arg_->varying_p () && !vr_arg_->undefined_p ())
2758 vr_arg_tem.set (vr_arg_->min (), vr_arg_->max (), NULL,
2759 vr_arg_->kind ());
2760 if (vr_arg_tem.symbolic_p ())
2761 vr_arg_tem.set_varying (TREE_TYPE (arg));
2763 else
2764 vr_arg = vr_arg_;
2766 /* If the non-backedge arguments range is VR_VARYING then
2767 we can still try recording a simple equivalence. */
2768 else if (vr_arg_->varying_p ())
2769 vr_arg_tem.set (arg);
2770 else
2771 vr_arg = vr_arg_;
2773 else
2775 if (TREE_OVERFLOW_P (arg))
2776 arg = drop_tree_overflow (arg);
2778 vr_arg_tem.set (arg);
2781 if (dump_file && (dump_flags & TDF_DETAILS))
2783 fprintf (dump_file, "\t");
2784 print_generic_expr (dump_file, arg, dump_flags);
2785 fprintf (dump_file, ": ");
2786 dump_value_range (dump_file, vr_arg);
2787 fprintf (dump_file, "\n");
2790 if (first)
2791 vr_result->deep_copy (vr_arg);
2792 else
2793 vr_result->union_ (vr_arg);
2794 first = false;
2796 if (vr_result->varying_p ())
2797 break;
2801 if (vr_result->varying_p ())
2802 goto varying;
2803 else if (vr_result->undefined_p ())
2804 goto update_range;
2806 old_edges = vr_phi_edge_counts[SSA_NAME_VERSION (lhs)];
2807 vr_phi_edge_counts[SSA_NAME_VERSION (lhs)] = edges;
2809 /* To prevent infinite iterations in the algorithm, derive ranges
2810 when the new value is slightly bigger or smaller than the
2811 previous one. We don't do this if we have seen a new executable
2812 edge; this helps us avoid an infinity for conditionals
2813 which are not in a loop. If the old value-range was VR_UNDEFINED
2814 use the updated range and iterate one more time. If we will not
2815 simulate this PHI again via the backedge allow us to iterate. */
2816 if (edges > 0
2817 && gimple_phi_num_args (phi) > 1
2818 && edges == old_edges
2819 && !lhs_vr->undefined_p ()
2820 && may_simulate_backedge_again)
2822 /* Compare old and new ranges, fall back to varying if the
2823 values are not comparable. */
2824 int cmp_min = compare_values (lhs_vr->min (), vr_result->min ());
2825 if (cmp_min == -2)
2826 goto varying;
2827 int cmp_max = compare_values (lhs_vr->max (), vr_result->max ());
2828 if (cmp_max == -2)
2829 goto varying;
2831 /* For non VR_RANGE or for pointers fall back to varying if
2832 the range changed. */
2833 if ((lhs_vr->kind () != VR_RANGE || vr_result->kind () != VR_RANGE
2834 || POINTER_TYPE_P (TREE_TYPE (lhs)))
2835 && (cmp_min != 0 || cmp_max != 0))
2836 goto varying;
2838 /* If the new minimum is larger than the previous one
2839 retain the old value. If the new minimum value is smaller
2840 than the previous one and not -INF go all the way to -INF + 1.
2841 In the first case, to avoid infinite bouncing between different
2842 minimums, and in the other case to avoid iterating millions of
2843 times to reach -INF. Going to -INF + 1 also lets the following
2844 iteration compute whether there will be any overflow, at the
2845 expense of one additional iteration. */
2846 tree new_min = vr_result->min ();
2847 tree new_max = vr_result->max ();
2848 if (cmp_min < 0)
2849 new_min = lhs_vr->min ();
2850 else if (cmp_min > 0
2851 && (TREE_CODE (vr_result->min ()) != INTEGER_CST
2852 || tree_int_cst_lt (vrp_val_min (vr_result->type ()),
2853 vr_result->min ())))
2854 new_min = int_const_binop (PLUS_EXPR,
2855 vrp_val_min (vr_result->type ()),
2856 build_int_cst (vr_result->type (), 1));
2858 /* Similarly for the maximum value. */
2859 if (cmp_max > 0)
2860 new_max = lhs_vr->max ();
2861 else if (cmp_max < 0
2862 && (TREE_CODE (vr_result->max ()) != INTEGER_CST
2863 || tree_int_cst_lt (vr_result->max (),
2864 vrp_val_max (vr_result->type ()))))
2865 new_max = int_const_binop (MINUS_EXPR,
2866 vrp_val_max (vr_result->type ()),
2867 build_int_cst (vr_result->type (), 1));
2869 vr_result->update (new_min, new_max, vr_result->kind ());
2871 /* If we dropped either bound to +-INF then if this is a loop
2872 PHI node SCEV may known more about its value-range. */
2873 if (cmp_min > 0 || cmp_min < 0
2874 || cmp_max < 0 || cmp_max > 0)
2875 goto scev_check;
2877 goto infinite_check;
2880 goto update_range;
2882 varying:
2883 vr_result->set_varying (TREE_TYPE (lhs));
2885 scev_check:
2886 /* If this is a loop PHI node SCEV may known more about its value-range.
2887 scev_check can be reached from two paths, one is a fall through from above
2888 "varying" label, the other is direct goto from code block which tries to
2889 avoid infinite simulation. */
2890 if (scev_initialized_p ()
2891 && (l = loop_containing_stmt (phi))
2892 && l->header == gimple_bb (phi))
2893 adjust_range_with_scev (vr_result, l, phi, lhs);
2895 infinite_check:
2896 /* If we will end up with a (-INF, +INF) range, set it to
2897 VARYING. Same if the previous max value was invalid for
2898 the type and we end up with vr_result.min > vr_result.max. */
2899 if ((!vr_result->varying_p () && !vr_result->undefined_p ())
2900 && !((vrp_val_is_max (vr_result->max ()) && vrp_val_is_min (vr_result->min ()))
2901 || compare_values (vr_result->min (), vr_result->max ()) > 0))
2903 else
2904 vr_result->set_varying (TREE_TYPE (lhs));
2906 /* If the new range is different than the previous value, keep
2907 iterating. */
2908 update_range:
2909 return;
2912 /* Simplify boolean operations if the source is known
2913 to be already a boolean. */
2914 bool
2915 simplify_using_ranges::simplify_truth_ops_using_ranges
2916 (gimple_stmt_iterator *gsi,
2917 gimple *stmt)
2919 enum tree_code rhs_code = gimple_assign_rhs_code (stmt);
2920 tree lhs, op0, op1;
2921 bool need_conversion;
2923 /* We handle only !=/== case here. */
2924 gcc_assert (rhs_code == EQ_EXPR || rhs_code == NE_EXPR);
2926 op0 = gimple_assign_rhs1 (stmt);
2927 if (!op_with_boolean_value_range_p (op0))
2928 return false;
2930 op1 = gimple_assign_rhs2 (stmt);
2931 if (!op_with_boolean_value_range_p (op1))
2932 return false;
2934 /* Reduce number of cases to handle to NE_EXPR. As there is no
2935 BIT_XNOR_EXPR we cannot replace A == B with a single statement. */
2936 if (rhs_code == EQ_EXPR)
2938 if (TREE_CODE (op1) == INTEGER_CST)
2939 op1 = int_const_binop (BIT_XOR_EXPR, op1,
2940 build_int_cst (TREE_TYPE (op1), 1));
2941 else
2942 return false;
2945 lhs = gimple_assign_lhs (stmt);
2946 need_conversion
2947 = !useless_type_conversion_p (TREE_TYPE (lhs), TREE_TYPE (op0));
2949 /* Make sure to not sign-extend a 1-bit 1 when converting the result. */
2950 if (need_conversion
2951 && !TYPE_UNSIGNED (TREE_TYPE (op0))
2952 && TYPE_PRECISION (TREE_TYPE (op0)) == 1
2953 && TYPE_PRECISION (TREE_TYPE (lhs)) > 1)
2954 return false;
2956 /* For A != 0 we can substitute A itself. */
2957 if (integer_zerop (op1))
2958 gimple_assign_set_rhs_with_ops (gsi,
2959 need_conversion
2960 ? NOP_EXPR : TREE_CODE (op0), op0);
2961 /* For A != B we substitute A ^ B. Either with conversion. */
2962 else if (need_conversion)
2964 tree tem = make_ssa_name (TREE_TYPE (op0));
2965 gassign *newop
2966 = gimple_build_assign (tem, BIT_XOR_EXPR, op0, op1);
2967 gsi_insert_before (gsi, newop, GSI_SAME_STMT);
2968 if (INTEGRAL_TYPE_P (TREE_TYPE (tem))
2969 && TYPE_PRECISION (TREE_TYPE (tem)) > 1)
2970 set_range_info (tem, VR_RANGE,
2971 wi::zero (TYPE_PRECISION (TREE_TYPE (tem))),
2972 wi::one (TYPE_PRECISION (TREE_TYPE (tem))));
2973 gimple_assign_set_rhs_with_ops (gsi, NOP_EXPR, tem);
2975 /* Or without. */
2976 else
2977 gimple_assign_set_rhs_with_ops (gsi, BIT_XOR_EXPR, op0, op1);
2978 update_stmt (gsi_stmt (*gsi));
2979 fold_stmt (gsi, follow_single_use_edges);
2981 return true;
2984 /* Simplify a division or modulo operator to a right shift or bitwise and
2985 if the first operand is unsigned or is greater than zero and the second
2986 operand is an exact power of two. For TRUNC_MOD_EXPR op0 % op1 with
2987 constant op1 (op1min = op1) or with op1 in [op1min, op1max] range,
2988 optimize it into just op0 if op0's range is known to be a subset of
2989 [-op1min + 1, op1min - 1] for signed and [0, op1min - 1] for unsigned
2990 modulo. */
2992 bool
2993 simplify_using_ranges::simplify_div_or_mod_using_ranges
2994 (gimple_stmt_iterator *gsi,
2995 gimple *stmt)
2997 enum tree_code rhs_code = gimple_assign_rhs_code (stmt);
2998 tree val = NULL;
2999 tree op0 = gimple_assign_rhs1 (stmt);
3000 tree op1 = gimple_assign_rhs2 (stmt);
3001 tree op0min = NULL_TREE, op0max = NULL_TREE;
3002 tree op1min = op1;
3003 const value_range *vr = NULL;
3005 if (TREE_CODE (op0) == INTEGER_CST)
3007 op0min = op0;
3008 op0max = op0;
3010 else
3012 vr = query->get_value_range (op0, stmt);
3013 if (range_int_cst_p (vr))
3015 op0min = vr->min ();
3016 op0max = vr->max ();
3020 if (rhs_code == TRUNC_MOD_EXPR
3021 && TREE_CODE (op1) == SSA_NAME)
3023 const value_range_equiv *vr1 = query->get_value_range (op1, stmt);
3024 if (range_int_cst_p (vr1))
3025 op1min = vr1->min ();
3027 if (rhs_code == TRUNC_MOD_EXPR
3028 && TREE_CODE (op1min) == INTEGER_CST
3029 && tree_int_cst_sgn (op1min) == 1
3030 && op0max
3031 && tree_int_cst_lt (op0max, op1min))
3033 if (TYPE_UNSIGNED (TREE_TYPE (op0))
3034 || tree_int_cst_sgn (op0min) >= 0
3035 || tree_int_cst_lt (fold_unary (NEGATE_EXPR, TREE_TYPE (op1min), op1min),
3036 op0min))
3038 /* If op0 already has the range op0 % op1 has,
3039 then TRUNC_MOD_EXPR won't change anything. */
3040 gimple_assign_set_rhs_from_tree (gsi, op0);
3041 return true;
3045 if (TREE_CODE (op0) != SSA_NAME)
3046 return false;
3048 if (!integer_pow2p (op1))
3050 /* X % -Y can be only optimized into X % Y either if
3051 X is not INT_MIN, or Y is not -1. Fold it now, as after
3052 remove_range_assertions the range info might be not available
3053 anymore. */
3054 if (rhs_code == TRUNC_MOD_EXPR
3055 && fold_stmt (gsi, follow_single_use_edges))
3056 return true;
3057 return false;
3060 if (TYPE_UNSIGNED (TREE_TYPE (op0)))
3061 val = integer_one_node;
3062 else
3064 bool sop = false;
3066 val = compare_range_with_value (GE_EXPR, vr, integer_zero_node, &sop);
3068 if (val
3069 && sop
3070 && integer_onep (val)
3071 && issue_strict_overflow_warning (WARN_STRICT_OVERFLOW_MISC))
3073 location_t location;
3075 if (!gimple_has_location (stmt))
3076 location = input_location;
3077 else
3078 location = gimple_location (stmt);
3079 warning_at (location, OPT_Wstrict_overflow,
3080 "assuming signed overflow does not occur when "
3081 "simplifying %</%> or %<%%%> to %<>>%> or %<&%>");
3085 if (val && integer_onep (val))
3087 tree t;
3089 if (rhs_code == TRUNC_DIV_EXPR)
3091 t = build_int_cst (integer_type_node, tree_log2 (op1));
3092 gimple_assign_set_rhs_code (stmt, RSHIFT_EXPR);
3093 gimple_assign_set_rhs1 (stmt, op0);
3094 gimple_assign_set_rhs2 (stmt, t);
3096 else
3098 t = build_int_cst (TREE_TYPE (op1), 1);
3099 t = int_const_binop (MINUS_EXPR, op1, t);
3100 t = fold_convert (TREE_TYPE (op0), t);
3102 gimple_assign_set_rhs_code (stmt, BIT_AND_EXPR);
3103 gimple_assign_set_rhs1 (stmt, op0);
3104 gimple_assign_set_rhs2 (stmt, t);
3107 update_stmt (stmt);
3108 fold_stmt (gsi, follow_single_use_edges);
3109 return true;
3112 return false;
3115 /* Simplify a min or max if the ranges of the two operands are
3116 disjoint. Return true if we do simplify. */
3118 bool
3119 simplify_using_ranges::simplify_min_or_max_using_ranges
3120 (gimple_stmt_iterator *gsi,
3121 gimple *stmt)
3123 tree op0 = gimple_assign_rhs1 (stmt);
3124 tree op1 = gimple_assign_rhs2 (stmt);
3125 bool sop = false;
3126 tree val;
3128 val = (vrp_evaluate_conditional_warnv_with_ops_using_ranges
3129 (LE_EXPR, op0, op1, &sop));
3130 if (!val)
3132 sop = false;
3133 val = (vrp_evaluate_conditional_warnv_with_ops_using_ranges
3134 (LT_EXPR, op0, op1, &sop));
3137 if (val)
3139 if (sop && issue_strict_overflow_warning (WARN_STRICT_OVERFLOW_MISC))
3141 location_t location;
3143 if (!gimple_has_location (stmt))
3144 location = input_location;
3145 else
3146 location = gimple_location (stmt);
3147 warning_at (location, OPT_Wstrict_overflow,
3148 "assuming signed overflow does not occur when "
3149 "simplifying %<min/max (X,Y)%> to %<X%> or %<Y%>");
3152 /* VAL == TRUE -> OP0 < or <= op1
3153 VAL == FALSE -> OP0 > or >= op1. */
3154 tree res = ((gimple_assign_rhs_code (stmt) == MAX_EXPR)
3155 == integer_zerop (val)) ? op0 : op1;
3156 gimple_assign_set_rhs_from_tree (gsi, res);
3157 return true;
3160 return false;
3163 /* If the operand to an ABS_EXPR is >= 0, then eliminate the
3164 ABS_EXPR. If the operand is <= 0, then simplify the
3165 ABS_EXPR into a NEGATE_EXPR. */
3167 bool
3168 simplify_using_ranges::simplify_abs_using_ranges (gimple_stmt_iterator *gsi,
3169 gimple *stmt)
3171 tree op = gimple_assign_rhs1 (stmt);
3172 const value_range *vr = query->get_value_range (op, stmt);
3174 if (vr)
3176 tree val = NULL;
3177 bool sop = false;
3179 val = compare_range_with_value (LE_EXPR, vr, integer_zero_node, &sop);
3180 if (!val)
3182 /* The range is neither <= 0 nor > 0. Now see if it is
3183 either < 0 or >= 0. */
3184 sop = false;
3185 val = compare_range_with_value (LT_EXPR, vr, integer_zero_node,
3186 &sop);
3189 if (val)
3191 if (sop && issue_strict_overflow_warning (WARN_STRICT_OVERFLOW_MISC))
3193 location_t location;
3195 if (!gimple_has_location (stmt))
3196 location = input_location;
3197 else
3198 location = gimple_location (stmt);
3199 warning_at (location, OPT_Wstrict_overflow,
3200 "assuming signed overflow does not occur when "
3201 "simplifying %<abs (X)%> to %<X%> or %<-X%>");
3204 gimple_assign_set_rhs1 (stmt, op);
3205 if (integer_zerop (val))
3206 gimple_assign_set_rhs_code (stmt, SSA_NAME);
3207 else
3208 gimple_assign_set_rhs_code (stmt, NEGATE_EXPR);
3209 update_stmt (stmt);
3210 fold_stmt (gsi, follow_single_use_edges);
3211 return true;
3215 return false;
3218 /* value_range wrapper for wi_set_zero_nonzero_bits.
3220 Return TRUE if VR was a constant range and we were able to compute
3221 the bit masks. */
3223 static bool
3224 vr_set_zero_nonzero_bits (const tree expr_type,
3225 const value_range *vr,
3226 wide_int *may_be_nonzero,
3227 wide_int *must_be_nonzero)
3229 if (range_int_cst_p (vr))
3231 wi_set_zero_nonzero_bits (expr_type,
3232 wi::to_wide (vr->min ()),
3233 wi::to_wide (vr->max ()),
3234 *may_be_nonzero, *must_be_nonzero);
3235 return true;
3237 *may_be_nonzero = wi::minus_one (TYPE_PRECISION (expr_type));
3238 *must_be_nonzero = wi::zero (TYPE_PRECISION (expr_type));
3239 return false;
3242 /* Optimize away redundant BIT_AND_EXPR and BIT_IOR_EXPR.
3243 If all the bits that are being cleared by & are already
3244 known to be zero from VR, or all the bits that are being
3245 set by | are already known to be one from VR, the bit
3246 operation is redundant. */
3248 bool
3249 simplify_using_ranges::simplify_bit_ops_using_ranges
3250 (gimple_stmt_iterator *gsi,
3251 gimple *stmt)
3253 tree op0 = gimple_assign_rhs1 (stmt);
3254 tree op1 = gimple_assign_rhs2 (stmt);
3255 tree op = NULL_TREE;
3256 value_range vr0, vr1;
3257 wide_int may_be_nonzero0, may_be_nonzero1;
3258 wide_int must_be_nonzero0, must_be_nonzero1;
3259 wide_int mask;
3261 if (TREE_CODE (op0) == SSA_NAME)
3262 vr0 = *(query->get_value_range (op0, stmt));
3263 else if (is_gimple_min_invariant (op0))
3264 vr0.set (op0);
3265 else
3266 return false;
3268 if (TREE_CODE (op1) == SSA_NAME)
3269 vr1 = *(query->get_value_range (op1, stmt));
3270 else if (is_gimple_min_invariant (op1))
3271 vr1.set (op1);
3272 else
3273 return false;
3275 if (!vr_set_zero_nonzero_bits (TREE_TYPE (op0), &vr0, &may_be_nonzero0,
3276 &must_be_nonzero0))
3277 return false;
3278 if (!vr_set_zero_nonzero_bits (TREE_TYPE (op1), &vr1, &may_be_nonzero1,
3279 &must_be_nonzero1))
3280 return false;
3282 switch (gimple_assign_rhs_code (stmt))
3284 case BIT_AND_EXPR:
3285 mask = wi::bit_and_not (may_be_nonzero0, must_be_nonzero1);
3286 if (mask == 0)
3288 op = op0;
3289 break;
3291 mask = wi::bit_and_not (may_be_nonzero1, must_be_nonzero0);
3292 if (mask == 0)
3294 op = op1;
3295 break;
3297 break;
3298 case BIT_IOR_EXPR:
3299 mask = wi::bit_and_not (may_be_nonzero0, must_be_nonzero1);
3300 if (mask == 0)
3302 op = op1;
3303 break;
3305 mask = wi::bit_and_not (may_be_nonzero1, must_be_nonzero0);
3306 if (mask == 0)
3308 op = op0;
3309 break;
3311 break;
3312 default:
3313 gcc_unreachable ();
3316 if (op == NULL_TREE)
3317 return false;
3319 gimple_assign_set_rhs_with_ops (gsi, TREE_CODE (op), op);
3320 update_stmt (gsi_stmt (*gsi));
3321 return true;
3324 /* We are comparing trees OP0 and OP1 using COND_CODE. OP0 has
3325 a known value range VR.
3327 If there is one and only one value which will satisfy the
3328 conditional, then return that value. Else return NULL.
3330 If signed overflow must be undefined for the value to satisfy
3331 the conditional, then set *STRICT_OVERFLOW_P to true. */
3333 static tree
3334 test_for_singularity (enum tree_code cond_code, tree op0,
3335 tree op1, const value_range *vr)
3337 tree min = NULL;
3338 tree max = NULL;
3340 /* Extract minimum/maximum values which satisfy the conditional as it was
3341 written. */
3342 if (cond_code == LE_EXPR || cond_code == LT_EXPR)
3344 min = TYPE_MIN_VALUE (TREE_TYPE (op0));
3346 max = op1;
3347 if (cond_code == LT_EXPR)
3349 tree one = build_int_cst (TREE_TYPE (op0), 1);
3350 max = fold_build2 (MINUS_EXPR, TREE_TYPE (op0), max, one);
3351 /* Signal to compare_values_warnv this expr doesn't overflow. */
3352 if (EXPR_P (max))
3353 TREE_NO_WARNING (max) = 1;
3356 else if (cond_code == GE_EXPR || cond_code == GT_EXPR)
3358 max = TYPE_MAX_VALUE (TREE_TYPE (op0));
3360 min = op1;
3361 if (cond_code == GT_EXPR)
3363 tree one = build_int_cst (TREE_TYPE (op0), 1);
3364 min = fold_build2 (PLUS_EXPR, TREE_TYPE (op0), min, one);
3365 /* Signal to compare_values_warnv this expr doesn't overflow. */
3366 if (EXPR_P (min))
3367 TREE_NO_WARNING (min) = 1;
3371 /* Now refine the minimum and maximum values using any
3372 value range information we have for op0. */
3373 if (min && max)
3375 tree type = TREE_TYPE (op0);
3376 tree tmin = wide_int_to_tree (type, vr->lower_bound ());
3377 tree tmax = wide_int_to_tree (type, vr->upper_bound ());
3378 if (compare_values (tmin, min) == 1)
3379 min = tmin;
3380 if (compare_values (tmax, max) == -1)
3381 max = tmax;
3383 /* If the new min/max values have converged to a single value,
3384 then there is only one value which can satisfy the condition,
3385 return that value. */
3386 if (operand_equal_p (min, max, 0) && is_gimple_min_invariant (min))
3387 return min;
3389 return NULL;
3392 /* Return whether the value range *VR fits in an integer type specified
3393 by PRECISION and UNSIGNED_P. */
3395 bool
3396 range_fits_type_p (const value_range *vr,
3397 unsigned dest_precision, signop dest_sgn)
3399 tree src_type;
3400 unsigned src_precision;
3401 widest_int tem;
3402 signop src_sgn;
3404 /* We can only handle integral and pointer types. */
3405 src_type = vr->type ();
3406 if (!INTEGRAL_TYPE_P (src_type)
3407 && !POINTER_TYPE_P (src_type))
3408 return false;
3410 /* An extension is fine unless VR is SIGNED and dest_sgn is UNSIGNED,
3411 and so is an identity transform. */
3412 src_precision = TYPE_PRECISION (vr->type ());
3413 src_sgn = TYPE_SIGN (src_type);
3414 if ((src_precision < dest_precision
3415 && !(dest_sgn == UNSIGNED && src_sgn == SIGNED))
3416 || (src_precision == dest_precision && src_sgn == dest_sgn))
3417 return true;
3419 /* Now we can only handle ranges with constant bounds. */
3420 if (!range_int_cst_p (vr))
3421 return false;
3423 /* For sign changes, the MSB of the wide_int has to be clear.
3424 An unsigned value with its MSB set cannot be represented by
3425 a signed wide_int, while a negative value cannot be represented
3426 by an unsigned wide_int. */
3427 if (src_sgn != dest_sgn
3428 && (wi::lts_p (wi::to_wide (vr->min ()), 0)
3429 || wi::lts_p (wi::to_wide (vr->max ()), 0)))
3430 return false;
3432 /* Then we can perform the conversion on both ends and compare
3433 the result for equality. */
3434 tem = wi::ext (wi::to_widest (vr->min ()), dest_precision, dest_sgn);
3435 if (tem != wi::to_widest (vr->min ()))
3436 return false;
3437 tem = wi::ext (wi::to_widest (vr->max ()), dest_precision, dest_sgn);
3438 if (tem != wi::to_widest (vr->max ()))
3439 return false;
3441 return true;
3444 /* If COND can be folded entirely as TRUE or FALSE, rewrite the
3445 conditional as such, and return TRUE. */
3447 bool
3448 simplify_using_ranges::fold_cond (gcond *cond)
3450 /* ?? vrp_folder::fold_predicate_in() is a superset of this. At
3451 some point we should merge all variants of this code. */
3452 edge taken_edge;
3453 vrp_visit_cond_stmt (cond, &taken_edge);
3455 int_range_max r;
3456 if (query->range_of_stmt (r, cond) && r.singleton_p ())
3458 // COND has already been folded if arguments are constant.
3459 if (TREE_CODE (gimple_cond_lhs (cond)) != SSA_NAME
3460 && TREE_CODE (gimple_cond_rhs (cond)) != SSA_NAME)
3461 return false;
3463 if (r.zero_p ())
3465 gcc_checking_assert (!taken_edge
3466 || taken_edge->flags & EDGE_FALSE_VALUE);
3467 if (dump_file && (dump_flags & TDF_DETAILS) && !taken_edge)
3468 fprintf (dump_file, "\nPredicate evaluates to: 0\n");
3469 gimple_cond_make_false (cond);
3471 else
3473 gcc_checking_assert (!taken_edge
3474 || taken_edge->flags & EDGE_TRUE_VALUE);
3475 if (dump_file && (dump_flags & TDF_DETAILS) && !taken_edge)
3476 fprintf (dump_file, "\nPredicate evaluates to: 1\n");
3477 gimple_cond_make_true (cond);
3479 update_stmt (cond);
3480 return true;
3483 if (taken_edge)
3485 if (taken_edge->flags & EDGE_TRUE_VALUE)
3486 gimple_cond_make_true (cond);
3487 else if (taken_edge->flags & EDGE_FALSE_VALUE)
3488 gimple_cond_make_false (cond);
3489 else
3490 gcc_unreachable ();
3491 update_stmt (cond);
3492 return true;
3494 return false;
3497 /* Simplify a conditional using a relational operator to an equality
3498 test if the range information indicates only one value can satisfy
3499 the original conditional. */
3501 bool
3502 simplify_using_ranges::simplify_cond_using_ranges_1 (gcond *stmt)
3504 tree op0 = gimple_cond_lhs (stmt);
3505 tree op1 = gimple_cond_rhs (stmt);
3506 enum tree_code cond_code = gimple_cond_code (stmt);
3508 if (fold_cond (stmt))
3509 return true;
3511 if (cond_code != NE_EXPR
3512 && cond_code != EQ_EXPR
3513 && TREE_CODE (op0) == SSA_NAME
3514 && INTEGRAL_TYPE_P (TREE_TYPE (op0))
3515 && is_gimple_min_invariant (op1))
3517 const value_range *vr = query->get_value_range (op0, stmt);
3519 /* If we have range information for OP0, then we might be
3520 able to simplify this conditional. */
3521 if (!vr->undefined_p () && !vr->varying_p ())
3523 tree new_tree = test_for_singularity (cond_code, op0, op1, vr);
3524 if (new_tree)
3526 if (dump_file)
3528 fprintf (dump_file, "Simplified relational ");
3529 print_gimple_stmt (dump_file, stmt, 0);
3530 fprintf (dump_file, " into ");
3533 gimple_cond_set_code (stmt, EQ_EXPR);
3534 gimple_cond_set_lhs (stmt, op0);
3535 gimple_cond_set_rhs (stmt, new_tree);
3537 update_stmt (stmt);
3539 if (dump_file)
3541 print_gimple_stmt (dump_file, stmt, 0);
3542 fprintf (dump_file, "\n");
3545 return true;
3548 /* Try again after inverting the condition. We only deal
3549 with integral types here, so no need to worry about
3550 issues with inverting FP comparisons. */
3551 new_tree = test_for_singularity
3552 (invert_tree_comparison (cond_code, false),
3553 op0, op1, vr);
3554 if (new_tree)
3556 if (dump_file)
3558 fprintf (dump_file, "Simplified relational ");
3559 print_gimple_stmt (dump_file, stmt, 0);
3560 fprintf (dump_file, " into ");
3563 gimple_cond_set_code (stmt, NE_EXPR);
3564 gimple_cond_set_lhs (stmt, op0);
3565 gimple_cond_set_rhs (stmt, new_tree);
3567 update_stmt (stmt);
3569 if (dump_file)
3571 print_gimple_stmt (dump_file, stmt, 0);
3572 fprintf (dump_file, "\n");
3575 return true;
3579 return false;
3582 /* Simplify a switch statement using the value range of the switch
3583 argument. */
3585 bool
3586 simplify_using_ranges::simplify_switch_using_ranges (gswitch *stmt)
3588 tree op = gimple_switch_index (stmt);
3589 const value_range *vr = NULL;
3590 bool take_default;
3591 edge e;
3592 edge_iterator ei;
3593 size_t i = 0, j = 0, n, n2;
3594 tree vec2;
3595 switch_update su;
3596 size_t k = 1, l = 0;
3598 if (TREE_CODE (op) == SSA_NAME)
3600 vr = query->get_value_range (op, stmt);
3602 /* We can only handle integer ranges. */
3603 if (vr->varying_p ()
3604 || vr->undefined_p ()
3605 || vr->symbolic_p ())
3606 return false;
3608 /* Find case label for min/max of the value range. */
3609 take_default = !find_case_label_ranges (stmt, vr, &i, &j, &k, &l);
3611 else if (TREE_CODE (op) == INTEGER_CST)
3613 take_default = !find_case_label_index (stmt, 1, op, &i);
3614 if (take_default)
3616 i = 1;
3617 j = 0;
3619 else
3621 j = i;
3624 else
3625 return false;
3627 n = gimple_switch_num_labels (stmt);
3629 /* We can truncate the case label ranges that partially overlap with OP's
3630 value range. */
3631 size_t min_idx = 1, max_idx = 0;
3632 if (vr != NULL)
3633 find_case_label_range (stmt, vr->min (), vr->max (), &min_idx, &max_idx);
3634 if (min_idx <= max_idx)
3636 tree min_label = gimple_switch_label (stmt, min_idx);
3637 tree max_label = gimple_switch_label (stmt, max_idx);
3639 /* Avoid changing the type of the case labels when truncating. */
3640 tree case_label_type = TREE_TYPE (CASE_LOW (min_label));
3641 tree vr_min = fold_convert (case_label_type, vr->min ());
3642 tree vr_max = fold_convert (case_label_type, vr->max ());
3644 if (vr->kind () == VR_RANGE)
3646 /* If OP's value range is [2,8] and the low label range is
3647 0 ... 3, truncate the label's range to 2 .. 3. */
3648 if (tree_int_cst_compare (CASE_LOW (min_label), vr_min) < 0
3649 && CASE_HIGH (min_label) != NULL_TREE
3650 && tree_int_cst_compare (CASE_HIGH (min_label), vr_min) >= 0)
3651 CASE_LOW (min_label) = vr_min;
3653 /* If OP's value range is [2,8] and the high label range is
3654 7 ... 10, truncate the label's range to 7 .. 8. */
3655 if (tree_int_cst_compare (CASE_LOW (max_label), vr_max) <= 0
3656 && CASE_HIGH (max_label) != NULL_TREE
3657 && tree_int_cst_compare (CASE_HIGH (max_label), vr_max) > 0)
3658 CASE_HIGH (max_label) = vr_max;
3660 else if (vr->kind () == VR_ANTI_RANGE)
3662 tree one_cst = build_one_cst (case_label_type);
3664 if (min_label == max_label)
3666 /* If OP's value range is ~[7,8] and the label's range is
3667 7 ... 10, truncate the label's range to 9 ... 10. */
3668 if (tree_int_cst_compare (CASE_LOW (min_label), vr_min) == 0
3669 && CASE_HIGH (min_label) != NULL_TREE
3670 && tree_int_cst_compare (CASE_HIGH (min_label), vr_max) > 0)
3671 CASE_LOW (min_label)
3672 = int_const_binop (PLUS_EXPR, vr_max, one_cst);
3674 /* If OP's value range is ~[7,8] and the label's range is
3675 5 ... 8, truncate the label's range to 5 ... 6. */
3676 if (tree_int_cst_compare (CASE_LOW (min_label), vr_min) < 0
3677 && CASE_HIGH (min_label) != NULL_TREE
3678 && tree_int_cst_compare (CASE_HIGH (min_label), vr_max) == 0)
3679 CASE_HIGH (min_label)
3680 = int_const_binop (MINUS_EXPR, vr_min, one_cst);
3682 else
3684 /* If OP's value range is ~[2,8] and the low label range is
3685 0 ... 3, truncate the label's range to 0 ... 1. */
3686 if (tree_int_cst_compare (CASE_LOW (min_label), vr_min) < 0
3687 && CASE_HIGH (min_label) != NULL_TREE
3688 && tree_int_cst_compare (CASE_HIGH (min_label), vr_min) >= 0)
3689 CASE_HIGH (min_label)
3690 = int_const_binop (MINUS_EXPR, vr_min, one_cst);
3692 /* If OP's value range is ~[2,8] and the high label range is
3693 7 ... 10, truncate the label's range to 9 ... 10. */
3694 if (tree_int_cst_compare (CASE_LOW (max_label), vr_max) <= 0
3695 && CASE_HIGH (max_label) != NULL_TREE
3696 && tree_int_cst_compare (CASE_HIGH (max_label), vr_max) > 0)
3697 CASE_LOW (max_label)
3698 = int_const_binop (PLUS_EXPR, vr_max, one_cst);
3702 /* Canonicalize singleton case ranges. */
3703 if (tree_int_cst_equal (CASE_LOW (min_label), CASE_HIGH (min_label)))
3704 CASE_HIGH (min_label) = NULL_TREE;
3705 if (tree_int_cst_equal (CASE_LOW (max_label), CASE_HIGH (max_label)))
3706 CASE_HIGH (max_label) = NULL_TREE;
3709 /* We can also eliminate case labels that lie completely outside OP's value
3710 range. */
3712 /* Bail out if this is just all edges taken. */
3713 if (i == 1
3714 && j == n - 1
3715 && take_default)
3716 return false;
3718 /* Build a new vector of taken case labels. */
3719 vec2 = make_tree_vec (j - i + 1 + l - k + 1 + (int)take_default);
3720 n2 = 0;
3722 /* Add the default edge, if necessary. */
3723 if (take_default)
3724 TREE_VEC_ELT (vec2, n2++) = gimple_switch_default_label (stmt);
3726 for (; i <= j; ++i, ++n2)
3727 TREE_VEC_ELT (vec2, n2) = gimple_switch_label (stmt, i);
3729 for (; k <= l; ++k, ++n2)
3730 TREE_VEC_ELT (vec2, n2) = gimple_switch_label (stmt, k);
3732 /* Mark needed edges. */
3733 for (i = 0; i < n2; ++i)
3735 e = find_edge (gimple_bb (stmt),
3736 label_to_block (cfun,
3737 CASE_LABEL (TREE_VEC_ELT (vec2, i))));
3738 e->aux = (void *)-1;
3741 /* Queue not needed edges for later removal. */
3742 FOR_EACH_EDGE (e, ei, gimple_bb (stmt)->succs)
3744 if (e->aux == (void *)-1)
3746 e->aux = NULL;
3747 continue;
3750 if (dump_file && (dump_flags & TDF_DETAILS))
3752 fprintf (dump_file, "removing unreachable case label\n");
3754 to_remove_edges.safe_push (e);
3755 e->flags &= ~EDGE_EXECUTABLE;
3756 e->flags |= EDGE_IGNORE;
3759 /* And queue an update for the stmt. */
3760 su.stmt = stmt;
3761 su.vec = vec2;
3762 to_update_switch_stmts.safe_push (su);
3763 return true;
3766 void
3767 simplify_using_ranges::cleanup_edges_and_switches (void)
3769 int i;
3770 edge e;
3771 switch_update *su;
3773 /* Remove dead edges from SWITCH_EXPR optimization. This leaves the
3774 CFG in a broken state and requires a cfg_cleanup run. */
3775 FOR_EACH_VEC_ELT (to_remove_edges, i, e)
3776 remove_edge (e);
3778 /* Update SWITCH_EXPR case label vector. */
3779 FOR_EACH_VEC_ELT (to_update_switch_stmts, i, su)
3781 size_t j;
3782 size_t n = TREE_VEC_LENGTH (su->vec);
3783 tree label;
3784 gimple_switch_set_num_labels (su->stmt, n);
3785 for (j = 0; j < n; j++)
3786 gimple_switch_set_label (su->stmt, j, TREE_VEC_ELT (su->vec, j));
3787 /* As we may have replaced the default label with a regular one
3788 make sure to make it a real default label again. This ensures
3789 optimal expansion. */
3790 label = gimple_switch_label (su->stmt, 0);
3791 CASE_LOW (label) = NULL_TREE;
3792 CASE_HIGH (label) = NULL_TREE;
3795 if (!to_remove_edges.is_empty ())
3797 free_dominance_info (CDI_DOMINATORS);
3798 loops_state_set (LOOPS_NEED_FIXUP);
3801 to_remove_edges.release ();
3802 to_update_switch_stmts.release ();
3805 /* Simplify an integral conversion from an SSA name in STMT. */
3807 static bool
3808 simplify_conversion_using_ranges (gimple_stmt_iterator *gsi, gimple *stmt)
3810 tree innerop, middleop, finaltype;
3811 gimple *def_stmt;
3812 signop inner_sgn, middle_sgn, final_sgn;
3813 unsigned inner_prec, middle_prec, final_prec;
3814 widest_int innermin, innermed, innermax, middlemin, middlemed, middlemax;
3816 finaltype = TREE_TYPE (gimple_assign_lhs (stmt));
3817 if (!INTEGRAL_TYPE_P (finaltype))
3818 return false;
3819 middleop = gimple_assign_rhs1 (stmt);
3820 def_stmt = SSA_NAME_DEF_STMT (middleop);
3821 if (!is_gimple_assign (def_stmt)
3822 || !CONVERT_EXPR_CODE_P (gimple_assign_rhs_code (def_stmt)))
3823 return false;
3824 innerop = gimple_assign_rhs1 (def_stmt);
3825 if (TREE_CODE (innerop) != SSA_NAME
3826 || SSA_NAME_OCCURS_IN_ABNORMAL_PHI (innerop))
3827 return false;
3829 /* Get the value-range of the inner operand. Use get_range_info in
3830 case innerop was created during substitute-and-fold. */
3831 wide_int imin, imax;
3832 value_range vr;
3833 if (!INTEGRAL_TYPE_P (TREE_TYPE (innerop)))
3834 return false;
3835 get_range_info (innerop, vr);
3836 if (vr.undefined_p () || vr.varying_p ())
3837 return false;
3838 innermin = widest_int::from (vr.lower_bound (), TYPE_SIGN (TREE_TYPE (innerop)));
3839 innermax = widest_int::from (vr.upper_bound (), TYPE_SIGN (TREE_TYPE (innerop)));
3841 /* Simulate the conversion chain to check if the result is equal if
3842 the middle conversion is removed. */
3843 inner_prec = TYPE_PRECISION (TREE_TYPE (innerop));
3844 middle_prec = TYPE_PRECISION (TREE_TYPE (middleop));
3845 final_prec = TYPE_PRECISION (finaltype);
3847 /* If the first conversion is not injective, the second must not
3848 be widening. */
3849 if (wi::gtu_p (innermax - innermin,
3850 wi::mask <widest_int> (middle_prec, false))
3851 && middle_prec < final_prec)
3852 return false;
3853 /* We also want a medium value so that we can track the effect that
3854 narrowing conversions with sign change have. */
3855 inner_sgn = TYPE_SIGN (TREE_TYPE (innerop));
3856 if (inner_sgn == UNSIGNED)
3857 innermed = wi::shifted_mask <widest_int> (1, inner_prec - 1, false);
3858 else
3859 innermed = 0;
3860 if (wi::cmp (innermin, innermed, inner_sgn) >= 0
3861 || wi::cmp (innermed, innermax, inner_sgn) >= 0)
3862 innermed = innermin;
3864 middle_sgn = TYPE_SIGN (TREE_TYPE (middleop));
3865 middlemin = wi::ext (innermin, middle_prec, middle_sgn);
3866 middlemed = wi::ext (innermed, middle_prec, middle_sgn);
3867 middlemax = wi::ext (innermax, middle_prec, middle_sgn);
3869 /* Require that the final conversion applied to both the original
3870 and the intermediate range produces the same result. */
3871 final_sgn = TYPE_SIGN (finaltype);
3872 if (wi::ext (middlemin, final_prec, final_sgn)
3873 != wi::ext (innermin, final_prec, final_sgn)
3874 || wi::ext (middlemed, final_prec, final_sgn)
3875 != wi::ext (innermed, final_prec, final_sgn)
3876 || wi::ext (middlemax, final_prec, final_sgn)
3877 != wi::ext (innermax, final_prec, final_sgn))
3878 return false;
3880 gimple_assign_set_rhs1 (stmt, innerop);
3881 fold_stmt (gsi, follow_single_use_edges);
3882 return true;
3885 /* Simplify a conversion from integral SSA name to float in STMT. */
3887 bool
3888 simplify_using_ranges::simplify_float_conversion_using_ranges
3889 (gimple_stmt_iterator *gsi,
3890 gimple *stmt)
3892 tree rhs1 = gimple_assign_rhs1 (stmt);
3893 const value_range *vr = query->get_value_range (rhs1, stmt);
3894 scalar_float_mode fltmode
3895 = SCALAR_FLOAT_TYPE_MODE (TREE_TYPE (gimple_assign_lhs (stmt)));
3896 scalar_int_mode mode;
3897 tree tem;
3898 gassign *conv;
3900 /* We can only handle constant ranges. */
3901 if (!range_int_cst_p (vr))
3902 return false;
3904 /* First check if we can use a signed type in place of an unsigned. */
3905 scalar_int_mode rhs_mode = SCALAR_INT_TYPE_MODE (TREE_TYPE (rhs1));
3906 if (TYPE_UNSIGNED (TREE_TYPE (rhs1))
3907 && can_float_p (fltmode, rhs_mode, 0) != CODE_FOR_nothing
3908 && range_fits_type_p (vr, TYPE_PRECISION (TREE_TYPE (rhs1)), SIGNED))
3909 mode = rhs_mode;
3910 /* If we can do the conversion in the current input mode do nothing. */
3911 else if (can_float_p (fltmode, rhs_mode,
3912 TYPE_UNSIGNED (TREE_TYPE (rhs1))) != CODE_FOR_nothing)
3913 return false;
3914 /* Otherwise search for a mode we can use, starting from the narrowest
3915 integer mode available. */
3916 else
3918 mode = NARROWEST_INT_MODE;
3919 for (;;)
3921 /* If we cannot do a signed conversion to float from mode
3922 or if the value-range does not fit in the signed type
3923 try with a wider mode. */
3924 if (can_float_p (fltmode, mode, 0) != CODE_FOR_nothing
3925 && range_fits_type_p (vr, GET_MODE_PRECISION (mode), SIGNED))
3926 break;
3928 /* But do not widen the input. Instead leave that to the
3929 optabs expansion code. */
3930 if (!GET_MODE_WIDER_MODE (mode).exists (&mode)
3931 || GET_MODE_PRECISION (mode) > TYPE_PRECISION (TREE_TYPE (rhs1)))
3932 return false;
3936 /* It works, insert a truncation or sign-change before the
3937 float conversion. */
3938 tem = make_ssa_name (build_nonstandard_integer_type
3939 (GET_MODE_PRECISION (mode), 0));
3940 conv = gimple_build_assign (tem, NOP_EXPR, rhs1);
3941 gsi_insert_before (gsi, conv, GSI_SAME_STMT);
3942 gimple_assign_set_rhs1 (stmt, tem);
3943 fold_stmt (gsi, follow_single_use_edges);
3945 return true;
3948 /* Simplify an internal fn call using ranges if possible. */
3950 bool
3951 simplify_using_ranges::simplify_internal_call_using_ranges
3952 (gimple_stmt_iterator *gsi,
3953 gimple *stmt)
3955 enum tree_code subcode;
3956 bool is_ubsan = false;
3957 bool ovf = false;
3958 switch (gimple_call_internal_fn (stmt))
3960 case IFN_UBSAN_CHECK_ADD:
3961 subcode = PLUS_EXPR;
3962 is_ubsan = true;
3963 break;
3964 case IFN_UBSAN_CHECK_SUB:
3965 subcode = MINUS_EXPR;
3966 is_ubsan = true;
3967 break;
3968 case IFN_UBSAN_CHECK_MUL:
3969 subcode = MULT_EXPR;
3970 is_ubsan = true;
3971 break;
3972 case IFN_ADD_OVERFLOW:
3973 subcode = PLUS_EXPR;
3974 break;
3975 case IFN_SUB_OVERFLOW:
3976 subcode = MINUS_EXPR;
3977 break;
3978 case IFN_MUL_OVERFLOW:
3979 subcode = MULT_EXPR;
3980 break;
3981 default:
3982 return false;
3985 tree op0 = gimple_call_arg (stmt, 0);
3986 tree op1 = gimple_call_arg (stmt, 1);
3987 tree type;
3988 if (is_ubsan)
3990 type = TREE_TYPE (op0);
3991 if (VECTOR_TYPE_P (type))
3992 return false;
3994 else if (gimple_call_lhs (stmt) == NULL_TREE)
3995 return false;
3996 else
3997 type = TREE_TYPE (TREE_TYPE (gimple_call_lhs (stmt)));
3998 if (!check_for_binary_op_overflow (query, subcode, type, op0, op1, &ovf)
3999 || (is_ubsan && ovf))
4000 return false;
4002 gimple *g;
4003 location_t loc = gimple_location (stmt);
4004 if (is_ubsan)
4005 g = gimple_build_assign (gimple_call_lhs (stmt), subcode, op0, op1);
4006 else
4008 int prec = TYPE_PRECISION (type);
4009 tree utype = type;
4010 if (ovf
4011 || !useless_type_conversion_p (type, TREE_TYPE (op0))
4012 || !useless_type_conversion_p (type, TREE_TYPE (op1)))
4013 utype = build_nonstandard_integer_type (prec, 1);
4014 if (TREE_CODE (op0) == INTEGER_CST)
4015 op0 = fold_convert (utype, op0);
4016 else if (!useless_type_conversion_p (utype, TREE_TYPE (op0)))
4018 g = gimple_build_assign (make_ssa_name (utype), NOP_EXPR, op0);
4019 gimple_set_location (g, loc);
4020 gsi_insert_before (gsi, g, GSI_SAME_STMT);
4021 op0 = gimple_assign_lhs (g);
4023 if (TREE_CODE (op1) == INTEGER_CST)
4024 op1 = fold_convert (utype, op1);
4025 else if (!useless_type_conversion_p (utype, TREE_TYPE (op1)))
4027 g = gimple_build_assign (make_ssa_name (utype), NOP_EXPR, op1);
4028 gimple_set_location (g, loc);
4029 gsi_insert_before (gsi, g, GSI_SAME_STMT);
4030 op1 = gimple_assign_lhs (g);
4032 g = gimple_build_assign (make_ssa_name (utype), subcode, op0, op1);
4033 gimple_set_location (g, loc);
4034 gsi_insert_before (gsi, g, GSI_SAME_STMT);
4035 if (utype != type)
4037 g = gimple_build_assign (make_ssa_name (type), NOP_EXPR,
4038 gimple_assign_lhs (g));
4039 gimple_set_location (g, loc);
4040 gsi_insert_before (gsi, g, GSI_SAME_STMT);
4042 g = gimple_build_assign (gimple_call_lhs (stmt), COMPLEX_EXPR,
4043 gimple_assign_lhs (g),
4044 build_int_cst (type, ovf));
4046 gimple_set_location (g, loc);
4047 gsi_replace (gsi, g, false);
4048 return true;
4051 /* Return true if VAR is a two-valued variable. Set a and b with the
4052 two-values when it is true. Return false otherwise. */
4054 bool
4055 simplify_using_ranges::two_valued_val_range_p (tree var, tree *a, tree *b)
4057 value_range vr = *query->get_value_range (var);
4058 vr.normalize_symbolics ();
4059 if (vr.varying_p () || vr.undefined_p ())
4060 return false;
4062 if ((vr.num_pairs () == 1 && vr.upper_bound () - vr.lower_bound () == 1)
4063 || (vr.num_pairs () == 2
4064 && vr.lower_bound (0) == vr.upper_bound (0)
4065 && vr.lower_bound (1) == vr.upper_bound (1)))
4067 *a = wide_int_to_tree (TREE_TYPE (var), vr.lower_bound ());
4068 *b = wide_int_to_tree (TREE_TYPE (var), vr.upper_bound ());
4069 return true;
4071 return false;
4074 simplify_using_ranges::simplify_using_ranges (range_query *query)
4075 : query (query)
4077 to_remove_edges = vNULL;
4078 to_update_switch_stmts = vNULL;
4081 simplify_using_ranges::~simplify_using_ranges ()
4083 cleanup_edges_and_switches ();
4086 /* Simplify STMT using ranges if possible. */
4088 bool
4089 simplify_using_ranges::simplify (gimple_stmt_iterator *gsi)
4091 gcc_checking_assert (query);
4093 gimple *stmt = gsi_stmt (*gsi);
4094 if (is_gimple_assign (stmt))
4096 enum tree_code rhs_code = gimple_assign_rhs_code (stmt);
4097 tree rhs1 = gimple_assign_rhs1 (stmt);
4098 tree rhs2 = gimple_assign_rhs2 (stmt);
4099 tree lhs = gimple_assign_lhs (stmt);
4100 tree val1 = NULL_TREE, val2 = NULL_TREE;
4101 use_operand_p use_p;
4102 gimple *use_stmt;
4104 /* Convert:
4105 LHS = CST BINOP VAR
4106 Where VAR is two-valued and LHS is used in GIMPLE_COND only
4108 LHS = VAR == VAL1 ? (CST BINOP VAL1) : (CST BINOP VAL2)
4110 Also handles:
4111 LHS = VAR BINOP CST
4112 Where VAR is two-valued and LHS is used in GIMPLE_COND only
4114 LHS = VAR == VAL1 ? (VAL1 BINOP CST) : (VAL2 BINOP CST) */
4116 if (TREE_CODE_CLASS (rhs_code) == tcc_binary
4117 && INTEGRAL_TYPE_P (TREE_TYPE (rhs1))
4118 && ((TREE_CODE (rhs1) == INTEGER_CST
4119 && TREE_CODE (rhs2) == SSA_NAME)
4120 || (TREE_CODE (rhs2) == INTEGER_CST
4121 && TREE_CODE (rhs1) == SSA_NAME))
4122 && single_imm_use (lhs, &use_p, &use_stmt)
4123 && gimple_code (use_stmt) == GIMPLE_COND)
4126 tree new_rhs1 = NULL_TREE;
4127 tree new_rhs2 = NULL_TREE;
4128 tree cmp_var = NULL_TREE;
4130 if (TREE_CODE (rhs2) == SSA_NAME
4131 && two_valued_val_range_p (rhs2, &val1, &val2))
4133 /* Optimize RHS1 OP [VAL1, VAL2]. */
4134 new_rhs1 = int_const_binop (rhs_code, rhs1, val1);
4135 new_rhs2 = int_const_binop (rhs_code, rhs1, val2);
4136 cmp_var = rhs2;
4138 else if (TREE_CODE (rhs1) == SSA_NAME
4139 && two_valued_val_range_p (rhs1, &val1, &val2))
4141 /* Optimize [VAL1, VAL2] OP RHS2. */
4142 new_rhs1 = int_const_binop (rhs_code, val1, rhs2);
4143 new_rhs2 = int_const_binop (rhs_code, val2, rhs2);
4144 cmp_var = rhs1;
4147 /* If we could not find two-vals or the optimzation is invalid as
4148 in divide by zero, new_rhs1 / new_rhs will be NULL_TREE. */
4149 if (new_rhs1 && new_rhs2)
4151 tree cond = build2 (EQ_EXPR, boolean_type_node, cmp_var, val1);
4152 gimple_assign_set_rhs_with_ops (gsi,
4153 COND_EXPR, cond,
4154 new_rhs1,
4155 new_rhs2);
4156 update_stmt (gsi_stmt (*gsi));
4157 fold_stmt (gsi, follow_single_use_edges);
4158 return true;
4162 switch (rhs_code)
4164 case EQ_EXPR:
4165 case NE_EXPR:
4166 /* Transform EQ_EXPR, NE_EXPR into BIT_XOR_EXPR or identity
4167 if the RHS is zero or one, and the LHS are known to be boolean
4168 values. */
4169 if (INTEGRAL_TYPE_P (TREE_TYPE (rhs1)))
4170 return simplify_truth_ops_using_ranges (gsi, stmt);
4171 break;
4173 /* Transform TRUNC_DIV_EXPR and TRUNC_MOD_EXPR into RSHIFT_EXPR
4174 and BIT_AND_EXPR respectively if the first operand is greater
4175 than zero and the second operand is an exact power of two.
4176 Also optimize TRUNC_MOD_EXPR away if the second operand is
4177 constant and the first operand already has the right value
4178 range. */
4179 case TRUNC_DIV_EXPR:
4180 case TRUNC_MOD_EXPR:
4181 if ((TREE_CODE (rhs1) == SSA_NAME
4182 || TREE_CODE (rhs1) == INTEGER_CST)
4183 && INTEGRAL_TYPE_P (TREE_TYPE (rhs1)))
4184 return simplify_div_or_mod_using_ranges (gsi, stmt);
4185 break;
4187 /* Transform ABS (X) into X or -X as appropriate. */
4188 case ABS_EXPR:
4189 if (TREE_CODE (rhs1) == SSA_NAME
4190 && INTEGRAL_TYPE_P (TREE_TYPE (rhs1)))
4191 return simplify_abs_using_ranges (gsi, stmt);
4192 break;
4194 case BIT_AND_EXPR:
4195 case BIT_IOR_EXPR:
4196 /* Optimize away BIT_AND_EXPR and BIT_IOR_EXPR
4197 if all the bits being cleared are already cleared or
4198 all the bits being set are already set. */
4199 if (INTEGRAL_TYPE_P (TREE_TYPE (rhs1)))
4200 return simplify_bit_ops_using_ranges (gsi, stmt);
4201 break;
4203 CASE_CONVERT:
4204 if (TREE_CODE (rhs1) == SSA_NAME
4205 && INTEGRAL_TYPE_P (TREE_TYPE (rhs1)))
4206 return simplify_conversion_using_ranges (gsi, stmt);
4207 break;
4209 case FLOAT_EXPR:
4210 if (TREE_CODE (rhs1) == SSA_NAME
4211 && INTEGRAL_TYPE_P (TREE_TYPE (rhs1)))
4212 return simplify_float_conversion_using_ranges (gsi, stmt);
4213 break;
4215 case MIN_EXPR:
4216 case MAX_EXPR:
4217 return simplify_min_or_max_using_ranges (gsi, stmt);
4219 default:
4220 break;
4223 else if (gimple_code (stmt) == GIMPLE_COND)
4224 return simplify_cond_using_ranges_1 (as_a <gcond *> (stmt));
4225 else if (gimple_code (stmt) == GIMPLE_SWITCH)
4226 return simplify_switch_using_ranges (as_a <gswitch *> (stmt));
4227 else if (is_gimple_call (stmt)
4228 && gimple_call_internal_p (stmt))
4229 return simplify_internal_call_using_ranges (gsi, stmt);
4231 return false;
4234 /* Set the lattice entry for VAR to VR. */
4236 void
4237 vr_values::set_vr_value (tree var, value_range_equiv *vr)
4239 if (SSA_NAME_VERSION (var) >= num_vr_values)
4240 return;
4241 vr_value[SSA_NAME_VERSION (var)] = vr;
4244 /* Swap the lattice entry for VAR with VR and return the old entry. */
4246 value_range_equiv *
4247 vr_values::swap_vr_value (tree var, value_range_equiv *vr)
4249 if (SSA_NAME_VERSION (var) >= num_vr_values)
4250 return NULL;
4251 std::swap (vr_value[SSA_NAME_VERSION (var)], vr);
4252 return vr;