1 /* Support routines for Value Range Propagation (VRP).
2 Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
4 Contributed by Diego Novillo <dnovillo@redhat.com>.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
24 #include "coretypes.h"
29 #include "basic-block.h"
30 #include "tree-flow.h"
31 #include "tree-pass.h"
32 #include "tree-dump.h"
34 #include "diagnostic.h"
38 #include "tree-scalar-evolution.h"
39 #include "tree-ssa-propagate.h"
40 #include "tree-chrec.h"
43 /* Set of SSA names found live during the RPO traversal of the function
44 for still active basic-blocks. */
47 /* Return true if the SSA name NAME is live on the edge E. */
50 live_on_edge (edge e, tree name)
52 return (live[e->dest->index]
53 && TEST_BIT (live[e->dest->index], SSA_NAME_VERSION (name)));
56 /* Local functions. */
57 static int compare_values (tree val1, tree val2);
58 static int compare_values_warnv (tree val1, tree val2, bool *);
59 static void vrp_meet (value_range_t *, value_range_t *);
60 static tree vrp_evaluate_conditional_warnv_with_ops (enum tree_code,
61 tree, tree, bool, bool *,
64 /* Location information for ASSERT_EXPRs. Each instance of this
65 structure describes an ASSERT_EXPR for an SSA name. Since a single
66 SSA name may have more than one assertion associated with it, these
67 locations are kept in a linked list attached to the corresponding
71 /* Basic block where the assertion would be inserted. */
74 /* Some assertions need to be inserted on an edge (e.g., assertions
75 generated by COND_EXPRs). In those cases, BB will be NULL. */
78 /* Pointer to the statement that generated this assertion. */
79 gimple_stmt_iterator si;
81 /* Predicate code for the ASSERT_EXPR. Must be COMPARISON_CLASS_P. */
82 enum tree_code comp_code;
84 /* Value being compared against. */
87 /* Expression to compare. */
90 /* Next node in the linked list. */
91 struct assert_locus_d *next;
94 typedef struct assert_locus_d *assert_locus_t;
96 /* If bit I is present, it means that SSA name N_i has a list of
97 assertions that should be inserted in the IL. */
98 static bitmap need_assert_for;
100 /* Array of locations lists where to insert assertions. ASSERTS_FOR[I]
101 holds a list of ASSERT_LOCUS_T nodes that describe where
102 ASSERT_EXPRs for SSA name N_I should be inserted. */
103 static assert_locus_t *asserts_for;
105 /* Value range array. After propagation, VR_VALUE[I] holds the range
106 of values that SSA name N_I may take. */
107 static value_range_t **vr_value;
109 /* For a PHI node which sets SSA name N_I, VR_COUNTS[I] holds the
110 number of executable edges we saw the last time we visited the
112 static int *vr_phi_edge_counts;
119 static VEC (edge, heap) *to_remove_edges;
120 DEF_VEC_O(switch_update);
121 DEF_VEC_ALLOC_O(switch_update, heap);
122 static VEC (switch_update, heap) *to_update_switch_stmts;
125 /* Return the maximum value for TYPE. */
128 vrp_val_max (const_tree type)
130 if (!INTEGRAL_TYPE_P (type))
133 return TYPE_MAX_VALUE (type);
136 /* Return the minimum value for TYPE. */
139 vrp_val_min (const_tree type)
141 if (!INTEGRAL_TYPE_P (type))
144 return TYPE_MIN_VALUE (type);
147 /* Return whether VAL is equal to the maximum value of its type. This
148 will be true for a positive overflow infinity. We can't do a
149 simple equality comparison with TYPE_MAX_VALUE because C typedefs
150 and Ada subtypes can produce types whose TYPE_MAX_VALUE is not ==
151 to the integer constant with the same value in the type. */
154 vrp_val_is_max (const_tree val)
156 tree type_max = vrp_val_max (TREE_TYPE (val));
157 return (val == type_max
158 || (type_max != NULL_TREE
159 && operand_equal_p (val, type_max, 0)));
162 /* Return whether VAL is equal to the minimum value of its type. This
163 will be true for a negative overflow infinity. */
166 vrp_val_is_min (const_tree val)
168 tree type_min = vrp_val_min (TREE_TYPE (val));
169 return (val == type_min
170 || (type_min != NULL_TREE
171 && operand_equal_p (val, type_min, 0)));
175 /* Return whether TYPE should use an overflow infinity distinct from
176 TYPE_{MIN,MAX}_VALUE. We use an overflow infinity value to
177 represent a signed overflow during VRP computations. An infinity
178 is distinct from a half-range, which will go from some number to
179 TYPE_{MIN,MAX}_VALUE. */
182 needs_overflow_infinity (const_tree type)
184 return INTEGRAL_TYPE_P (type) && !TYPE_OVERFLOW_WRAPS (type);
187 /* Return whether TYPE can support our overflow infinity
188 representation: we use the TREE_OVERFLOW flag, which only exists
189 for constants. If TYPE doesn't support this, we don't optimize
190 cases which would require signed overflow--we drop them to
194 supports_overflow_infinity (const_tree type)
196 tree min = vrp_val_min (type), max = vrp_val_max (type);
197 #ifdef ENABLE_CHECKING
198 gcc_assert (needs_overflow_infinity (type));
200 return (min != NULL_TREE
201 && CONSTANT_CLASS_P (min)
203 && CONSTANT_CLASS_P (max));
206 /* VAL is the maximum or minimum value of a type. Return a
207 corresponding overflow infinity. */
210 make_overflow_infinity (tree val)
212 #ifdef ENABLE_CHECKING
213 gcc_assert (val != NULL_TREE && CONSTANT_CLASS_P (val));
215 val = copy_node (val);
216 TREE_OVERFLOW (val) = 1;
220 /* Return a negative overflow infinity for TYPE. */
223 negative_overflow_infinity (tree type)
225 #ifdef ENABLE_CHECKING
226 gcc_assert (supports_overflow_infinity (type));
228 return make_overflow_infinity (vrp_val_min (type));
231 /* Return a positive overflow infinity for TYPE. */
234 positive_overflow_infinity (tree type)
236 #ifdef ENABLE_CHECKING
237 gcc_assert (supports_overflow_infinity (type));
239 return make_overflow_infinity (vrp_val_max (type));
242 /* Return whether VAL is a negative overflow infinity. */
245 is_negative_overflow_infinity (const_tree val)
247 return (needs_overflow_infinity (TREE_TYPE (val))
248 && CONSTANT_CLASS_P (val)
249 && TREE_OVERFLOW (val)
250 && vrp_val_is_min (val));
253 /* Return whether VAL is a positive overflow infinity. */
256 is_positive_overflow_infinity (const_tree val)
258 return (needs_overflow_infinity (TREE_TYPE (val))
259 && CONSTANT_CLASS_P (val)
260 && TREE_OVERFLOW (val)
261 && vrp_val_is_max (val));
264 /* Return whether VAL is a positive or negative overflow infinity. */
267 is_overflow_infinity (const_tree val)
269 return (needs_overflow_infinity (TREE_TYPE (val))
270 && CONSTANT_CLASS_P (val)
271 && TREE_OVERFLOW (val)
272 && (vrp_val_is_min (val) || vrp_val_is_max (val)));
275 /* Return whether STMT has a constant rhs that is_overflow_infinity. */
278 stmt_overflow_infinity (gimple stmt)
280 if (is_gimple_assign (stmt)
281 && get_gimple_rhs_class (gimple_assign_rhs_code (stmt)) ==
283 return is_overflow_infinity (gimple_assign_rhs1 (stmt));
287 /* If VAL is now an overflow infinity, return VAL. Otherwise, return
288 the same value with TREE_OVERFLOW clear. This can be used to avoid
289 confusing a regular value with an overflow value. */
292 avoid_overflow_infinity (tree val)
294 if (!is_overflow_infinity (val))
297 if (vrp_val_is_max (val))
298 return vrp_val_max (TREE_TYPE (val));
301 #ifdef ENABLE_CHECKING
302 gcc_assert (vrp_val_is_min (val));
304 return vrp_val_min (TREE_TYPE (val));
309 /* Return true if ARG is marked with the nonnull attribute in the
310 current function signature. */
313 nonnull_arg_p (const_tree arg)
315 tree t, attrs, fntype;
316 unsigned HOST_WIDE_INT arg_num;
318 gcc_assert (TREE_CODE (arg) == PARM_DECL && POINTER_TYPE_P (TREE_TYPE (arg)));
320 /* The static chain decl is always non null. */
321 if (arg == cfun->static_chain_decl)
324 fntype = TREE_TYPE (current_function_decl);
325 attrs = lookup_attribute ("nonnull", TYPE_ATTRIBUTES (fntype));
327 /* If "nonnull" wasn't specified, we know nothing about the argument. */
328 if (attrs == NULL_TREE)
331 /* If "nonnull" applies to all the arguments, then ARG is non-null. */
332 if (TREE_VALUE (attrs) == NULL_TREE)
335 /* Get the position number for ARG in the function signature. */
336 for (arg_num = 1, t = DECL_ARGUMENTS (current_function_decl);
338 t = TREE_CHAIN (t), arg_num++)
344 gcc_assert (t == arg);
346 /* Now see if ARG_NUM is mentioned in the nonnull list. */
347 for (t = TREE_VALUE (attrs); t; t = TREE_CHAIN (t))
349 if (compare_tree_int (TREE_VALUE (t), arg_num) == 0)
357 /* Set value range VR to VR_VARYING. */
360 set_value_range_to_varying (value_range_t *vr)
362 vr->type = VR_VARYING;
363 vr->min = vr->max = NULL_TREE;
365 bitmap_clear (vr->equiv);
369 /* Set value range VR to {T, MIN, MAX, EQUIV}. */
372 set_value_range (value_range_t *vr, enum value_range_type t, tree min,
373 tree max, bitmap equiv)
375 #if defined ENABLE_CHECKING
376 /* Check the validity of the range. */
377 if (t == VR_RANGE || t == VR_ANTI_RANGE)
381 gcc_assert (min && max);
383 if (INTEGRAL_TYPE_P (TREE_TYPE (min)) && t == VR_ANTI_RANGE)
384 gcc_assert (!vrp_val_is_min (min) || !vrp_val_is_max (max));
386 cmp = compare_values (min, max);
387 gcc_assert (cmp == 0 || cmp == -1 || cmp == -2);
389 if (needs_overflow_infinity (TREE_TYPE (min)))
390 gcc_assert (!is_overflow_infinity (min)
391 || !is_overflow_infinity (max));
394 if (t == VR_UNDEFINED || t == VR_VARYING)
395 gcc_assert (min == NULL_TREE && max == NULL_TREE);
397 if (t == VR_UNDEFINED || t == VR_VARYING)
398 gcc_assert (equiv == NULL || bitmap_empty_p (equiv));
405 /* Since updating the equivalence set involves deep copying the
406 bitmaps, only do it if absolutely necessary. */
407 if (vr->equiv == NULL
409 vr->equiv = BITMAP_ALLOC (NULL);
411 if (equiv != vr->equiv)
413 if (equiv && !bitmap_empty_p (equiv))
414 bitmap_copy (vr->equiv, equiv);
416 bitmap_clear (vr->equiv);
421 /* Set value range VR to the canonical form of {T, MIN, MAX, EQUIV}.
422 This means adjusting T, MIN and MAX representing the case of a
423 wrapping range with MAX < MIN covering [MIN, type_max] U [type_min, MAX]
424 as anti-rage ~[MAX+1, MIN-1]. Likewise for wrapping anti-ranges.
425 In corner cases where MAX+1 or MIN-1 wraps this will fall back
427 This routine exists to ease canonicalization in the case where we
428 extract ranges from var + CST op limit. */
431 set_and_canonicalize_value_range (value_range_t *vr, enum value_range_type t,
432 tree min, tree max, bitmap equiv)
434 /* Nothing to canonicalize for symbolic or unknown or varying ranges. */
436 && t != VR_ANTI_RANGE)
437 || TREE_CODE (min) != INTEGER_CST
438 || TREE_CODE (max) != INTEGER_CST)
440 set_value_range (vr, t, min, max, equiv);
444 /* Wrong order for min and max, to swap them and the VR type we need
446 if (tree_int_cst_lt (max, min))
448 tree one = build_int_cst (TREE_TYPE (min), 1);
449 tree tmp = int_const_binop (PLUS_EXPR, max, one, 0);
450 max = int_const_binop (MINUS_EXPR, min, one, 0);
453 /* There's one corner case, if we had [C+1, C] before we now have
454 that again. But this represents an empty value range, so drop
455 to varying in this case. */
456 if (tree_int_cst_lt (max, min))
458 set_value_range_to_varying (vr);
462 t = t == VR_RANGE ? VR_ANTI_RANGE : VR_RANGE;
465 /* Anti-ranges that can be represented as ranges should be so. */
466 if (t == VR_ANTI_RANGE)
468 bool is_min = vrp_val_is_min (min);
469 bool is_max = vrp_val_is_max (max);
471 if (is_min && is_max)
473 /* We cannot deal with empty ranges, drop to varying. */
474 set_value_range_to_varying (vr);
478 /* As a special exception preserve non-null ranges. */
479 && !(TYPE_UNSIGNED (TREE_TYPE (min))
480 && integer_zerop (max)))
482 tree one = build_int_cst (TREE_TYPE (max), 1);
483 min = int_const_binop (PLUS_EXPR, max, one, 0);
484 max = vrp_val_max (TREE_TYPE (max));
489 tree one = build_int_cst (TREE_TYPE (min), 1);
490 max = int_const_binop (MINUS_EXPR, min, one, 0);
491 min = vrp_val_min (TREE_TYPE (min));
496 set_value_range (vr, t, min, max, equiv);
499 /* Copy value range FROM into value range TO. */
502 copy_value_range (value_range_t *to, value_range_t *from)
504 set_value_range (to, from->type, from->min, from->max, from->equiv);
507 /* Set value range VR to a single value. This function is only called
508 with values we get from statements, and exists to clear the
509 TREE_OVERFLOW flag so that we don't think we have an overflow
510 infinity when we shouldn't. */
513 set_value_range_to_value (value_range_t *vr, tree val, bitmap equiv)
515 gcc_assert (is_gimple_min_invariant (val));
516 val = avoid_overflow_infinity (val);
517 set_value_range (vr, VR_RANGE, val, val, equiv);
520 /* Set value range VR to a non-negative range of type TYPE.
521 OVERFLOW_INFINITY indicates whether to use an overflow infinity
522 rather than TYPE_MAX_VALUE; this should be true if we determine
523 that the range is nonnegative based on the assumption that signed
524 overflow does not occur. */
527 set_value_range_to_nonnegative (value_range_t *vr, tree type,
528 bool overflow_infinity)
532 if (overflow_infinity && !supports_overflow_infinity (type))
534 set_value_range_to_varying (vr);
538 zero = build_int_cst (type, 0);
539 set_value_range (vr, VR_RANGE, zero,
541 ? positive_overflow_infinity (type)
542 : TYPE_MAX_VALUE (type)),
546 /* Set value range VR to a non-NULL range of type TYPE. */
549 set_value_range_to_nonnull (value_range_t *vr, tree type)
551 tree zero = build_int_cst (type, 0);
552 set_value_range (vr, VR_ANTI_RANGE, zero, zero, vr->equiv);
556 /* Set value range VR to a NULL range of type TYPE. */
559 set_value_range_to_null (value_range_t *vr, tree type)
561 set_value_range_to_value (vr, build_int_cst (type, 0), vr->equiv);
565 /* Set value range VR to a range of a truthvalue of type TYPE. */
568 set_value_range_to_truthvalue (value_range_t *vr, tree type)
570 if (TYPE_PRECISION (type) == 1)
571 set_value_range_to_varying (vr);
573 set_value_range (vr, VR_RANGE,
574 build_int_cst (type, 0), build_int_cst (type, 1),
579 /* Set value range VR to VR_UNDEFINED. */
582 set_value_range_to_undefined (value_range_t *vr)
584 vr->type = VR_UNDEFINED;
585 vr->min = vr->max = NULL_TREE;
587 bitmap_clear (vr->equiv);
591 /* If abs (min) < abs (max), set VR to [-max, max], if
592 abs (min) >= abs (max), set VR to [-min, min]. */
595 abs_extent_range (value_range_t *vr, tree min, tree max)
599 gcc_assert (TREE_CODE (min) == INTEGER_CST);
600 gcc_assert (TREE_CODE (max) == INTEGER_CST);
601 gcc_assert (INTEGRAL_TYPE_P (TREE_TYPE (min)));
602 gcc_assert (!TYPE_UNSIGNED (TREE_TYPE (min)));
603 min = fold_unary (ABS_EXPR, TREE_TYPE (min), min);
604 max = fold_unary (ABS_EXPR, TREE_TYPE (max), max);
605 if (TREE_OVERFLOW (min) || TREE_OVERFLOW (max))
607 set_value_range_to_varying (vr);
610 cmp = compare_values (min, max);
612 min = fold_unary (NEGATE_EXPR, TREE_TYPE (min), max);
613 else if (cmp == 0 || cmp == 1)
616 min = fold_unary (NEGATE_EXPR, TREE_TYPE (min), min);
620 set_value_range_to_varying (vr);
623 set_and_canonicalize_value_range (vr, VR_RANGE, min, max, NULL);
627 /* Return value range information for VAR.
629 If we have no values ranges recorded (ie, VRP is not running), then
630 return NULL. Otherwise create an empty range if none existed for VAR. */
632 static value_range_t *
633 get_value_range (const_tree var)
637 unsigned ver = SSA_NAME_VERSION (var);
639 /* If we have no recorded ranges, then return NULL. */
647 /* Create a default value range. */
648 vr_value[ver] = vr = XCNEW (value_range_t);
650 /* Defer allocating the equivalence set. */
653 /* If VAR is a default definition, the variable can take any value
655 sym = SSA_NAME_VAR (var);
656 if (SSA_NAME_IS_DEFAULT_DEF (var))
658 /* Try to use the "nonnull" attribute to create ~[0, 0]
659 anti-ranges for pointers. Note that this is only valid with
660 default definitions of PARM_DECLs. */
661 if (TREE_CODE (sym) == PARM_DECL
662 && POINTER_TYPE_P (TREE_TYPE (sym))
663 && nonnull_arg_p (sym))
664 set_value_range_to_nonnull (vr, TREE_TYPE (sym));
666 set_value_range_to_varying (vr);
672 /* Return true, if VAL1 and VAL2 are equal values for VRP purposes. */
675 vrp_operand_equal_p (const_tree val1, const_tree val2)
679 if (!val1 || !val2 || !operand_equal_p (val1, val2, 0))
681 if (is_overflow_infinity (val1))
682 return is_overflow_infinity (val2);
686 /* Return true, if the bitmaps B1 and B2 are equal. */
689 vrp_bitmap_equal_p (const_bitmap b1, const_bitmap b2)
693 && bitmap_equal_p (b1, b2)));
696 /* Update the value range and equivalence set for variable VAR to
697 NEW_VR. Return true if NEW_VR is different from VAR's previous
700 NOTE: This function assumes that NEW_VR is a temporary value range
701 object created for the sole purpose of updating VAR's range. The
702 storage used by the equivalence set from NEW_VR will be freed by
703 this function. Do not call update_value_range when NEW_VR
704 is the range object associated with another SSA name. */
707 update_value_range (const_tree var, value_range_t *new_vr)
709 value_range_t *old_vr;
712 /* Update the value range, if necessary. */
713 old_vr = get_value_range (var);
714 is_new = old_vr->type != new_vr->type
715 || !vrp_operand_equal_p (old_vr->min, new_vr->min)
716 || !vrp_operand_equal_p (old_vr->max, new_vr->max)
717 || !vrp_bitmap_equal_p (old_vr->equiv, new_vr->equiv);
720 set_value_range (old_vr, new_vr->type, new_vr->min, new_vr->max,
723 BITMAP_FREE (new_vr->equiv);
729 /* Add VAR and VAR's equivalence set to EQUIV. This is the central
730 point where equivalence processing can be turned on/off. */
733 add_equivalence (bitmap *equiv, const_tree var)
735 unsigned ver = SSA_NAME_VERSION (var);
736 value_range_t *vr = vr_value[ver];
739 *equiv = BITMAP_ALLOC (NULL);
740 bitmap_set_bit (*equiv, ver);
742 bitmap_ior_into (*equiv, vr->equiv);
746 /* Return true if VR is ~[0, 0]. */
749 range_is_nonnull (value_range_t *vr)
751 return vr->type == VR_ANTI_RANGE
752 && integer_zerop (vr->min)
753 && integer_zerop (vr->max);
757 /* Return true if VR is [0, 0]. */
760 range_is_null (value_range_t *vr)
762 return vr->type == VR_RANGE
763 && integer_zerop (vr->min)
764 && integer_zerop (vr->max);
767 /* Return true if max and min of VR are INTEGER_CST. It's not necessary
771 range_int_cst_p (value_range_t *vr)
773 return (vr->type == VR_RANGE
774 && TREE_CODE (vr->max) == INTEGER_CST
775 && TREE_CODE (vr->min) == INTEGER_CST
776 && !TREE_OVERFLOW (vr->max)
777 && !TREE_OVERFLOW (vr->min));
780 /* Return true if VR is a INTEGER_CST singleton. */
783 range_int_cst_singleton_p (value_range_t *vr)
785 return (range_int_cst_p (vr)
786 && tree_int_cst_equal (vr->min, vr->max));
789 /* Return true if value range VR involves at least one symbol. */
792 symbolic_range_p (value_range_t *vr)
794 return (!is_gimple_min_invariant (vr->min)
795 || !is_gimple_min_invariant (vr->max));
798 /* Return true if value range VR uses an overflow infinity. */
801 overflow_infinity_range_p (value_range_t *vr)
803 return (vr->type == VR_RANGE
804 && (is_overflow_infinity (vr->min)
805 || is_overflow_infinity (vr->max)));
808 /* Return false if we can not make a valid comparison based on VR;
809 this will be the case if it uses an overflow infinity and overflow
810 is not undefined (i.e., -fno-strict-overflow is in effect).
811 Otherwise return true, and set *STRICT_OVERFLOW_P to true if VR
812 uses an overflow infinity. */
815 usable_range_p (value_range_t *vr, bool *strict_overflow_p)
817 gcc_assert (vr->type == VR_RANGE);
818 if (is_overflow_infinity (vr->min))
820 *strict_overflow_p = true;
821 if (!TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (vr->min)))
824 if (is_overflow_infinity (vr->max))
826 *strict_overflow_p = true;
827 if (!TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (vr->max)))
834 /* Like tree_expr_nonnegative_warnv_p, but this function uses value
835 ranges obtained so far. */
838 vrp_expr_computes_nonnegative (tree expr, bool *strict_overflow_p)
840 return (tree_expr_nonnegative_warnv_p (expr, strict_overflow_p)
841 || (TREE_CODE (expr) == SSA_NAME
842 && ssa_name_nonnegative_p (expr)));
845 /* Return true if the result of assignment STMT is know to be non-negative.
846 If the return value is based on the assumption that signed overflow is
847 undefined, set *STRICT_OVERFLOW_P to true; otherwise, don't change
848 *STRICT_OVERFLOW_P.*/
851 gimple_assign_nonnegative_warnv_p (gimple stmt, bool *strict_overflow_p)
853 enum tree_code code = gimple_assign_rhs_code (stmt);
854 switch (get_gimple_rhs_class (code))
856 case GIMPLE_UNARY_RHS:
857 return tree_unary_nonnegative_warnv_p (gimple_assign_rhs_code (stmt),
858 gimple_expr_type (stmt),
859 gimple_assign_rhs1 (stmt),
861 case GIMPLE_BINARY_RHS:
862 return tree_binary_nonnegative_warnv_p (gimple_assign_rhs_code (stmt),
863 gimple_expr_type (stmt),
864 gimple_assign_rhs1 (stmt),
865 gimple_assign_rhs2 (stmt),
867 case GIMPLE_SINGLE_RHS:
868 return tree_single_nonnegative_warnv_p (gimple_assign_rhs1 (stmt),
870 case GIMPLE_INVALID_RHS:
877 /* Return true if return value of call STMT is know to be non-negative.
878 If the return value is based on the assumption that signed overflow is
879 undefined, set *STRICT_OVERFLOW_P to true; otherwise, don't change
880 *STRICT_OVERFLOW_P.*/
883 gimple_call_nonnegative_warnv_p (gimple stmt, bool *strict_overflow_p)
885 tree arg0 = gimple_call_num_args (stmt) > 0 ?
886 gimple_call_arg (stmt, 0) : NULL_TREE;
887 tree arg1 = gimple_call_num_args (stmt) > 1 ?
888 gimple_call_arg (stmt, 1) : NULL_TREE;
890 return tree_call_nonnegative_warnv_p (gimple_expr_type (stmt),
891 gimple_call_fndecl (stmt),
897 /* Return true if STMT is know to to compute a non-negative value.
898 If the return value is based on the assumption that signed overflow is
899 undefined, set *STRICT_OVERFLOW_P to true; otherwise, don't change
900 *STRICT_OVERFLOW_P.*/
903 gimple_stmt_nonnegative_warnv_p (gimple stmt, bool *strict_overflow_p)
905 switch (gimple_code (stmt))
908 return gimple_assign_nonnegative_warnv_p (stmt, strict_overflow_p);
910 return gimple_call_nonnegative_warnv_p (stmt, strict_overflow_p);
916 /* Return true if the result of assignment STMT is know to be non-zero.
917 If the return value is based on the assumption that signed overflow is
918 undefined, set *STRICT_OVERFLOW_P to true; otherwise, don't change
919 *STRICT_OVERFLOW_P.*/
922 gimple_assign_nonzero_warnv_p (gimple stmt, bool *strict_overflow_p)
924 enum tree_code code = gimple_assign_rhs_code (stmt);
925 switch (get_gimple_rhs_class (code))
927 case GIMPLE_UNARY_RHS:
928 return tree_unary_nonzero_warnv_p (gimple_assign_rhs_code (stmt),
929 gimple_expr_type (stmt),
930 gimple_assign_rhs1 (stmt),
932 case GIMPLE_BINARY_RHS:
933 return tree_binary_nonzero_warnv_p (gimple_assign_rhs_code (stmt),
934 gimple_expr_type (stmt),
935 gimple_assign_rhs1 (stmt),
936 gimple_assign_rhs2 (stmt),
938 case GIMPLE_SINGLE_RHS:
939 return tree_single_nonzero_warnv_p (gimple_assign_rhs1 (stmt),
941 case GIMPLE_INVALID_RHS:
948 /* Return true if STMT is know to to compute a non-zero value.
949 If the return value is based on the assumption that signed overflow is
950 undefined, set *STRICT_OVERFLOW_P to true; otherwise, don't change
951 *STRICT_OVERFLOW_P.*/
954 gimple_stmt_nonzero_warnv_p (gimple stmt, bool *strict_overflow_p)
956 switch (gimple_code (stmt))
959 return gimple_assign_nonzero_warnv_p (stmt, strict_overflow_p);
961 return gimple_alloca_call_p (stmt);
967 /* Like tree_expr_nonzero_warnv_p, but this function uses value ranges
971 vrp_stmt_computes_nonzero (gimple stmt, bool *strict_overflow_p)
973 if (gimple_stmt_nonzero_warnv_p (stmt, strict_overflow_p))
976 /* If we have an expression of the form &X->a, then the expression
977 is nonnull if X is nonnull. */
978 if (is_gimple_assign (stmt)
979 && gimple_assign_rhs_code (stmt) == ADDR_EXPR)
981 tree expr = gimple_assign_rhs1 (stmt);
982 tree base = get_base_address (TREE_OPERAND (expr, 0));
984 if (base != NULL_TREE
985 && TREE_CODE (base) == INDIRECT_REF
986 && TREE_CODE (TREE_OPERAND (base, 0)) == SSA_NAME)
988 value_range_t *vr = get_value_range (TREE_OPERAND (base, 0));
989 if (range_is_nonnull (vr))
997 /* Returns true if EXPR is a valid value (as expected by compare_values) --
998 a gimple invariant, or SSA_NAME +- CST. */
1001 valid_value_p (tree expr)
1003 if (TREE_CODE (expr) == SSA_NAME)
1006 if (TREE_CODE (expr) == PLUS_EXPR
1007 || TREE_CODE (expr) == MINUS_EXPR)
1008 return (TREE_CODE (TREE_OPERAND (expr, 0)) == SSA_NAME
1009 && TREE_CODE (TREE_OPERAND (expr, 1)) == INTEGER_CST);
1011 return is_gimple_min_invariant (expr);
1017 -2 if those are incomparable. */
1019 operand_less_p (tree val, tree val2)
1021 /* LT is folded faster than GE and others. Inline the common case. */
1022 if (TREE_CODE (val) == INTEGER_CST && TREE_CODE (val2) == INTEGER_CST)
1024 if (TYPE_UNSIGNED (TREE_TYPE (val)))
1025 return INT_CST_LT_UNSIGNED (val, val2);
1028 if (INT_CST_LT (val, val2))
1036 fold_defer_overflow_warnings ();
1038 tcmp = fold_binary_to_constant (LT_EXPR, boolean_type_node, val, val2);
1040 fold_undefer_and_ignore_overflow_warnings ();
1043 || TREE_CODE (tcmp) != INTEGER_CST)
1046 if (!integer_zerop (tcmp))
1050 /* val >= val2, not considering overflow infinity. */
1051 if (is_negative_overflow_infinity (val))
1052 return is_negative_overflow_infinity (val2) ? 0 : 1;
1053 else if (is_positive_overflow_infinity (val2))
1054 return is_positive_overflow_infinity (val) ? 0 : 1;
1059 /* Compare two values VAL1 and VAL2. Return
1061 -2 if VAL1 and VAL2 cannot be compared at compile-time,
1064 +1 if VAL1 > VAL2, and
1067 This is similar to tree_int_cst_compare but supports pointer values
1068 and values that cannot be compared at compile time.
1070 If STRICT_OVERFLOW_P is not NULL, then set *STRICT_OVERFLOW_P to
1071 true if the return value is only valid if we assume that signed
1072 overflow is undefined. */
1075 compare_values_warnv (tree val1, tree val2, bool *strict_overflow_p)
1080 /* Below we rely on the fact that VAL1 and VAL2 are both pointers or
1082 gcc_assert (POINTER_TYPE_P (TREE_TYPE (val1))
1083 == POINTER_TYPE_P (TREE_TYPE (val2)));
1084 /* Convert the two values into the same type. This is needed because
1085 sizetype causes sign extension even for unsigned types. */
1086 val2 = fold_convert (TREE_TYPE (val1), val2);
1087 STRIP_USELESS_TYPE_CONVERSION (val2);
1089 if ((TREE_CODE (val1) == SSA_NAME
1090 || TREE_CODE (val1) == PLUS_EXPR
1091 || TREE_CODE (val1) == MINUS_EXPR)
1092 && (TREE_CODE (val2) == SSA_NAME
1093 || TREE_CODE (val2) == PLUS_EXPR
1094 || TREE_CODE (val2) == MINUS_EXPR))
1096 tree n1, c1, n2, c2;
1097 enum tree_code code1, code2;
1099 /* If VAL1 and VAL2 are of the form 'NAME [+-] CST' or 'NAME',
1100 return -1 or +1 accordingly. If VAL1 and VAL2 don't use the
1101 same name, return -2. */
1102 if (TREE_CODE (val1) == SSA_NAME)
1110 code1 = TREE_CODE (val1);
1111 n1 = TREE_OPERAND (val1, 0);
1112 c1 = TREE_OPERAND (val1, 1);
1113 if (tree_int_cst_sgn (c1) == -1)
1115 if (is_negative_overflow_infinity (c1))
1117 c1 = fold_unary_to_constant (NEGATE_EXPR, TREE_TYPE (c1), c1);
1120 code1 = code1 == MINUS_EXPR ? PLUS_EXPR : MINUS_EXPR;
1124 if (TREE_CODE (val2) == SSA_NAME)
1132 code2 = TREE_CODE (val2);
1133 n2 = TREE_OPERAND (val2, 0);
1134 c2 = TREE_OPERAND (val2, 1);
1135 if (tree_int_cst_sgn (c2) == -1)
1137 if (is_negative_overflow_infinity (c2))
1139 c2 = fold_unary_to_constant (NEGATE_EXPR, TREE_TYPE (c2), c2);
1142 code2 = code2 == MINUS_EXPR ? PLUS_EXPR : MINUS_EXPR;
1146 /* Both values must use the same name. */
1150 if (code1 == SSA_NAME
1151 && code2 == SSA_NAME)
1155 /* If overflow is defined we cannot simplify more. */
1156 if (!TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (val1)))
1159 if (strict_overflow_p != NULL
1160 && (code1 == SSA_NAME || !TREE_NO_WARNING (val1))
1161 && (code2 == SSA_NAME || !TREE_NO_WARNING (val2)))
1162 *strict_overflow_p = true;
1164 if (code1 == SSA_NAME)
1166 if (code2 == PLUS_EXPR)
1167 /* NAME < NAME + CST */
1169 else if (code2 == MINUS_EXPR)
1170 /* NAME > NAME - CST */
1173 else if (code1 == PLUS_EXPR)
1175 if (code2 == SSA_NAME)
1176 /* NAME + CST > NAME */
1178 else if (code2 == PLUS_EXPR)
1179 /* NAME + CST1 > NAME + CST2, if CST1 > CST2 */
1180 return compare_values_warnv (c1, c2, strict_overflow_p);
1181 else if (code2 == MINUS_EXPR)
1182 /* NAME + CST1 > NAME - CST2 */
1185 else if (code1 == MINUS_EXPR)
1187 if (code2 == SSA_NAME)
1188 /* NAME - CST < NAME */
1190 else if (code2 == PLUS_EXPR)
1191 /* NAME - CST1 < NAME + CST2 */
1193 else if (code2 == MINUS_EXPR)
1194 /* NAME - CST1 > NAME - CST2, if CST1 < CST2. Notice that
1195 C1 and C2 are swapped in the call to compare_values. */
1196 return compare_values_warnv (c2, c1, strict_overflow_p);
1202 /* We cannot compare non-constants. */
1203 if (!is_gimple_min_invariant (val1) || !is_gimple_min_invariant (val2))
1206 if (!POINTER_TYPE_P (TREE_TYPE (val1)))
1208 /* We cannot compare overflowed values, except for overflow
1210 if (TREE_OVERFLOW (val1) || TREE_OVERFLOW (val2))
1212 if (strict_overflow_p != NULL)
1213 *strict_overflow_p = true;
1214 if (is_negative_overflow_infinity (val1))
1215 return is_negative_overflow_infinity (val2) ? 0 : -1;
1216 else if (is_negative_overflow_infinity (val2))
1218 else if (is_positive_overflow_infinity (val1))
1219 return is_positive_overflow_infinity (val2) ? 0 : 1;
1220 else if (is_positive_overflow_infinity (val2))
1225 return tree_int_cst_compare (val1, val2);
1231 /* First see if VAL1 and VAL2 are not the same. */
1232 if (val1 == val2 || operand_equal_p (val1, val2, 0))
1235 /* If VAL1 is a lower address than VAL2, return -1. */
1236 if (operand_less_p (val1, val2) == 1)
1239 /* If VAL1 is a higher address than VAL2, return +1. */
1240 if (operand_less_p (val2, val1) == 1)
1243 /* If VAL1 is different than VAL2, return +2.
1244 For integer constants we either have already returned -1 or 1
1245 or they are equivalent. We still might succeed in proving
1246 something about non-trivial operands. */
1247 if (TREE_CODE (val1) != INTEGER_CST
1248 || TREE_CODE (val2) != INTEGER_CST)
1250 t = fold_binary_to_constant (NE_EXPR, boolean_type_node, val1, val2);
1251 if (t && integer_onep (t))
1259 /* Compare values like compare_values_warnv, but treat comparisons of
1260 nonconstants which rely on undefined overflow as incomparable. */
1263 compare_values (tree val1, tree val2)
1269 ret = compare_values_warnv (val1, val2, &sop);
1271 && (!is_gimple_min_invariant (val1) || !is_gimple_min_invariant (val2)))
1277 /* Return 1 if VAL is inside value range VR (VR->MIN <= VAL <= VR->MAX),
1278 0 if VAL is not inside VR,
1279 -2 if we cannot tell either way.
1281 FIXME, the current semantics of this functions are a bit quirky
1282 when taken in the context of VRP. In here we do not care
1283 about VR's type. If VR is the anti-range ~[3, 5] the call
1284 value_inside_range (4, VR) will return 1.
1286 This is counter-intuitive in a strict sense, but the callers
1287 currently expect this. They are calling the function
1288 merely to determine whether VR->MIN <= VAL <= VR->MAX. The
1289 callers are applying the VR_RANGE/VR_ANTI_RANGE semantics
1292 This also applies to value_ranges_intersect_p and
1293 range_includes_zero_p. The semantics of VR_RANGE and
1294 VR_ANTI_RANGE should be encoded here, but that also means
1295 adapting the users of these functions to the new semantics.
1297 Benchmark compile/20001226-1.c compilation time after changing this
1301 value_inside_range (tree val, value_range_t * vr)
1305 cmp1 = operand_less_p (val, vr->min);
1311 cmp2 = operand_less_p (vr->max, val);
1319 /* Return true if value ranges VR0 and VR1 have a non-empty
1322 Benchmark compile/20001226-1.c compilation time after changing this
1327 value_ranges_intersect_p (value_range_t *vr0, value_range_t *vr1)
1329 /* The value ranges do not intersect if the maximum of the first range is
1330 less than the minimum of the second range or vice versa.
1331 When those relations are unknown, we can't do any better. */
1332 if (operand_less_p (vr0->max, vr1->min) != 0)
1334 if (operand_less_p (vr1->max, vr0->min) != 0)
1340 /* Return true if VR includes the value zero, false otherwise. FIXME,
1341 currently this will return false for an anti-range like ~[-4, 3].
1342 This will be wrong when the semantics of value_inside_range are
1343 modified (currently the users of this function expect these
1347 range_includes_zero_p (value_range_t *vr)
1351 gcc_assert (vr->type != VR_UNDEFINED
1352 && vr->type != VR_VARYING
1353 && !symbolic_range_p (vr));
1355 zero = build_int_cst (TREE_TYPE (vr->min), 0);
1356 return (value_inside_range (zero, vr) == 1);
1359 /* Return true if T, an SSA_NAME, is known to be nonnegative. Return
1360 false otherwise or if no value range information is available. */
1363 ssa_name_nonnegative_p (const_tree t)
1365 value_range_t *vr = get_value_range (t);
1370 /* Testing for VR_ANTI_RANGE is not useful here as any anti-range
1371 which would return a useful value should be encoded as a VR_RANGE. */
1372 if (vr->type == VR_RANGE)
1374 int result = compare_values (vr->min, integer_zero_node);
1376 return (result == 0 || result == 1);
1381 /* If OP has a value range with a single constant value return that,
1382 otherwise return NULL_TREE. This returns OP itself if OP is a
1386 op_with_constant_singleton_value_range (tree op)
1390 if (is_gimple_min_invariant (op))
1393 if (TREE_CODE (op) != SSA_NAME)
1396 vr = get_value_range (op);
1397 if (vr->type == VR_RANGE
1398 && operand_equal_p (vr->min, vr->max, 0)
1399 && is_gimple_min_invariant (vr->min))
1406 /* Extract value range information from an ASSERT_EXPR EXPR and store
1410 extract_range_from_assert (value_range_t *vr_p, tree expr)
1412 tree var, cond, limit, min, max, type;
1413 value_range_t *var_vr, *limit_vr;
1414 enum tree_code cond_code;
1416 var = ASSERT_EXPR_VAR (expr);
1417 cond = ASSERT_EXPR_COND (expr);
1419 gcc_assert (COMPARISON_CLASS_P (cond));
1421 /* Find VAR in the ASSERT_EXPR conditional. */
1422 if (var == TREE_OPERAND (cond, 0)
1423 || TREE_CODE (TREE_OPERAND (cond, 0)) == PLUS_EXPR
1424 || TREE_CODE (TREE_OPERAND (cond, 0)) == NOP_EXPR)
1426 /* If the predicate is of the form VAR COMP LIMIT, then we just
1427 take LIMIT from the RHS and use the same comparison code. */
1428 cond_code = TREE_CODE (cond);
1429 limit = TREE_OPERAND (cond, 1);
1430 cond = TREE_OPERAND (cond, 0);
1434 /* If the predicate is of the form LIMIT COMP VAR, then we need
1435 to flip around the comparison code to create the proper range
1437 cond_code = swap_tree_comparison (TREE_CODE (cond));
1438 limit = TREE_OPERAND (cond, 0);
1439 cond = TREE_OPERAND (cond, 1);
1442 limit = avoid_overflow_infinity (limit);
1444 type = TREE_TYPE (limit);
1445 gcc_assert (limit != var);
1447 /* For pointer arithmetic, we only keep track of pointer equality
1449 if (POINTER_TYPE_P (type) && cond_code != NE_EXPR && cond_code != EQ_EXPR)
1451 set_value_range_to_varying (vr_p);
1455 /* If LIMIT is another SSA name and LIMIT has a range of its own,
1456 try to use LIMIT's range to avoid creating symbolic ranges
1458 limit_vr = (TREE_CODE (limit) == SSA_NAME) ? get_value_range (limit) : NULL;
1460 /* LIMIT's range is only interesting if it has any useful information. */
1462 && (limit_vr->type == VR_UNDEFINED
1463 || limit_vr->type == VR_VARYING
1464 || symbolic_range_p (limit_vr)))
1467 /* Initially, the new range has the same set of equivalences of
1468 VAR's range. This will be revised before returning the final
1469 value. Since assertions may be chained via mutually exclusive
1470 predicates, we will need to trim the set of equivalences before
1472 gcc_assert (vr_p->equiv == NULL);
1473 add_equivalence (&vr_p->equiv, var);
1475 /* Extract a new range based on the asserted comparison for VAR and
1476 LIMIT's value range. Notice that if LIMIT has an anti-range, we
1477 will only use it for equality comparisons (EQ_EXPR). For any
1478 other kind of assertion, we cannot derive a range from LIMIT's
1479 anti-range that can be used to describe the new range. For
1480 instance, ASSERT_EXPR <x_2, x_2 <= b_4>. If b_4 is ~[2, 10],
1481 then b_4 takes on the ranges [-INF, 1] and [11, +INF]. There is
1482 no single range for x_2 that could describe LE_EXPR, so we might
1483 as well build the range [b_4, +INF] for it.
1484 One special case we handle is extracting a range from a
1485 range test encoded as (unsigned)var + CST <= limit. */
1486 if (TREE_CODE (cond) == NOP_EXPR
1487 || TREE_CODE (cond) == PLUS_EXPR)
1489 if (TREE_CODE (cond) == PLUS_EXPR)
1491 min = fold_build1 (NEGATE_EXPR, TREE_TYPE (TREE_OPERAND (cond, 1)),
1492 TREE_OPERAND (cond, 1));
1493 max = int_const_binop (PLUS_EXPR, limit, min, 0);
1494 cond = TREE_OPERAND (cond, 0);
1498 min = build_int_cst (TREE_TYPE (var), 0);
1502 /* Make sure to not set TREE_OVERFLOW on the final type
1503 conversion. We are willingly interpreting large positive
1504 unsigned values as negative singed values here. */
1505 min = force_fit_type_double (TREE_TYPE (var), TREE_INT_CST_LOW (min),
1506 TREE_INT_CST_HIGH (min), 0, false);
1507 max = force_fit_type_double (TREE_TYPE (var), TREE_INT_CST_LOW (max),
1508 TREE_INT_CST_HIGH (max), 0, false);
1510 /* We can transform a max, min range to an anti-range or
1511 vice-versa. Use set_and_canonicalize_value_range which does
1513 if (cond_code == LE_EXPR)
1514 set_and_canonicalize_value_range (vr_p, VR_RANGE,
1515 min, max, vr_p->equiv);
1516 else if (cond_code == GT_EXPR)
1517 set_and_canonicalize_value_range (vr_p, VR_ANTI_RANGE,
1518 min, max, vr_p->equiv);
1522 else if (cond_code == EQ_EXPR)
1524 enum value_range_type range_type;
1528 range_type = limit_vr->type;
1529 min = limit_vr->min;
1530 max = limit_vr->max;
1534 range_type = VR_RANGE;
1539 set_value_range (vr_p, range_type, min, max, vr_p->equiv);
1541 /* When asserting the equality VAR == LIMIT and LIMIT is another
1542 SSA name, the new range will also inherit the equivalence set
1544 if (TREE_CODE (limit) == SSA_NAME)
1545 add_equivalence (&vr_p->equiv, limit);
1547 else if (cond_code == NE_EXPR)
1549 /* As described above, when LIMIT's range is an anti-range and
1550 this assertion is an inequality (NE_EXPR), then we cannot
1551 derive anything from the anti-range. For instance, if
1552 LIMIT's range was ~[0, 0], the assertion 'VAR != LIMIT' does
1553 not imply that VAR's range is [0, 0]. So, in the case of
1554 anti-ranges, we just assert the inequality using LIMIT and
1557 If LIMIT_VR is a range, we can only use it to build a new
1558 anti-range if LIMIT_VR is a single-valued range. For
1559 instance, if LIMIT_VR is [0, 1], the predicate
1560 VAR != [0, 1] does not mean that VAR's range is ~[0, 1].
1561 Rather, it means that for value 0 VAR should be ~[0, 0]
1562 and for value 1, VAR should be ~[1, 1]. We cannot
1563 represent these ranges.
1565 The only situation in which we can build a valid
1566 anti-range is when LIMIT_VR is a single-valued range
1567 (i.e., LIMIT_VR->MIN == LIMIT_VR->MAX). In that case,
1568 build the anti-range ~[LIMIT_VR->MIN, LIMIT_VR->MAX]. */
1570 && limit_vr->type == VR_RANGE
1571 && compare_values (limit_vr->min, limit_vr->max) == 0)
1573 min = limit_vr->min;
1574 max = limit_vr->max;
1578 /* In any other case, we cannot use LIMIT's range to build a
1579 valid anti-range. */
1583 /* If MIN and MAX cover the whole range for their type, then
1584 just use the original LIMIT. */
1585 if (INTEGRAL_TYPE_P (type)
1586 && vrp_val_is_min (min)
1587 && vrp_val_is_max (max))
1590 set_value_range (vr_p, VR_ANTI_RANGE, min, max, vr_p->equiv);
1592 else if (cond_code == LE_EXPR || cond_code == LT_EXPR)
1594 min = TYPE_MIN_VALUE (type);
1596 if (limit_vr == NULL || limit_vr->type == VR_ANTI_RANGE)
1600 /* If LIMIT_VR is of the form [N1, N2], we need to build the
1601 range [MIN, N2] for LE_EXPR and [MIN, N2 - 1] for
1603 max = limit_vr->max;
1606 /* If the maximum value forces us to be out of bounds, simply punt.
1607 It would be pointless to try and do anything more since this
1608 all should be optimized away above us. */
1609 if ((cond_code == LT_EXPR
1610 && compare_values (max, min) == 0)
1611 || (CONSTANT_CLASS_P (max) && TREE_OVERFLOW (max)))
1612 set_value_range_to_varying (vr_p);
1615 /* For LT_EXPR, we create the range [MIN, MAX - 1]. */
1616 if (cond_code == LT_EXPR)
1618 tree one = build_int_cst (type, 1);
1619 max = fold_build2 (MINUS_EXPR, type, max, one);
1621 TREE_NO_WARNING (max) = 1;
1624 set_value_range (vr_p, VR_RANGE, min, max, vr_p->equiv);
1627 else if (cond_code == GE_EXPR || cond_code == GT_EXPR)
1629 max = TYPE_MAX_VALUE (type);
1631 if (limit_vr == NULL || limit_vr->type == VR_ANTI_RANGE)
1635 /* If LIMIT_VR is of the form [N1, N2], we need to build the
1636 range [N1, MAX] for GE_EXPR and [N1 + 1, MAX] for
1638 min = limit_vr->min;
1641 /* If the minimum value forces us to be out of bounds, simply punt.
1642 It would be pointless to try and do anything more since this
1643 all should be optimized away above us. */
1644 if ((cond_code == GT_EXPR
1645 && compare_values (min, max) == 0)
1646 || (CONSTANT_CLASS_P (min) && TREE_OVERFLOW (min)))
1647 set_value_range_to_varying (vr_p);
1650 /* For GT_EXPR, we create the range [MIN + 1, MAX]. */
1651 if (cond_code == GT_EXPR)
1653 tree one = build_int_cst (type, 1);
1654 min = fold_build2 (PLUS_EXPR, type, min, one);
1656 TREE_NO_WARNING (min) = 1;
1659 set_value_range (vr_p, VR_RANGE, min, max, vr_p->equiv);
1665 /* If VAR already had a known range, it may happen that the new
1666 range we have computed and VAR's range are not compatible. For
1670 p_6 = ASSERT_EXPR <p_5, p_5 == NULL>;
1672 p_8 = ASSERT_EXPR <p_6, p_6 != NULL>;
1674 While the above comes from a faulty program, it will cause an ICE
1675 later because p_8 and p_6 will have incompatible ranges and at
1676 the same time will be considered equivalent. A similar situation
1680 i_6 = ASSERT_EXPR <i_5, i_5 > 10>;
1682 i_7 = ASSERT_EXPR <i_6, i_6 < 5>;
1684 Again i_6 and i_7 will have incompatible ranges. It would be
1685 pointless to try and do anything with i_7's range because
1686 anything dominated by 'if (i_5 < 5)' will be optimized away.
1687 Note, due to the wa in which simulation proceeds, the statement
1688 i_7 = ASSERT_EXPR <...> we would never be visited because the
1689 conditional 'if (i_5 < 5)' always evaluates to false. However,
1690 this extra check does not hurt and may protect against future
1691 changes to VRP that may get into a situation similar to the
1692 NULL pointer dereference example.
1694 Note that these compatibility tests are only needed when dealing
1695 with ranges or a mix of range and anti-range. If VAR_VR and VR_P
1696 are both anti-ranges, they will always be compatible, because two
1697 anti-ranges will always have a non-empty intersection. */
1699 var_vr = get_value_range (var);
1701 /* We may need to make adjustments when VR_P and VAR_VR are numeric
1702 ranges or anti-ranges. */
1703 if (vr_p->type == VR_VARYING
1704 || vr_p->type == VR_UNDEFINED
1705 || var_vr->type == VR_VARYING
1706 || var_vr->type == VR_UNDEFINED
1707 || symbolic_range_p (vr_p)
1708 || symbolic_range_p (var_vr))
1711 if (var_vr->type == VR_RANGE && vr_p->type == VR_RANGE)
1713 /* If the two ranges have a non-empty intersection, we can
1714 refine the resulting range. Since the assert expression
1715 creates an equivalency and at the same time it asserts a
1716 predicate, we can take the intersection of the two ranges to
1717 get better precision. */
1718 if (value_ranges_intersect_p (var_vr, vr_p))
1720 /* Use the larger of the two minimums. */
1721 if (compare_values (vr_p->min, var_vr->min) == -1)
1726 /* Use the smaller of the two maximums. */
1727 if (compare_values (vr_p->max, var_vr->max) == 1)
1732 set_value_range (vr_p, vr_p->type, min, max, vr_p->equiv);
1736 /* The two ranges do not intersect, set the new range to
1737 VARYING, because we will not be able to do anything
1738 meaningful with it. */
1739 set_value_range_to_varying (vr_p);
1742 else if ((var_vr->type == VR_RANGE && vr_p->type == VR_ANTI_RANGE)
1743 || (var_vr->type == VR_ANTI_RANGE && vr_p->type == VR_RANGE))
1745 /* A range and an anti-range will cancel each other only if
1746 their ends are the same. For instance, in the example above,
1747 p_8's range ~[0, 0] and p_6's range [0, 0] are incompatible,
1748 so VR_P should be set to VR_VARYING. */
1749 if (compare_values (var_vr->min, vr_p->min) == 0
1750 && compare_values (var_vr->max, vr_p->max) == 0)
1751 set_value_range_to_varying (vr_p);
1754 tree min, max, anti_min, anti_max, real_min, real_max;
1757 /* We want to compute the logical AND of the two ranges;
1758 there are three cases to consider.
1761 1. The VR_ANTI_RANGE range is completely within the
1762 VR_RANGE and the endpoints of the ranges are
1763 different. In that case the resulting range
1764 should be whichever range is more precise.
1765 Typically that will be the VR_RANGE.
1767 2. The VR_ANTI_RANGE is completely disjoint from
1768 the VR_RANGE. In this case the resulting range
1769 should be the VR_RANGE.
1771 3. There is some overlap between the VR_ANTI_RANGE
1774 3a. If the high limit of the VR_ANTI_RANGE resides
1775 within the VR_RANGE, then the result is a new
1776 VR_RANGE starting at the high limit of the
1777 VR_ANTI_RANGE + 1 and extending to the
1778 high limit of the original VR_RANGE.
1780 3b. If the low limit of the VR_ANTI_RANGE resides
1781 within the VR_RANGE, then the result is a new
1782 VR_RANGE starting at the low limit of the original
1783 VR_RANGE and extending to the low limit of the
1784 VR_ANTI_RANGE - 1. */
1785 if (vr_p->type == VR_ANTI_RANGE)
1787 anti_min = vr_p->min;
1788 anti_max = vr_p->max;
1789 real_min = var_vr->min;
1790 real_max = var_vr->max;
1794 anti_min = var_vr->min;
1795 anti_max = var_vr->max;
1796 real_min = vr_p->min;
1797 real_max = vr_p->max;
1801 /* Case 1, VR_ANTI_RANGE completely within VR_RANGE,
1802 not including any endpoints. */
1803 if (compare_values (anti_max, real_max) == -1
1804 && compare_values (anti_min, real_min) == 1)
1806 /* If the range is covering the whole valid range of
1807 the type keep the anti-range. */
1808 if (!vrp_val_is_min (real_min)
1809 || !vrp_val_is_max (real_max))
1810 set_value_range (vr_p, VR_RANGE, real_min,
1811 real_max, vr_p->equiv);
1813 /* Case 2, VR_ANTI_RANGE completely disjoint from
1815 else if (compare_values (anti_min, real_max) == 1
1816 || compare_values (anti_max, real_min) == -1)
1818 set_value_range (vr_p, VR_RANGE, real_min,
1819 real_max, vr_p->equiv);
1821 /* Case 3a, the anti-range extends into the low
1822 part of the real range. Thus creating a new
1823 low for the real range. */
1824 else if (((cmp = compare_values (anti_max, real_min)) == 1
1826 && compare_values (anti_max, real_max) == -1)
1828 gcc_assert (!is_positive_overflow_infinity (anti_max));
1829 if (needs_overflow_infinity (TREE_TYPE (anti_max))
1830 && vrp_val_is_max (anti_max))
1832 if (!supports_overflow_infinity (TREE_TYPE (var_vr->min)))
1834 set_value_range_to_varying (vr_p);
1837 min = positive_overflow_infinity (TREE_TYPE (var_vr->min));
1839 else if (!POINTER_TYPE_P (TREE_TYPE (var_vr->min)))
1840 min = fold_build2 (PLUS_EXPR, TREE_TYPE (var_vr->min),
1842 build_int_cst (TREE_TYPE (var_vr->min), 1));
1844 min = fold_build2 (POINTER_PLUS_EXPR, TREE_TYPE (var_vr->min),
1845 anti_max, size_int (1));
1847 set_value_range (vr_p, VR_RANGE, min, max, vr_p->equiv);
1849 /* Case 3b, the anti-range extends into the high
1850 part of the real range. Thus creating a new
1851 higher for the real range. */
1852 else if (compare_values (anti_min, real_min) == 1
1853 && ((cmp = compare_values (anti_min, real_max)) == -1
1856 gcc_assert (!is_negative_overflow_infinity (anti_min));
1857 if (needs_overflow_infinity (TREE_TYPE (anti_min))
1858 && vrp_val_is_min (anti_min))
1860 if (!supports_overflow_infinity (TREE_TYPE (var_vr->min)))
1862 set_value_range_to_varying (vr_p);
1865 max = negative_overflow_infinity (TREE_TYPE (var_vr->min));
1867 else if (!POINTER_TYPE_P (TREE_TYPE (var_vr->min)))
1868 max = fold_build2 (MINUS_EXPR, TREE_TYPE (var_vr->min),
1870 build_int_cst (TREE_TYPE (var_vr->min), 1));
1872 max = fold_build2 (POINTER_PLUS_EXPR, TREE_TYPE (var_vr->min),
1876 set_value_range (vr_p, VR_RANGE, min, max, vr_p->equiv);
1883 /* Extract range information from SSA name VAR and store it in VR. If
1884 VAR has an interesting range, use it. Otherwise, create the
1885 range [VAR, VAR] and return it. This is useful in situations where
1886 we may have conditionals testing values of VARYING names. For
1893 Even if y_5 is deemed VARYING, we can determine that x_3 > y_5 is
1897 extract_range_from_ssa_name (value_range_t *vr, tree var)
1899 value_range_t *var_vr = get_value_range (var);
1901 if (var_vr->type != VR_UNDEFINED && var_vr->type != VR_VARYING)
1902 copy_value_range (vr, var_vr);
1904 set_value_range (vr, VR_RANGE, var, var, NULL);
1906 add_equivalence (&vr->equiv, var);
1910 /* Wrapper around int_const_binop. If the operation overflows and we
1911 are not using wrapping arithmetic, then adjust the result to be
1912 -INF or +INF depending on CODE, VAL1 and VAL2. This can return
1913 NULL_TREE if we need to use an overflow infinity representation but
1914 the type does not support it. */
1917 vrp_int_const_binop (enum tree_code code, tree val1, tree val2)
1921 res = int_const_binop (code, val1, val2, 0);
1923 /* If we are using unsigned arithmetic, operate symbolically
1924 on -INF and +INF as int_const_binop only handles signed overflow. */
1925 if (TYPE_UNSIGNED (TREE_TYPE (val1)))
1927 int checkz = compare_values (res, val1);
1928 bool overflow = false;
1930 /* Ensure that res = val1 [+*] val2 >= val1
1931 or that res = val1 - val2 <= val1. */
1932 if ((code == PLUS_EXPR
1933 && !(checkz == 1 || checkz == 0))
1934 || (code == MINUS_EXPR
1935 && !(checkz == 0 || checkz == -1)))
1939 /* Checking for multiplication overflow is done by dividing the
1940 output of the multiplication by the first input of the
1941 multiplication. If the result of that division operation is
1942 not equal to the second input of the multiplication, then the
1943 multiplication overflowed. */
1944 else if (code == MULT_EXPR && !integer_zerop (val1))
1946 tree tmp = int_const_binop (TRUNC_DIV_EXPR,
1949 int check = compare_values (tmp, val2);
1957 res = copy_node (res);
1958 TREE_OVERFLOW (res) = 1;
1962 else if (TYPE_OVERFLOW_WRAPS (TREE_TYPE (val1)))
1963 /* If the singed operation wraps then int_const_binop has done
1964 everything we want. */
1966 else if ((TREE_OVERFLOW (res)
1967 && !TREE_OVERFLOW (val1)
1968 && !TREE_OVERFLOW (val2))
1969 || is_overflow_infinity (val1)
1970 || is_overflow_infinity (val2))
1972 /* If the operation overflowed but neither VAL1 nor VAL2 are
1973 overflown, return -INF or +INF depending on the operation
1974 and the combination of signs of the operands. */
1975 int sgn1 = tree_int_cst_sgn (val1);
1976 int sgn2 = tree_int_cst_sgn (val2);
1978 if (needs_overflow_infinity (TREE_TYPE (res))
1979 && !supports_overflow_infinity (TREE_TYPE (res)))
1982 /* We have to punt on adding infinities of different signs,
1983 since we can't tell what the sign of the result should be.
1984 Likewise for subtracting infinities of the same sign. */
1985 if (((code == PLUS_EXPR && sgn1 != sgn2)
1986 || (code == MINUS_EXPR && sgn1 == sgn2))
1987 && is_overflow_infinity (val1)
1988 && is_overflow_infinity (val2))
1991 /* Don't try to handle division or shifting of infinities. */
1992 if ((code == TRUNC_DIV_EXPR
1993 || code == FLOOR_DIV_EXPR
1994 || code == CEIL_DIV_EXPR
1995 || code == EXACT_DIV_EXPR
1996 || code == ROUND_DIV_EXPR
1997 || code == RSHIFT_EXPR)
1998 && (is_overflow_infinity (val1)
1999 || is_overflow_infinity (val2)))
2002 /* Notice that we only need to handle the restricted set of
2003 operations handled by extract_range_from_binary_expr.
2004 Among them, only multiplication, addition and subtraction
2005 can yield overflow without overflown operands because we
2006 are working with integral types only... except in the
2007 case VAL1 = -INF and VAL2 = -1 which overflows to +INF
2008 for division too. */
2010 /* For multiplication, the sign of the overflow is given
2011 by the comparison of the signs of the operands. */
2012 if ((code == MULT_EXPR && sgn1 == sgn2)
2013 /* For addition, the operands must be of the same sign
2014 to yield an overflow. Its sign is therefore that
2015 of one of the operands, for example the first. For
2016 infinite operands X + -INF is negative, not positive. */
2017 || (code == PLUS_EXPR
2019 ? !is_negative_overflow_infinity (val2)
2020 : is_positive_overflow_infinity (val2)))
2021 /* For subtraction, non-infinite operands must be of
2022 different signs to yield an overflow. Its sign is
2023 therefore that of the first operand or the opposite of
2024 that of the second operand. A first operand of 0 counts
2025 as positive here, for the corner case 0 - (-INF), which
2026 overflows, but must yield +INF. For infinite operands 0
2027 - INF is negative, not positive. */
2028 || (code == MINUS_EXPR
2030 ? !is_positive_overflow_infinity (val2)
2031 : is_negative_overflow_infinity (val2)))
2032 /* We only get in here with positive shift count, so the
2033 overflow direction is the same as the sign of val1.
2034 Actually rshift does not overflow at all, but we only
2035 handle the case of shifting overflowed -INF and +INF. */
2036 || (code == RSHIFT_EXPR
2038 /* For division, the only case is -INF / -1 = +INF. */
2039 || code == TRUNC_DIV_EXPR
2040 || code == FLOOR_DIV_EXPR
2041 || code == CEIL_DIV_EXPR
2042 || code == EXACT_DIV_EXPR
2043 || code == ROUND_DIV_EXPR)
2044 return (needs_overflow_infinity (TREE_TYPE (res))
2045 ? positive_overflow_infinity (TREE_TYPE (res))
2046 : TYPE_MAX_VALUE (TREE_TYPE (res)));
2048 return (needs_overflow_infinity (TREE_TYPE (res))
2049 ? negative_overflow_infinity (TREE_TYPE (res))
2050 : TYPE_MIN_VALUE (TREE_TYPE (res)));
2057 /* Extract range information from a binary expression EXPR based on
2058 the ranges of each of its operands and the expression code. */
2061 extract_range_from_binary_expr (value_range_t *vr,
2062 enum tree_code code,
2063 tree expr_type, tree op0, tree op1)
2065 enum value_range_type type;
2068 value_range_t vr0 = { VR_UNDEFINED, NULL_TREE, NULL_TREE, NULL };
2069 value_range_t vr1 = { VR_UNDEFINED, NULL_TREE, NULL_TREE, NULL };
2071 /* Not all binary expressions can be applied to ranges in a
2072 meaningful way. Handle only arithmetic operations. */
2073 if (code != PLUS_EXPR
2074 && code != MINUS_EXPR
2075 && code != POINTER_PLUS_EXPR
2076 && code != MULT_EXPR
2077 && code != TRUNC_DIV_EXPR
2078 && code != FLOOR_DIV_EXPR
2079 && code != CEIL_DIV_EXPR
2080 && code != EXACT_DIV_EXPR
2081 && code != ROUND_DIV_EXPR
2082 && code != RSHIFT_EXPR
2085 && code != BIT_AND_EXPR
2086 && code != BIT_IOR_EXPR
2087 && code != TRUTH_AND_EXPR
2088 && code != TRUTH_OR_EXPR)
2090 /* We can still do constant propagation here. */
2091 tree const_op0 = op_with_constant_singleton_value_range (op0);
2092 tree const_op1 = op_with_constant_singleton_value_range (op1);
2093 if (const_op0 || const_op1)
2095 tree tem = fold_binary (code, expr_type,
2096 const_op0 ? const_op0 : op0,
2097 const_op1 ? const_op1 : op1);
2099 && is_gimple_min_invariant (tem)
2100 && !is_overflow_infinity (tem))
2102 set_value_range (vr, VR_RANGE, tem, tem, NULL);
2106 set_value_range_to_varying (vr);
2110 /* Get value ranges for each operand. For constant operands, create
2111 a new value range with the operand to simplify processing. */
2112 if (TREE_CODE (op0) == SSA_NAME)
2113 vr0 = *(get_value_range (op0));
2114 else if (is_gimple_min_invariant (op0))
2115 set_value_range_to_value (&vr0, op0, NULL);
2117 set_value_range_to_varying (&vr0);
2119 if (TREE_CODE (op1) == SSA_NAME)
2120 vr1 = *(get_value_range (op1));
2121 else if (is_gimple_min_invariant (op1))
2122 set_value_range_to_value (&vr1, op1, NULL);
2124 set_value_range_to_varying (&vr1);
2126 /* If either range is UNDEFINED, so is the result. */
2127 if (vr0.type == VR_UNDEFINED || vr1.type == VR_UNDEFINED)
2129 set_value_range_to_undefined (vr);
2133 /* The type of the resulting value range defaults to VR0.TYPE. */
2136 /* Refuse to operate on VARYING ranges, ranges of different kinds
2137 and symbolic ranges. As an exception, we allow BIT_AND_EXPR
2138 because we may be able to derive a useful range even if one of
2139 the operands is VR_VARYING or symbolic range. Similarly for
2140 divisions. TODO, we may be able to derive anti-ranges in
2142 if (code != BIT_AND_EXPR
2143 && code != TRUTH_AND_EXPR
2144 && code != TRUTH_OR_EXPR
2145 && code != TRUNC_DIV_EXPR
2146 && code != FLOOR_DIV_EXPR
2147 && code != CEIL_DIV_EXPR
2148 && code != EXACT_DIV_EXPR
2149 && code != ROUND_DIV_EXPR
2150 && (vr0.type == VR_VARYING
2151 || vr1.type == VR_VARYING
2152 || vr0.type != vr1.type
2153 || symbolic_range_p (&vr0)
2154 || symbolic_range_p (&vr1)))
2156 set_value_range_to_varying (vr);
2160 /* Now evaluate the expression to determine the new range. */
2161 if (POINTER_TYPE_P (expr_type)
2162 || POINTER_TYPE_P (TREE_TYPE (op0))
2163 || POINTER_TYPE_P (TREE_TYPE (op1)))
2165 if (code == MIN_EXPR || code == MAX_EXPR)
2167 /* For MIN/MAX expressions with pointers, we only care about
2168 nullness, if both are non null, then the result is nonnull.
2169 If both are null, then the result is null. Otherwise they
2171 if (range_is_nonnull (&vr0) && range_is_nonnull (&vr1))
2172 set_value_range_to_nonnull (vr, expr_type);
2173 else if (range_is_null (&vr0) && range_is_null (&vr1))
2174 set_value_range_to_null (vr, expr_type);
2176 set_value_range_to_varying (vr);
2180 gcc_assert (code == POINTER_PLUS_EXPR);
2181 /* For pointer types, we are really only interested in asserting
2182 whether the expression evaluates to non-NULL. */
2183 if (range_is_nonnull (&vr0) || range_is_nonnull (&vr1))
2184 set_value_range_to_nonnull (vr, expr_type);
2185 else if (range_is_null (&vr0) && range_is_null (&vr1))
2186 set_value_range_to_null (vr, expr_type);
2188 set_value_range_to_varying (vr);
2193 /* For integer ranges, apply the operation to each end of the
2194 range and see what we end up with. */
2195 if (code == TRUTH_AND_EXPR
2196 || code == TRUTH_OR_EXPR)
2198 /* If one of the operands is zero, we know that the whole
2199 expression evaluates zero. */
2200 if (code == TRUTH_AND_EXPR
2201 && ((vr0.type == VR_RANGE
2202 && integer_zerop (vr0.min)
2203 && integer_zerop (vr0.max))
2204 || (vr1.type == VR_RANGE
2205 && integer_zerop (vr1.min)
2206 && integer_zerop (vr1.max))))
2209 min = max = build_int_cst (expr_type, 0);
2211 /* If one of the operands is one, we know that the whole
2212 expression evaluates one. */
2213 else if (code == TRUTH_OR_EXPR
2214 && ((vr0.type == VR_RANGE
2215 && integer_onep (vr0.min)
2216 && integer_onep (vr0.max))
2217 || (vr1.type == VR_RANGE
2218 && integer_onep (vr1.min)
2219 && integer_onep (vr1.max))))
2222 min = max = build_int_cst (expr_type, 1);
2224 else if (vr0.type != VR_VARYING
2225 && vr1.type != VR_VARYING
2226 && vr0.type == vr1.type
2227 && !symbolic_range_p (&vr0)
2228 && !overflow_infinity_range_p (&vr0)
2229 && !symbolic_range_p (&vr1)
2230 && !overflow_infinity_range_p (&vr1))
2232 /* Boolean expressions cannot be folded with int_const_binop. */
2233 min = fold_binary (code, expr_type, vr0.min, vr1.min);
2234 max = fold_binary (code, expr_type, vr0.max, vr1.max);
2238 /* The result of a TRUTH_*_EXPR is always true or false. */
2239 set_value_range_to_truthvalue (vr, expr_type);
2243 else if (code == PLUS_EXPR
2245 || code == MAX_EXPR)
2247 /* If we have a PLUS_EXPR with two VR_ANTI_RANGEs, drop to
2248 VR_VARYING. It would take more effort to compute a precise
2249 range for such a case. For example, if we have op0 == 1 and
2250 op1 == -1 with their ranges both being ~[0,0], we would have
2251 op0 + op1 == 0, so we cannot claim that the sum is in ~[0,0].
2252 Note that we are guaranteed to have vr0.type == vr1.type at
2254 if (code == PLUS_EXPR && vr0.type == VR_ANTI_RANGE)
2256 set_value_range_to_varying (vr);
2260 /* For operations that make the resulting range directly
2261 proportional to the original ranges, apply the operation to
2262 the same end of each range. */
2263 min = vrp_int_const_binop (code, vr0.min, vr1.min);
2264 max = vrp_int_const_binop (code, vr0.max, vr1.max);
2266 /* If both additions overflowed the range kind is still correct.
2267 This happens regularly with subtracting something in unsigned
2269 ??? See PR30318 for all the cases we do not handle. */
2270 if (code == PLUS_EXPR
2271 && (TREE_OVERFLOW (min) && !is_overflow_infinity (min))
2272 && (TREE_OVERFLOW (max) && !is_overflow_infinity (max)))
2274 min = build_int_cst_wide (TREE_TYPE (min),
2275 TREE_INT_CST_LOW (min),
2276 TREE_INT_CST_HIGH (min));
2277 max = build_int_cst_wide (TREE_TYPE (max),
2278 TREE_INT_CST_LOW (max),
2279 TREE_INT_CST_HIGH (max));
2282 else if (code == MULT_EXPR
2283 || code == TRUNC_DIV_EXPR
2284 || code == FLOOR_DIV_EXPR
2285 || code == CEIL_DIV_EXPR
2286 || code == EXACT_DIV_EXPR
2287 || code == ROUND_DIV_EXPR
2288 || code == RSHIFT_EXPR)
2294 /* If we have an unsigned MULT_EXPR with two VR_ANTI_RANGEs,
2295 drop to VR_VARYING. It would take more effort to compute a
2296 precise range for such a case. For example, if we have
2297 op0 == 65536 and op1 == 65536 with their ranges both being
2298 ~[0,0] on a 32-bit machine, we would have op0 * op1 == 0, so
2299 we cannot claim that the product is in ~[0,0]. Note that we
2300 are guaranteed to have vr0.type == vr1.type at this
2302 if (code == MULT_EXPR
2303 && vr0.type == VR_ANTI_RANGE
2304 && !TYPE_OVERFLOW_UNDEFINED (TREE_TYPE (op0)))
2306 set_value_range_to_varying (vr);
2310 /* If we have a RSHIFT_EXPR with any shift values outside [0..prec-1],
2311 then drop to VR_VARYING. Outside of this range we get undefined
2312 behavior from the shift operation. We cannot even trust
2313 SHIFT_COUNT_TRUNCATED at this stage, because that applies to rtl
2314 shifts, and the operation at the tree level may be widened. */
2315 if (code == RSHIFT_EXPR)
2317 if (vr1.type == VR_ANTI_RANGE
2318 || !vrp_expr_computes_nonnegative (op1, &sop)
2320 (build_int_cst (TREE_TYPE (vr1.max),
2321 TYPE_PRECISION (expr_type) - 1),
2324 set_value_range_to_varying (vr);
2329 else if ((code == TRUNC_DIV_EXPR
2330 || code == FLOOR_DIV_EXPR
2331 || code == CEIL_DIV_EXPR
2332 || code == EXACT_DIV_EXPR
2333 || code == ROUND_DIV_EXPR)
2334 && (vr0.type != VR_RANGE || symbolic_range_p (&vr0)))
2336 /* For division, if op1 has VR_RANGE but op0 does not, something
2337 can be deduced just from that range. Say [min, max] / [4, max]
2338 gives [min / 4, max / 4] range. */
2339 if (vr1.type == VR_RANGE
2340 && !symbolic_range_p (&vr1)
2341 && !range_includes_zero_p (&vr1))
2343 vr0.type = type = VR_RANGE;
2344 vr0.min = vrp_val_min (TREE_TYPE (op0));
2345 vr0.max = vrp_val_max (TREE_TYPE (op1));
2349 set_value_range_to_varying (vr);
2354 /* For divisions, if op0 is VR_RANGE, we can deduce a range
2355 even if op1 is VR_VARYING, VR_ANTI_RANGE, symbolic or can
2357 if ((code == TRUNC_DIV_EXPR
2358 || code == FLOOR_DIV_EXPR
2359 || code == CEIL_DIV_EXPR
2360 || code == EXACT_DIV_EXPR
2361 || code == ROUND_DIV_EXPR)
2362 && vr0.type == VR_RANGE
2363 && (vr1.type != VR_RANGE
2364 || symbolic_range_p (&vr1)
2365 || range_includes_zero_p (&vr1)))
2367 tree zero = build_int_cst (TREE_TYPE (vr0.min), 0);
2373 if (vrp_expr_computes_nonnegative (op1, &sop) && !sop)
2375 /* For unsigned division or when divisor is known
2376 to be non-negative, the range has to cover
2377 all numbers from 0 to max for positive max
2378 and all numbers from min to 0 for negative min. */
2379 cmp = compare_values (vr0.max, zero);
2382 else if (cmp == 0 || cmp == 1)
2386 cmp = compare_values (vr0.min, zero);
2389 else if (cmp == 0 || cmp == -1)
2396 /* Otherwise the range is -max .. max or min .. -min
2397 depending on which bound is bigger in absolute value,
2398 as the division can change the sign. */
2399 abs_extent_range (vr, vr0.min, vr0.max);
2402 if (type == VR_VARYING)
2404 set_value_range_to_varying (vr);
2409 /* Multiplications and divisions are a bit tricky to handle,
2410 depending on the mix of signs we have in the two ranges, we
2411 need to operate on different values to get the minimum and
2412 maximum values for the new range. One approach is to figure
2413 out all the variations of range combinations and do the
2416 However, this involves several calls to compare_values and it
2417 is pretty convoluted. It's simpler to do the 4 operations
2418 (MIN0 OP MIN1, MIN0 OP MAX1, MAX0 OP MIN1 and MAX0 OP MAX0 OP
2419 MAX1) and then figure the smallest and largest values to form
2423 gcc_assert ((vr0.type == VR_RANGE
2424 || (code == MULT_EXPR && vr0.type == VR_ANTI_RANGE))
2425 && vr0.type == vr1.type);
2427 /* Compute the 4 cross operations. */
2429 val[0] = vrp_int_const_binop (code, vr0.min, vr1.min);
2430 if (val[0] == NULL_TREE)
2433 if (vr1.max == vr1.min)
2437 val[1] = vrp_int_const_binop (code, vr0.min, vr1.max);
2438 if (val[1] == NULL_TREE)
2442 if (vr0.max == vr0.min)
2446 val[2] = vrp_int_const_binop (code, vr0.max, vr1.min);
2447 if (val[2] == NULL_TREE)
2451 if (vr0.min == vr0.max || vr1.min == vr1.max)
2455 val[3] = vrp_int_const_binop (code, vr0.max, vr1.max);
2456 if (val[3] == NULL_TREE)
2462 set_value_range_to_varying (vr);
2466 /* Set MIN to the minimum of VAL[i] and MAX to the maximum
2470 for (i = 1; i < 4; i++)
2472 if (!is_gimple_min_invariant (min)
2473 || (TREE_OVERFLOW (min) && !is_overflow_infinity (min))
2474 || !is_gimple_min_invariant (max)
2475 || (TREE_OVERFLOW (max) && !is_overflow_infinity (max)))
2480 if (!is_gimple_min_invariant (val[i])
2481 || (TREE_OVERFLOW (val[i])
2482 && !is_overflow_infinity (val[i])))
2484 /* If we found an overflowed value, set MIN and MAX
2485 to it so that we set the resulting range to
2491 if (compare_values (val[i], min) == -1)
2494 if (compare_values (val[i], max) == 1)
2500 else if (code == MINUS_EXPR)
2502 /* If we have a MINUS_EXPR with two VR_ANTI_RANGEs, drop to
2503 VR_VARYING. It would take more effort to compute a precise
2504 range for such a case. For example, if we have op0 == 1 and
2505 op1 == 1 with their ranges both being ~[0,0], we would have
2506 op0 - op1 == 0, so we cannot claim that the difference is in
2507 ~[0,0]. Note that we are guaranteed to have
2508 vr0.type == vr1.type at this point. */
2509 if (vr0.type == VR_ANTI_RANGE)
2511 set_value_range_to_varying (vr);
2515 /* For MINUS_EXPR, apply the operation to the opposite ends of
2517 min = vrp_int_const_binop (code, vr0.min, vr1.max);
2518 max = vrp_int_const_binop (code, vr0.max, vr1.min);
2520 else if (code == BIT_AND_EXPR)
2522 bool vr0_int_cst_singleton_p, vr1_int_cst_singleton_p;
2524 vr0_int_cst_singleton_p = range_int_cst_singleton_p (&vr0);
2525 vr1_int_cst_singleton_p = range_int_cst_singleton_p (&vr1);
2527 if (vr0_int_cst_singleton_p && vr1_int_cst_singleton_p)
2528 min = max = int_const_binop (code, vr0.max, vr1.max, 0);
2529 else if (vr0_int_cst_singleton_p
2530 && tree_int_cst_sgn (vr0.max) >= 0)
2532 min = build_int_cst (expr_type, 0);
2535 else if (vr1_int_cst_singleton_p
2536 && tree_int_cst_sgn (vr1.max) >= 0)
2539 min = build_int_cst (expr_type, 0);
2544 set_value_range_to_varying (vr);
2548 else if (code == BIT_IOR_EXPR)
2550 if (range_int_cst_p (&vr0)
2551 && range_int_cst_p (&vr1)
2552 && tree_int_cst_sgn (vr0.min) >= 0
2553 && tree_int_cst_sgn (vr1.min) >= 0)
2555 double_int vr0_max = tree_to_double_int (vr0.max);
2556 double_int vr1_max = tree_to_double_int (vr1.max);
2559 /* Set all bits to the right of the most significant one to 1.
2560 For example, [0, 4] | [4, 4] = [4, 7]. */
2561 ior_max.low = vr0_max.low | vr1_max.low;
2562 ior_max.high = vr0_max.high | vr1_max.high;
2563 if (ior_max.high != 0)
2565 ior_max.low = ~(unsigned HOST_WIDE_INT)0u;
2566 ior_max.high |= ((HOST_WIDE_INT) 1
2567 << floor_log2 (ior_max.high)) - 1;
2569 else if (ior_max.low != 0)
2570 ior_max.low |= ((unsigned HOST_WIDE_INT) 1u
2571 << floor_log2 (ior_max.low)) - 1;
2573 /* Both of these endpoints are conservative. */
2574 min = vrp_int_const_binop (MAX_EXPR, vr0.min, vr1.min);
2575 max = double_int_to_tree (expr_type, ior_max);
2579 set_value_range_to_varying (vr);
2586 /* If either MIN or MAX overflowed, then set the resulting range to
2587 VARYING. But we do accept an overflow infinity
2589 if (min == NULL_TREE
2590 || !is_gimple_min_invariant (min)
2591 || (TREE_OVERFLOW (min) && !is_overflow_infinity (min))
2593 || !is_gimple_min_invariant (max)
2594 || (TREE_OVERFLOW (max) && !is_overflow_infinity (max)))
2596 set_value_range_to_varying (vr);
2602 2) [-INF, +-INF(OVF)]
2603 3) [+-INF(OVF), +INF]
2604 4) [+-INF(OVF), +-INF(OVF)]
2605 We learn nothing when we have INF and INF(OVF) on both sides.
2606 Note that we do accept [-INF, -INF] and [+INF, +INF] without
2608 if ((vrp_val_is_min (min) || is_overflow_infinity (min))
2609 && (vrp_val_is_max (max) || is_overflow_infinity (max)))
2611 set_value_range_to_varying (vr);
2615 cmp = compare_values (min, max);
2616 if (cmp == -2 || cmp == 1)
2618 /* If the new range has its limits swapped around (MIN > MAX),
2619 then the operation caused one of them to wrap around, mark
2620 the new range VARYING. */
2621 set_value_range_to_varying (vr);
2624 set_value_range (vr, type, min, max, NULL);
2628 /* Extract range information from a unary expression EXPR based on
2629 the range of its operand and the expression code. */
2632 extract_range_from_unary_expr (value_range_t *vr, enum tree_code code,
2633 tree type, tree op0)
2637 value_range_t vr0 = { VR_UNDEFINED, NULL_TREE, NULL_TREE, NULL };
2639 /* Refuse to operate on certain unary expressions for which we
2640 cannot easily determine a resulting range. */
2641 if (code == FIX_TRUNC_EXPR
2642 || code == FLOAT_EXPR
2643 || code == BIT_NOT_EXPR
2644 || code == CONJ_EXPR)
2646 /* We can still do constant propagation here. */
2647 if ((op0 = op_with_constant_singleton_value_range (op0)) != NULL_TREE)
2649 tree tem = fold_unary (code, type, op0);
2651 && is_gimple_min_invariant (tem)
2652 && !is_overflow_infinity (tem))
2654 set_value_range (vr, VR_RANGE, tem, tem, NULL);
2658 set_value_range_to_varying (vr);
2662 /* Get value ranges for the operand. For constant operands, create
2663 a new value range with the operand to simplify processing. */
2664 if (TREE_CODE (op0) == SSA_NAME)
2665 vr0 = *(get_value_range (op0));
2666 else if (is_gimple_min_invariant (op0))
2667 set_value_range_to_value (&vr0, op0, NULL);
2669 set_value_range_to_varying (&vr0);
2671 /* If VR0 is UNDEFINED, so is the result. */
2672 if (vr0.type == VR_UNDEFINED)
2674 set_value_range_to_undefined (vr);
2678 /* Refuse to operate on symbolic ranges, or if neither operand is
2679 a pointer or integral type. */
2680 if ((!INTEGRAL_TYPE_P (TREE_TYPE (op0))
2681 && !POINTER_TYPE_P (TREE_TYPE (op0)))
2682 || (vr0.type != VR_VARYING
2683 && symbolic_range_p (&vr0)))
2685 set_value_range_to_varying (vr);
2689 /* If the expression involves pointers, we are only interested in
2690 determining if it evaluates to NULL [0, 0] or non-NULL (~[0, 0]). */
2691 if (POINTER_TYPE_P (type) || POINTER_TYPE_P (TREE_TYPE (op0)))
2696 if (range_is_nonnull (&vr0)
2697 || (tree_unary_nonzero_warnv_p (code, type, op0, &sop)
2699 set_value_range_to_nonnull (vr, type);
2700 else if (range_is_null (&vr0))
2701 set_value_range_to_null (vr, type);
2703 set_value_range_to_varying (vr);
2708 /* Handle unary expressions on integer ranges. */
2709 if (CONVERT_EXPR_CODE_P (code)
2710 && INTEGRAL_TYPE_P (type)
2711 && INTEGRAL_TYPE_P (TREE_TYPE (op0)))
2713 tree inner_type = TREE_TYPE (op0);
2714 tree outer_type = type;
2716 /* If VR0 is varying and we increase the type precision, assume
2717 a full range for the following transformation. */
2718 if (vr0.type == VR_VARYING
2719 && TYPE_PRECISION (inner_type) < TYPE_PRECISION (outer_type))
2721 vr0.type = VR_RANGE;
2722 vr0.min = TYPE_MIN_VALUE (inner_type);
2723 vr0.max = TYPE_MAX_VALUE (inner_type);
2726 /* If VR0 is a constant range or anti-range and the conversion is
2727 not truncating we can convert the min and max values and
2728 canonicalize the resulting range. Otherwise we can do the
2729 conversion if the size of the range is less than what the
2730 precision of the target type can represent and the range is
2731 not an anti-range. */
2732 if ((vr0.type == VR_RANGE
2733 || vr0.type == VR_ANTI_RANGE)
2734 && TREE_CODE (vr0.min) == INTEGER_CST
2735 && TREE_CODE (vr0.max) == INTEGER_CST
2736 && (!is_overflow_infinity (vr0.min)
2737 || (vr0.type == VR_RANGE
2738 && TYPE_PRECISION (outer_type) > TYPE_PRECISION (inner_type)
2739 && needs_overflow_infinity (outer_type)
2740 && supports_overflow_infinity (outer_type)))
2741 && (!is_overflow_infinity (vr0.max)
2742 || (vr0.type == VR_RANGE
2743 && TYPE_PRECISION (outer_type) > TYPE_PRECISION (inner_type)
2744 && needs_overflow_infinity (outer_type)
2745 && supports_overflow_infinity (outer_type)))
2746 && (TYPE_PRECISION (outer_type) >= TYPE_PRECISION (inner_type)
2747 || (vr0.type == VR_RANGE
2748 && integer_zerop (int_const_binop (RSHIFT_EXPR,
2749 int_const_binop (MINUS_EXPR, vr0.max, vr0.min, 0),
2750 size_int (TYPE_PRECISION (outer_type)), 0)))))
2752 tree new_min, new_max;
2753 new_min = force_fit_type_double (outer_type,
2754 TREE_INT_CST_LOW (vr0.min),
2755 TREE_INT_CST_HIGH (vr0.min), 0, 0);
2756 new_max = force_fit_type_double (outer_type,
2757 TREE_INT_CST_LOW (vr0.max),
2758 TREE_INT_CST_HIGH (vr0.max), 0, 0);
2759 if (is_overflow_infinity (vr0.min))
2760 new_min = negative_overflow_infinity (outer_type);
2761 if (is_overflow_infinity (vr0.max))
2762 new_max = positive_overflow_infinity (outer_type);
2763 set_and_canonicalize_value_range (vr, vr0.type,
2764 new_min, new_max, NULL);
2768 set_value_range_to_varying (vr);
2772 /* Conversion of a VR_VARYING value to a wider type can result
2773 in a usable range. So wait until after we've handled conversions
2774 before dropping the result to VR_VARYING if we had a source
2775 operand that is VR_VARYING. */
2776 if (vr0.type == VR_VARYING)
2778 set_value_range_to_varying (vr);
2782 /* Apply the operation to each end of the range and see what we end
2784 if (code == NEGATE_EXPR
2785 && !TYPE_UNSIGNED (type))
2787 /* NEGATE_EXPR flips the range around. We need to treat
2788 TYPE_MIN_VALUE specially. */
2789 if (is_positive_overflow_infinity (vr0.max))
2790 min = negative_overflow_infinity (type);
2791 else if (is_negative_overflow_infinity (vr0.max))
2792 min = positive_overflow_infinity (type);
2793 else if (!vrp_val_is_min (vr0.max))
2794 min = fold_unary_to_constant (code, type, vr0.max);
2795 else if (needs_overflow_infinity (type))
2797 if (supports_overflow_infinity (type)
2798 && !is_overflow_infinity (vr0.min)
2799 && !vrp_val_is_min (vr0.min))
2800 min = positive_overflow_infinity (type);
2803 set_value_range_to_varying (vr);
2808 min = TYPE_MIN_VALUE (type);
2810 if (is_positive_overflow_infinity (vr0.min))
2811 max = negative_overflow_infinity (type);
2812 else if (is_negative_overflow_infinity (vr0.min))
2813 max = positive_overflow_infinity (type);
2814 else if (!vrp_val_is_min (vr0.min))
2815 max = fold_unary_to_constant (code, type, vr0.min);
2816 else if (needs_overflow_infinity (type))
2818 if (supports_overflow_infinity (type))
2819 max = positive_overflow_infinity (type);
2822 set_value_range_to_varying (vr);
2827 max = TYPE_MIN_VALUE (type);
2829 else if (code == NEGATE_EXPR
2830 && TYPE_UNSIGNED (type))
2832 if (!range_includes_zero_p (&vr0))
2834 max = fold_unary_to_constant (code, type, vr0.min);
2835 min = fold_unary_to_constant (code, type, vr0.max);
2839 if (range_is_null (&vr0))
2840 set_value_range_to_null (vr, type);
2842 set_value_range_to_varying (vr);
2846 else if (code == ABS_EXPR
2847 && !TYPE_UNSIGNED (type))
2849 /* -TYPE_MIN_VALUE = TYPE_MIN_VALUE with flag_wrapv so we can't get a
2851 if (!TYPE_OVERFLOW_UNDEFINED (type)
2852 && ((vr0.type == VR_RANGE
2853 && vrp_val_is_min (vr0.min))
2854 || (vr0.type == VR_ANTI_RANGE
2855 && !vrp_val_is_min (vr0.min)
2856 && !range_includes_zero_p (&vr0))))
2858 set_value_range_to_varying (vr);
2862 /* ABS_EXPR may flip the range around, if the original range
2863 included negative values. */
2864 if (is_overflow_infinity (vr0.min))
2865 min = positive_overflow_infinity (type);
2866 else if (!vrp_val_is_min (vr0.min))
2867 min = fold_unary_to_constant (code, type, vr0.min);
2868 else if (!needs_overflow_infinity (type))
2869 min = TYPE_MAX_VALUE (type);
2870 else if (supports_overflow_infinity (type))
2871 min = positive_overflow_infinity (type);
2874 set_value_range_to_varying (vr);
2878 if (is_overflow_infinity (vr0.max))
2879 max = positive_overflow_infinity (type);
2880 else if (!vrp_val_is_min (vr0.max))
2881 max = fold_unary_to_constant (code, type, vr0.max);
2882 else if (!needs_overflow_infinity (type))
2883 max = TYPE_MAX_VALUE (type);
2884 else if (supports_overflow_infinity (type)
2885 /* We shouldn't generate [+INF, +INF] as set_value_range
2886 doesn't like this and ICEs. */
2887 && !is_positive_overflow_infinity (min))
2888 max = positive_overflow_infinity (type);
2891 set_value_range_to_varying (vr);
2895 cmp = compare_values (min, max);
2897 /* If a VR_ANTI_RANGEs contains zero, then we have
2898 ~[-INF, min(MIN, MAX)]. */
2899 if (vr0.type == VR_ANTI_RANGE)
2901 if (range_includes_zero_p (&vr0))
2903 /* Take the lower of the two values. */
2907 /* Create ~[-INF, min (abs(MIN), abs(MAX))]
2908 or ~[-INF + 1, min (abs(MIN), abs(MAX))] when
2909 flag_wrapv is set and the original anti-range doesn't include
2910 TYPE_MIN_VALUE, remember -TYPE_MIN_VALUE = TYPE_MIN_VALUE. */
2911 if (TYPE_OVERFLOW_WRAPS (type))
2913 tree type_min_value = TYPE_MIN_VALUE (type);
2915 min = (vr0.min != type_min_value
2916 ? int_const_binop (PLUS_EXPR, type_min_value,
2917 integer_one_node, 0)
2922 if (overflow_infinity_range_p (&vr0))
2923 min = negative_overflow_infinity (type);
2925 min = TYPE_MIN_VALUE (type);
2930 /* All else has failed, so create the range [0, INF], even for
2931 flag_wrapv since TYPE_MIN_VALUE is in the original
2933 vr0.type = VR_RANGE;
2934 min = build_int_cst (type, 0);
2935 if (needs_overflow_infinity (type))
2937 if (supports_overflow_infinity (type))
2938 max = positive_overflow_infinity (type);
2941 set_value_range_to_varying (vr);
2946 max = TYPE_MAX_VALUE (type);
2950 /* If the range contains zero then we know that the minimum value in the
2951 range will be zero. */
2952 else if (range_includes_zero_p (&vr0))
2956 min = build_int_cst (type, 0);
2960 /* If the range was reversed, swap MIN and MAX. */
2971 /* Otherwise, operate on each end of the range. */
2972 min = fold_unary_to_constant (code, type, vr0.min);
2973 max = fold_unary_to_constant (code, type, vr0.max);
2975 if (needs_overflow_infinity (type))
2977 gcc_assert (code != NEGATE_EXPR && code != ABS_EXPR);
2979 /* If both sides have overflowed, we don't know
2981 if ((is_overflow_infinity (vr0.min)
2982 || TREE_OVERFLOW (min))
2983 && (is_overflow_infinity (vr0.max)
2984 || TREE_OVERFLOW (max)))
2986 set_value_range_to_varying (vr);
2990 if (is_overflow_infinity (vr0.min))
2992 else if (TREE_OVERFLOW (min))
2994 if (supports_overflow_infinity (type))
2995 min = (tree_int_cst_sgn (min) >= 0
2996 ? positive_overflow_infinity (TREE_TYPE (min))
2997 : negative_overflow_infinity (TREE_TYPE (min)));
3000 set_value_range_to_varying (vr);
3005 if (is_overflow_infinity (vr0.max))
3007 else if (TREE_OVERFLOW (max))
3009 if (supports_overflow_infinity (type))
3010 max = (tree_int_cst_sgn (max) >= 0
3011 ? positive_overflow_infinity (TREE_TYPE (max))
3012 : negative_overflow_infinity (TREE_TYPE (max)));
3015 set_value_range_to_varying (vr);
3022 cmp = compare_values (min, max);
3023 if (cmp == -2 || cmp == 1)
3025 /* If the new range has its limits swapped around (MIN > MAX),
3026 then the operation caused one of them to wrap around, mark
3027 the new range VARYING. */
3028 set_value_range_to_varying (vr);
3031 set_value_range (vr, vr0.type, min, max, NULL);
3035 /* Extract range information from a conditional expression EXPR based on
3036 the ranges of each of its operands and the expression code. */
3039 extract_range_from_cond_expr (value_range_t *vr, tree expr)
3042 value_range_t vr0 = { VR_UNDEFINED, NULL_TREE, NULL_TREE, NULL };
3043 value_range_t vr1 = { VR_UNDEFINED, NULL_TREE, NULL_TREE, NULL };
3045 /* Get value ranges for each operand. For constant operands, create
3046 a new value range with the operand to simplify processing. */
3047 op0 = COND_EXPR_THEN (expr);
3048 if (TREE_CODE (op0) == SSA_NAME)
3049 vr0 = *(get_value_range (op0));
3050 else if (is_gimple_min_invariant (op0))
3051 set_value_range_to_value (&vr0, op0, NULL);
3053 set_value_range_to_varying (&vr0);
3055 op1 = COND_EXPR_ELSE (expr);
3056 if (TREE_CODE (op1) == SSA_NAME)
3057 vr1 = *(get_value_range (op1));
3058 else if (is_gimple_min_invariant (op1))
3059 set_value_range_to_value (&vr1, op1, NULL);
3061 set_value_range_to_varying (&vr1);
3063 /* The resulting value range is the union of the operand ranges */
3064 vrp_meet (&vr0, &vr1);
3065 copy_value_range (vr, &vr0);
3069 /* Extract range information from a comparison expression EXPR based
3070 on the range of its operand and the expression code. */
3073 extract_range_from_comparison (value_range_t *vr, enum tree_code code,
3074 tree type, tree op0, tree op1)
3079 val = vrp_evaluate_conditional_warnv_with_ops (code, op0, op1, false, &sop,
3082 /* A disadvantage of using a special infinity as an overflow
3083 representation is that we lose the ability to record overflow
3084 when we don't have an infinity. So we have to ignore a result
3085 which relies on overflow. */
3087 if (val && !is_overflow_infinity (val) && !sop)
3089 /* Since this expression was found on the RHS of an assignment,
3090 its type may be different from _Bool. Convert VAL to EXPR's
3092 val = fold_convert (type, val);
3093 if (is_gimple_min_invariant (val))
3094 set_value_range_to_value (vr, val, vr->equiv);
3096 set_value_range (vr, VR_RANGE, val, val, vr->equiv);
3099 /* The result of a comparison is always true or false. */
3100 set_value_range_to_truthvalue (vr, type);
3103 /* Try to derive a nonnegative or nonzero range out of STMT relying
3104 primarily on generic routines in fold in conjunction with range data.
3105 Store the result in *VR */
3108 extract_range_basic (value_range_t *vr, gimple stmt)
3111 tree type = gimple_expr_type (stmt);
3113 if (INTEGRAL_TYPE_P (type)
3114 && gimple_stmt_nonnegative_warnv_p (stmt, &sop))
3115 set_value_range_to_nonnegative (vr, type,
3116 sop || stmt_overflow_infinity (stmt));
3117 else if (vrp_stmt_computes_nonzero (stmt, &sop)
3119 set_value_range_to_nonnull (vr, type);
3121 set_value_range_to_varying (vr);
3125 /* Try to compute a useful range out of assignment STMT and store it
3129 extract_range_from_assignment (value_range_t *vr, gimple stmt)
3131 enum tree_code code = gimple_assign_rhs_code (stmt);
3133 if (code == ASSERT_EXPR)
3134 extract_range_from_assert (vr, gimple_assign_rhs1 (stmt));
3135 else if (code == SSA_NAME)
3136 extract_range_from_ssa_name (vr, gimple_assign_rhs1 (stmt));
3137 else if (TREE_CODE_CLASS (code) == tcc_binary
3138 || code == TRUTH_AND_EXPR
3139 || code == TRUTH_OR_EXPR
3140 || code == TRUTH_XOR_EXPR)
3141 extract_range_from_binary_expr (vr, gimple_assign_rhs_code (stmt),
3142 gimple_expr_type (stmt),
3143 gimple_assign_rhs1 (stmt),
3144 gimple_assign_rhs2 (stmt));
3145 else if (TREE_CODE_CLASS (code) == tcc_unary)
3146 extract_range_from_unary_expr (vr, gimple_assign_rhs_code (stmt),
3147 gimple_expr_type (stmt),
3148 gimple_assign_rhs1 (stmt));
3149 else if (code == COND_EXPR)
3150 extract_range_from_cond_expr (vr, gimple_assign_rhs1 (stmt));
3151 else if (TREE_CODE_CLASS (code) == tcc_comparison)
3152 extract_range_from_comparison (vr, gimple_assign_rhs_code (stmt),
3153 gimple_expr_type (stmt),
3154 gimple_assign_rhs1 (stmt),
3155 gimple_assign_rhs2 (stmt));
3156 else if (get_gimple_rhs_class (code) == GIMPLE_SINGLE_RHS
3157 && is_gimple_min_invariant (gimple_assign_rhs1 (stmt)))
3158 set_value_range_to_value (vr, gimple_assign_rhs1 (stmt), NULL);
3160 set_value_range_to_varying (vr);
3162 if (vr->type == VR_VARYING)
3163 extract_range_basic (vr, stmt);
3166 /* Given a range VR, a LOOP and a variable VAR, determine whether it
3167 would be profitable to adjust VR using scalar evolution information
3168 for VAR. If so, update VR with the new limits. */
3171 adjust_range_with_scev (value_range_t *vr, struct loop *loop,
3172 gimple stmt, tree var)
3174 tree init, step, chrec, tmin, tmax, min, max, type, tem;
3175 enum ev_direction dir;
3177 /* TODO. Don't adjust anti-ranges. An anti-range may provide
3178 better opportunities than a regular range, but I'm not sure. */
3179 if (vr->type == VR_ANTI_RANGE)
3182 chrec = instantiate_parameters (loop, analyze_scalar_evolution (loop, var));
3184 /* Like in PR19590, scev can return a constant function. */
3185 if (is_gimple_min_invariant (chrec))
3187 set_value_range_to_value (vr, chrec, vr->equiv);
3191 if (TREE_CODE (chrec) != POLYNOMIAL_CHREC)
3194 init = initial_condition_in_loop_num (chrec, loop->num);
3195 tem = op_with_constant_singleton_value_range (init);
3198 step = evolution_part_in_loop_num (chrec, loop->num);
3199 tem = op_with_constant_singleton_value_range (step);
3203 /* If STEP is symbolic, we can't know whether INIT will be the
3204 minimum or maximum value in the range. Also, unless INIT is
3205 a simple expression, compare_values and possibly other functions
3206 in tree-vrp won't be able to handle it. */
3207 if (step == NULL_TREE
3208 || !is_gimple_min_invariant (step)
3209 || !valid_value_p (init))
3212 dir = scev_direction (chrec);
3213 if (/* Do not adjust ranges if we do not know whether the iv increases
3214 or decreases, ... */
3215 dir == EV_DIR_UNKNOWN
3216 /* ... or if it may wrap. */
3217 || scev_probably_wraps_p (init, step, stmt, get_chrec_loop (chrec),
3221 /* We use TYPE_MIN_VALUE and TYPE_MAX_VALUE here instead of
3222 negative_overflow_infinity and positive_overflow_infinity,
3223 because we have concluded that the loop probably does not
3226 type = TREE_TYPE (var);
3227 if (POINTER_TYPE_P (type) || !TYPE_MIN_VALUE (type))
3228 tmin = lower_bound_in_type (type, type);
3230 tmin = TYPE_MIN_VALUE (type);
3231 if (POINTER_TYPE_P (type) || !TYPE_MAX_VALUE (type))
3232 tmax = upper_bound_in_type (type, type);
3234 tmax = TYPE_MAX_VALUE (type);
3236 if (vr->type == VR_VARYING || vr->type == VR_UNDEFINED)
3241 /* For VARYING or UNDEFINED ranges, just about anything we get
3242 from scalar evolutions should be better. */
3244 if (dir == EV_DIR_DECREASES)
3249 /* If we would create an invalid range, then just assume we
3250 know absolutely nothing. This may be over-conservative,
3251 but it's clearly safe, and should happen only in unreachable
3252 parts of code, or for invalid programs. */
3253 if (compare_values (min, max) == 1)
3256 set_value_range (vr, VR_RANGE, min, max, vr->equiv);
3258 else if (vr->type == VR_RANGE)
3263 if (dir == EV_DIR_DECREASES)
3265 /* INIT is the maximum value. If INIT is lower than VR->MAX
3266 but no smaller than VR->MIN, set VR->MAX to INIT. */
3267 if (compare_values (init, max) == -1)
3271 /* If we just created an invalid range with the minimum
3272 greater than the maximum, we fail conservatively.
3273 This should happen only in unreachable
3274 parts of code, or for invalid programs. */
3275 if (compare_values (min, max) == 1)
3279 /* According to the loop information, the variable does not
3280 overflow. If we think it does, probably because of an
3281 overflow due to arithmetic on a different INF value,
3283 if (is_negative_overflow_infinity (min))
3288 /* If INIT is bigger than VR->MIN, set VR->MIN to INIT. */
3289 if (compare_values (init, min) == 1)
3293 /* Again, avoid creating invalid range by failing. */
3294 if (compare_values (min, max) == 1)
3298 if (is_positive_overflow_infinity (max))
3302 set_value_range (vr, VR_RANGE, min, max, vr->equiv);
3306 /* Return true if VAR may overflow at STMT. This checks any available
3307 loop information to see if we can determine that VAR does not
3311 vrp_var_may_overflow (tree var, gimple stmt)
3314 tree chrec, init, step;
3316 if (current_loops == NULL)
3319 l = loop_containing_stmt (stmt);
3324 chrec = instantiate_parameters (l, analyze_scalar_evolution (l, var));
3325 if (TREE_CODE (chrec) != POLYNOMIAL_CHREC)
3328 init = initial_condition_in_loop_num (chrec, l->num);
3329 step = evolution_part_in_loop_num (chrec, l->num);
3331 if (step == NULL_TREE
3332 || !is_gimple_min_invariant (step)
3333 || !valid_value_p (init))
3336 /* If we get here, we know something useful about VAR based on the
3337 loop information. If it wraps, it may overflow. */
3339 if (scev_probably_wraps_p (init, step, stmt, get_chrec_loop (chrec),
3343 if (dump_file && (dump_flags & TDF_DETAILS) != 0)
3345 print_generic_expr (dump_file, var, 0);
3346 fprintf (dump_file, ": loop information indicates does not overflow\n");
3353 /* Given two numeric value ranges VR0, VR1 and a comparison code COMP:
3355 - Return BOOLEAN_TRUE_NODE if VR0 COMP VR1 always returns true for
3356 all the values in the ranges.
3358 - Return BOOLEAN_FALSE_NODE if the comparison always returns false.
3360 - Return NULL_TREE if it is not always possible to determine the
3361 value of the comparison.
3363 Also set *STRICT_OVERFLOW_P to indicate whether a range with an
3364 overflow infinity was used in the test. */
3368 compare_ranges (enum tree_code comp, value_range_t *vr0, value_range_t *vr1,
3369 bool *strict_overflow_p)
3371 /* VARYING or UNDEFINED ranges cannot be compared. */
3372 if (vr0->type == VR_VARYING
3373 || vr0->type == VR_UNDEFINED
3374 || vr1->type == VR_VARYING
3375 || vr1->type == VR_UNDEFINED)
3378 /* Anti-ranges need to be handled separately. */
3379 if (vr0->type == VR_ANTI_RANGE || vr1->type == VR_ANTI_RANGE)
3381 /* If both are anti-ranges, then we cannot compute any
3383 if (vr0->type == VR_ANTI_RANGE && vr1->type == VR_ANTI_RANGE)
3386 /* These comparisons are never statically computable. */
3393 /* Equality can be computed only between a range and an
3394 anti-range. ~[VAL1, VAL2] == [VAL1, VAL2] is always false. */
3395 if (vr0->type == VR_RANGE)
3397 /* To simplify processing, make VR0 the anti-range. */
3398 value_range_t *tmp = vr0;
3403 gcc_assert (comp == NE_EXPR || comp == EQ_EXPR);
3405 if (compare_values_warnv (vr0->min, vr1->min, strict_overflow_p) == 0
3406 && compare_values_warnv (vr0->max, vr1->max, strict_overflow_p) == 0)
3407 return (comp == NE_EXPR) ? boolean_true_node : boolean_false_node;
3412 if (!usable_range_p (vr0, strict_overflow_p)
3413 || !usable_range_p (vr1, strict_overflow_p))
3416 /* Simplify processing. If COMP is GT_EXPR or GE_EXPR, switch the
3417 operands around and change the comparison code. */
3418 if (comp == GT_EXPR || comp == GE_EXPR)
3421 comp = (comp == GT_EXPR) ? LT_EXPR : LE_EXPR;
3427 if (comp == EQ_EXPR)
3429 /* Equality may only be computed if both ranges represent
3430 exactly one value. */
3431 if (compare_values_warnv (vr0->min, vr0->max, strict_overflow_p) == 0
3432 && compare_values_warnv (vr1->min, vr1->max, strict_overflow_p) == 0)
3434 int cmp_min = compare_values_warnv (vr0->min, vr1->min,
3436 int cmp_max = compare_values_warnv (vr0->max, vr1->max,
3438 if (cmp_min == 0 && cmp_max == 0)
3439 return boolean_true_node;
3440 else if (cmp_min != -2 && cmp_max != -2)
3441 return boolean_false_node;
3443 /* If [V0_MIN, V1_MAX] < [V1_MIN, V1_MAX] then V0 != V1. */
3444 else if (compare_values_warnv (vr0->min, vr1->max,
3445 strict_overflow_p) == 1
3446 || compare_values_warnv (vr1->min, vr0->max,
3447 strict_overflow_p) == 1)
3448 return boolean_false_node;
3452 else if (comp == NE_EXPR)
3456 /* If VR0 is completely to the left or completely to the right
3457 of VR1, they are always different. Notice that we need to
3458 make sure that both comparisons yield similar results to
3459 avoid comparing values that cannot be compared at
3461 cmp1 = compare_values_warnv (vr0->max, vr1->min, strict_overflow_p);
3462 cmp2 = compare_values_warnv (vr0->min, vr1->max, strict_overflow_p);
3463 if ((cmp1 == -1 && cmp2 == -1) || (cmp1 == 1 && cmp2 == 1))
3464 return boolean_true_node;
3466 /* If VR0 and VR1 represent a single value and are identical,
3468 else if (compare_values_warnv (vr0->min, vr0->max,
3469 strict_overflow_p) == 0
3470 && compare_values_warnv (vr1->min, vr1->max,
3471 strict_overflow_p) == 0
3472 && compare_values_warnv (vr0->min, vr1->min,
3473 strict_overflow_p) == 0
3474 && compare_values_warnv (vr0->max, vr1->max,
3475 strict_overflow_p) == 0)
3476 return boolean_false_node;
3478 /* Otherwise, they may or may not be different. */
3482 else if (comp == LT_EXPR || comp == LE_EXPR)
3486 /* If VR0 is to the left of VR1, return true. */
3487 tst = compare_values_warnv (vr0->max, vr1->min, strict_overflow_p);
3488 if ((comp == LT_EXPR && tst == -1)
3489 || (comp == LE_EXPR && (tst == -1 || tst == 0)))
3491 if (overflow_infinity_range_p (vr0)
3492 || overflow_infinity_range_p (vr1))
3493 *strict_overflow_p = true;
3494 return boolean_true_node;
3497 /* If VR0 is to the right of VR1, return false. */
3498 tst = compare_values_warnv (vr0->min, vr1->max, strict_overflow_p);
3499 if ((comp == LT_EXPR && (tst == 0 || tst == 1))
3500 || (comp == LE_EXPR && tst == 1))
3502 if (overflow_infinity_range_p (vr0)
3503 || overflow_infinity_range_p (vr1))
3504 *strict_overflow_p = true;
3505 return boolean_false_node;
3508 /* Otherwise, we don't know. */
3516 /* Given a value range VR, a value VAL and a comparison code COMP, return
3517 BOOLEAN_TRUE_NODE if VR COMP VAL always returns true for all the
3518 values in VR. Return BOOLEAN_FALSE_NODE if the comparison
3519 always returns false. Return NULL_TREE if it is not always
3520 possible to determine the value of the comparison. Also set
3521 *STRICT_OVERFLOW_P to indicate whether a range with an overflow
3522 infinity was used in the test. */
3525 compare_range_with_value (enum tree_code comp, value_range_t *vr, tree val,
3526 bool *strict_overflow_p)
3528 if (vr->type == VR_VARYING || vr->type == VR_UNDEFINED)
3531 /* Anti-ranges need to be handled separately. */
3532 if (vr->type == VR_ANTI_RANGE)
3534 /* For anti-ranges, the only predicates that we can compute at
3535 compile time are equality and inequality. */
3542 /* ~[VAL_1, VAL_2] OP VAL is known if VAL_1 <= VAL <= VAL_2. */
3543 if (value_inside_range (val, vr) == 1)
3544 return (comp == NE_EXPR) ? boolean_true_node : boolean_false_node;
3549 if (!usable_range_p (vr, strict_overflow_p))
3552 if (comp == EQ_EXPR)
3554 /* EQ_EXPR may only be computed if VR represents exactly
3556 if (compare_values_warnv (vr->min, vr->max, strict_overflow_p) == 0)
3558 int cmp = compare_values_warnv (vr->min, val, strict_overflow_p);
3560 return boolean_true_node;
3561 else if (cmp == -1 || cmp == 1 || cmp == 2)
3562 return boolean_false_node;
3564 else if (compare_values_warnv (val, vr->min, strict_overflow_p) == -1
3565 || compare_values_warnv (vr->max, val, strict_overflow_p) == -1)
3566 return boolean_false_node;
3570 else if (comp == NE_EXPR)
3572 /* If VAL is not inside VR, then they are always different. */
3573 if (compare_values_warnv (vr->max, val, strict_overflow_p) == -1
3574 || compare_values_warnv (vr->min, val, strict_overflow_p) == 1)
3575 return boolean_true_node;
3577 /* If VR represents exactly one value equal to VAL, then return
3579 if (compare_values_warnv (vr->min, vr->max, strict_overflow_p) == 0
3580 && compare_values_warnv (vr->min, val, strict_overflow_p) == 0)
3581 return boolean_false_node;
3583 /* Otherwise, they may or may not be different. */
3586 else if (comp == LT_EXPR || comp == LE_EXPR)
3590 /* If VR is to the left of VAL, return true. */
3591 tst = compare_values_warnv (vr->max, val, strict_overflow_p);
3592 if ((comp == LT_EXPR && tst == -1)
3593 || (comp == LE_EXPR && (tst == -1 || tst == 0)))
3595 if (overflow_infinity_range_p (vr))
3596 *strict_overflow_p = true;
3597 return boolean_true_node;
3600 /* If VR is to the right of VAL, return false. */
3601 tst = compare_values_warnv (vr->min, val, strict_overflow_p);
3602 if ((comp == LT_EXPR && (tst == 0 || tst == 1))
3603 || (comp == LE_EXPR && tst == 1))
3605 if (overflow_infinity_range_p (vr))
3606 *strict_overflow_p = true;
3607 return boolean_false_node;
3610 /* Otherwise, we don't know. */
3613 else if (comp == GT_EXPR || comp == GE_EXPR)
3617 /* If VR is to the right of VAL, return true. */
3618 tst = compare_values_warnv (vr->min, val, strict_overflow_p);
3619 if ((comp == GT_EXPR && tst == 1)
3620 || (comp == GE_EXPR && (tst == 0 || tst == 1)))
3622 if (overflow_infinity_range_p (vr))
3623 *strict_overflow_p = true;
3624 return boolean_true_node;
3627 /* If VR is to the left of VAL, return false. */
3628 tst = compare_values_warnv (vr->max, val, strict_overflow_p);
3629 if ((comp == GT_EXPR && (tst == -1 || tst == 0))
3630 || (comp == GE_EXPR && tst == -1))
3632 if (overflow_infinity_range_p (vr))
3633 *strict_overflow_p = true;
3634 return boolean_false_node;
3637 /* Otherwise, we don't know. */
3645 /* Debugging dumps. */
3647 void dump_value_range (FILE *, value_range_t *);
3648 void debug_value_range (value_range_t *);
3649 void dump_all_value_ranges (FILE *);
3650 void debug_all_value_ranges (void);
3651 void dump_vr_equiv (FILE *, bitmap);
3652 void debug_vr_equiv (bitmap);
3655 /* Dump value range VR to FILE. */
3658 dump_value_range (FILE *file, value_range_t *vr)
3661 fprintf (file, "[]");
3662 else if (vr->type == VR_UNDEFINED)
3663 fprintf (file, "UNDEFINED");
3664 else if (vr->type == VR_RANGE || vr->type == VR_ANTI_RANGE)
3666 tree type = TREE_TYPE (vr->min);
3668 fprintf (file, "%s[", (vr->type == VR_ANTI_RANGE) ? "~" : "");
3670 if (is_negative_overflow_infinity (vr->min))
3671 fprintf (file, "-INF(OVF)");
3672 else if (INTEGRAL_TYPE_P (type)
3673 && !TYPE_UNSIGNED (type)
3674 && vrp_val_is_min (vr->min))
3675 fprintf (file, "-INF");
3677 print_generic_expr (file, vr->min, 0);
3679 fprintf (file, ", ");
3681 if (is_positive_overflow_infinity (vr->max))
3682 fprintf (file, "+INF(OVF)");
3683 else if (INTEGRAL_TYPE_P (type)
3684 && vrp_val_is_max (vr->max))
3685 fprintf (file, "+INF");
3687 print_generic_expr (file, vr->max, 0);
3689 fprintf (file, "]");
3696 fprintf (file, " EQUIVALENCES: { ");
3698 EXECUTE_IF_SET_IN_BITMAP (vr->equiv, 0, i, bi)
3700 print_generic_expr (file, ssa_name (i), 0);
3701 fprintf (file, " ");
3705 fprintf (file, "} (%u elements)", c);
3708 else if (vr->type == VR_VARYING)
3709 fprintf (file, "VARYING");
3711 fprintf (file, "INVALID RANGE");
3715 /* Dump value range VR to stderr. */
3718 debug_value_range (value_range_t *vr)
3720 dump_value_range (stderr, vr);
3721 fprintf (stderr, "\n");
3725 /* Dump value ranges of all SSA_NAMEs to FILE. */
3728 dump_all_value_ranges (FILE *file)
3732 for (i = 0; i < num_ssa_names; i++)
3736 print_generic_expr (file, ssa_name (i), 0);
3737 fprintf (file, ": ");
3738 dump_value_range (file, vr_value[i]);
3739 fprintf (file, "\n");
3743 fprintf (file, "\n");
3747 /* Dump all value ranges to stderr. */
3750 debug_all_value_ranges (void)
3752 dump_all_value_ranges (stderr);
3756 /* Given a COND_EXPR COND of the form 'V OP W', and an SSA name V,
3757 create a new SSA name N and return the assertion assignment
3758 'V = ASSERT_EXPR <V, V OP W>'. */
3761 build_assert_expr_for (tree cond, tree v)
3766 gcc_assert (TREE_CODE (v) == SSA_NAME);
3767 n = duplicate_ssa_name (v, NULL);
3769 if (COMPARISON_CLASS_P (cond))
3771 tree a = build2 (ASSERT_EXPR, TREE_TYPE (v), v, cond);
3772 assertion = gimple_build_assign (n, a);
3774 else if (TREE_CODE (cond) == TRUTH_NOT_EXPR)
3776 /* Given !V, build the assignment N = false. */
3777 tree op0 = TREE_OPERAND (cond, 0);
3778 gcc_assert (op0 == v);
3779 assertion = gimple_build_assign (n, boolean_false_node);
3781 else if (TREE_CODE (cond) == SSA_NAME)
3783 /* Given V, build the assignment N = true. */
3784 gcc_assert (v == cond);
3785 assertion = gimple_build_assign (n, boolean_true_node);
3790 SSA_NAME_DEF_STMT (n) = assertion;
3792 /* The new ASSERT_EXPR, creates a new SSA name that replaces the
3793 operand of the ASSERT_EXPR. Register the new name and the old one
3794 in the replacement table so that we can fix the SSA web after
3795 adding all the ASSERT_EXPRs. */
3796 register_new_name_mapping (n, v);
3802 /* Return false if EXPR is a predicate expression involving floating
3806 fp_predicate (gimple stmt)
3808 GIMPLE_CHECK (stmt, GIMPLE_COND);
3810 return FLOAT_TYPE_P (TREE_TYPE (gimple_cond_lhs (stmt)));
3814 /* If the range of values taken by OP can be inferred after STMT executes,
3815 return the comparison code (COMP_CODE_P) and value (VAL_P) that
3816 describes the inferred range. Return true if a range could be
3820 infer_value_range (gimple stmt, tree op, enum tree_code *comp_code_p, tree *val_p)
3823 *comp_code_p = ERROR_MARK;
3825 /* Do not attempt to infer anything in names that flow through
3827 if (SSA_NAME_OCCURS_IN_ABNORMAL_PHI (op))
3830 /* Similarly, don't infer anything from statements that may throw
3832 if (stmt_could_throw_p (stmt))
3835 /* If STMT is the last statement of a basic block with no
3836 successors, there is no point inferring anything about any of its
3837 operands. We would not be able to find a proper insertion point
3838 for the assertion, anyway. */
3839 if (stmt_ends_bb_p (stmt) && EDGE_COUNT (gimple_bb (stmt)->succs) == 0)
3842 /* We can only assume that a pointer dereference will yield
3843 non-NULL if -fdelete-null-pointer-checks is enabled. */
3844 if (flag_delete_null_pointer_checks
3845 && POINTER_TYPE_P (TREE_TYPE (op))
3846 && gimple_code (stmt) != GIMPLE_ASM)
3848 unsigned num_uses, num_loads, num_stores;
3850 count_uses_and_derefs (op, stmt, &num_uses, &num_loads, &num_stores);
3851 if (num_loads + num_stores > 0)
3853 *val_p = build_int_cst (TREE_TYPE (op), 0);
3854 *comp_code_p = NE_EXPR;
3863 void dump_asserts_for (FILE *, tree);
3864 void debug_asserts_for (tree);
3865 void dump_all_asserts (FILE *);
3866 void debug_all_asserts (void);
3868 /* Dump all the registered assertions for NAME to FILE. */
3871 dump_asserts_for (FILE *file, tree name)
3875 fprintf (file, "Assertions to be inserted for ");
3876 print_generic_expr (file, name, 0);
3877 fprintf (file, "\n");
3879 loc = asserts_for[SSA_NAME_VERSION (name)];
3882 fprintf (file, "\t");
3883 print_gimple_stmt (file, gsi_stmt (loc->si), 0, 0);
3884 fprintf (file, "\n\tBB #%d", loc->bb->index);
3887 fprintf (file, "\n\tEDGE %d->%d", loc->e->src->index,
3888 loc->e->dest->index);
3889 dump_edge_info (file, loc->e, 0);
3891 fprintf (file, "\n\tPREDICATE: ");
3892 print_generic_expr (file, name, 0);
3893 fprintf (file, " %s ", tree_code_name[(int)loc->comp_code]);
3894 print_generic_expr (file, loc->val, 0);
3895 fprintf (file, "\n\n");
3899 fprintf (file, "\n");
3903 /* Dump all the registered assertions for NAME to stderr. */
3906 debug_asserts_for (tree name)
3908 dump_asserts_for (stderr, name);
3912 /* Dump all the registered assertions for all the names to FILE. */
3915 dump_all_asserts (FILE *file)
3920 fprintf (file, "\nASSERT_EXPRs to be inserted\n\n");
3921 EXECUTE_IF_SET_IN_BITMAP (need_assert_for, 0, i, bi)
3922 dump_asserts_for (file, ssa_name (i));
3923 fprintf (file, "\n");
3927 /* Dump all the registered assertions for all the names to stderr. */
3930 debug_all_asserts (void)
3932 dump_all_asserts (stderr);
3936 /* If NAME doesn't have an ASSERT_EXPR registered for asserting
3937 'EXPR COMP_CODE VAL' at a location that dominates block BB or
3938 E->DEST, then register this location as a possible insertion point
3939 for ASSERT_EXPR <NAME, EXPR COMP_CODE VAL>.
3941 BB, E and SI provide the exact insertion point for the new
3942 ASSERT_EXPR. If BB is NULL, then the ASSERT_EXPR is to be inserted
3943 on edge E. Otherwise, if E is NULL, the ASSERT_EXPR is inserted on
3944 BB. If SI points to a COND_EXPR or a SWITCH_EXPR statement, then E
3945 must not be NULL. */
3948 register_new_assert_for (tree name, tree expr,
3949 enum tree_code comp_code,
3953 gimple_stmt_iterator si)
3955 assert_locus_t n, loc, last_loc;
3956 basic_block dest_bb;
3958 #if defined ENABLE_CHECKING
3959 gcc_assert (bb == NULL || e == NULL);
3962 gcc_assert (gimple_code (gsi_stmt (si)) != GIMPLE_COND
3963 && gimple_code (gsi_stmt (si)) != GIMPLE_SWITCH);
3966 /* Never build an assert comparing against an integer constant with
3967 TREE_OVERFLOW set. This confuses our undefined overflow warning
3969 if (TREE_CODE (val) == INTEGER_CST
3970 && TREE_OVERFLOW (val))
3971 val = build_int_cst_wide (TREE_TYPE (val),
3972 TREE_INT_CST_LOW (val), TREE_INT_CST_HIGH (val));
3974 /* The new assertion A will be inserted at BB or E. We need to
3975 determine if the new location is dominated by a previously
3976 registered location for A. If we are doing an edge insertion,
3977 assume that A will be inserted at E->DEST. Note that this is not
3980 If E is a critical edge, it will be split. But even if E is
3981 split, the new block will dominate the same set of blocks that
3984 The reverse, however, is not true, blocks dominated by E->DEST
3985 will not be dominated by the new block created to split E. So,
3986 if the insertion location is on a critical edge, we will not use
3987 the new location to move another assertion previously registered
3988 at a block dominated by E->DEST. */
3989 dest_bb = (bb) ? bb : e->dest;
3991 /* If NAME already has an ASSERT_EXPR registered for COMP_CODE and
3992 VAL at a block dominating DEST_BB, then we don't need to insert a new
3993 one. Similarly, if the same assertion already exists at a block
3994 dominated by DEST_BB and the new location is not on a critical
3995 edge, then update the existing location for the assertion (i.e.,
3996 move the assertion up in the dominance tree).
3998 Note, this is implemented as a simple linked list because there
3999 should not be more than a handful of assertions registered per
4000 name. If this becomes a performance problem, a table hashed by
4001 COMP_CODE and VAL could be implemented. */
4002 loc = asserts_for[SSA_NAME_VERSION (name)];
4006 if (loc->comp_code == comp_code
4008 || operand_equal_p (loc->val, val, 0))
4009 && (loc->expr == expr
4010 || operand_equal_p (loc->expr, expr, 0)))
4012 /* If the assertion NAME COMP_CODE VAL has already been
4013 registered at a basic block that dominates DEST_BB, then
4014 we don't need to insert the same assertion again. Note
4015 that we don't check strict dominance here to avoid
4016 replicating the same assertion inside the same basic
4017 block more than once (e.g., when a pointer is
4018 dereferenced several times inside a block).
4020 An exception to this rule are edge insertions. If the
4021 new assertion is to be inserted on edge E, then it will
4022 dominate all the other insertions that we may want to
4023 insert in DEST_BB. So, if we are doing an edge
4024 insertion, don't do this dominance check. */
4026 && dominated_by_p (CDI_DOMINATORS, dest_bb, loc->bb))
4029 /* Otherwise, if E is not a critical edge and DEST_BB
4030 dominates the existing location for the assertion, move
4031 the assertion up in the dominance tree by updating its
4032 location information. */
4033 if ((e == NULL || !EDGE_CRITICAL_P (e))
4034 && dominated_by_p (CDI_DOMINATORS, loc->bb, dest_bb))
4043 /* Update the last node of the list and move to the next one. */
4048 /* If we didn't find an assertion already registered for
4049 NAME COMP_CODE VAL, add a new one at the end of the list of
4050 assertions associated with NAME. */
4051 n = XNEW (struct assert_locus_d);
4055 n->comp_code = comp_code;
4063 asserts_for[SSA_NAME_VERSION (name)] = n;
4065 bitmap_set_bit (need_assert_for, SSA_NAME_VERSION (name));
4068 /* (COND_OP0 COND_CODE COND_OP1) is a predicate which uses NAME.
4069 Extract a suitable test code and value and store them into *CODE_P and
4070 *VAL_P so the predicate is normalized to NAME *CODE_P *VAL_P.
4072 If no extraction was possible, return FALSE, otherwise return TRUE.
4074 If INVERT is true, then we invert the result stored into *CODE_P. */
4077 extract_code_and_val_from_cond_with_ops (tree name, enum tree_code cond_code,
4078 tree cond_op0, tree cond_op1,
4079 bool invert, enum tree_code *code_p,
4082 enum tree_code comp_code;
4085 /* Otherwise, we have a comparison of the form NAME COMP VAL
4086 or VAL COMP NAME. */