-
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
Add Conditional nodes and Arm64 code generation #71616
Conversation
Tagging subscribers to this area: @JulieLeeMSFT, @jakobbotsch Issue Detailsnull
|
This patch is a subset of #67894 with this patch nothing uses the conditional nodes, so the impact on code gen should be zero. |
For completion, this should also include changes to LSRA, right? |
Yes, it probably should. I'll add it in. For reference, these are the files I've got in the next patch after this:
|
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.
A question, but overall LGTM.
@@ -12980,7 +12986,7 @@ void emitter::emitDispInsHelp( | |||
cfi.immCFVal = (unsigned)emitGetInsSC(id); | |||
emitDispImm(cfi.imm5, true); | |||
emitDispFlags(cfi.flags); | |||
printf(","); | |||
printf(", "); |
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.
why this change?
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.
It gives us: ccmp w1, #10, z, lt
instead of ccmp w1, #10, z,lt
Thanks, that should be fine then. I will just rerun the failing job before merging. |
Next part is here: #71705 |
No description provided.