-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Transition pipeline to NewPM #44365
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
Closed
Transition pipeline to NewPM #44365
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
vchuravy
commented
Mar 1, 2022
src/aotcompile.cpp
Outdated
LoopPassManager LPM; | ||
LPM.addPass(LICMPass()); | ||
LPM.addPass(JuliaLICMPass()); | ||
LPM.addPass(SimpleLoopUnswitchPass()); |
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.
@neboat mentioned that this is not equivalent to LoopUnswitch
2238add
to
09b72e6
Compare
43e9ee3
to
a0a1715
Compare
7e3f091
to
2c6397d
Compare
800104c
to
586b579
Compare
586b579
to
e47d586
Compare
8bb1b96
to
e8722f5
Compare
80d3af5
to
1c5858b
Compare
1b8a0ce
to
4119135
Compare
b4e44f0
to
52d2b50
Compare
52d2b50
to
35b4042
Compare
35b4042
to
06b2a73
Compare
This was referenced Jul 26, 2022
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.
Right now a fairly direct translation from our old pipeline
to the new PM. For one of the Loop sections I have choosen the new Loop specific passes
to avoid invalidation loop analysis to soon.
Still have to figure out how to properly use this in lieu of the old PM, since it seems
we need to keep the analysis managers around for the lifetime of the MPM.