2014-07-28 Richard Biener <rguenther@suse.de>
authorrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 28 Jul 2014 08:47:38 +0000 (08:47 +0000)
committerrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 28 Jul 2014 08:47:38 +0000 (08:47 +0000)
PR middle-end/52478
* optabs.c (gen_int_libfunc): For -ftrapv libfuncs make
sure to register SImode ones, not only >= word_mode ones.
* expr.c (expand_expr_real_2): When expanding -ftrapv
binops do not use OPTAB_LIB_WIDEN.

* gcc.dg/torture/ftrapv-1.c: New testcase.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@213117 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/expr.c
gcc/optabs.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/torture/ftrapv-1.c [new file with mode: 0644]

index 56d3b25..fcb95b1 100644 (file)
@@ -1,3 +1,11 @@
+2014-07-28  Richard Biener  <rguenther@suse.de>
+
+       PR middle-end/52478
+       * optabs.c (gen_int_libfunc): For -ftrapv libfuncs make
+       sure to register SImode ones, not only >= word_mode ones.
+       * expr.c (expand_expr_real_2): When expanding -ftrapv
+       binops do not use OPTAB_LIB_WIDEN.
+
 2014-07-28  Richard Sandiford  <rdsandiford@googlemail.com>
 
        PR middle-end/61919
index d8328ee..de0da34 100644 (file)
@@ -9212,7 +9212,9 @@ expand_expr_real_2 (sepops ops, rtx target, enum machine_mode tmode,
   if (modifier == EXPAND_STACK_PARM)
     target = 0;
   temp = expand_binop (mode, this_optab, op0, op1, target,
-                      unsignedp, OPTAB_LIB_WIDEN);
+                      unsignedp,
+                      trapv_binoptab_p (this_optab)
+                      ? OPTAB_LIB : OPTAB_LIB_WIDEN);
   gcc_assert (temp);
   /* Bitwise operations do not need bitfield reduction as we expect their
      operands being properly truncated.  */
index 7ee84c4..c7bd9d0 100644 (file)
@@ -5559,13 +5559,17 @@ gen_int_libfunc (optab optable, const char *opname, char suffix,
                 enum machine_mode mode)
 {
   int maxsize = 2 * BITS_PER_WORD;
+  int minsize = BITS_PER_WORD;
 
   if (GET_MODE_CLASS (mode) != MODE_INT)
     return;
   if (maxsize < LONG_LONG_TYPE_SIZE)
     maxsize = LONG_LONG_TYPE_SIZE;
-  if (GET_MODE_CLASS (mode) != MODE_INT
-      || GET_MODE_BITSIZE (mode) < BITS_PER_WORD
+  if (minsize > INT_TYPE_SIZE
+      && (trapv_binoptab_p (optable)
+         || trapv_unoptab_p (optable)))
+    minsize = INT_TYPE_SIZE;
+  if (GET_MODE_BITSIZE (mode) < minsize
       || GET_MODE_BITSIZE (mode) > maxsize)
     return;
   gen_libfunc (optable, opname, suffix, mode);
index 68499d9..014896c 100644 (file)
@@ -1,5 +1,10 @@
 2014-07-28  Richard Biener  <rguenther@suse.de>
 
+       PR middle-end/52478
+       * gcc.dg/torture/ftrapv-1.c: New testcase.
+
+2014-07-28  Richard Biener  <rguenther@suse.de>
+
        PR tree-optimization/61921
        * gfortran.dg/pr61921.f90: New testcase.
 
diff --git a/gcc/testsuite/gcc.dg/torture/ftrapv-1.c b/gcc/testsuite/gcc.dg/torture/ftrapv-1.c
new file mode 100644 (file)
index 0000000..4fdccd8
--- /dev/null
@@ -0,0 +1,37 @@
+/* { dg-do run } */
+/* { dg-additional-options "-ftrapv" } */
+/* { dg-require-effective-target trapping } */
+/* { dg-require-fork } */
+
+#include <stdlib.h>
+#include <unistd.h>
+#include <sys/types.h>
+#include <sys/wait.h>
+
+/* Verify SImode operations properly trap.  PR middle-end/52478  */
+
+/* Disallow inlining/cloning which would constant propagate and trigger
+   unrelated bugs.  */
+
+int __attribute__((noinline,noclone))
+iaddv (int a, int b)
+{
+  return a + b;
+}
+
+int main(void)
+{
+  pid_t child = fork ();
+  int status = 0;
+  if (child == 0)
+    {
+      volatile int x = iaddv (__INT_MAX__, 1);
+      exit (0);
+    }
+  else if (child == -1)
+    return 0;
+  if (wait (&status) == child 
+      && status == 0)
+    abort ();
+  return 0;
+}