Ensure we preserve vn and produce a canonical tree#127689
Draft
tannergooding wants to merge 1 commit intodotnet:mainfrom
Draft
Ensure we preserve vn and produce a canonical tree#127689tannergooding wants to merge 1 commit intodotnet:mainfrom
tannergooding wants to merge 1 commit intodotnet:mainfrom
Conversation
Contributor
|
Tagging subscribers to this area: @JulieLeeMSFT, @jakobbotsch |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates CoreCLR JIT morphing to (1) preserve value numbering (VN) across a specific MOD -> AND strength-reduction used under ==/!= 0 comparisons, and (2) canonicalize a SUB -> ADD rewrite so the constant ends up as the second operand.
Changes:
- Preserve VN when rewriting
(a % c) ==/!= 0(power-of-2c) intoa & (c - 1) ==/!= 0. - Adjust the
cns1 - op2rewrite to produce((-op2) + cns1)(constant as operand 2). - Update the in-code comment to reflect the intended canonical tree form.
Comment on lines
7932
to
7934
| tree->AsOp()->gtOp2 = op2 = op1; | ||
| tree->AsOp()->gtOp1 = op1 = gtNewOperNode(GT_NEG, genActualType(op2->TypeGet()), op2); | ||
| fgMorphTreeDone(op2); |
| } | ||
|
|
||
| /* Check for "cns1 - op2" , we change it to "(cns1 + (-op2))" */ | ||
| /* Check for "cns1 - op2" , we change it to "((-op2) + cns1)" */ |
This was referenced May 3, 2026
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
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 ensures that we preserve the VN when morphing a particular
MOD->ANDpattern and ensures that a particularSUB->ADDpattern produces a "canonical" tree with the constant as the second operand.