]> gcc.gnu.org Git - gcc.git/commitdiff
gimple-iterator: Some gsi_safe_insert_*before fixes
authorJakub Jelinek <jakub@redhat.com>
Thu, 14 Mar 2024 08:57:13 +0000 (09:57 +0100)
committerJakub Jelinek <jakub@redhat.com>
Fri, 15 Mar 2024 23:28:41 +0000 (00:28 +0100)
When trying to use the gsi_safe_insert*before APIs in bitint lowering,
I've discovered 3 issues and the following patch addresses those:

1) both split_block and split_edge update CDI_DOMINATORS if they are
   available, but because edge_before_returns_twice_call first splits
   and then adds an extra EDGE_ABNORMAL edge and then removes another
   one, the immediate dominators of both the new bb and the bb with
   returns_twice call need to change
2) the new EDGE_ABNORMAL edge had uninitialized probability; this patch
   copies the probability from the edge that is going to be removed
   and similarly copies other flags (EDGE_EXECUTABLE, EDGE_DFS_BACK,
   EDGE_IRREDUCIBLE_LOOP etc.)
3) if edge_before_returns_twice_call splits a block, then the bb with
   returns_twice call changes, so the gimple_stmt_iterator for it is
   no longer accurate, it points to the right statement, but gsi_bb
   and gsi_seq are no longer correct; the patch updates it

2024-03-14  Jakub Jelinek  <jakub@redhat.com>

* gimple-iterator.cc (edge_before_returns_twice_call): Copy all
flags and probability from ad_edge to e edge.  If CDI_DOMINATORS
are computed, recompute immediate dominator of other_edge->src
and other_edge->dest.
(gsi_safe_insert_before, gsi_safe_insert_seq_before): Update *iter
for the returns_twice call case to the gsi_for_stmt (stmt) to deal
with update it for bb splitting.

(cherry picked from commit 8f6e0814b4bfd0a399055e9214562aebfcd902ad)

gcc/gimple-iterator.cc

index c18ea22c486b9a59e240ed09285595a206b049d3..07a77ca2a77773d695f811849db2f367a9f0ba81 100644 (file)
@@ -996,7 +996,18 @@ edge_before_returns_twice_call (basic_block bb)
          add_phi_arg (new_phi, PHI_ARG_DEF_FROM_EDGE (phi, ad_edge),
                       e, gimple_phi_arg_location_from_edge (phi, ad_edge));
        }
+      e->flags = ad_edge->flags;
+      e->probability = ad_edge->probability;
       remove_edge (ad_edge);
+      if (dom_info_available_p (CDI_DOMINATORS))
+       {
+         set_immediate_dominator (CDI_DOMINATORS, other_edge->src,
+                                  recompute_dominator (CDI_DOMINATORS,
+                                                       other_edge->src));
+         set_immediate_dominator (CDI_DOMINATORS, other_edge->dest,
+                                  recompute_dominator (CDI_DOMINATORS,
+                                                       other_edge->dest));
+       }
     }
   return other_edge;
 }
@@ -1044,6 +1055,7 @@ gsi_safe_insert_before (gimple_stmt_iterator *iter, gimple *g)
       if (new_bb)
        e = single_succ_edge (new_bb);
       adjust_before_returns_twice_call (e, g);
+      *iter = gsi_for_stmt (stmt);
     }
   else
     gsi_insert_before (iter, g, GSI_SAME_STMT);
@@ -1074,6 +1086,7 @@ gsi_safe_insert_seq_before (gimple_stmt_iterator *iter, gimple_seq seq)
          if (g == l)
            break;
        }
+      *iter = gsi_for_stmt (stmt);
     }
   else
     gsi_insert_seq_before (iter, seq, GSI_SAME_STMT);
This page took 0.062601 seconds and 5 git commands to generate.