Handle 3-arg phi in copy_bb_and_scalar_dependences
authorTom de Vries <tom@codesourcery.com>
Tue, 31 May 2016 07:07:26 +0000 (07:07 +0000)
committerTom de Vries <vries@gcc.gnu.org>
Tue, 31 May 2016 07:07:26 +0000 (07:07 +0000)
2016-05-31  Tom de Vries  <tom@codesourcery.com>

PR tree-optimization/69068
* graphite-isl-ast-to-gimple.c (copy_bb_and_scalar_dependences): Handle
phis with more than two args.

* gcc.dg/graphite/pr69068.c: New test.

From-SVN: r236907

gcc/ChangeLog
gcc/graphite-isl-ast-to-gimple.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/graphite/pr69068.c [new file with mode: 0644]

index 6cdcdbcfaccbc4d3d3924a6bb2294098e3300dff..88fa0e569b14f0c27618a5b1f2bf120c0afa711c 100644 (file)
@@ -1,3 +1,9 @@
+2016-05-31  Tom de Vries  <tom@codesourcery.com>
+
+       PR tree-optimization/69068
+       * graphite-isl-ast-to-gimple.c (copy_bb_and_scalar_dependences): Handle
+       phis with more than two args.
+
 2016-05-30  Andreas Tobler  <andreast@gcc.gnu.org>
 
        * config.gcc: Move hard float support for arm*hf*-*-freebsd* into
index ff1d91f62665879b34104ce20bde9ccf46f2ec00..fb9c8468ebc06f0e7719d88d691fe6ec0d1d47be 100644 (file)
@@ -1075,9 +1075,7 @@ bb_contains_loop_close_phi_nodes (basic_block bb)
 static bool
 bb_contains_loop_phi_nodes (basic_block bb)
 {
-  gcc_assert (EDGE_COUNT (bb->preds) <= 2);
-
-  if (bb->preds->length () == 1)
+  if (EDGE_COUNT (bb->preds) != 2)
     return false;
 
   unsigned depth = loop_depth (bb->loop_father);
@@ -2480,13 +2478,14 @@ copy_cond_phi_nodes (basic_block bb, basic_block new_bb, vec<tree> iv_map)
 
   gcc_assert (!bb_contains_loop_close_phi_nodes (bb));
 
+  /* TODO: Handle cond phi nodes with more than 2 predecessors.  */
+  if (EDGE_COUNT (bb->preds) != 2)
+    return false;
+
   if (dump_file)
     fprintf (dump_file, "[codegen] copying cond phi nodes in bb_%d.\n",
             new_bb->index);
 
-  /* Cond phi nodes should have exactly two arguments.  */
-  gcc_assert (2 == EDGE_COUNT (bb->preds));
-
   for (gphi_iterator psi = gsi_start_phis (bb); !gsi_end_p (psi);
        gsi_next (&psi))
     {
index dfcd4464b9a5e3539dae225c36046dc7f75aa8f0..0ae4c9bff9e8fda6c1f9a8bcf3001a1a843fcfc5 100644 (file)
@@ -1,3 +1,8 @@
+2016-05-31  Tom de Vries  <tom@codesourcery.com>
+
+       PR tree-optimization/69068
+       * gcc.dg/graphite/pr69068.c: New test.
+
 2016-05-27  Martin Sebor  <msebor@redhat.com>
 
        PR c++/71306
diff --git a/gcc/testsuite/gcc.dg/graphite/pr69068.c b/gcc/testsuite/gcc.dg/graphite/pr69068.c
new file mode 100644 (file)
index 0000000..0abea06
--- /dev/null
@@ -0,0 +1,14 @@
+/* { dg-do compile } */
+/* { dg-options "-O1 -fgraphite-identity" } */
+
+int qo;
+int zh[2];
+
+void
+td (void)
+{
+  int ly, en;
+  for (ly = 0; ly < 2; ++ly)
+    for (en = 0; en < 2; ++en)
+      zh[en] = ((qo == 0) || (((qo * 2) != 0))) ? 1 : -1;
+}