tree-optimization/107087 - missed CCP after forwprop
authorRichard Biener <rguenther@suse.de>
Mon, 27 Mar 2023 13:18:41 +0000 (15:18 +0200)
committerRichard Biener <rguenther@suse.de>
Tue, 28 Mar 2023 13:25:01 +0000 (15:25 +0200)
When forwprop simplifies the CFG the 2nd order opportunities by
exposed degenerate PHIs are not realized.  The following improves
this by properly tracking executable edges and thus handling this
for non-cyclic CFGs at least.

This avoids the bogus diagnostic reported for the testcase in this PR.

PR tree-optimization/107087
* tree-ssa-forwprop.cc (pass_forwprop::execute): Track
executable regions to avoid useless work and to better
propagate degenerate PHIs.

* g++.dg/pr107087.C: New testcase.

gcc/testsuite/g++.dg/pr107087.C [new file with mode: 0644]
gcc/tree-ssa-forwprop.cc

diff --git a/gcc/testsuite/g++.dg/pr107087.C b/gcc/testsuite/g++.dg/pr107087.C
new file mode 100644 (file)
index 0000000..3ca76b4
--- /dev/null
@@ -0,0 +1,16 @@
+// { dg-do compile }
+// { dg-require-effective-target c++11 }
+// { dg-options "-O2" }
+
+#include <vector>
+
+void test01()
+{
+  std::vector<int> v1, v2{5, 6};
+  int n = 0;
+  std::vector<int>::iterator it = v1.insert(v1.cbegin(), n);
+  it = v1.insert(v1.cbegin(), 1);
+  it = v1.insert(v1.cbegin(), {2, 3});
+  it = v1.insert(v1.cbegin(), 1, 4);
+  it = v1.insert(v1.cbegin(), v2.begin(), v2.end());
+}
index 6df0b8f22151a433b89c40b9940bd9dd5669f1d8..5eccc7a89b59eaa288199e5b5c1dff1bd64e0c5a 100644 (file)
@@ -3462,6 +3462,17 @@ pass_forwprop::execute (function *fun)
   int *postorder = XNEWVEC (int, n_basic_blocks_for_fn (fun));
   int postorder_num = pre_and_rev_post_order_compute_fn (fun, NULL,
                                                         postorder, false);
+  int *bb_to_rpo = XNEWVEC (int, last_basic_block_for_fn (fun));
+  for (int i = 0; i < postorder_num; ++i)
+    {
+      bb_to_rpo[postorder[i]] = i;
+      edge_iterator ei;
+      edge e;
+      FOR_EACH_EDGE (e, ei, BASIC_BLOCK_FOR_FN (fun, postorder[i])->succs)
+       e->flags &= ~EDGE_EXECUTABLE;
+    }
+  single_succ_edge (BASIC_BLOCK_FOR_FN (fun, ENTRY_BLOCK))->flags
+    |= EDGE_EXECUTABLE;
   auto_vec<gimple *, 4> to_fixup;
   auto_vec<gimple *, 32> to_remove;
   to_purge = BITMAP_ALLOC (NULL);
@@ -3470,6 +3481,30 @@ pass_forwprop::execute (function *fun)
     {
       gimple_stmt_iterator gsi;
       basic_block bb = BASIC_BLOCK_FOR_FN (fun, postorder[i]);
+      edge_iterator ei;
+      edge e;
+
+      /* Skip processing not executable blocks.  We could improve
+        single_use tracking by at least unlinking uses from unreachable
+        blocks but since blocks with uses are not processed in a
+        meaningful order this is probably not worth it.  */
+      bool any = false;
+      FOR_EACH_EDGE (e, ei, bb->preds)
+       {
+         if ((e->flags & EDGE_EXECUTABLE)
+             /* With dominators we could improve backedge handling
+                when e->src is dominated by bb.  But for irreducible
+                regions we have to take all backedges conservatively.
+                We can handle single-block cycles as we know the
+                dominator relationship here.  */
+             || bb_to_rpo[e->src->index] > i)
+           {
+             any = true;
+             break;
+           }
+       }
+      if (!any)
+       continue;
 
       /* Record degenerate PHIs in the lattice.  */
       for (gphi_iterator si = gsi_start_phis (bb); !gsi_end_p (si);
@@ -3480,13 +3515,25 @@ pass_forwprop::execute (function *fun)
          if (virtual_operand_p (res))
            continue;
 
-         use_operand_p use_p;
-         ssa_op_iter it;
          tree first = NULL_TREE;
          bool all_same = true;
-         FOR_EACH_PHI_ARG (use_p, phi, it, SSA_OP_USE)
+         edge_iterator ei;
+         edge e;
+         FOR_EACH_EDGE (e, ei, bb->preds)
            {
-             tree use = USE_FROM_PTR (use_p);
+             /* Ignore not executable forward edges.  */
+             if (!(e->flags & EDGE_EXECUTABLE))
+               {
+                 if (bb_to_rpo[e->src->index] < i)
+                   continue;
+                 /* Avoid equivalences from backedges - while we might
+                    be able to make irreducible regions reducible and
+                    thus turning a back into a forward edge we do not
+                    want to deal with the intermediate SSA issues that
+                    exposes.  */
+                 all_same = false;
+               }
+             tree use = PHI_ARG_DEF_FROM_EDGE (phi, e);
              if (use == res)
                /* The PHI result can also appear on a backedge, if so
                   we can ignore this case for the purpose of determining
@@ -3981,8 +4028,6 @@ pass_forwprop::execute (function *fun)
        }
 
       /* Substitute in destination PHI arguments.  */
-      edge_iterator ei;
-      edge e;
       FOR_EACH_EDGE (e, ei, bb->succs)
        for (gphi_iterator gsi = gsi_start_phis (e->dest);
             !gsi_end_p (gsi); gsi_next (&gsi))
@@ -3998,8 +4043,18 @@ pass_forwprop::execute (function *fun)
                && may_propagate_copy (arg, val))
              propagate_value (use_p, val);
          }
+
+      /* Mark outgoing exectuable edges.  */
+      if (edge e = find_taken_edge (bb, NULL))
+       e->flags |= EDGE_EXECUTABLE;
+      else
+       {
+         FOR_EACH_EDGE (e, ei, bb->succs)
+           e->flags |= EDGE_EXECUTABLE;
+       }
     }
   free (postorder);
+  free (bb_to_rpo);
   lattice.release ();
 
   /* Remove stmts in reverse order to make debug stmt creation possible.  */