-
Notifications
You must be signed in to change notification settings - Fork 10.5k
[Concurrency] Adopt stable keyword consuming instead of __owned #65571
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
test/Concurrency/Runtime/custom_executors_sdk_with_consuming_param_but_impl_owned.swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk-concurrency-consuming-job-param) -emit-sil -parse-as-library %s -verify | ||
|
||
// REQUIRES: concurrency | ||
// REQUIRES: libdispatch | ||
|
||
// rdar://106849189 move-only types should be supported in freestanding mode | ||
// UNSUPPORTED: freestanding | ||
|
||
// UNSUPPORTED: back_deployment_runtime | ||
// REQUIRES: concurrency_runtime | ||
|
||
import _Concurrency | ||
|
||
final class FakeExecutor: SerialExecutor { | ||
// implements the __owned requirement in "old" SDK: | ||
// func enqueue(_ job: __owned Job) | ||
func enqueue(_ job: __owned ExecutorJob) {} | ||
} |
18 changes: 18 additions & 0 deletions
18
test/Concurrency/Runtime/custom_executors_sdk_with_owned_param_but_impl_consuming.swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk-concurrency-owned-job-param) -emit-sil -parse-as-library %s -verify | ||
|
||
// REQUIRES: concurrency | ||
// REQUIRES: libdispatch | ||
|
||
// rdar://106849189 move-only types should be supported in freestanding mode | ||
// UNSUPPORTED: freestanding | ||
|
||
// UNSUPPORTED: back_deployment_runtime | ||
// REQUIRES: concurrency_runtime | ||
|
||
import _Concurrency | ||
|
||
final class FakeExecutor: SerialExecutor { | ||
// implements the __owned requirement in "old" SDK: | ||
// func enqueue(_ job: __owned Job) | ||
func enqueue(_ job: consuming ExecutorJob) {} | ||
} |
2 changes: 1 addition & 1 deletion
2
...y/Runtime/custom_executors_tryDiagnoseExecutorConformance_with_sdk_missing_job_type.swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
...nputs/clang-importer-sdk/swift-modules-concurrency-consuming-job-param/_Concurrency.swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
|
||
// This simulates a pre-Swift5.9 concurrency library with an consuming declaration rather than __owned. | ||
// This allows us to confirm the compiler and sdk can be mismatched but we'll build correctly. | ||
|
||
@_moveOnly | ||
public struct ExecutorJob {} | ||
|
||
public protocol SerialExecutor { | ||
// pretend old SDK with `__owned` param rather than `` | ||
func enqueue(_ job: consuming ExecutorJob) | ||
} |
11 changes: 11 additions & 0 deletions
11
test/Inputs/clang-importer-sdk/swift-modules-concurrency-owned-job-param/_Concurrency.swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
|
||
// This simulates a pre-Swift5.9 concurrency library with an __owned declaration rather than consuming. | ||
// This allows us to confirm the compiler and sdk can be mismatched but we'll build correctly. | ||
|
||
@_moveOnly | ||
public struct ExecutorJob {} | ||
|
||
public protocol SerialExecutor { | ||
// pretend old SDK with `__owned` param rather than `` | ||
func enqueue(_ job: __owned ExecutorJob) | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.