[PATCH] D59068: [coroutines][PR40979] Ignore unreachable uses across suspend points
Brian Gesiak via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 11 11:32:06 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL355852: [coroutines][PR40979] Ignore unreachable uses across suspend points (authored by modocache, committed by ).
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D59068/new/
https://reviews.llvm.org/D59068
Files:
llvm/trunk/lib/Transforms/Coroutines/CoroSplit.cpp
llvm/trunk/test/Transforms/Coroutines/coro-frame-unreachable.ll
Index: llvm/trunk/test/Transforms/Coroutines/coro-frame-unreachable.ll
===================================================================
--- llvm/trunk/test/Transforms/Coroutines/coro-frame-unreachable.ll
+++ llvm/trunk/test/Transforms/Coroutines/coro-frame-unreachable.ll
@@ -0,0 +1,50 @@
+; Check that coro-split doesn't choke on intrinsics in unreachable blocks
+; RUN: opt < %s -coro-split -S
+
+define i8* @f(i1 %arg) "coroutine.presplit"="1" personality i32 0 {
+entry:
+ %arg.addr = alloca i1
+ store i1 %arg, i1* %arg.addr
+ %id = call token @llvm.coro.id(i32 0, i8* null, i8* null, i8* null)
+ %size = call i32 @llvm.coro.size.i32()
+ %alloc = call i8* @malloc(i32 %size)
+ %hdl = call i8* @llvm.coro.begin(token %id, i8* %alloc)
+ br label %cont
+
+cont:
+ %0 = call i8 @llvm.coro.suspend(token none, i1 false)
+ switch i8 %0, label %suspend [i8 0, label %resume
+ i8 1, label %cleanup]
+resume:
+ br label %cleanup
+
+cleanup:
+ %mem = call i8* @llvm.coro.free(token %id, i8* %hdl)
+ call void @free(i8* %mem)
+ br label %suspend
+
+suspend:
+ call i1 @llvm.coro.end(i8* %hdl, i1 0)
+ ret i8* %hdl
+
+no.predecessors:
+ %argval = load i1, i1* %arg.addr
+ call void @print(i1 %argval)
+ br label %suspend
+
+}
+
+declare i8* @llvm.coro.free(token, i8*)
+declare i32 @llvm.coro.size.i32()
+declare i8 @llvm.coro.suspend(token, i1)
+declare void @llvm.coro.resume(i8*)
+declare void @llvm.coro.destroy(i8*)
+
+declare token @llvm.coro.id(i32, i8*, i8*, i8*)
+declare i1 @llvm.coro.alloc(token)
+declare i8* @llvm.coro.begin(token, i8*)
+declare i1 @llvm.coro.end(i8*, i1)
+
+declare noalias i8* @malloc(i32)
+declare void @print(i1)
+declare void @free(i8*)
Index: llvm/trunk/lib/Transforms/Coroutines/CoroSplit.cpp
===================================================================
--- llvm/trunk/lib/Transforms/Coroutines/CoroSplit.cpp
+++ llvm/trunk/lib/Transforms/Coroutines/CoroSplit.cpp
@@ -777,6 +777,8 @@
}
static void splitCoroutine(Function &F, CallGraph &CG, CallGraphSCC &SCC) {
+ EliminateUnreachableBlocks(F);
+
coro::Shape Shape(F);
if (!Shape.CoroBegin)
return;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D59068.190131.patch
Type: text/x-patch
Size: 2155 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190311/4f72cb3b/attachment.bin>
More information about the llvm-commits
mailing list