tree-optimization/96514 - avoid if-converting control-altering calls
authorRichard Biener <rguenther@suse.de>
Fri, 7 Aug 2020 08:16:05 +0000 (10:16 +0200)
committerRichard Biener <rguenther@suse.de>
Fri, 7 Aug 2020 10:21:36 +0000 (12:21 +0200)
This avoids if-converting when encountering control-altering calls.

2020-08-07  Richard Biener  <rguenther@suse.de>

PR tree-optimization/96514
* tree-if-conv.c (if_convertible_bb_p): If the last stmt
is a call that is control-altering, fail.

* gcc.dg/pr96514.c: New testcase.

gcc/testsuite/gcc.dg/pr96514.c [new file with mode: 0644]
gcc/tree-if-conv.c

diff --git a/gcc/testsuite/gcc.dg/pr96514.c b/gcc/testsuite/gcc.dg/pr96514.c
new file mode 100644 (file)
index 0000000..891b4da
--- /dev/null
@@ -0,0 +1,27 @@
+/* { dg-do compile } */
+
+int __attribute__ ((pure, returns_twice))
+r0 (void);
+
+void
+vy (int t7)
+{
+  while (t7 == 0)
+    r0 ();
+}
+
+void
+qw (int t7)
+{
+  vy (t7);
+
+  if (0)
+    r0 ();
+}
+
+void __attribute__ ((simd))
+un (int t7)
+{
+  qw (t7);
+  qw (t7);
+}
index fc894eb94da4c622f1761804f0d7c9b80e307ff3..257759d01bfa8e45a20545de267b1e6c8afe5615 100644 (file)
@@ -1139,6 +1139,11 @@ if_convertible_bb_p (class loop *loop, basic_block bb, basic_block exit_bb)
   if (EDGE_COUNT (bb->succs) > 2)
     return false;
 
+  gimple *last = last_stmt (bb);
+  if (gcall *call = safe_dyn_cast <gcall *> (last))
+    if (gimple_call_ctrl_altering_p (call))
+      return false;
+
   if (exit_bb)
     {
       if (bb != loop->latch)