-
Notifications
You must be signed in to change notification settings - Fork 5.7k
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
8290966: G1: Record number of PLAB filled and number of direct allocations #9626
8290966: G1: Record number of PLAB filled and number of direct allocations #9626
Conversation
👋 Welcome back tschatzl! A progress list of the required criteria for merging this PR into |
Webrevs
|
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.
Lgtm.
@tschatzl 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 64 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 |
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. Just a couple whitespace comments.
_allocated(allocated), _wasted(wasted), _undo_wasted(undo_wasted), _unused(unused), | ||
_used(used), _region_end_waste(region_end_waste), _regions_filled(regions_filled), | ||
_direct_allocated(direct_allocated), _failure_used(failure_used), _failure_waste(failure_waste) | ||
_num_plab_filled(num_plab_filled), _direct_allocated(direct_allocated), _num_direct_allocated(num_direct_allocated), |
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.
Maybe another line break in this line, to keep it's length a bit more reasonable?
Thanks @kimbarrett @sangheon for your reviews |
Going to push as commit 30205bb.
Your commit was automatically rebased without conflicts. |
Hi all,
for evaluation in JDK-8288966 I added statistics output that show the amount of PLAB fills and direct allocations; I think this is useful for similar evaluations in the future, so I kept and split it out from that change. Adds these values to the existing JFR event too.
Testing: PLAB related tests, gha
Thanks,
Thomas
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk pull/9626/head:pull/9626
$ git checkout pull/9626
Update a local copy of the PR:
$ git checkout pull/9626
$ git pull https://git.openjdk.org/jdk pull/9626/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 9626
View PR using the GUI difftool:
$ git pr show -t 9626
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/9626.diff