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.
[InstCombine] Replace an integer comparison of a
phi
node with multipleucmp
/scmp
operands and a constant withphi
of individual comparisons of original intrinsic's arguments #107769New 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
[InstCombine] Replace an integer comparison of a
phi
node with multipleucmp
/scmp
operands and a constant withphi
of individual comparisons of original intrinsic's arguments #107769Changes from all commits
6f7fa77
c3424e7
833e168
bbeded8
3a8efdf
a7a2930
b5fe2cc
45157a8
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Can you please also add negative tests where one scmp is not one-use or the icmp operand is not constant?
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.
The case you're proposing would still actually enable this optimization since we can still move the
icmp
into every incoming BB, and only one of thescmp
s will not be removed due to it being used more than once (in this case the BB withscmp
becomes what was previouslyNonSimplifiedBB
). I think it's better to add a negative test where bothscmp
s are not one-use, since in that case the optimization wouldn't be trivially profitable.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.
Any tests where only 1 of the incoming values is an
{s,u}cmp
intrin?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.
Added one