diff options
author | David Majnemer <david.majnemer@gmail.com> | 2016-05-03 03:57:40 +0000 |
---|---|---|
committer | David Majnemer <david.majnemer@gmail.com> | 2016-05-03 03:57:40 +0000 |
commit | 3d90bb79c4e81dfd76afe26a771097dc3852674c (patch) | |
tree | d3dc2a6f76ce26012d6976cc9618d9df5afbca2c /llvm/test/Transforms/LoopUnroll | |
parent | 2a4c00f24328cece37ee57134974b24e4295a17e (diff) | |
download | bcm5719-llvm-3d90bb79c4e81dfd76afe26a771097dc3852674c.tar.gz bcm5719-llvm-3d90bb79c4e81dfd76afe26a771097dc3852674c.zip |
[LoopUnroll] Unroll loops which have exit blocks to EH pads
We were overly cautious in our analysis of loops which have invokes
which unwind to EH pads. The loop unroll transform is safe because it
only clones blocks in the loop body, it does not try to split critical
edges involving EH pads. Instead, move the necessary safety check to
LoopUnswitch.
N.B. The safety check for loop unswitch is covered by an existing test
which fails without it.
llvm-svn: 268357
Diffstat (limited to 'llvm/test/Transforms/LoopUnroll')
-rw-r--r-- | llvm/test/Transforms/LoopUnroll/unroll-cleanuppad.ll | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/llvm/test/Transforms/LoopUnroll/unroll-cleanuppad.ll b/llvm/test/Transforms/LoopUnroll/unroll-cleanuppad.ll new file mode 100644 index 00000000000..67f3194f474 --- /dev/null +++ b/llvm/test/Transforms/LoopUnroll/unroll-cleanuppad.ll @@ -0,0 +1,40 @@ +; RUN: opt -S -loop-unroll %s | FileCheck %s +target datalayout = "e-m:w-i64:64-f80:128-n8:16:32:64-S128" +target triple = "x86_64-pc-windows-msvc18.0.0" + +define void @test1() personality i32 (...)* @__CxxFrameHandler3 { +entry: + br label %for.body + +for.body: ; preds = %entry, %for.inc + %phi = phi i32 [ 0, %entry ], [ %inc, %for.inc ] + invoke void @callee(i32 %phi) + to label %for.inc unwind label %ehcleanup + +for.inc: ; preds = %for.body + %inc = add nuw nsw i32 %phi, 1 + %cmp = icmp slt i32 %inc, 3 + br i1 %cmp, label %for.body, label %for.cond.cleanup + +for.cond.cleanup: ; preds = %for.inc + call void @dtor() + ret void + +ehcleanup: ; preds = %for.body + %cp = cleanuppad within none [] + call void @dtor() [ "funclet"(token %cp) ] + cleanupret from %cp unwind to caller +} + +; CHECK-LABEL: define void @test1( +; CHECK: invoke void @callee(i32 0 + +; CHECK: invoke void @callee(i32 1 + +; CHECK: invoke void @callee(i32 2 + +declare void @callee(i32) + +declare i32 @__CxxFrameHandler3(...) + +declare void @dtor() |