-
Notifications
You must be signed in to change notification settings - Fork 10.6k
Make PrunedLiveness ownership-friendly #61371
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
Show all changes
19 commits
Select commit
Hold shift + click to select a range
ca503b5
Redesign PrunedLiveness APIs, introducing live ranges
atrick 40e03ef
Update passes to use SSAPrunedLiveness or MultiDefPrunedLiveness
atrick 464e353
Fix ScopedAddressValue::computeLiveness.
atrick 4ef7f85
Fix findTransitiveUsesForAddress to handle incomplete scopes
atrick da4f1b9
Add InnerBorrowKind and AddressUseKind to PrunedLiveness API
atrick 619a638
ScopedAddressUtils - clarify the API used for transitive liveness.
atrick 376483d
Add a test case for generic specialization with borrow scope fixup.
atrick 11ef752
Add an OSSLifetimeAnalysis utility pass
atrick 6daebfd
Add ossa lifetime analysis tests
atrick 3b5e198
Add OSSA liveness tests for incomplete lifetimes
atrick 52b87c2
Temporarily disable a SILVerifier unit test.
atrick d98ccb0
Fix a comment merge error
atrick 2244875
Add a clarifying comment to updateTransitiveLiveness
atrick 6346bf5
Rename areUsesWithinTransitiveScope to ...ExtendedScope
atrick 6861b31
Make PrunedLiveness::computeSimple one-level transitive
atrick 9e0b615
Add a comment on liveness terminology
atrick 98b6e09
Add a transitive liveness test case
atrick 8f34d9c
Add a comment regarding an optimizer rule for self-loops.
atrick 755bce2
Remove complexity in findBoundariesInBlock
atrick 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for writing this down