
One of the main user of these kind of coroutines is swift. There yield-once (`retcon.once`) coroutines are used to temporary "expose" pointers to internal fields of various objects creating borrow scopes. However, in some cases it might be useful also to allow these coroutines to produce a normal result, but there is no convenient way to represent this (as compared to switched-resume kind of coroutines where C++ `co_return` is transformed to a member / callback call on promise object). The extension is simple: we allow continuation function to have a non-void result and accept optional extra arguments via a special `llvm.coro.end.result` intrinsic that would essentially forward them as normal results.
60 lines
1.7 KiB
LLVM
60 lines
1.7 KiB
LLVM
; First example from Doc/Coroutines.rst (two block loop)
|
|
; RUN: opt < %s -aa-pipeline=basic-aa -passes='default<O2>' -preserve-alignment-assumptions-during-inlining=false -S | FileCheck %s
|
|
|
|
define ptr @f(i32 %n) presplitcoroutine {
|
|
entry:
|
|
%id = call token @llvm.coro.id(i32 0, ptr null, ptr null, ptr null)
|
|
%size = call i32 @llvm.coro.size.i32()
|
|
%alloc = call ptr @malloc(i32 %size)
|
|
%hdl = call ptr @llvm.coro.begin(token %id, ptr %alloc)
|
|
br label %loop
|
|
|
|
loop:
|
|
%n.val = phi i32 [ %n, %entry ], [ %inc, %resume ]
|
|
call void @print(i32 %n.val)
|
|
%0 = call i8 @llvm.coro.suspend(token none, i1 false)
|
|
switch i8 %0, label %suspend [i8 0, label %resume
|
|
i8 1, label %cleanup]
|
|
resume:
|
|
%inc = add i32 %n.val, 1
|
|
br label %loop
|
|
|
|
cleanup:
|
|
%mem = call ptr @llvm.coro.free(token %id, ptr %hdl)
|
|
call void @free(ptr %mem)
|
|
br label %suspend
|
|
suspend:
|
|
call i1 @llvm.coro.end(ptr %hdl, i1 0, token none)
|
|
ret ptr %hdl
|
|
}
|
|
|
|
; CHECK-LABEL: @main(
|
|
define i32 @main() {
|
|
entry:
|
|
%hdl = call ptr @f(i32 4)
|
|
call void @llvm.coro.resume(ptr %hdl)
|
|
call void @llvm.coro.resume(ptr %hdl)
|
|
call void @llvm.coro.destroy(ptr %hdl)
|
|
ret i32 0
|
|
; CHECK: entry:
|
|
; CHECK: call void @print(i32 4)
|
|
; CHECK: call void @print(i32 5)
|
|
; CHECK: call void @print(i32 6)
|
|
; CHECK: ret i32 0
|
|
}
|
|
|
|
declare token @llvm.coro.id(i32, ptr, ptr, ptr)
|
|
declare ptr @llvm.coro.alloc(token)
|
|
declare ptr @llvm.coro.free(token, ptr)
|
|
declare i32 @llvm.coro.size.i32()
|
|
declare i8 @llvm.coro.suspend(token, i1)
|
|
declare void @llvm.coro.resume(ptr)
|
|
declare void @llvm.coro.destroy(ptr)
|
|
|
|
declare ptr @llvm.coro.begin(token, ptr)
|
|
declare i1 @llvm.coro.end(ptr, i1, token)
|
|
|
|
declare noalias ptr @malloc(i32)
|
|
declare void @print(i32)
|
|
declare void @free(ptr)
|