re PR tree-optimization/79411 (ICE: SSA corruption (fail_abnormal_edge_coalesce))
authorJakub Jelinek <jakub@redhat.com>
Fri, 10 Feb 2017 08:47:32 +0000 (09:47 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Fri, 10 Feb 2017 08:47:32 +0000 (09:47 +0100)
PR tree-optimization/79411
* tree-ssa-reassoc.c (is_reassociable_op): Return false if
stmt operands are SSA_NAMEs used in abnormal phis.
(can_reassociate_p): Return false if op is SSA_NAME used in abnormal
phis.

* gcc.c-torture/compile/pr79411.c: New test.

From-SVN: r245324

gcc/ChangeLog
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/compile/pr79411.c [new file with mode: 0644]
gcc/tree-ssa-reassoc.c

index 4826bcba838b89fc1d43852aeabb98d702714ca0..7a06399de9a095d55dd9b9a732e55fcbc219a494 100644 (file)
@@ -1,3 +1,11 @@
+2017-02-10  Jakub Jelinek  <jakub@redhat.com>
+
+       PR tree-optimization/79411
+       * tree-ssa-reassoc.c (is_reassociable_op): Return false if
+       stmt operands are SSA_NAMEs used in abnormal phis.
+       (can_reassociate_p): Return false if op is SSA_NAME used in abnormal
+       phis.
+
 2017-02-09  Jan Hubicka  <hubicka@ucw.cz>
 
        PR ipa/70795
index 1030f172c6d8d2497ff48aac7a7703ff26a20d0c..d6cd7711a9a2b73e4b8d7cbdf6ca81535ee6446e 100644 (file)
@@ -1,3 +1,8 @@
+2017-02-10  Jakub Jelinek  <jakub@redhat.com>
+
+       PR tree-optimization/79411
+       * gcc.c-torture/compile/pr79411.c: New test.
+
 2017-02-09  Jakub Jelinek  <jakub@redhat.com>
            Jason Merrill  <jason@redhat.com>
 
diff --git a/gcc/testsuite/gcc.c-torture/compile/pr79411.c b/gcc/testsuite/gcc.c-torture/compile/pr79411.c
new file mode 100644 (file)
index 0000000..7bd545b
--- /dev/null
@@ -0,0 +1,22 @@
+/* PR tree-optimization/79411 */
+
+typedef struct __jmp_buf_tag { char buf[1024]; } jmp_buf[1];
+extern int setjmp (jmp_buf);
+extern int bar (unsigned int *);
+extern jmp_buf *baz (void);
+struct C { int c1; unsigned int c2, c3, c4; };
+
+void
+foo (struct C *x, const int *y, unsigned int *z, unsigned int e, unsigned int g)
+{
+  unsigned int d = 0;
+  unsigned long f;
+  setjmp (*baz ());
+  f = 1 + d;
+  if ((x->c1 || x->c2) && g && (!e || d >= 8))
+    d = 16;
+  else
+    d = 8;
+  if ((!x->c3 && !x->c4 || *y == 0) && !e && bar (z))
+    *z = 1 + f;
+}
index 4a796f48864075c7d8ca2a7bc0822780be1bfe4c..36ef86cf44b9e6ce5dce520d4b0b7c4d02c486ab 100644 (file)
@@ -605,7 +605,18 @@ is_reassociable_op (gimple *stmt, enum tree_code code, struct loop *loop)
   if (is_gimple_assign (stmt)
       && gimple_assign_rhs_code (stmt) == code
       && has_single_use (gimple_assign_lhs (stmt)))
-    return true;
+    {
+      tree rhs1 = gimple_assign_rhs1 (stmt);
+      tree rhs2 = gimple_assign_rhs1 (stmt);
+      if (TREE_CODE (rhs1) == SSA_NAME
+         && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (rhs1))
+       return false;
+      if (rhs2
+         && TREE_CODE (rhs2) == SSA_NAME
+         && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (rhs2))
+       return false;
+      return true;
+    }
 
   return false;
 }
@@ -4989,6 +5000,8 @@ static bool
 can_reassociate_p (tree op)
 {
   tree type = TREE_TYPE (op);
+  if (TREE_CODE (op) == SSA_NAME && SSA_NAME_OCCURS_IN_ABNORMAL_PHI (op))
+    return false;
   if ((ANY_INTEGRAL_TYPE_P (type) && TYPE_OVERFLOW_WRAPS (type))
       || NON_SAT_FIXED_POINT_TYPE_P (type)
       || (flag_associative_math && FLOAT_TYPE_P (type)))