mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Type annotations for instruction operands are omitted, e.g. ``` %3 = struct $S(%1, %2) ``` Operand types are redundant anyway and were only used for sanity checking in the SIL parser. But: operand types _are_ printed if the definition of the operand value was not printed yet. This happens: * if the block with the definition appears after the block where the operand's instruction is located * if a block or instruction is printed in isolation, e.g. in a debugger The old behavior can be restored with `-Xllvm -sil-print-types`. This option is added to many existing test files which check for operand types in their check-lines.
88 lines
5.8 KiB
Swift
88 lines
5.8 KiB
Swift
// RUN: %target-swift-emit-silgen -Xllvm -sil-print-types -emit-verbose-sil %s | %FileCheck %s
|
|
|
|
protocol OwnershipProto {
|
|
__consuming func elided(_ default: String, _ shared: __shared String, _ owned: __owned String)
|
|
|
|
__consuming func explicit(_ default: String, _ shared: __shared String, _ owned: __owned String)
|
|
|
|
var elidedPropertyGet: String { __consuming get }
|
|
var explicitPropertyGet: String { __consuming get }
|
|
}
|
|
|
|
struct Witness: OwnershipProto {
|
|
var x: String
|
|
|
|
func elided(_ default: String, _ shared: String, _ owned: String) { }
|
|
|
|
__consuming func explicit(_ default: String, _ toShared: __shared String, _ toOwned: __owned String) { }
|
|
|
|
var elidedPropertyGet: String { return "" }
|
|
var explicitPropertyGet: String { __consuming get { return "" } }
|
|
}
|
|
|
|
// Check the conventions of the witnesses
|
|
|
|
// CHECK-LABEL: sil hidden [ossa] @$s15value_ownership7WitnessV6elidedyySS_S2StF : $@convention(method) (@guaranteed String, @guaranteed String, @guaranteed String, @guaranteed Witness) -> () {
|
|
// CHECK-LABEL: sil hidden [ossa] @$s15value_ownership7WitnessV8explicityySS_SShSSntF : $@convention(method) (@guaranteed String, @guaranteed String, @owned String, @owned Witness) -> () {
|
|
// CHECK-LABEL: sil hidden [ossa] @$s15value_ownership7WitnessV17elidedPropertyGetSSvg : $@convention(method) (@guaranteed Witness) -> @owned String
|
|
// CHECK-LABEL: sil hidden [ossa] @$s15value_ownership7WitnessV19explicitPropertyGetSSvg : $@convention(method) (@owned Witness) -> @owned String
|
|
|
|
// Check the elided witness' thunk has the right conventions and borrows where necessary
|
|
|
|
// CHECK-LABEL: @$s15value_ownership7WitnessVAA14OwnershipProtoA2aDP6elidedyySS_SShSSntFTW :
|
|
// CHECK: bb0([[DEFAULT2DEFAULT:%.*]] : @guaranteed $String, [[SHARED2DEFAULT:%.*]] : @guaranteed $String, [[OWNED2DEFAULT:%.*]] : @owned $String, [[WITNESS_VALUE:%.*]] : $*Witness):
|
|
// CHECK: [[LOAD_WITNESS:%.*]] = load [take] [[WITNESS_VALUE]] : $*Witness
|
|
// CHECK: [[BORROW_WITNESS:%.*]] = begin_borrow [[LOAD_WITNESS]]
|
|
// CHECK: [[WITNESS_FUNC:%.*]] = function_ref @$s15value_ownership7WitnessV6elidedyySS_S2StF
|
|
// CHECK: [[BORROWOWNED2DEFAULT:%.*]] = begin_borrow [[OWNED2DEFAULT]] : $String
|
|
// CHECK: apply [[WITNESS_FUNC]]([[DEFAULT2DEFAULT]], [[SHARED2DEFAULT]], [[BORROWOWNED2DEFAULT]], [[BORROW_WITNESS]])
|
|
// CHECK: end_borrow [[BORROWOWNED2DEFAULT]] : $String
|
|
// CHECK: end_borrow [[BORROW_WITNESS]]
|
|
// CHECK: destroy_value [[LOAD_WITNESS]]
|
|
// CHECK: } // end sil function '$s15value_ownership7WitnessVAA14OwnershipProtoA2aDP6elidedyySS_SShSSntFTW'
|
|
|
|
// Check that the explicit witness' thunk doesn't copy or borrow
|
|
|
|
// CHECK-LABEL: @$s15value_ownership7WitnessVAA14OwnershipProtoA2aDP8explicityySS_SShSSntFTW :
|
|
// CHECK: bb0([[ARG0:%.*]] : @guaranteed $String, [[ARG1:%.*]] : @guaranteed $String, [[ARG2:%.*]] : @owned $String, [[WITNESS_VALUE:%.*]] : $*Witness):
|
|
// CHECK-NEXT: [[LOAD_WITNESS:%.*]] = load [take] [[WITNESS_VALUE]] : $*Witness
|
|
// CHECK-NEXT: // function_ref Witness.explicit(_:_:_:)
|
|
// CHECK-NEXT: [[WITNESS_FUNC:%.*]] = function_ref @$s15value_ownership7WitnessV8explicityySS_SShSSntF
|
|
// CHECK-NEXT: apply [[WITNESS_FUNC]]([[ARG0]], [[ARG1]], [[ARG2]], [[LOAD_WITNESS]])
|
|
// CHECK: } // end sil function '$s15value_ownership7WitnessVAA14OwnershipProtoA2aDP8explicityySS_SShSSntFTW'
|
|
|
|
// Check the signature of the property accessor witness thunks.
|
|
// If a protocol asks for a __consuming get it should get a +1-in +1-out
|
|
// accessor entry point in its witness table.
|
|
|
|
// CHECK-LABEL: sil private [transparent] [thunk] [ossa] @$s15value_ownership7WitnessVAA14OwnershipProtoA2aDP17elidedPropertyGetSSvgTW :
|
|
// CHECK-LABEL: sil private [transparent] [thunk] [ossa] @$s15value_ownership7WitnessVAA14OwnershipProtoA2aDP19explicitPropertyGetSSvgTW :
|
|
|
|
// Check that references to a consuming getter are lowered properly.
|
|
|
|
func blackHole<T>(_: T) {}
|
|
|
|
// CHECK-LABEL: sil hidden [ossa] @$s15value_ownership25useConsumingGetterGenericyyxAA14OwnershipProtoRzlF : $@convention(thin) <T where T : OwnershipProto> (@in_guaranteed T) -> () {
|
|
func useConsumingGetterGeneric<T : OwnershipProto>(_ t: T) {
|
|
// CHECK: [[FN:%.*]] = witness_method $T, #OwnershipProto.explicitPropertyGet!getter : <Self where Self : OwnershipProto> (__owned Self) -> () -> String : $@convention(witness_method: OwnershipProto) <τ_0_0 where τ_0_0 : OwnershipProto> (@in τ_0_0) -> @owned String
|
|
// CHECK-NEXT: apply [[FN]]<T>({{%.*}}) : $@convention(witness_method: OwnershipProto) <τ_0_0 where τ_0_0 : OwnershipProto> (@in τ_0_0) -> @owned String
|
|
|
|
blackHole(t.explicitPropertyGet)
|
|
}
|
|
|
|
// CHECK-LABEL: sil hidden [ossa] @$s15value_ownership29useConsumingGetterExistentialyyAA14OwnershipProto_pF : $@convention(thin) (@in_guaranteed any OwnershipProto) -> () {
|
|
func useConsumingGetterExistential(_ e: OwnershipProto) {
|
|
// CHECK: [[FN:%.*]] = witness_method $@opened("{{.*}}", any OwnershipProto) Self, #OwnershipProto.explicitPropertyGet!getter : <Self where Self : OwnershipProto> (__owned Self) -> () -> String, %2 : $*@opened("{{.*}}", any OwnershipProto) Self : $@convention(witness_method: OwnershipProto) <τ_0_0 where τ_0_0 : OwnershipProto> (@in τ_0_0) -> @owned String
|
|
// CHECK-NEXT: apply [[FN]]<@opened("{{.*}}", any OwnershipProto) Self>({{%.*}}) : $@convention(witness_method: OwnershipProto) <τ_0_0 where τ_0_0 : OwnershipProto> (@in τ_0_0) -> @owned String
|
|
|
|
blackHole(e.explicitPropertyGet)
|
|
}
|
|
|
|
// CHECK-LABEL: sil hidden [ossa] @$s15value_ownership26useConsumingGetterConcreteyyAA7WitnessVF : $@convention(thin) (@guaranteed Witness) -> () {
|
|
func useConsumingGetterConcrete(_ c: Witness) {
|
|
// CHECK: [[FN:%.*]] = function_ref @$s15value_ownership7WitnessV19explicitPropertyGetSSvg : $@convention(method) (@owned Witness) -> @owned String
|
|
// CHECK-NEXT: apply [[FN]]({{%.*}}) : $@convention(method) (@owned Witness) -> @owned String
|
|
|
|
blackHole(c.explicitPropertyGet)
|
|
}
|