Skip to content
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

8310031: Parallel: Implement better work distribution for large object arrays in old gen #14846

Closed
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
53c7b66
8310031: Parallel: Implement better work distribution for large objec…
reinrich Jun 20, 2023
0eb924e
Make sure to skip stripes where no object starts
reinrich Jul 26, 2023
5b802ed
Limit effect of previous commit to large array handling
reinrich Jul 27, 2023
d7ab2b0
Apply Thomas' suggestions
reinrich Sep 11, 2023
67edf28
Merge branch 'master'
reinrich Sep 11, 2023
d535a10
objArrayOopDesc::oop_oop_iterate_bounded must be defined in objArrayO…
reinrich Sep 12, 2023
9a2b230
100 stripes per active worker thread
reinrich Sep 14, 2023
3e6c1b7
Scan large array stripe from first dirty card to stripe end
reinrich Sep 18, 2023
71a3c44
Revert back to precise scanning of large object arrays
reinrich Sep 19, 2023
bba1d2a
find_first_clean_card: avoid expensive start array queries on long ar…
reinrich Sep 20, 2023
ac6bddb
Avoid expensive start array queries on long arrays
reinrich Sep 20, 2023
86747ff
Feedback Thomas
reinrich Sep 22, 2023
268e208
Small clean-ups
reinrich Sep 25, 2023
6033358
Limit stripe size to 1m with at least 8 threads
reinrich Sep 25, 2023
d4b5fd4
Do all large array scanning in separate method
reinrich Sep 22, 2023
a4d6af9
First card of large array should be cleared if dirty
reinrich Sep 25, 2023
d75bd60
Eliminate special case for scanning the large array end
reinrich Sep 26, 2023
50737dd
Remove stripe size adaptations and cache potentially expensive start …
reinrich Sep 27, 2023
780a03d
Reset to master
reinrich Sep 28, 2023
817b164
Split work strictly at stripe boundaries
reinrich Oct 5, 2023
22fe849
Parallel copying of imprecise marks to stripes
reinrich Oct 5, 2023
78a08cf
Overlap scavenge with pre-scavenge
reinrich Oct 6, 2023
d845e65
Missed acquire semantics
reinrich Oct 6, 2023
8b13c83
Cleanup
reinrich Oct 9, 2023
272ab97
find_first_clean_card: return end_card if final object extends beyond…
reinrich Oct 6, 2023
8b544d8
Shadow table per stripe
reinrich Oct 9, 2023
8b22c28
Cleanup
reinrich Oct 11, 2023
e212413
Don't overlap card table processing with scavenging for simplicity
reinrich Oct 11, 2023
1462bbf
Simplification suggested by Albert
reinrich Oct 11, 2023
c9e040f
Make sure to scan obj reaching in just once
reinrich Oct 12, 2023
443f482
Re-cleanup (was accidentally reverted)
reinrich Oct 12, 2023
381e001
Merge branch 'master'
reinrich Oct 12, 2023
d12e96e
Feedback Albert
reinrich Oct 12, 2023
607f0c2
Remove obsolete comment
reinrich Oct 13, 2023
bbb128e
Merge branch 'master'
reinrich Oct 19, 2023
f796551
Use better name: _preprocessing_active_workers
reinrich Oct 19, 2023
26f0636
preprocess_card_table_parallel should be private
reinrich Oct 19, 2023
7843a02
Small cleanup changes suggested by Thomas.
reinrich Oct 19, 2023
bd853c4
More small changes Thomas suggested (line-breaks needed)
reinrich Oct 19, 2023
fd5d072
Review Thomas
reinrich Oct 19, 2023
7c20c9f
Cleanup/improve comments
reinrich Oct 20, 2023
67416b2
Accepting Thomas' (smaller) suggestions
reinrich Oct 20, 2023
a443042
Review Thomas (PSStripeShadowCardTable)
reinrich Oct 20, 2023
71b0848
Forgot to move comment to PSStripeShadowCardTable.
reinrich Oct 20, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/hotspot/share/gc/parallel/psCardTable.cpp
Original file line number Diff line number Diff line change
@@ -138,6 +138,9 @@ void PSCardTable::pre_scavenge(HeapWord* old_gen_bottom, uint active_workers) {
_preprocessing_active_workers = active_workers;
}

// The "shadow" table is a copy of the card table entries of the current stripe.
// It is used to separate card reading, clearing and redirtying which reduces
// complexity significantly.
class PSStripeShadowCardTable {
typedef CardTable::CardValue CardValue;

@@ -211,9 +214,6 @@ void PSCardTable::process_range(Func&& object_start,
assert(start < end, "precondition");
assert(is_card_aligned(start), "precondition");

// The "shadow" table is a copy of the card table entries of the current stripe.
// It is used to separate card reading, clearing and redirtying which reduces
// complexity significantly.
PSStripeShadowCardTable sct(this, start, end);

// end might not be card-aligned.