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

Pack old evacuations tightly #145

Closed
wants to merge 38 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
eb6f4f4
Revert "Mutator may fail to evacuate"
kdnilsen Mar 9, 2022
357d0a8
Merge upstream into shenandoah
earthling-amzn Mar 17, 2022
0b0de8a
Merge upstream into shenandoah
earthling-amzn Mar 21, 2022
1780cb2
Merge upstream into shenandoah
earthling-amzn Apr 5, 2022
bf45e15
Merge upstream into shenandoah
earthling-amzn Apr 7, 2022
2fdc4a7
Merge branch 'shenandoah-master' into shenandoah
earthling-amzn Apr 12, 2022
8783e88
Merge branch 'shenandoah-master' into shenandoah
earthling-amzn Apr 18, 2022
1aaf9d4
Merge branch 'shenandoah-master' into shenandoah
earthling-amzn Apr 20, 2022
1641da9
Only clear requested gc cause when it is handled
Apr 22, 2022
6fa0626
Merge branch 'shenandoah-master' into shenandoah
earthling-amzn Apr 25, 2022
3bc4ebf
Merge branch 'shenandoah-master' into shenandoah
earthling-amzn Apr 29, 2022
4404d3c
Merge branch 'shenandoah-master' into shenandoah
earthling-amzn May 4, 2022
0ac7a98
Adjust PLAB use to pack more tightly into old-gen memory
kdnilsen May 12, 2022
5e90289
Make promotion budget more generous
kdnilsen May 18, 2022
d2c01fa
Performance improvements for object promotion
kdnilsen May 20, 2022
c29221d
Fix full gc
kdnilsen May 31, 2022
ea3555a
Improve budgeting of aged young heap regions
kdnilsen May 20, 2022
06a9caa
Fix assertion comparison
kdnilsen Jun 2, 2022
627392c
Filter out invalid pointers picked up by old gen SATB
May 12, 2022
a800ee2
Start young collect instead of old if mixed evacuations are pending
May 18, 2022
2e28ca4
Fix error in calculation of future TLAB size
kdnilsen Jun 16, 2022
69797df
Insert instrumentation for further testing
kdnilsen Jun 2, 2022
b97a20d
Do not make_regular_bypass without heap lock
kdnilsen Jun 3, 2022
611ecb3
Add log messages to degen and full GC
kdnilsen Jun 6, 2022
de9e20a
Log messages for old and young only if is generational
kdnilsen Jun 6, 2022
c14b831
Remove affiliation overwrite side effect from make_regular_bypass
kdnilsen Jun 9, 2022
cdb761a
Be more careful about changing affiliation to YOUNG
kdnilsen Jun 11, 2022
4edd31b
Fix merge conflict problems
kdnilsen Jun 16, 2022
0f6ef75
Handle promotion failure specially for unnamed threads
kdnilsen Jun 17, 2022
f5448c6
Fix unbalanced braces
kdnilsen Jun 17, 2022
1c6e275
Fixup mismatched else clause
kdnilsen Jun 19, 2022
7beb9d4
Fix response to PLAB promotion failures
kdnilsen Jun 21, 2022
b8038ce
Remove newline from inside log message
kdnilsen Jun 21, 2022
3eab5d8
Improvements to comments and logging
kdnilsen Jun 22, 2022
ad5aa87
Remove instrumentation
kdnilsen Jun 23, 2022
0d8c092
Merge remote-tracking branch 'GitFarmBranch/pack-old-evacuations-tigh…
kdnilsen Jun 24, 2022
d5263dc
Fix whitespace
kdnilsen Jun 24, 2022
0741d70
Improvements requested by reviewer
kdnilsen Jun 24, 2022
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
Original file line number Diff line number Diff line change
@@ -77,7 +77,7 @@ ShenandoahHeuristics::~ShenandoahHeuristics() {
FREE_C_HEAP_ARRAY(RegionGarbage, _region_data);
}

size_t ShenandoahHeuristics::prioritize_aged_regions(size_t old_available, size_t num_regions, bool preselected_regions[]) {
size_t ShenandoahHeuristics::select_aged_regions(size_t old_available, size_t num_regions, bool preselected_regions[]) {
ShenandoahHeap* heap = ShenandoahHeap::heap();
size_t old_consumed = 0;
if (heap->mode()->is_generational()) {
@@ -153,7 +153,7 @@ void ShenandoahHeuristics::choose_collection_set(ShenandoahCollectionSet* collec

// TODO: Deprecate and/or refine ShenandoahTenuredRegionUsageBias. If we preselect the regions, we can just
// set garbage to "max" value, which is the region size rather than doing this extra work to bias selection.
// May also want to exercise more discretion in prioritize_aged_regions() if we decide there are good reasons
// May also want to exercise more discretion in select_aged_regions() if we decide there are good reasons
// to not promote all eligible aged regions on the current GC pass.

// If we're at tenure age, bias at least once.
Original file line number Diff line number Diff line change
@@ -153,7 +153,7 @@ class ShenandoahHeuristics : public CHeapObj<mtGC> {

virtual void record_requested_gc();

virtual size_t prioritize_aged_regions(size_t old_available, size_t num_regions, bool preselected_regions[]);
virtual size_t select_aged_regions(size_t old_available, size_t num_regions, bool preselected_regions[]);

virtual void choose_collection_set(ShenandoahCollectionSet* collection_set, ShenandoahOldHeuristics* old_heuristics);

6 changes: 3 additions & 3 deletions src/hotspot/share/gc/shenandoah/shenandoahGeneration.cpp
Original file line number Diff line number Diff line change
@@ -393,12 +393,12 @@ void ShenandoahGeneration::prepare_regions_and_collection_set(bool concurrent)
// set (because it has less live data and thus can fit within the evacuation limits even though it has less
// garbage).

size_t young_evacuation_reserve = (young_generation->soft_max_capacity() * ShenandoahEvacReserve) / 100;
size_t young_evacuation_reserve = (young_generation->max_capacity() * ShenandoahEvacReserve) / 100;
// old evacuation can pack into existing partially used regions. young evacuation and loans for young allocations
// need to target regions that do not already hold any old-gen objects. Round down.
regions_available_to_loan = old_generation->free_unaffiliated_regions();
consumed_by_advance_promotion = _heuristics->prioritize_aged_regions(old_generation->available() - old_evacuation_reserve,
num_regions, preselected_regions);
consumed_by_advance_promotion = _heuristics->select_aged_regions(old_generation->available() - old_evacuation_reserve,
num_regions, preselected_regions);
size_t net_available_old_regions =
(old_generation->available() - old_evacuation_reserve - consumed_by_advance_promotion) / region_size_bytes;