blob: c6669cbcb22c71c6460596aad0dec353316bc821 [file] [log] [blame]
// RUN: %target-sil-opt -enable-library-evolution -enable-sil-verify-all %s -capture-promotion | %FileCheck %s
sil_stage raw
import Swift
public struct ResilientStruct {
var x : Int64
}
sil @closure0 : $@convention(thin) (@guaranteed _0_0> { var τ_0_0 } <ResilientStruct>) -> () {
bb0(%0 : $_0_0> { var τ_0_0 } <ResilientStruct>):
%1 = project_box %0 : $_0_0> { var τ_0_0 } <ResilientStruct>, 0
%2 = tuple ()
return %2 : $()
}
// Primarily don't crash.
// CHECK-LABEL: sil @$s8closure0Tf2i_n : $@convention(thin) (ResilientStruct) -> () {
// CHECK: bb0(%0 : $ResilientStruct):
// CHECK: return {{.*}} : $()
// CHECK: }
// CHECK: sil @test_capture_promotion : $@convention(thin) (@in_guaranteed ResilientStruct) -> @owned @callee_guaranteed () -> () {
// CHECK: bb0([[ARG:%.*]] : $*ResilientStruct):
// CHECK: [[BOX:%.*]] = alloc_box $<τ_0_0> { var τ_0_0 } <ResilientStruct>
// CHECK: [[F1:%.*]] = project_box [[BOX]]
// CHECK: [[F2:%.*]] = project_box [[BOX]]
// CHECK: copy_addr [[ARG]] to [initialization] [[F2]] : $*ResilientStruct
// CHECK: [[F:%.*]] = function_ref @$s8closure0Tf2i_n : $@convention(thin) (ResilientStruct) -> () // user: %8
// CHECK: [[R:%.*]] = load [[F1]] : $*ResilientStruct
// CHECK: [[C:%.*]] = partial_apply [callee_guaranteed] [[F]]([[R]])
// CHECK: return [[C]] : $@callee_guaranteed () -> ()
// CHECK: }
sil @test_capture_promotion : $@convention(thin) (@in_guaranteed ResilientStruct) -> @owned @callee_guaranteed () -> () {
bb0(%0 : $*ResilientStruct):
%1 = alloc_box $_0_0> { var τ_0_0 } <ResilientStruct>
%2 = project_box %1 : $_0_0> { var τ_0_0 } <ResilientStruct>, 0
copy_addr %0 to [initialization] %2 : $*ResilientStruct
%4 = function_ref @closure0 : $@convention(thin) (@guaranteed _0_0> { var τ_0_0 } <ResilientStruct>) -> ()
%5 = partial_apply [callee_guaranteed] %4(%1) : $@convention(thin) (@guaranteed _0_0> { var τ_0_0 } <ResilientStruct>) -> ()
return %5 : $@callee_guaranteed () -> ()
}
// CHECK-LABEL: sil [serializable] @test_capture_promotion_2
// CHECK: [[F:%.*]] = function_ref @closure0 : $@convention(thin) (@guaranteed <τ_0_0> { var τ_0_0 } <ResilientStruct>) -> ()
// CHECK: [[C:%.*]] = partial_apply [callee_guaranteed] [[F]]({{.*}}) : $@convention(thin) (@guaranteed <τ_0_0> { var τ_0_0 } <ResilientStruct>) -> ()
// CHECK: return [[C]]
sil [serializable] @test_capture_promotion_2 : $@convention(thin) (@in_guaranteed ResilientStruct) -> @owned @callee_guaranteed () -> () {
bb0(%0 : $*ResilientStruct):
%1 = alloc_box $_0_0> { var τ_0_0 } <ResilientStruct>
%2 = project_box %1 : $_0_0> { var τ_0_0 } <ResilientStruct>, 0
copy_addr %0 to [initialization] %2 : $*ResilientStruct
%4 = function_ref @closure0 : $@convention(thin) (@guaranteed _0_0> { var τ_0_0 } <ResilientStruct>) -> ()
%5 = partial_apply [callee_guaranteed] %4(%1) : $@convention(thin) (@guaranteed _0_0> { var τ_0_0 } <ResilientStruct>) -> ()
return %5 : $@callee_guaranteed () -> ()
}