forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 341
Swift-Rebranch: Update rebranch branch with changes made to apple/stable/20210628 #3088
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
Closed
etcwilde
wants to merge
12
commits into
swiftlang:swift/rebranch
from
etcwilde:ewilde/update-swift-rebranch
Closed
Swift-Rebranch: Update rebranch branch with changes made to apple/stable/20210628 #3088
etcwilde
wants to merge
12
commits into
swiftlang:swift/rebranch
from
etcwilde:ewilde/update-swift-rebranch
Conversation
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
The resume partial functions generated for swift suspend points will now use a Swift mangling suffix. Await resume partial functions will use the suffix 'TQ'[0-9]+'_' (e.g "...TQ0_") and suspend resume partial functions will use the suffix 'TY'[0-9]+'_' (e.g "...TY1_"). Reviewed By: nate_chandler Differential Revision: https://reviews.llvm.org/D104144
Code assumes that uses of single predecessor phis are not live accross suspend points. Cleanup any single predecessor phis preceeding the code making this assumption. rdar://76020301 Differential Revision: https://reviews.llvm.org/D105488
async resume functions Differential Revision: https://reviews.llvm.org/D104147
While upstreaming patches this code somehow was applied to the wrong switch statement. Differential Revision: https://reviews.llvm.org/D105504
…y_picks_mangling_single_pred_phis Cherry-pick coro async mangling and single predecessor phi fix
…th-invoke_80288883 arm64e: fix test for merged return path
…gine to allow diagnostics on target-unsupported options Reviewed By: aaron.ballman Differential Revision: https://reviews.llvm.org/D104729 (cherry picked from commit aaba371)
…ft-async-calling-conventions Swift-next Cherry-pick: Swift async calling conventions (cherry picked from commit 0fa8fb6)
[clang][PATCH][nfc] Refactor TargetInfo::adjust to pass DiagnosticsEn…
…ventions-for-20210628 Swift-rebranch Cherry-pick: Swift async calling conventions
@swift-ci please test |
edymtt
approved these changes
Jul 9, 2021
876f62d
to
ede4955
Compare
Pretty sure we don't need this anymore. That rebranch has come and gone. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This merges the changes that have been made to the
apple/stable/20210628
branch onto theswift/rebranch
branch to unblock work there. Specifically, we need the changes made to the coroutine splitting and the swiftasync calling conventions in clang.The ones currently blocking work there are: