-
Notifications
You must be signed in to change notification settings - Fork 6.2k
8316125: Windows call_stub unnecessarily saves xmm16-31 when UseAVX>=3 #15688
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 djelinski! A progress list of the required criteria for merging this PR into |
|
@djelinski 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. |
|
We've discussed this offline. Based on the calling convention described here: https://learn.microsoft.com/en-us/cpp/build/x64-calling-convention?view=msvc-170#callercallee-saved-registers these registers are 'volatile', i.e. not callee saved. That means that in this case, where we have a C function calling into Java, we don't need to save these registers for our C caller. The relevant parts behind that link copied here (part bolded by me for emphasis):
|
JornVernee
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.
/reviewers 2
|
@djelinski 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 255 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 |
|
@JornVernee |
|
This code originally came from the Intel folk: |
|
Jira suggests that the original submitter of this patch might no longer be around, but any insights from folks more familiar with the problem are welcome. For what it's worth:
Saving of XMM16-31 was added in the second webrev, the first one did not have them. As far as I can tell, the change was not discussed. |
|
I'm guessing this part of the change description covers it:
|
|
@jatin-bhateja or @sviswa7 can you look on this PR? |
|
@jatin-bhateja or @sviswa7 would one of you be able to find out why the current code saves the high XMM registers? |
sviswa7
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 to me as well.
|
/integrate |
|
Going to push as commit 384d2ea.
Your commit was automatically rebased without conflicts. |
|
@djelinski Pushed as commit 384d2ea. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
Please review this patch that removes saving of xmm16-xmm31 registers from Windows call_stub.
Windows ABI only mandates saving xmm6-xmm15, which we continue to do here.
No new tests. Mach5 tier1-5 builds and tests clean.
Progress
Issue
Reviewers
Reviewing
Using
gitCheckout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/15688/head:pull/15688$ git checkout pull/15688Update a local copy of the PR:
$ git checkout pull/15688$ git pull https://git.openjdk.org/jdk.git pull/15688/headUsing Skara CLI tools
Checkout this PR locally:
$ git pr checkout 15688View PR using the GUI difftool:
$ git pr show -t 15688Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/15688.diff
Webrev
Link to Webrev Comment