mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Find all the usages of `--enable-experimental-feature` or `--enable-upcoming-feature` in the tests and replace some of the `REQUIRES: asserts` to use `REQUIRES: swift-feature-Foo` instead, which should correctly apply to depending on the asserts/noasserts mode of the toolchain for each feature. Remove some comments that talked about enabling asserts since they don't apply anymore (but I might had miss some). All this was done with an automated script, so some formatting weirdness might happen, but I hope I fixed most of those. There might be some tests that were `REQUIRES: asserts` that might run in `noasserts` toolchains now. This will normally be because their feature went from experimental to upcoming/base and the tests were not updated.
491 lines
27 KiB
Swift
491 lines
27 KiB
Swift
// RUN: %empty-directory(%t/Frameworks)
|
|
// RUN: INPUT_DIR=%S/Inputs
|
|
// RUN: cp -R $INPUT_DIR/Alpha.framework %t/Frameworks/
|
|
// RUN: %empty-directory(%t/Frameworks/Alpha.framework/Modules/Alpha.swiftmodule)
|
|
// RUN: %empty-directory(%t/Frameworks/Alpha.framework/Headers/)
|
|
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -enable-experimental-feature IsolatedDeinit -disable-implicit-string-processing-module-import -parse-as-library -module-name Alpha \
|
|
// RUN: -emit-module -o %t/Frameworks/Alpha.framework/Modules/Alpha.swiftmodule/%module-target-triple.swiftmodule \
|
|
// RUN: -enable-objc-interop -disable-objc-attr-requires-foundation-module \
|
|
// RUN: -emit-objc-header -emit-objc-header-path %t/Frameworks/Alpha.framework/Headers/Alpha-Swift.h $INPUT_DIR/Alpha.swift
|
|
// RUN: cp -R $INPUT_DIR/Beta.framework %t/Frameworks/
|
|
// RUN: %empty-directory(%t/Frameworks/Beta.framework/Headers/)
|
|
// RUN: cp $INPUT_DIR/Beta.h %t/Frameworks/Beta.framework/Headers/Beta.h
|
|
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -enable-experimental-feature IsolatedDeinit -disable-implicit-string-processing-module-import -disable-availability-checking -typecheck -verify %s -F %t/Frameworks -F %clang-importer-sdk-path/frameworks
|
|
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -enable-experimental-feature IsolatedDeinit -disable-implicit-string-processing-module-import -disable-availability-checking -parse-as-library -emit-silgen -DSILGEN %s -F %t/Frameworks -F %clang-importer-sdk-path/frameworks | %FileCheck %s
|
|
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -enable-experimental-feature IsolatedDeinit -disable-implicit-string-processing-module-import -disable-availability-checking -parse-as-library -emit-silgen -DSILGEN %s -F %t/Frameworks -F %clang-importer-sdk-path/frameworks | %FileCheck -check-prefix=CHECK-SYMB %s
|
|
|
|
// REQUIRES: concurrency
|
|
// REQUIRES: objc_interop
|
|
// REQUIRES: swift_feature_IsolatedDeinit
|
|
|
|
// Note: intentionally importing Alpha implicitly
|
|
import Beta
|
|
|
|
@globalActor final actor AnotherActor {
|
|
static let shared = AnotherActor()
|
|
}
|
|
|
|
// MARK: - RoundtripNonisolated
|
|
|
|
@MainActor
|
|
func isolatedFunc() {} // expected-note 15{{calls to global function 'isolatedFunc()' from outside of its actor context are implicitly asynchronous}}
|
|
|
|
// CHECK-LABEL: @objc @_inheritsConvenienceInitializers class ProbeImplicit_RoundtripNonisolated : RoundtripNonisolated {
|
|
// CHECK: @objc deinit
|
|
// CHECK: }
|
|
// CHECK-SYMB-NOT: ProbeImplicit_RoundtripNonisolated.__isolated_deallocating_deinit
|
|
// CHECK-SYMB-NOT: @$s4test34ProbeImplicit_RoundtripNonisolatedCfZ
|
|
// CHECK-SYMB: // ProbeImplicit_RoundtripNonisolated.__deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: nonisolated
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test34ProbeImplicit_RoundtripNonisolatedCfD : $@convention(method) (@owned ProbeImplicit_RoundtripNonisolated) -> () {
|
|
class ProbeImplicit_RoundtripNonisolated: RoundtripNonisolated {}
|
|
|
|
// CHECK-LABEL: @objc @_inheritsConvenienceInitializers class ProbeDefault_RoundtripNonisolated : RoundtripNonisolated {
|
|
// CHECK: @objc deinit
|
|
// CHECK: }
|
|
// CHECK-SYMB-NOT: ProbeDefault_RoundtripNonisolated.__isolated_deallocating_deinit
|
|
// CHECK-SYMB-NOT: @$s4test33ProbeDefault_RoundtripNonisolatedCfZ
|
|
// CHECK-SYMB: // ProbeDefault_RoundtripNonisolated.__deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: nonisolated
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test33ProbeDefault_RoundtripNonisolatedCfD : $@convention(method) (@owned ProbeDefault_RoundtripNonisolated) -> () {
|
|
class ProbeDefault_RoundtripNonisolated: RoundtripNonisolated {
|
|
deinit {
|
|
#if !SILGEN
|
|
isolatedFunc() // expected-error {{call to main actor-isolated global function 'isolatedFunc()' in a synchronous nonisolated context}}
|
|
#endif
|
|
}
|
|
}
|
|
|
|
#if !SILGEN
|
|
class ProbeIsolated_RoundtripNonisolated: RoundtripNonisolated {
|
|
isolated deinit { // expected-error {{deinit is marked isolated, but containing class 'ProbeIsolated_RoundtripNonisolated' is not isolated to an actor}}
|
|
isolatedFunc() // expected-error {{call to main actor-isolated global function 'isolatedFunc()' in a synchronous nonisolated context}}
|
|
}
|
|
}
|
|
#endif
|
|
|
|
// CHECK-LABEL: @objc @_inheritsConvenienceInitializers class ProbeGlobal_RoundtripNonisolated : RoundtripNonisolated {
|
|
// CHECK: @objc @AnotherActor deinit
|
|
// CHECK: }
|
|
// CHECK-SYMB: ProbeGlobal_RoundtripNonisolated.__isolated_deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: global_actor. type: AnotherActor
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test32ProbeGlobal_RoundtripNonisolatedCfZ : $@convention(thin) (@owned ProbeGlobal_RoundtripNonisolated) -> () {
|
|
// CHECK-SYMB: // ProbeGlobal_RoundtripNonisolated.__deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: nonisolated
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test32ProbeGlobal_RoundtripNonisolatedCfD : $@convention(method) (@owned ProbeGlobal_RoundtripNonisolated) -> () {
|
|
class ProbeGlobal_RoundtripNonisolated: RoundtripNonisolated {
|
|
@AnotherActor deinit {
|
|
#if !SILGEN
|
|
isolatedFunc() // expected-error {{call to main actor-isolated global function 'isolatedFunc()' in a synchronous global actor 'AnotherActor'-isolated context}}
|
|
#endif
|
|
}
|
|
}
|
|
|
|
// MARK: - RoundtripIsolated
|
|
|
|
// CHECK-LABEL: @objc @_inheritsConvenienceInitializers class ProbeImplicit_RoundtripIsolated : RoundtripIsolated {
|
|
// Note: Type-checked as isolated, but no @MainActor attribute, because attributes are not added for overriding members
|
|
// CHECK: @objc deinit
|
|
// CHECK: }
|
|
// CHECK-SYMB: ProbeImplicit_RoundtripIsolated.__isolated_deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: global_actor. type: MainActor
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test31ProbeImplicit_RoundtripIsolatedCfZ : $@convention(thin) (@owned ProbeImplicit_RoundtripIsolated) -> () {
|
|
// CHECK-SYMB: // ProbeImplicit_RoundtripIsolated.__deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: nonisolated
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test31ProbeImplicit_RoundtripIsolatedCfD : $@convention(method) (@owned ProbeImplicit_RoundtripIsolated) -> () {
|
|
class ProbeImplicit_RoundtripIsolated: RoundtripIsolated {}
|
|
|
|
#if !SILGEN
|
|
class ProbeDefault_RoundtripIsolated: RoundtripIsolated {
|
|
deinit {} // expected-error {{nonisolated deinitializer 'deinit' has different actor isolation from main actor-isolated overridden declaration}}
|
|
}
|
|
#endif
|
|
|
|
#if !SILGEN
|
|
class ProbeIsolated_RoundtripIsolated: RoundtripIsolated {
|
|
isolated deinit { // expected-error {{deinit is marked isolated, but containing class 'ProbeIsolated_RoundtripIsolated' is not isolated to an actor}}
|
|
isolatedFunc() // ok, isolation of the overridden deinit is used as a recovery strategy
|
|
}
|
|
}
|
|
#endif
|
|
|
|
// CHECK-LABEL: @objc @_inheritsConvenienceInitializers class ProbeGlobal_RoundtripIsolated : RoundtripIsolated {
|
|
// CHECK: @objc @MainActor deinit
|
|
// CHECK: }
|
|
// CHECK-SYMB: ProbeGlobal_RoundtripIsolated.__isolated_deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: global_actor. type: MainActor
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test29ProbeGlobal_RoundtripIsolatedCfZ : $@convention(thin) (@owned ProbeGlobal_RoundtripIsolated) -> () {
|
|
// CHECK-SYMB: // ProbeGlobal_RoundtripIsolated.__deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: nonisolated
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test29ProbeGlobal_RoundtripIsolatedCfD : $@convention(method) (@owned ProbeGlobal_RoundtripIsolated) -> () {
|
|
class ProbeGlobal_RoundtripIsolated: RoundtripIsolated {
|
|
#if !SILGEN
|
|
@AnotherActor deinit {} // expected-error {{global actor 'AnotherActor'-isolated deinitializer 'deinit' has different actor isolation from main actor-isolated overridden declaration}}
|
|
#else
|
|
@MainActor deinit {}
|
|
#endif
|
|
}
|
|
|
|
// MARK: - BaseNonisolated
|
|
|
|
// CHECK-LABEL: @objc @_inheritsConvenienceInitializers class ProbeImplicit_BaseNonisolated : BaseNonisolated {
|
|
// CHECK: @objc deinit
|
|
// CHECK: }
|
|
// CHECK-SYMB-NOT: ProbeImplicit_BaseNonisolated.__isolated_deallocating_deinit
|
|
// CHECK-SYMB-NOT: @$s4test29ProbeImplicit_BaseNonisolatedCfZ
|
|
// CHECK-SYMB: // ProbeImplicit_BaseNonisolated.__deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: nonisolated
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test29ProbeImplicit_BaseNonisolatedCfD : $@convention(method) (@owned ProbeImplicit_BaseNonisolated) -> () {
|
|
class ProbeImplicit_BaseNonisolated: BaseNonisolated {}
|
|
|
|
// CHECK-LABEL: @objc @_inheritsConvenienceInitializers class ProbeDefault_BaseNonisolated : BaseNonisolated {
|
|
// CHECK: @objc deinit
|
|
// CHECK: }
|
|
// CHECK-SYMB-NOT: ProbeDefault_BaseNonisolated.__isolated_deallocating_deinit
|
|
// CHECK-SYMB-NOT: @$s4test28ProbeDefault_BaseNonisolatedCfZ
|
|
// CHECK-SYMB: // ProbeDefault_BaseNonisolated.__deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: nonisolated
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test28ProbeDefault_BaseNonisolatedCfD : $@convention(method) (@owned ProbeDefault_BaseNonisolated) -> () {
|
|
class ProbeDefault_BaseNonisolated: BaseNonisolated {
|
|
deinit {
|
|
#if !SILGEN
|
|
isolatedFunc() // expected-error {{call to main actor-isolated global function 'isolatedFunc()' in a synchronous nonisolated context}}
|
|
#endif
|
|
}
|
|
}
|
|
|
|
#if !SILGEN
|
|
class ProbeIsolated_BaseNonisolated: BaseNonisolated {
|
|
isolated deinit { // expected-error {{deinit is marked isolated, but containing class 'ProbeIsolated_BaseNonisolated' is not isolated to an actor}}
|
|
isolatedFunc() // expected-error {{call to main actor-isolated global function 'isolatedFunc()' in a synchronous nonisolated context}}
|
|
}
|
|
}
|
|
#endif
|
|
|
|
// CHECK-LABEL: @objc @_inheritsConvenienceInitializers class ProbeGlobal_BaseNonisolated : BaseNonisolated {
|
|
// CHECK: @objc @AnotherActor deinit
|
|
// CHECK: }
|
|
// CHECK-SYMB: ProbeGlobal_BaseNonisolated.__isolated_deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: global_actor. type: AnotherActor
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test27ProbeGlobal_BaseNonisolatedCfZ : $@convention(thin) (@owned ProbeGlobal_BaseNonisolated) -> () {
|
|
// CHECK-SYMB: // ProbeGlobal_BaseNonisolated.__deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: nonisolated
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test27ProbeGlobal_BaseNonisolatedCfD : $@convention(method) (@owned ProbeGlobal_BaseNonisolated) -> () {
|
|
class ProbeGlobal_BaseNonisolated: BaseNonisolated {
|
|
@AnotherActor deinit {
|
|
#if !SILGEN
|
|
isolatedFunc() // expected-error {{call to main actor-isolated global function 'isolatedFunc()' in a synchronous global actor 'AnotherActor'-isolated context}}
|
|
#endif
|
|
}
|
|
}
|
|
|
|
// MARK: - DerivedNonisolated
|
|
|
|
// CHECK-LABEL: @objc @_inheritsConvenienceInitializers class ProbeImplicit_DerivedNonisolated : DerivedNonisolated {
|
|
// CHECK: @objc deinit
|
|
// CHECK: }
|
|
// CHECK-SYMB-NOT: ProbeImplicit_DerivedNonisolated.__isolated_deallocating_deinit
|
|
// CHECK-SYMB-NOT: @$s4test32ProbeImplicit_DerivedNonisolatedCfZ
|
|
// CHECK-SYMB: // ProbeImplicit_DerivedNonisolated.__deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: nonisolated
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test32ProbeImplicit_DerivedNonisolatedCfD : $@convention(method) (@owned ProbeImplicit_DerivedNonisolated) -> () {
|
|
class ProbeImplicit_DerivedNonisolated: DerivedNonisolated {}
|
|
|
|
// CHECK-LABEL: @objc @_inheritsConvenienceInitializers class ProbeDefault_DerivedNonisolated : DerivedNonisolated {
|
|
// CHECK: @objc deinit
|
|
// CHECK: }
|
|
// CHECK-SYMB-NOT: ProbeDefault_DerivedNonisolated.__isolated_deallocating_deinit
|
|
// CHECK-SYMB-NOT: @$s4test31ProbeDefault_DerivedNonisolatedCfZ
|
|
// CHECK-SYMB: // ProbeDefault_DerivedNonisolated.__deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: nonisolated
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test31ProbeDefault_DerivedNonisolatedCfD : $@convention(method) (@owned ProbeDefault_DerivedNonisolated) -> () {
|
|
class ProbeDefault_DerivedNonisolated: DerivedNonisolated {
|
|
deinit {
|
|
#if !SILGEN
|
|
isolatedFunc() // expected-error {{call to main actor-isolated global function 'isolatedFunc()' in a synchronous nonisolated context}}
|
|
#endif
|
|
}
|
|
}
|
|
|
|
#if !SILGEN
|
|
class ProbeIsolated_DerivedNonisolated: DerivedNonisolated {
|
|
isolated deinit { // expected-error {{deinit is marked isolated, but containing class 'ProbeIsolated_DerivedNonisolated' is not isolated to an actor}}
|
|
isolatedFunc() // expected-error {{call to main actor-isolated global function 'isolatedFunc()' in a synchronous nonisolated context}}
|
|
}
|
|
}
|
|
#endif
|
|
|
|
// CHECK-LABEL: @objc @_inheritsConvenienceInitializers class ProbeGlobal_DerivedNonisolated : DerivedNonisolated {
|
|
// CHECK: @objc @AnotherActor deinit
|
|
// CHECK: }
|
|
// CHECK-SYMB: ProbeGlobal_DerivedNonisolated.__isolated_deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: global_actor. type: AnotherActor
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test30ProbeGlobal_DerivedNonisolatedCfZ : $@convention(thin) (@owned ProbeGlobal_DerivedNonisolated) -> () {
|
|
// CHECK-SYMB: // ProbeGlobal_DerivedNonisolated.__deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: nonisolated
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test30ProbeGlobal_DerivedNonisolatedCfD : $@convention(method) (@owned ProbeGlobal_DerivedNonisolated) -> () {
|
|
class ProbeGlobal_DerivedNonisolated: DerivedNonisolated {
|
|
@AnotherActor deinit {
|
|
#if !SILGEN
|
|
isolatedFunc() // expected-error {{call to main actor-isolated global function 'isolatedFunc()' in a synchronous global actor 'AnotherActor'-isolated context}}
|
|
#endif
|
|
}
|
|
}
|
|
|
|
// MARK: - BaseIsolatedClass
|
|
|
|
// CHECK-LABEL: @objc @_inheritsConvenienceInitializers @MainActor @preconcurrency class ProbeImplicit_BaseIsolatedClass : BaseIsolatedClass {
|
|
// CHECK: @objc deinit
|
|
// CHECK: }
|
|
// CHECK-SYMB-NOT: ProbeImplicit_BaseIsolatedClass.__isolated_deallocating_deinit
|
|
// CHECK-SYMB-NOT: @$s4test31ProbeImplicit_BaseIsolatedClassCfZ
|
|
// CHECK-SYMB: // ProbeImplicit_BaseIsolatedClass.__deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: nonisolated
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test31ProbeImplicit_BaseIsolatedClassCfD : $@convention(method) (@owned ProbeImplicit_BaseIsolatedClass) -> () {
|
|
class ProbeImplicit_BaseIsolatedClass: BaseIsolatedClass {}
|
|
|
|
// CHECK-LABEL: @objc @_inheritsConvenienceInitializers @MainActor @preconcurrency class ProbeDefault_BaseIsolatedClass : BaseIsolatedClass {
|
|
// CHECK: @objc deinit
|
|
// CHECK: }
|
|
// CHECK-SYMB-NOT: ProbeDefault_BaseIsolatedClass.__isolated_deallocating_deinit
|
|
// CHECK-SYMB-NOT: @$s4test30ProbeDefault_BaseIsolatedClassCfZ
|
|
// CHECK-SYMB: // ProbeDefault_BaseIsolatedClass.__deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: nonisolated
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test30ProbeDefault_BaseIsolatedClassCfD : $@convention(method) (@owned ProbeDefault_BaseIsolatedClass) -> () {
|
|
class ProbeDefault_BaseIsolatedClass: BaseIsolatedClass {
|
|
deinit {
|
|
#if !SILGEN
|
|
isolatedFunc() // expected-error {{call to main actor-isolated global function 'isolatedFunc()' in a synchronous nonisolated context}}
|
|
#endif
|
|
}
|
|
}
|
|
|
|
// CHECK-LABEL: @objc @_inheritsConvenienceInitializers @MainActor @preconcurrency class ProbeIsolated_BaseIsolatedClass : BaseIsolatedClass {
|
|
// CHECK: @objc @preconcurrency isolated deinit
|
|
// CHECK: }
|
|
// CHECK-SYMB: ProbeIsolated_BaseIsolatedClass.__isolated_deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: global_actor. type: MainActor
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test018ProbeIsolated_BaseC5ClassCfZ : $@convention(thin) (@owned ProbeIsolated_BaseIsolatedClass) -> () {
|
|
// CHECK-SYMB: // ProbeIsolated_BaseIsolatedClass.__deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: nonisolated
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test018ProbeIsolated_BaseC5ClassCfD : $@convention(method) (@owned ProbeIsolated_BaseIsolatedClass) -> () {
|
|
class ProbeIsolated_BaseIsolatedClass: BaseIsolatedClass {
|
|
isolated deinit {
|
|
isolatedFunc()
|
|
}
|
|
}
|
|
|
|
// CHECK-LABEL: @objc @_inheritsConvenienceInitializers @MainActor @preconcurrency class ProbeGlobal_BaseIsolatedClass : BaseIsolatedClass {
|
|
// CHECK: @objc @AnotherActor deinit
|
|
// CHECK: }
|
|
// CHECK-SYMB: ProbeGlobal_BaseIsolatedClass.__isolated_deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: global_actor. type: AnotherActor
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test29ProbeGlobal_BaseIsolatedClassCfZ : $@convention(thin) (@owned ProbeGlobal_BaseIsolatedClass) -> () {
|
|
// CHECK-SYMB: // ProbeGlobal_BaseIsolatedClass.__deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: nonisolated
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test29ProbeGlobal_BaseIsolatedClassCfD : $@convention(method) (@owned ProbeGlobal_BaseIsolatedClass) -> () {
|
|
class ProbeGlobal_BaseIsolatedClass: BaseIsolatedClass {
|
|
@AnotherActor deinit {
|
|
#if !SILGEN
|
|
isolatedFunc() // expected-error {{call to main actor-isolated global function 'isolatedFunc()' in a synchronous global actor 'AnotherActor'-isolated context}}
|
|
#endif
|
|
}
|
|
}
|
|
|
|
// MARK: - DerivedIsolatedClass
|
|
|
|
// CHECK-LABEL: @objc @_inheritsConvenienceInitializers @MainActor @preconcurrency class ProbeImplicit_DerivedIsolatedClass : DerivedIsolatedClass {
|
|
// CHECK: @objc deinit
|
|
// CHECK: }
|
|
// CHECK-SYMB-NOT: ProbeImplicit_DerivedIsolatedClass.__isolated_deallocating_deinit
|
|
// CHECK-SYMB-NOT: @$s4test34ProbeImplicit_DerivedIsolatedClassCfZ
|
|
// CHECK-SYMB: // ProbeImplicit_DerivedIsolatedClass.__deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: nonisolated
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test34ProbeImplicit_DerivedIsolatedClassCfD : $@convention(method) (@owned ProbeImplicit_DerivedIsolatedClass) -> () {
|
|
class ProbeImplicit_DerivedIsolatedClass: DerivedIsolatedClass {}
|
|
|
|
// CHECK-LABEL: @objc @_inheritsConvenienceInitializers @MainActor @preconcurrency class ProbeDefault_DerivedIsolatedClass : DerivedIsolatedClass {
|
|
// CHECK: @objc deinit
|
|
// CHECK: }
|
|
// CHECK-SYMB-NOT: ProbeDefault_DerivedIsolatedClass.__isolated_deallocating_deinit
|
|
// CHECK-SYMB-NOT: @$s4test33ProbeDefault_DerivedIsolatedClassCfZ
|
|
// CHECK-SYMB: // ProbeDefault_DerivedIsolatedClass.__deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: nonisolated
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test33ProbeDefault_DerivedIsolatedClassCfD : $@convention(method) (@owned ProbeDefault_DerivedIsolatedClass) -> () {
|
|
class ProbeDefault_DerivedIsolatedClass: DerivedIsolatedClass {
|
|
deinit {
|
|
#if !SILGEN
|
|
isolatedFunc() // expected-error {{call to main actor-isolated global function 'isolatedFunc()' in a synchronous nonisolated context}}
|
|
#endif
|
|
}
|
|
}
|
|
|
|
// CHECK-LABEL: @objc @_inheritsConvenienceInitializers @MainActor @preconcurrency class ProbeIsolated_DerivedIsolatedClass : DerivedIsolatedClass {
|
|
// CHECK: @objc @preconcurrency isolated deinit
|
|
// CHECK: }
|
|
// CHECK-SYMB: ProbeIsolated_DerivedIsolatedClass.__isolated_deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: global_actor. type: MainActor
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test021ProbeIsolated_DerivedC5ClassCfZ : $@convention(thin) (@owned ProbeIsolated_DerivedIsolatedClass) -> () {
|
|
// CHECK-SYMB: // ProbeIsolated_DerivedIsolatedClass.__deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: nonisolated
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test021ProbeIsolated_DerivedC5ClassCfD : $@convention(method) (@owned ProbeIsolated_DerivedIsolatedClass) -> () {
|
|
class ProbeIsolated_DerivedIsolatedClass: DerivedIsolatedClass {
|
|
isolated deinit {
|
|
isolatedFunc()
|
|
}
|
|
}
|
|
|
|
// CHECK-LABEL: @objc @_inheritsConvenienceInitializers @MainActor @preconcurrency class ProbeGlobal_DerivedIsolatedClass : DerivedIsolatedClass {
|
|
// CHECK: @objc @AnotherActor deinit
|
|
// CHECK: }
|
|
// CHECK-SYMB: ProbeGlobal_DerivedIsolatedClass.__isolated_deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: global_actor. type: AnotherActor
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test32ProbeGlobal_DerivedIsolatedClassCfZ : $@convention(thin) (@owned ProbeGlobal_DerivedIsolatedClass) -> () {
|
|
// CHECK-SYMB: // ProbeGlobal_DerivedIsolatedClass.__deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: nonisolated
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test32ProbeGlobal_DerivedIsolatedClassCfD : $@convention(method) (@owned ProbeGlobal_DerivedIsolatedClass) -> () {
|
|
class ProbeGlobal_DerivedIsolatedClass: DerivedIsolatedClass {
|
|
@AnotherActor deinit {
|
|
#if !SILGEN
|
|
isolatedFunc() // expected-error {{call to main actor-isolated global function 'isolatedFunc()' in a synchronous global actor 'AnotherActor'-isolated context}}
|
|
#endif
|
|
}
|
|
}
|
|
|
|
// MARK: - BaseIsolatedDealloc
|
|
|
|
// If isolation was introduced in ObjC code, then we assume that ObjC code also
|
|
// overrides retain/release to make sure that dealloc is called on the correct
|
|
// executor in the first place.
|
|
|
|
// CHECK-LABEL: @objc @_inheritsConvenienceInitializers class ProbeImplicit_BaseIsolatedDealloc : BaseIsolatedDealloc {
|
|
// CHECK: @objc deinit
|
|
// CHECK: }
|
|
// CHECK-SYMB-NOT: ProbeImplicit_BaseIsolatedDealloc.__isolated_deallocating_deinit
|
|
// CHECK-SYMB-NOT: @$s4test33ProbeImplicit_BaseIsolatedDeallocCfZ
|
|
// CHECK-SYMB: // ProbeImplicit_BaseIsolatedDealloc.__deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: nonisolated
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test33ProbeImplicit_BaseIsolatedDeallocCfD : $@convention(method) (@owned ProbeImplicit_BaseIsolatedDealloc) -> () {
|
|
class ProbeImplicit_BaseIsolatedDealloc: BaseIsolatedDealloc {}
|
|
|
|
#if !SILGEN
|
|
class ProbeDefault_BaseIsolatedDealloc: BaseIsolatedDealloc {
|
|
deinit { // expected-error {{nonisolated deinitializer 'deinit' has different actor isolation from main actor-isolated overridden declaration}}
|
|
isolatedFunc() // expected-error {{call to main actor-isolated global function 'isolatedFunc()' in a synchronous nonisolated context}}
|
|
}
|
|
}
|
|
#endif
|
|
|
|
#if !SILGEN
|
|
class ProbeIsolated_BaseIsolatedDealloc: BaseIsolatedDealloc {
|
|
isolated deinit { //expected-error {{deinit is marked isolated, but containing class 'ProbeIsolated_BaseIsolatedDealloc' is not isolated to an actor}}
|
|
isolatedFunc() // ok, isolation of the overridden deinit is used as a recovery strategy
|
|
}
|
|
}
|
|
#endif
|
|
|
|
// CHECK-LABEL: @objc @_inheritsConvenienceInitializers class ProbeGlobal_BaseIsolatedDealloc : BaseIsolatedDealloc {
|
|
// CHECK: @objc @MainActor deinit
|
|
// CHECK: }
|
|
// CHECK-SYMB-NOT: ProbeGlobal_BaseIsolatedDealloc.__isolated_deallocating_deinit
|
|
// CHECK-SYMB-NOT: @$s4test31ProbeGlobal_BaseIsolatedDeallocCfZ
|
|
// CHECK-SYMB: // ProbeGlobal_BaseIsolatedDealloc.__deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: nonisolated
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test31ProbeGlobal_BaseIsolatedDeallocCfD : $@convention(method) (@owned ProbeGlobal_BaseIsolatedDealloc) -> () {
|
|
class ProbeGlobal_BaseIsolatedDealloc: BaseIsolatedDealloc {
|
|
#if !SILGEN
|
|
@AnotherActor deinit {} // expected-error {{global actor 'AnotherActor'-isolated deinitializer 'deinit' has different actor isolation from main actor-isolated overridden declaration}}
|
|
#else
|
|
@MainActor deinit {}
|
|
#endif
|
|
}
|
|
|
|
// MARK: - DerivedIsolatedDealloc
|
|
|
|
// CHECK-LABEL: @objc @_inheritsConvenienceInitializers class ProbeImplicit_DerivedIsolatedDealloc : DerivedIsolatedDealloc {
|
|
// Note: Type-checked as isolated, but no @MainActor attribute, because attributes are not added for overriding members
|
|
// CHECK: @objc deinit
|
|
// CHECK: }
|
|
// CHECK-SYMB-NOT: ProbeImplicit_DerivedIsolatedDealloc.__isolated_deallocating_deinit
|
|
// CHECK-SYMB-NOT: @$s4test36ProbeImplicit_DerivedIsolatedDeallocCfZ
|
|
// CHECK-SYMB: // ProbeImplicit_DerivedIsolatedDealloc.__deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: nonisolated
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test36ProbeImplicit_DerivedIsolatedDeallocCfD : $@convention(method) (@owned ProbeImplicit_DerivedIsolatedDealloc) -> () {
|
|
class ProbeImplicit_DerivedIsolatedDealloc: DerivedIsolatedDealloc {}
|
|
|
|
#if !SILGEN
|
|
class ProbeDefault_DerivedIsolatedDealloc: DerivedIsolatedDealloc {
|
|
deinit { // expected-error {{nonisolated deinitializer 'deinit' has different actor isolation from main actor-isolated overridden declaration}}
|
|
isolatedFunc() // expected-error {{call to main actor-isolated global function 'isolatedFunc()' in a synchronous nonisolated context}}
|
|
}
|
|
}
|
|
#endif
|
|
|
|
#if !SILGEN
|
|
class ProbeIsolated_DerivedIsolatedDealloc: DerivedIsolatedDealloc {
|
|
isolated deinit { //expected-error {{deinit is marked isolated, but containing class 'ProbeIsolated_DerivedIsolatedDealloc' is not isolated to an actor}}
|
|
isolatedFunc() // ok, isolation of the overridden deinit is used as a recovery strategy
|
|
}
|
|
}
|
|
#endif
|
|
|
|
// CHECK-LABEL: @objc @_inheritsConvenienceInitializers class ProbeGlobal_DerivedIsolatedDealloc : DerivedIsolatedDealloc {
|
|
// CHECK: @objc @MainActor deinit
|
|
// CHECK: }
|
|
// CHECK-SYMB-NOT: ProbeGlobal_DerivedIsolatedDealloc.__isolated_deallocating_deinit
|
|
// CHECK-SYMB-NOT: @$s4test34ProbeGlobal_DerivedIsolatedDeallocCfZ
|
|
// CHECK-SYMB: // ProbeGlobal_DerivedIsolatedDealloc.__deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: nonisolated
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test34ProbeGlobal_DerivedIsolatedDeallocCfD : $@convention(method) (@owned ProbeGlobal_DerivedIsolatedDealloc) -> () {
|
|
class ProbeGlobal_DerivedIsolatedDealloc: DerivedIsolatedDealloc {
|
|
#if !SILGEN
|
|
@AnotherActor deinit {} // expected-error {{global actor 'AnotherActor'-isolated deinitializer 'deinit' has different actor isolation from main actor-isolated overridden declaration}}
|
|
#else
|
|
@MainActor deinit {}
|
|
#endif
|
|
}
|
|
|
|
// MARK: - Isolated dealloc outside main declaration
|
|
|
|
// CHECK-LABEL: @objc @_inheritsConvenienceInitializers class ProbeImplicit_DeallocIsolatedFromProtocol : DeallocIsolatedFromProtocol {
|
|
// CHECK: @objc deinit
|
|
// CHECK: }
|
|
// CHECK-SYMB-NOT: ProbeImplicit_DeallocIsolatedFromProtocol.__isolated_deallocating_deinit
|
|
// CHECK-SYMB-NOT: @$s4test41ProbeImplicit_DeallocIsolatedFromProtocolCfZ
|
|
// CHECK-SYMB: // ProbeImplicit_DeallocIsolatedFromProtocol.__deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: nonisolated
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test41ProbeImplicit_DeallocIsolatedFromProtocolCfD : $@convention(method) (@owned ProbeImplicit_DeallocIsolatedFromProtocol) -> () {
|
|
class ProbeImplicit_DeallocIsolatedFromProtocol: DeallocIsolatedFromProtocol {}
|
|
|
|
class ProbeGlobal_DeallocIsolatedFromProtocol: DeallocIsolatedFromProtocol {
|
|
@AnotherActor deinit {} // ok, base is not isolated
|
|
}
|
|
|
|
// CHECK-LABEL: @objc @_inheritsConvenienceInitializers class ProbeImplicit_DeallocIsolatedFromCategory : DeallocIsolatedFromCategory {
|
|
// CHECK: @objc deinit
|
|
// CHECK: }
|
|
// CHECK-SYMB-NOT: ProbeImplicit_DeallocIsolatedFromCategory.__isolated_deallocating_deinit
|
|
// CHECK-SYMB-NOT: @$s4test41ProbeImplicit_DeallocIsolatedFromCategoryCfZ
|
|
// CHECK-SYMB: // ProbeImplicit_DeallocIsolatedFromCategory.__deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: nonisolated
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test41ProbeImplicit_DeallocIsolatedFromCategoryCfD : $@convention(method) (@owned ProbeImplicit_DeallocIsolatedFromCategory) -> () {
|
|
class ProbeImplicit_DeallocIsolatedFromCategory: DeallocIsolatedFromCategory {}
|
|
|
|
class ProbeGlobal_DeallocIsolatedFromCategory: DeallocIsolatedFromCategory {
|
|
@AnotherActor deinit {} // ok, base is not isolated
|
|
}
|
|
|
|
// CHECK-LABEL: @objc @_inheritsConvenienceInitializers class ProbeImplicit_DeallocIsolatedFromExtension : DeallocIsolatedFromExtension {
|
|
// CHECK: @objc deinit
|
|
// CHECK: }
|
|
// CHECK-SYMB-NOT: ProbeImplicit_DeallocIsolatedFromExtension.__isolated_deallocating_deinit
|
|
// CHECK-SYMB-NOT: @$s4test42ProbeImplicit_DeallocIsolatedFromExtensionCfZ
|
|
// CHECK-SYMB: // ProbeImplicit_DeallocIsolatedFromExtension.__deallocating_deinit
|
|
// CHECK-SYMB-NEXT: // Isolation: nonisolated
|
|
// CHECK-SYMB-NEXT: sil hidden [ossa] @$s4test42ProbeImplicit_DeallocIsolatedFromExtensionCfD : $@convention(method) (@owned ProbeImplicit_DeallocIsolatedFromExtension) -> () {
|
|
class ProbeImplicit_DeallocIsolatedFromExtension: DeallocIsolatedFromExtension {}
|
|
|
|
class ProbeGlobal_DeallocIsolatedFromExtension: DeallocIsolatedFromExtension {
|
|
@AnotherActor deinit {} // ok, base is not isolated
|
|
}
|