tree.h (TYPE_OVERFLOW_SANITIZED): Define.
authorMarek Polacek <polacek@redhat.com>
Thu, 13 Nov 2014 10:17:51 +0000 (10:17 +0000)
committerMarek Polacek <mpolacek@gcc.gnu.org>
Thu, 13 Nov 2014 10:17:51 +0000 (10:17 +0000)
* tree.h (TYPE_OVERFLOW_SANITIZED): Define.
* fold-const.c (fold_binary_loc): Use it.
* match.pd: Likewise.

From-SVN: r217470

gcc/ChangeLog
gcc/fold-const.c
gcc/match.pd
gcc/tree.h

index 613208d3351ab3ea65f9ec063c0bf08de75bd50b..be3f64dad304bc2aad8fd564d08fbdddb856f0bf 100644 (file)
@@ -1,3 +1,9 @@
+2014-11-13  Marek Polacek  <polacek@redhat.com>
+
+       * tree.h (TYPE_OVERFLOW_SANITIZED): Define.
+       * fold-const.c (fold_binary_loc): Use it.
+       * match.pd: Likewise.
+
 2014-11-14  Kirill Yukhin  <kirill.yukhin@intel.com>
 
        * gcc/lra-lives.c (struct bb_data): Rename to ...
index 2f32d3c99747f6c4090b3d5b735ac05b0abb8ec4..a711be9c1064cb40c6c4da9a1b1e4c9e4245afe4 100644 (file)
@@ -10516,9 +10516,7 @@ fold_binary_loc (location_t loc,
 
       /* A - B -> A + (-B) if B is easily negatable.  */
       if (negate_expr_p (arg1)
-         && (!INTEGRAL_TYPE_P (type)
-             || TYPE_OVERFLOW_WRAPS (type)
-             || (flag_sanitize & SANITIZE_SI_OVERFLOW) == 0)
+         && !TYPE_OVERFLOW_SANITIZED (type)
          && ((FLOAT_TYPE_P (type)
                /* Avoid this transformation if B is a positive REAL_CST.  */
               && (TREE_CODE (arg1) != REAL_CST
index 25711b68c68d6113fbc6304963dfb48e42f93623..5a423201183f0af0e412046b1b8871af935788b5 100644 (file)
@@ -285,26 +285,20 @@ along with GCC; see the file COPYING3.  If not see
   /* Apply STRIP_NOPS on @0 and the negate.  */
   (if (tree_nop_conversion_p (type, TREE_TYPE (@0))
        && tree_nop_conversion_p (type, TREE_TYPE (@1))
-       && (!INTEGRAL_TYPE_P (type)
-          || TYPE_OVERFLOW_WRAPS (type)
-          || (flag_sanitize & SANITIZE_SI_OVERFLOW) == 0))
+       && !TYPE_OVERFLOW_SANITIZED (type))
    (minus (convert @0) (convert @1))))
  /* A - (-B) -> A + B */
  (simplify
   (minus (convert1? @0) (convert2? (negate @1)))
   (if (tree_nop_conversion_p (type, TREE_TYPE (@0))
        && tree_nop_conversion_p (type, TREE_TYPE (@1))
-       && (!INTEGRAL_TYPE_P (type)
-          || TYPE_OVERFLOW_WRAPS (type)
-          || (flag_sanitize & SANITIZE_SI_OVERFLOW) == 0))
+       && !TYPE_OVERFLOW_SANITIZED (type))
    (plus (convert @0) (convert @1))))
  /* -(-A) -> A */
  (simplify
   (negate (convert? (negate @1)))
   (if (tree_nop_conversion_p (type, TREE_TYPE (@1))
-       && (!INTEGRAL_TYPE_P (type)
-          || TYPE_OVERFLOW_WRAPS (type)
-          || (flag_sanitize & SANITIZE_SI_OVERFLOW) == 0))
+       && !TYPE_OVERFLOW_SANITIZED (type))
    (convert @1)))
 
  /* We can't reassociate floating-point or fixed-point plus or minus
index 0577d51d1ca0433e5f1804968c48a0719b8b7083..108b52dcd686d9f9d7bbcf79bd5b5a0cbbeb3fdf 100644 (file)
@@ -789,6 +789,12 @@ extern void omp_clause_range_check_failed (const_tree, const char *, int,
 #define TYPE_OVERFLOW_TRAPS(TYPE) \
   (!TYPE_UNSIGNED (TYPE) && flag_trapv)
 
+/* True if an overflow is to be preserved for sanitization.  */
+#define TYPE_OVERFLOW_SANITIZED(TYPE)                  \
+  (INTEGRAL_TYPE_P (TYPE)                              \
+   && !TYPE_OVERFLOW_WRAPS (TYPE)                      \
+   && (flag_sanitize & SANITIZE_SI_OVERFLOW))
+
 /* True if pointer types have undefined overflow.  */
 #define POINTER_TYPE_OVERFLOW_UNDEFINED (flag_strict_overflow)