diff options
| author | Justin Lebar <jlebar@google.com> | 2016-02-12 21:01:36 +0000 |
|---|---|---|
| committer | Justin Lebar <jlebar@google.com> | 2016-02-12 21:01:36 +0000 |
| commit | db63949e8dd561e2430bf864b22081b4bc588160 (patch) | |
| tree | cec1ab85b1717a0e20248f82663b2dc22782e6ec /llvm/test | |
| parent | df04d2a1f1b9621fc75a28a45c4193b03da59bf8 (diff) | |
| download | bcm5719-llvm-db63949e8dd561e2430bf864b22081b4bc588160.tar.gz bcm5719-llvm-db63949e8dd561e2430bf864b22081b4bc588160.zip | |
[SimplifyCFG] Don't fold conditional branches that contain calls to convergent functions.
Summary:
Performing this optimization duplicates the call to the convergent
function and adds new control-flow dependencies, which is a no-no.
Reviewers: jingyue
Subscribers: broune, hfinkel, tra, resistor, joker.eph, arsenm, llvm-commits, mzolotukhin
Differential Revision: http://reviews.llvm.org/D17128
llvm-svn: 260730
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/Transforms/SimplifyCFG/attr-convergent.ll | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/llvm/test/Transforms/SimplifyCFG/attr-convergent.ll b/llvm/test/Transforms/SimplifyCFG/attr-convergent.ll new file mode 100644 index 00000000000..a5f363d055a --- /dev/null +++ b/llvm/test/Transforms/SimplifyCFG/attr-convergent.ll @@ -0,0 +1,28 @@ +; RUN: opt < %s -simplifycfg -S | FileCheck %s + +; Checks that the SimplifyCFG pass won't duplicate a call to a function marked +; convergent. +; +; CHECK: call void @barrier +; CHECK-NOT: call void @barrier +define void @check(i1 %cond, i32* %out) { +entry: + br i1 %cond, label %if.then, label %if.end + +if.then: + store i32 5, i32* %out + br label %if.end + +if.end: + %x = phi i1 [ true, %entry ], [ false, %if.then ] + call void @barrier() + br i1 %x, label %cond.end, label %cond.false + +cond.false: + br label %cond.end + +cond.end: + ret void +} + +declare void @barrier() convergent |

