-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
8265491: Math Signum optimization for x86 #3581
Conversation
Signed-off-by: Marcus G K Williams <marcus.williams@intel.com>
👋 Welcome back mgkwill! A progress list of the required criteria for merging this PR into |
/label hotspot-compiler |
Webrevs
|
@mgkwill |
@mgkwill, your newly added benchmark has 4 micro worklets, please publish the results for all of them. |
@jatin-bhateja Certainly. Omission was an oversight. I've updated the description of the pull request with overhead results. |
test/hotspot/jtreg/compiler/intrinsics/math/TestSignumIntrinsic.java
Outdated
Show resolved
Hide resolved
Signed-off-by: Marcus G K Williams <marcus.williams@intel.com>
test/hotspot/jtreg/compiler/intrinsics/math/TestSignumIntrinsic.java
Outdated
Show resolved
Hide resolved
Signed-off-by: Marcus G K Williams <marcus.williams@intel.com>
Signed-off-by: Marcus G K Williams <marcus.williams@intel.com>
Signed-off-by: Marcus G K Williams <marcus.williams@intel.com>
Signed-off-by: Marcus G K Williams <marcus.williams@intel.com>
Signed-off-by: Marcus G K Williams <marcus.williams@intel.com>
Updated benchmarks from patch updated from comments of @DamonFool:
Updated Summary. |
Signed-off-by: Marcus G K Williams <marcus.williams@intel.com>
Signed-off-by: Marcus G K Williams <marcus.williams@intel.com>
src/hotspot/cpu/aarch64/aarch64.ad:
Also moved matcher checks in src/hotspot/cpu/x86/x86.ad outside of
Thanks for the review @DamonFool @dholmes-ora @jatin-bhateja. Updated Performance Numbers are essentially unchanged:
|
Looks good to me. Please make sure the copyright year has been updated (TestSignumIntrinsic.java?) and all the imports are actually needed (import org.openjdk.jmh.annotations.Setup; ?). |
Signed-off-by: Marcus G K Williams <marcus.williams@intel.com>
Signed-off-by: Marcus G K Williams <marcus.williams@intel.com>
Thanks @DamonFool. Updated with your suggestions. |
Signed-off-by: Marcus G K Williams <marcus.williams@intel.com>
Thanks for the review @sviswa7. I've updated to I've added comments as suggested. |
Signed-off-by: Marcus G K Williams <marcus.williams@intel.com>
@mgkwill I was wrong. It looks like the CodeEntryAlignment is set to 16 bytes i.e. 128 bits as minimum (globals_x86.hpp). So please continue to use the vector_float_sign_flip and vector_double_sign_flip masks. Xorps and xorpd are vector instructions and we should use the vector masks here. |
Signed-off-by: Marcus G K Williams <marcus.williams@intel.com>
Thanks @sviswa7. I've reverted to |
Looks good to me. Thanks. |
Signed-off-by: Marcus G K Williams <marcus.williams@intel.com>
Thanks for your review @jatin-bhateja. I've implemented your suggested changes. |
Thanks Marcus! |
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!
@mgkwill 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 256 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. As you do not have Committer status in this project an existing Committer must agree to sponsor your change. Possible candidates are the reviewers of this PR (@DamonFool, @jatin-bhateja, @neliasso) but any other Committer may sponsor as well. ➡️ To flag this PR as ready for integration with the above commit message, type |
@neliasso Thanks a lot for the review. |
/integrate |
/sponsor |
@sviswa7 @mgkwill Since your change was applied there have been 256 commits pushed to the
Your commit was automatically rebased without conflicts. Pushed as commit ff65920. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
x86 Math.Signum() uses two floating point compares and a copy sign operation involving data movement to gpr and XMM.
We can optimize to one floating point compare and sign computation in XMM. We observe ~25% performance improvement with this optimization.
Base:
Optimized:
signum intrinsic patch
Signed-off-by: Marcus G K Williams marcus.williams@intel.com
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.java.net/jdk pull/3581/head:pull/3581
$ git checkout pull/3581
Update a local copy of the PR:
$ git checkout pull/3581
$ git pull https://git.openjdk.java.net/jdk pull/3581/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 3581
View PR using the GUI difftool:
$ git pr show -t 3581
Using diff file
Download this PR as a diff file:
https://git.openjdk.java.net/jdk/pull/3581.diff