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
8271008: appcds/*/MethodHandlesAsCollectorTest.java tests time out because of excessive GC (CodeCache GC Threshold) in loom #7514
Conversation
|
…cause of excessive GC (CodeCache GC Threshold) in loom
Webrevs
|
/label add hotspot |
@coleenp |
/label remove hotspot-compiler |
@coleenp |
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. Thanks for fixing this.
src/hotspot/share/code/codeCache.cpp
Outdated
// Returns the reverse free ratio. E.g., if 25% (1/4) of the code heap | ||
// is free, reverse_free_ratio() returns 4. | ||
// Since code heap for each type of code blobs falls forward to the next | ||
// type of code heap, return the reverse free ratio for the entire | ||
// code heap. |
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.
// Returns the reverse free ratio. E.g., if 25% (1/4) of the code heap | |
// is free, reverse_free_ratio() returns 4. | |
// Since code heap for each type of code blobs falls forward to the next | |
// type of code heap, return the reverse free ratio for the entire | |
// code heap. | |
// Returns the reverse free ratio. E.g., if 25% (1/4) of the code cache | |
// is free, reverse_free_ratio() returns 4. | |
// Since code heap for each type of code blobs falls forward to the next | |
// type of code heap, return the reverse free ratio for the entire | |
// code cache. |
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.
Fixed.
@coleenp This change now passes all automated pre-integration checks. 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 23 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.
|
Thanks, Tobias. |
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.
Thanks Erik! |
Going to push as commit 022d807.
Your commit was automatically rebased without conflicts. |
In Loom there's a full heap walk when the sweeper is triggered. Many of the triggers in this test case are for the adapters created by the test, which are not deallocated. Since there is a fall back to other code cache heap areas for NonNMethod and for NMethodProfiled, made the function CodeCache::reverse_free_ratio() examine the total code cache available rather than the specific area that it is allocating into. The compilation policy also uses this to increase the C1 compile threshold so also uses the entire free code cache size to calculate new threshold (ask @TobiHartmann about this). Thanks to Tobias for the discussion for this fix.
Tested with tier1-4.
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.java.net/jdk pull/7514/head:pull/7514
$ git checkout pull/7514
Update a local copy of the PR:
$ git checkout pull/7514
$ git pull https://git.openjdk.java.net/jdk pull/7514/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 7514
View PR using the GUI difftool:
$ git pr show -t 7514
Using diff file
Download this PR as a diff file:
https://git.openjdk.java.net/jdk/pull/7514.diff