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.
47 lines
1.7 KiB
Swift
47 lines
1.7 KiB
Swift
// RUN: %target-swift-emit-silgen -Xllvm -sil-print-types -sdk %S/Inputs -I %S/Inputs -enable-source-import %s -enable-objc-interop | %FileCheck %s
|
|
|
|
import gizmo
|
|
|
|
// Super calls in objc require dynamic dispatch, represented in SIL as
|
|
// a super_method instruction.
|
|
class Hoozit : Gizmo {
|
|
|
|
// CHECK-LABEL: sil hidden [ossa] @$s10objc_super6HoozitC{{[_0-9a-zA-Z]*}}fc : $@convention(method) (@owned Hoozit) -> @owned Hoozit
|
|
override init() {
|
|
// CHECK: objc_super_method {{%.*}} : $Hoozit, #Gizmo.init!initializer.foreign
|
|
super.init()
|
|
}
|
|
|
|
// CHECK-LABEL: sil hidden [ossa] @$s10objc_super6HoozitC5runce{{[_0-9a-zA-Z]*}}FZ : $@convention(method) (@thick Hoozit.Type) -> ()
|
|
override class func runce() {
|
|
// CHECK: objc_super_method {{%.*}} : $@thick Hoozit.Type, #Gizmo.runce!foreign
|
|
super.runce()
|
|
}
|
|
|
|
// CHECK-LABEL: sil hidden [ossa] @$s10objc_super6HoozitC4frob{{[_0-9a-zA-Z]*}}F : $@convention(method) (@guaranteed Hoozit) -> ()
|
|
override func frob() {
|
|
// CHECK: objc_super_method {{%.*}} : $Hoozit, #Gizmo.frob!foreign
|
|
super.frob()
|
|
}
|
|
}
|
|
|
|
struct NotInObjC<T> { }
|
|
|
|
class Wotsit : Hoozit {
|
|
// -- funge() is declared on Gizmo, the grandparent class
|
|
override func funge() {
|
|
// CHECK: objc_super_method {{%.*}} : $Wotsit, #Gizmo.funge!foreign
|
|
super.funge()
|
|
}
|
|
|
|
init (nope: NotInObjC<Int>) { }
|
|
}
|
|
|
|
class NonObjCSuperInit : Wotsit {
|
|
// CHECK-LABEL: sil hidden [ossa] @$s10objc_super16NonObjCSuperInitC{{[_0-9a-zA-Z]*}}fc : $@convention(method) (@owned NonObjCSuperInit) -> @owned NonObjCSuperInit
|
|
init() {
|
|
// CHECK: function_ref @$s10objc_super9NotInObjCVACyxGycfC : $@convention(method) <τ_0_0> (@thin NotInObjC<τ_0_0>.Type) -> NotInObjC<τ_0_0>
|
|
super.init(nope: NotInObjC<Int>())
|
|
}
|
|
}
|