]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
tree-optimization/107867 - failed abnormal cleanup in forwprop
authorRichard Biener <rguenther@suse.de>
Fri, 25 Nov 2022 12:53:14 +0000 (13:53 +0100)
committerRichard Biener <rguenther@suse.de>
Mon, 28 Nov 2022 08:00:18 +0000 (09:00 +0100)
The following makes sure to perform abnormal cleanup when forwprop
propagates into a call.

PR tree-optimization/107867
* tree-ssa-forwprop.cc (pass_forwprop::execute): Handle
abnormal cleanup after substitution.

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

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

diff --git a/gcc/testsuite/g++.dg/pr107867.C b/gcc/testsuite/g++.dg/pr107867.C
new file mode 100644 (file)
index 0000000..16c7499
--- /dev/null
@@ -0,0 +1,19 @@
+// { dg-do compile }
+// { dg-options "-Os -fno-tree-ccp -Wuninitialized" }
+
+void printf(...);
+void __sigsetjmp_cancel() __attribute__((__returns_twice__));
+int z, main_ret;
+void func(void *) {}
+
+int
+main()
+{
+  int x;
+  void (*__cancel_routine)(void *)(func);
+  __sigsetjmp_cancel();
+  __cancel_routine(0);
+  if (main_ret)
+    x = z;
+  printf(x);
+}
index 429f77f199c44b1325dce7736d0368698ecfdc7e..160e49e097ed3cd7cd572c5aa4f005babc9c68bd 100644 (file)
@@ -3367,6 +3367,7 @@ pass_forwprop::execute (function *fun)
   auto_vec<gimple *, 4> to_fixup;
   auto_vec<gimple *, 32> to_remove;
   to_purge = BITMAP_ALLOC (NULL);
+  bitmap need_ab_cleanup = BITMAP_ALLOC (NULL);
   for (int i = 0; i < postorder_num; ++i)
     {
       gimple_stmt_iterator gsi;
@@ -3682,6 +3683,9 @@ pass_forwprop::execute (function *fun)
          /* Mark stmt as potentially needing revisiting.  */
          gimple_set_plf (stmt, GF_PLF_1, false);
 
+         bool can_make_abnormal_goto = (is_gimple_call (stmt)
+                                        && stmt_can_make_abnormal_goto (stmt));
+
          /* Substitute from our lattice.  We need to do so only once.  */
          bool substituted_p = false;
          use_operand_p usep;
@@ -3700,6 +3704,10 @@ pass_forwprop::execute (function *fun)
              && is_gimple_assign (stmt)
              && gimple_assign_rhs_code (stmt) == ADDR_EXPR)
            recompute_tree_invariant_for_addr_expr (gimple_assign_rhs1 (stmt));
+         if (substituted_p
+             && can_make_abnormal_goto
+             && !stmt_can_make_abnormal_goto (stmt))
+           bitmap_set_bit (need_ab_cleanup, bb->index);
 
          bool changed;
          do
@@ -3901,7 +3909,9 @@ pass_forwprop::execute (function *fun)
     }
 
   cfg_changed |= gimple_purge_all_dead_eh_edges (to_purge);
+  cfg_changed |= gimple_purge_all_dead_abnormal_call_edges (need_ab_cleanup);
   BITMAP_FREE (to_purge);
+  BITMAP_FREE (need_ab_cleanup);
 
   if (cfg_changed)
     todoflags |= TODO_cleanup_cfg;