-
Notifications
You must be signed in to change notification settings - Fork 6.2k
8359327: Incorrect AVX3Threshold results into code buffer overflows on APX targets #25780
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 jbhateja! A progress list of the required criteria for merging this PR into |
|
/label add hotspot-compiler-dev |
|
@jatin-bhateja 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 16 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 |
|
@jatin-bhateja |
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.
|
-Xlog:stubs output before and after this patch. Array copy stubs use a 256-bit vector for non-zero AVX3Threshold, which results in a bulkier stub sequence and shows up in the final stub size. Before Patch:- After Patch:- The above analysis is done using SDE version 9.57 (internally available) |
|
/integrate |
|
Going to push as commit e7f63ba.
Your commit was automatically rebased without conflicts. |
|
@jatin-bhateja Pushed as commit e7f63ba. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
As per the latest architecture-instruction-set-extensions-programming-reference manual version 57[1] , upcoming Diamond Rapids server with APX feature has a different CPU family ID (19) than prior Xeons (6).
Recently integrated EEVEX to REX2 demotion support with JDK-8351994 already handles this through a newly defined VM_Version::is_intel_server_family() API, but the existing AVX3Therehold setting is agnostic to this change, which causes code buffer overflows during arraycopy stubs generation.
Patch fixes this issue and also appropriately increments final code buffer size to prevent buffer overruns during stub generation with non zero AVX3Thereshold.
[1] https://www.intel.com/content/www/us/en/content-details/851355/intel-architecture-instruction-set-extensions-programming-reference.html?wapkw=intel%20architecture%20instruction%20set%20extensions%20programming%20reference
Progress
Issue
Reviewers
Reviewing
Using
gitCheckout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/25780/head:pull/25780$ git checkout pull/25780Update a local copy of the PR:
$ git checkout pull/25780$ git pull https://git.openjdk.org/jdk.git pull/25780/headUsing Skara CLI tools
Checkout this PR locally:
$ git pr checkout 25780View PR using the GUI difftool:
$ git pr show -t 25780Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/25780.diff
Using Webrev
Link to Webrev Comment