-
Notifications
You must be signed in to change notification settings - Fork 6.2k
8318817: Could not reserve enough space in CodeHeap 'profiled nmethods' (0K) #16373
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 dlunde! A progress list of the required criteria for merging this PR into |
Webrevs
|
tstuefe
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.
Some comments, otherwise good.
robcasloz
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, but should also be reviewed by someone with more experience in this area. @tstuefe, since you already looked at this, would you be willing to review?
|
@dlunde 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 9 new commits pushed to the
Please see this link for an up-to-date comparison between the source branch of this pull request and the 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 (@tstuefe, @robcasloz) but any other Committer may sponsor as well. ➡️ To flag this PR as ready for integration with the above commit message, type |
robcasloz
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.
Thanks for addressing my suggestion!
tstuefe
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.
Okay. Please add the comment as indicated; I don't need another review.
..Thomas
|
All comments addressed now and I've also rerun tier1-tier5 tests. |
|
/integrate |
|
/sponsor |
|
Going to push as commit 7df73a2.
Your commit was automatically rebased without conflicts. |
|
@robcasloz @dlunde Pushed as commit 7df73a2. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
Thanks for your help and review @tstuefe! |
This changeset fixes an issue where certain large values of
-XX:NMethodSizeLimitcould cause code heap initialization to fail with the error messageTwo components in
CodeCache::initialize_heapsmay cause the error:min_size = os::vm_page_size();) for profiled and non-profiled code heaps is sometimes not large enough. Specifically, whenprofiled_sizeand/ornon_profiled_sizeare set tomin_sizeandalignment > os::vm_page_size(), thealign_downbelow (fromCodeCache::initialize_heaps) sets the size to 0.cache_size > non_nmethod_size > cache_size - 2 * min_size.This changeset
min_size >= alignment, andThe changeset includes new tests that exercise the above, also in combination with
-XX:+UseTransparentHugePageson Linux to test the case whenos::can_execute_large_page_memory()is true (which can affectalignment).Testing (on all Oracle-supported platforms)
tier1,tier2,tier3,tier4,tier5Progress
Issue
Reviewers
Reviewing
Using
gitCheckout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/16373/head:pull/16373$ git checkout pull/16373Update a local copy of the PR:
$ git checkout pull/16373$ git pull https://git.openjdk.org/jdk.git pull/16373/headUsing Skara CLI tools
Checkout this PR locally:
$ git pr checkout 16373View PR using the GUI difftool:
$ git pr show -t 16373Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/16373.diff
Webrev
Link to Webrev Comment