Skip to content

Conversation

@jatin-bhateja
Copy link
Member

@jatin-bhateja jatin-bhateja commented Jun 12, 2025

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

  • Change must be properly reviewed (1 review required, with at least 1 Reviewer)
  • Change must not contain extraneous whitespace
  • Commit message must refer to an issue

Issue

  • JDK-8359327: Incorrect AVX3Threshold results into code buffer overflows on APX targets (Bug - P3)(⚠️ The fixVersion in this issue is [25] but the fixVersion in .jcheck/conf is 26, a new backport will be created when this pr is integrated.)

Reviewers

Reviewing

Using git

Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/25780/head:pull/25780
$ git checkout pull/25780

Update a local copy of the PR:
$ git checkout pull/25780
$ git pull https://git.openjdk.org/jdk.git pull/25780/head

Using Skara CLI tools

Checkout this PR locally:
$ git pr checkout 25780

View PR using the GUI difftool:
$ git pr show -t 25780

Using diff file

Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/25780.diff

Using Webrev

Link to Webrev Comment

@bridgekeeper
Copy link

bridgekeeper bot commented Jun 12, 2025

👋 Welcome back jbhateja! A progress list of the required criteria for merging this PR into master will be added to the body of your pull request. There are additional pull request commands available for use with this pull request.

@jatin-bhateja
Copy link
Member Author

/label add hotspot-compiler-dev

@openjdk
Copy link

openjdk bot commented Jun 12, 2025

@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:

8359327: Incorrect AVX3Threshold results into code buffer overflows on APX targets

Reviewed-by: sviswanathan

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 master branch:

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 master branch, type /integrate in a new comment.

@openjdk openjdk bot added rfr Pull request is ready for review hotspot-compiler hotspot-compiler-dev@openjdk.org labels Jun 12, 2025
@openjdk
Copy link

openjdk bot commented Jun 12, 2025

@jatin-bhateja
The hotspot-compiler label was successfully added.

@mlbridge
Copy link

mlbridge bot commented Jun 12, 2025

Webrevs

Copy link

@sviswa7 sviswa7 left a 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.

@openjdk openjdk bot added the ready Pull request is ready to be integrated label Jun 12, 2025
@jatin-bhateja
Copy link
Member Author

jatin-bhateja commented Jun 13, 2025

-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:-
[6.165s][info][stubs] StubRoutines (finalstubs) [0x00007fc74aac46e0, 0x00007fc74aad0f58] used: 31850, free: 19470

After Patch:-
[7.273s][info][stubs] StubRoutines (finalstubs) [0x00007fbf3308eee0, 0x00007fbf3309bf28] used: 26186, free: 27134

The above analysis is done using SDE version 9.57 (internally available)

@jatin-bhateja
Copy link
Member Author

/integrate

@openjdk
Copy link

openjdk bot commented Jun 13, 2025

Going to push as commit e7f63ba.
Since your change was applied there have been 23 commits pushed to the master branch:

Your commit was automatically rebased without conflicts.

@openjdk openjdk bot added the integrated Pull request has been integrated label Jun 13, 2025
@openjdk openjdk bot closed this Jun 13, 2025
@openjdk openjdk bot removed ready Pull request is ready to be integrated rfr Pull request is ready for review labels Jun 13, 2025
@openjdk
Copy link

openjdk bot commented Jun 13, 2025

@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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

hotspot-compiler hotspot-compiler-dev@openjdk.org integrated Pull request has been integrated

Development

Successfully merging this pull request may close these issues.

2 participants