-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Refactoring in AssertrionDesc #113440
Refactoring in AssertrionDesc #113440
Conversation
Tagging subscribers to this area: @JulieLeeMSFT, @jakobbotsch |
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.
Copilot reviewed 6 out of 6 changed files in this pull request and generated no comments.
/azp list |
This comment was marked as resolved.
This comment was marked as resolved.
/azp run runtime-coreclr outerloop, runtime-coreclr jitstress, runtime-coreclr pgo, runtime-coreclr libraries-pgo, Fuzzlyn |
Azure Pipelines successfully started running 5 pipeline(s). |
PTAL @AndyAyersMS @dotnet/jit-contrib (see desc) Outerloop failures aren't related |
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.
Are the diffs mainly from the extra isUnsigned handling?
I always prefer isolating refactoring from changing functionality so there is more confidence the refactoring was faithful. But will leave it up to you to decide if that's more trouble here than it is worth.
I think moving assertion creation closer to the point where we have the facts makes sense, I never liked how optCreateAssertionn
seemingly has to re-discover what kind of assertion we're supposed to be making.
Unfortunately, I can't make it zero-diff, but let me file a separate PR where I'll do the changes with diffs and keep this one zero-diff.
Yep, this is one of the goals, not yet there 🙂 |
246711b
to
a60403d
Compare
@AndyAyersMS could you please take a look again? I've removed some changes and made it 0 diff. Will refactor the creation of assert separately. |
ping @AndyAyersMS |
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.
LGTM, just curious if we're spuriously calling into fgAssertionGen
somewhere.
@@ -11839,21 +11839,21 @@ void Compiler::fgAssertionGen(GenTree* tree) | |||
// | |||
auto addImpliedAssertions = [=](AssertionIndex index, ASSERT_TP& assertions) { | |||
AssertionDsc* const assertion = optGetAssertion(index); | |||
if ((assertion->assertionKind == OAK_EQUAL) && (assertion->op1.kind == O1K_LCLVAR) && | |||
if (optLocalAssertionProp && (assertion->assertionKind == OAK_EQUAL) && (assertion->op1.kind == O1K_LCLVAR) && |
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.
How are we calling this outside of global morph?
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.
@AndyAyersMS we don't, I forgot to remove this redundant check when I was investigating a bug 🙂 I'll push a commit to remove it in #113920 clean up PR to avoid spinning CI again
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.
Pushed: 97449fb
This PR does a small refactoring in assertprop.cpp:
SsaVar
(with itsssaNum
) is removed fromAssertrionDesc
. We used to use it forO2K_LCLVAR_COPY
in Global AP assertions. Now thatO2K_LCLVAR_COPY
is Local AP only, we don't need to record the SSA num. In Global AP we rely purely on VNs.SUBRANGE
assertions are now Local AP only (since they don't generate diffs for Global AP).No diffs