-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
8325613: CTW: Stale method cleanup requires GC after Sweeper removal #18249
Conversation
👋 Welcome back shade! A progress list of the required criteria for merging this PR into |
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 reasonable to me.
@shipilev 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 72 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 |
Thanks! Any additional reviews, maybe @TobiHartmann or @chhagedorn ? |
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 reasonable to me, too.
All right, thanks! I checked that both fastdebug and release binaries work well with java.base tests too. It also improves large CTW run times significantly. We are able to CTW 130K JARs in 24 hours now, about 3x improvement. /integrate |
Going to push as commit 1281e18.
Your commit was automatically rebased without conflicts. |
See more details in the bug. There is a double-whammy from two issues: a) Sweeper was removed, and now the cleanup work is done during GC, which does not really happen as CTW barely allocates anything; b) CTW calls for explicit deoptimization often, at which point CTW threads get mostly busy at spin-waiting-yielding for deopt epoch to move (that is why you see lots of
sys%
). (a) leads to stale methods buildup, which makes (b) progressively worse.This PR adds explicit GC calls to CTW runner. Since CTW allocates and retains a little, those GCs are quite fast. I chose the threshold by running some CTW tests on my machines. I think we are pretty flat in 25..100 region, so I chose the higher threshold for additional safety.
This patch improves both CPU and wall times for CTW testing dramatically, as you can see from the logs below. It still does not recuperate completely to JDK 17 levels, but it least it is not regressing as badly.
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/18249/head:pull/18249
$ git checkout pull/18249
Update a local copy of the PR:
$ git checkout pull/18249
$ git pull https://git.openjdk.org/jdk.git pull/18249/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 18249
View PR using the GUI difftool:
$ git pr show -t 18249
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/18249.diff
Webrev
Link to Webrev Comment