re PR bootstrap/80887 (gnat bootstrap fails at s-regpat.o: raised STORAGE_ERROR ...
authorJakub Jelinek <jakub@redhat.com>
Sat, 27 May 2017 07:46:12 +0000 (09:46 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Sat, 27 May 2017 07:46:12 +0000 (09:46 +0200)
PR bootstrap/80887
2017-05-25  Marc Glisse  <marc.glisse@inria.fr>

* match.pd ((A +- CST1) +- CST2): Allow some conversions.

* gcc.dg/tree-ssa/addadd.c: Xfail all scan-tree-dump*.

From-SVN: r248533

gcc/ChangeLog
gcc/match.pd
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/tree-ssa/addadd.c

index ca02b51bdd74fe7a581a0ad7cbb148721bd2c15c..c79553c61200e8b7fcbca1227ae617cb769e621f 100644 (file)
@@ -1,3 +1,10 @@
+2017-05-27  Jakub Jelinek  <jakub@redhat.com>
+
+       PR bootstrap/80887
+       2017-05-25  Marc Glisse  <marc.glisse@inria.fr>
+
+       * match.pd ((A +- CST1) +- CST2): Allow some conversions.
+
 2017-05-26  Martin Liska  <mliska@suse.cz>
 
        * dumpfile.h (enum dump_kind): Renumber TDF_* flags to be contiguous.
index b5e5a98770e4dbd729a3a44f65245d395e119413..54a8e0449f8301ffaf553c139bbd2d7ccb1e8648 100644 (file)
@@ -1299,39 +1299,15 @@ DEFINE_INT_AND_FLOAT_ROUND_FN (RINT)
   /* (A +- CST1) +- CST2 -> A + CST3  */
   (for outer_op (plus minus)
    (for inner_op (plus minus)
-       neg_inner_op (minus plus)
     (simplify
-     (outer_op (convert? (inner_op @0 CONSTANT_CLASS_P@1)) CONSTANT_CLASS_P@2)
-     (if (tree_nop_conversion_p (type, TREE_TYPE (@0)))
-      /* If one of the types wraps, use that one.  */
-      (if (!ANY_INTEGRAL_TYPE_P (type) || TYPE_OVERFLOW_WRAPS (type))
-       (if (outer_op == PLUS_EXPR)
-       (plus (convert @0) (inner_op @2 (convert @1)))
-       (minus (convert @0) (neg_inner_op @2 (convert @1))))
-       (if (!ANY_INTEGRAL_TYPE_P (TREE_TYPE (@0))
-           || TYPE_OVERFLOW_WRAPS (TREE_TYPE (@0)))
-       (if (outer_op == PLUS_EXPR)
-        (convert (plus @0 (inner_op (convert @2) @1)))
-        (convert (minus @0 (neg_inner_op (convert @2) @1))))
-       /* If the constant operation overflows we cannot do the transform
-          directly as we would introduce undefined overflow, for example
-          with (a - 1) + INT_MIN.  */
-       (if (types_match (type, @0))
-        (with { tree cst = const_binop (outer_op == inner_op
-                                        ? PLUS_EXPR : MINUS_EXPR,
-                                        type, @1, @2); }
-         (if (cst && !TREE_OVERFLOW (cst))
-          (inner_op @0 { cst; } )
-          /* X+INT_MAX+1 is X-INT_MIN.  */
-          (if (INTEGRAL_TYPE_P (type) && cst
-               && wi::eq_p (cst, wi::min_value (type)))
-           (neg_inner_op @0 { wide_int_to_tree (type, cst); })
-           /* Last resort, use some unsigned type.  */
-           (with { tree utype = unsigned_type_for (type); }
-            (convert (inner_op
-                      (convert:utype @0)
-                      (convert:utype
-                       { drop_tree_overflow (cst); }))))))))))))))
+     (outer_op (inner_op @0 CONSTANT_CLASS_P@1) CONSTANT_CLASS_P@2)
+     /* If the constant operation overflows we cannot do the transform
+       as we would introduce undefined overflow, for example
+       with (a - 1) + INT_MIN.  */
+     (with { tree cst = const_binop (outer_op == inner_op
+                                    ? PLUS_EXPR : MINUS_EXPR, type, @1, @2); }
+      (if (cst && !TREE_OVERFLOW (cst))
+       (inner_op @0 { cst; } ))))))
 
   /* (CST1 - A) +- CST2 -> CST3 - A  */
   (for outer_op (plus minus)
index 8eca177d4854b40fbaa3f512e5956e761d7cef3b..55aed107baa92cc6ea8a30e5f97979cc2a555da7 100644 (file)
@@ -1,3 +1,8 @@
+2017-05-27  Jakub Jelinek  <jakub@redhat.com>
+
+       PR bootstrap/80887
+       * gcc.dg/tree-ssa/addadd.c: Xfail all scan-tree-dump*.
+
 2017-05-26  Nathan Sidwell  <nathan@acm.org>
 
        * g++.dg/cpp0x/dr2061.C: New.
index 16474db65658a5e3e88b141b24f991c80936a9e9..669cfbc47ec23d611af981f8c712c2a931badfde 100644 (file)
@@ -29,6 +29,6 @@ void j(S*x){
   *x += __INT_MAX__;
 }
 
-/* { dg-final { scan-tree-dump-times " \\+ 24;" 2 "optimized" } } */
-/* { dg-final { scan-tree-dump-times "\\(unsigned int\\)" 2 "optimized" } } */
-/* { dg-final { scan-tree-dump-not "2147483647" "optimized" } } */
+/* { dg-final { scan-tree-dump-times " \\+ 24;" 2 "optimized" { xfail *-*-* } } } */
+/* { dg-final { scan-tree-dump-times "\\(unsigned int\\)" 2 "optimized" { xfail *-*-* }  } } */
+/* { dg-final { scan-tree-dump-not "2147483647" "optimized" { xfail *-*-* }  } } */