mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Although nonescaping closures are representationally trivial pointers to their on-stack context, it is useful to model them as borrowing their captures, which allows for checking correct use of move-only values across the closure, and lets us model the lifetime dependence between a closure and its captures without an ad-hoc web of `mark_dependence` instructions. During ownership elimination, We eliminate copy/destroy_value instructions and end the partial_apply's lifetime with an explicit dealloc_stack as before, for compatibility with existing IRGen and non-OSSA aware passes.
18 lines
950 B
Swift
18 lines
950 B
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: %target-swift-frontend %s -sil-verify-all -disable-availability-checking -emit-sil -enable-copy-propagation=false -I %t -o - | %FileCheck %s
|
|
// REQUIRES: concurrency
|
|
|
|
// CHECK-LABEL: sil @$s34closure_lifetime_fixup_concurrency12testAsyncLetyS2SYaF : $@convention(thin) @async (@guaranteed String) -> @owned String {
|
|
// CHECK: [[PA:%.*]] = partial_apply [callee_guaranteed] [on_stack]
|
|
// CHECK: [[MD:%.*]] = mark_dependence [[PA]]
|
|
// CHECK: [[CONV:%.*]] = convert_function [[MD]]
|
|
// CHECK: [[BAL:%.*]] = builtin "startAsyncLetWithLocalBuffer"<String>([[OPT:%.+]] : $Optional<Builtin.RawPointer>, [[CONV]]
|
|
// CHECK: builtin "endAsyncLetLifetime"([[BAL]] : $Builtin.RawPointer, [[CONV]]
|
|
// CHECK: } // end sil function '$s34closure_lifetime_fixup_concurrency12testAsyncLetyS2SYaF'
|
|
|
|
public func testAsyncLet(_ n: String) async -> String {
|
|
async let first = n
|
|
let result = await first
|
|
return result
|
|
}
|