re PR middle-end/68142 (unsafe association of multiplication)
authorRichard Biener <rguenther@suse.de>
Thu, 29 Oct 2015 14:10:31 +0000 (14:10 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Thu, 29 Oct 2015 14:10:31 +0000 (14:10 +0000)
2015-10-29  Richard Biener  <rguenther@suse.de>

PR middle-end/68142
* fold-const.c (extract_muldiv_1): Avoid introducing undefined
overflow.

* c-c++-common/ubsan/pr68142.c: New testcase.

From-SVN: r229528

gcc/ChangeLog
gcc/fold-const.c
gcc/testsuite/ChangeLog
gcc/testsuite/c-c++-common/ubsan/pr68142.c [new file with mode: 0644]

index 1b339690d53fad34962b4372523b37ab83cf50b9..a088c13fd125b65542159cdb2eac0229cce90efa 100644 (file)
@@ -1,3 +1,9 @@
+2015-10-29  Richard Biener  <rguenther@suse.de>
+
+       PR middle-end/68142
+       * fold-const.c (extract_muldiv_1): Avoid introducing undefined
+       overflow.
+
 2015-10-29  Andrew MacLeod  <amacleod@redhat.com>
 
        * alias.c: Reorder #include statements and remove duplicates.
index 298c520647b8e70752c5e141034259ec2921631f..26fd735339991190d93b9beaea3be9854f410d1d 100644 (file)
@@ -6008,8 +6008,17 @@ extract_muldiv_1 (tree t, tree c, enum tree_code code, tree wide_type,
         or (for divide and modulus) if it is a multiple of our constant.  */
       if (code == MULT_EXPR
          || wi::multiple_of_p (t, c, TYPE_SIGN (type)))
-       return const_binop (code, fold_convert (ctype, t),
-                           fold_convert (ctype, c));
+       {
+         tree tem = const_binop (code, fold_convert (ctype, t),
+                                 fold_convert (ctype, c));
+         /* If the multiplication overflowed to INT_MIN then we lost sign
+            information on it and a subsequent multiplication might
+            spuriously overflow.  See PR68142.  */
+         if (TREE_OVERFLOW (tem)
+             && wi::eq_p (tem, wi::min_value (TYPE_PRECISION (ctype), SIGNED)))
+           return NULL_TREE;
+         return tem;
+       }
       break;
 
     CASE_CONVERT: case NON_LVALUE_EXPR:
index 77a736fe064028e80ea733627ae61c10fbedd232..9a7d5454e6cdec2d4c310c52fb5dc0fc1ec502e0 100644 (file)
@@ -1,3 +1,8 @@
+2015-10-29  Richard Biener  <rguenther@suse.de>
+
+       PR middle-end/68142
+       * c-c++-common/ubsan/pr68142.c: New testcase.
+
 2015-10-29  Paolo Carlini  <paolo.carlini@oracle.com>
 
        PR c++/67845
diff --git a/gcc/testsuite/c-c++-common/ubsan/pr68142.c b/gcc/testsuite/c-c++-common/ubsan/pr68142.c
new file mode 100644 (file)
index 0000000..9498f08
--- /dev/null
@@ -0,0 +1,31 @@
+/* { dg-do run } */
+/* { dg-options "-fsanitize=undefined -fsanitize-undefined-trap-on-error" } */
+
+int __attribute__((noinline,noclone))
+h(int a)
+{
+  return 2 * (a * (__INT_MAX__/2 + 1));
+}
+int __attribute__((noinline,noclone))
+i(int a)
+{
+  return (2 * a) * (__INT_MAX__/2 + 1);
+}
+int __attribute__((noinline,noclone))
+j(int a, int b)
+{
+  return (b * a) * (__INT_MAX__/2 + 1);
+}
+int __attribute__((noinline,noclone))
+k(int a, int b)
+{
+  return (2 * a) * b;
+}
+int main()
+{
+  volatile int tem = h(-1);
+  tem = i(-1);
+  tem = j(-1, 2);
+  tem = k(-1, __INT_MAX__/2 + 1);
+  return 0;
+}