-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
8343782: G1: Use one G1CardSet instance for multiple old gen regions #22015
Closed
+1,071
−762
Closed
Changes from 2 commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
4f56a90
revamp with retained regions added to groups
walulyai e6b1596
Merge remote-tracking branch 'upstream/master' into OldGenRemsetGroupsV1
walulyai 834c598
remove MarkingSkipEvents
walulyai 7a01f29
cleanup
walulyai e92e0be
Merge remote-tracking branch 'upstream/master' into OldGenRemsetGroupsV1
walulyai 87ee3ba
more cleanups
walulyai b489c1d
add logging
walulyai 9447a45
Merge remote-tracking branch 'upstream/master' into OldGenRemsetGroupsV1
walulyai 4aa4d6b
Thomas Review
walulyai c3d7dda
Update src/hotspot/share/gc/g1/g1CollectionSet.cpp
walulyai e901227
Update src/hotspot/share/gc/g1/g1CollectionSetCandidates.hpp
walulyai 4eec225
Update src/hotspot/share/gc/g1/g1_globals.hpp
walulyai fbff7d7
Update src/hotspot/share/gc/g1/g1CollectionSet.cpp
walulyai e687b0c
Albert Review
walulyai 28e92c7
Merge remote-tracking branch 'upstream/master' into OldGenRemsetGroupsV1
walulyai 65e9b21
Albert Review 2
walulyai e41c856
Print Group details in G1PrintRegionLivenessInfoClosure
walulyai f740a8e
Merge remote-tracking branch 'upstream/master' into OldGenRemsetGroupsV1
walulyai 554b7f5
use reset_table_scanner_for_groups
walulyai ee59e0b
Merge remote-tracking branch 'upstream/master' into OldGenRemsetGroupsV1
walulyai e573b82
Thomas Review
walulyai 633e3a2
assert
walulyai f0dce79
cleanup
walulyai ff5e9e0
fix space issues
walulyai 08f5d3f
fix type
walulyai 6194442
Merge remote-tracking branch 'upstream/master' into OldGenRemsetGroupsV1
walulyai 1a27e5d
Merge remote-tracking branch 'upstream/master' into OldGenRemsetGroupsV1
walulyai c4887ed
Albert review
walulyai 6a8039d
Merge remote-tracking branch 'upstream/master' into OldGenRemsetGroupsV1
walulyai 403aad4
Merge remote-tracking branch 'upstream/master' into OldGenRemsetGroupsV1
walulyai d50457e
Revise Print Rememberedset info
walulyai 5b43fdb
space
walulyai File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
This would skip retained groups, right? Is that intentional?
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.
Yes, retained regions are in "single region" groups, so all details should be added to the log when we call
do_heap_region
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.
I see; however, this would print the same gc_eff twice if young-gen contains a single region, right? Since this method is about cset-groups, I think it's more natural to visit all groups (regardless their size) here. With this PR, there is no gc_eff associated with individual region,
do_heap_region
can just skip gc_eff.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, creating another issue; now we don't print details on humongous regions. I ask we fix that in a follow up.