-
Notifications
You must be signed in to change notification settings - Fork 6.2k
8288992: AArch64: CMN should be handled the same way as CMP #9246
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
Conversation
|
👋 Welcome back aph! A progress list of the required criteria for merging this PR into |
|
@theRealAph The following label will be automatically applied to this pull request:
When this pull request is ready to be reviewed, an "RFR" email will be sent to the corresponding mailing list. If you would like to change these labels, use the /label pull request command. |
|
|
||
| inline void cmnw(Register Rd, unsigned imm) { addsw(zr, Rd, imm); } | ||
| inline void cmn(Register Rd, unsigned imm) { adds(zr, Rd, imm); } | ||
| template<class T> |
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 do we need it to be a template?
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.
If we made it unsigned int, we'd risk a 64-bit signed value (from C2, for example) being truncated before being passed to addsw(Register Rd, Register Rn, uint64_t imm). As we now have a 64-bit-clean path through all this code, that would be a Bad Thing.
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.
Thank you for the explanation. I reread the code and found why I got confused.
MacroAssembler::cmnw call addsw which is defined by WRAP(addsw, true).
The macro expends to
void addsw(Register Rd, Register Rn, uint64_t imm) {
wrap_adds_subs_imm_insn(Rd, Rn, imm, &Assembler::addsw, &Assembler::addsw, true);
}
void addsw(Register Rd, Register Rn, Register Rm, enum shift_kind kind, unsigned shift = 0) {
Assembler::addsw(Rd, Rn, Rm, kind, shift);
}
void addsw(Register Rd, Register Rn, Register Rm) {
Assembler::addsw(Rd, Rn, Rm);
}
void addsw(Register Rd, Register Rn, Register Rm, ext::operation option, int amount = 0) {
Assembler::addsw(Rd, Rn, Rm, option, amount);
}
I've mixed it up with Assembler::addsw(Register Rd, Register Rn, unsigned imm):
#define INSN(NAME, decode, negated) \
void NAME(Register Rd, Register Rn, unsigned imm, unsigned shift) { \
starti; \
f(decode, 31, 29), f(0b10001, 28, 24), f(shift, 23, 22), f(imm, 21, 10); \
zrf(Rd, 0), srf(Rn, 5); \
} \
\
void NAME(Register Rd, Register Rn, unsigned imm) { \
starti; \
add_sub_immediate(current_insn, Rd, Rn, imm, decode, negated); \
}
INSN(addsw, 0b001, 0b011);
eastig
left a comment
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
adinn
left a comment
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.
Looks good.
|
@theRealAph This change now passes all automated pre-integration checks. ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details. After integration, the commit message for the final commit will be: You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been 195 new commits pushed to the
As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this automatic rebasing, please check the documentation for the /integrate command for further details. ➡️ To integrate this PR with the above commit message to the |
nick-arm
left a comment
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.
I tested tier1-3.
|
/integrate |
|
Going to push as commit cc2b792.
Your commit was automatically rebased without conflicts. |
|
@theRealAph Pushed as commit cc2b792. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
At present,
cmp(r8, -1)fails at compile time, butcmn(r8, -1)fails at runtime. We should fix cmn() to be the same ascmp().After this change, it's much less likely that we'll be surprised by immediate overflows in
cmn().Progress
Issue
Reviewers
Reviewing
Using
gitCheckout this PR locally:
$ git fetch https://git.openjdk.org/jdk pull/9246/head:pull/9246$ git checkout pull/9246Update a local copy of the PR:
$ git checkout pull/9246$ git pull https://git.openjdk.org/jdk pull/9246/headUsing Skara CLI tools
Checkout this PR locally:
$ git pr checkout 9246View PR using the GUI difftool:
$ git pr show -t 9246Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/9246.diff