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

8333750: GenShen: Only instantiate young/old generations in generational mode #444

Closed
Closed
Changes from 3 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
d6121ca
Restore orginal isolate-gc-helpers commit
earthling-amzn May 28, 2024
13de0bc
Restore cancellation check
earthling-amzn May 28, 2024
a1774e9
Decouple mode and heuristic initialization
earthling-amzn May 28, 2024
c48fed7
Prepare to move card table out of shHeap
earthling-amzn May 29, 2024
756200f
Merge remote-tracking branch 'earthling/fix-isolate-gc-helpers' into …
earthling-amzn May 29, 2024
ef67f3e
Move remembered set instance into old generation
earthling-amzn May 30, 2024
7b9d4a8
Fix initialization order errors
earthling-amzn May 30, 2024
d8a0723
Remove some forwarding methods now that includes have been fixed
earthling-amzn May 30, 2024
c660a69
Move age census out of shHeap.
earthling-amzn May 30, 2024
f6c1203
Fix zero build
earthling-amzn May 30, 2024
aefcd6f
Merge remote-tracking branch 'shenandoah/master' into syncup-worker-i…
earthling-amzn May 30, 2024
02ce2d6
Clean up headers
earthling-amzn May 30, 2024
5b47ddb
Cannot initialize age census before heap
earthling-amzn May 30, 2024
2dd66c9
Assert that young and old generations are only accessed under generat…
earthling-amzn Jun 3, 2024
954be8e
Fix typo in comment
earthling-amzn Jun 3, 2024
2b1d49c
Improve variable names, comments and add assertions
earthling-amzn Jun 4, 2024
13927f1
Merge branch 'syncup-worker-initialization' into move-young-old-gener…
earthling-amzn Jun 4, 2024
cf6c356
Checkpoint, tier1 passes!
earthling-amzn Jun 4, 2024
f0c210c
Checkpoint: it builds
earthling-amzn Jun 4, 2024
08996ba
Disable assertion that old marking only finds young pointers with mar…
earthling-amzn Jun 4, 2024
365bd86
Merge branch 'syncup-worker-initialization' into move-young-old-gener…
earthling-amzn Jun 4, 2024
0a3d816
Simplify generational memory pools
earthling-amzn Jun 5, 2024
8eb0369
Fix copy/pasta in ShenandoahGenerationalMemoryPool
earthling-amzn Jun 5, 2024
750fed3
Move generation size and generation initialization out of shHeap
earthling-amzn Jun 5, 2024
3c2ad5d
Factor region age management into gen heap, remove duplication
earthling-amzn Jun 5, 2024
2fa33bf
Back out generation getter/helpers (members will stay in sh heap)
earthling-amzn Jun 5, 2024
eb9d13e
Merge branch 'shenandoah/master' into move-young-old-generations
earthling-amzn Jun 6, 2024
cc24ebc
Better assert messages for inappropriate generation access
earthling-amzn Jun 6, 2024
0148af3
Fix merge error
earthling-amzn Jun 6, 2024
5e74480
Add missing precompiled header
earthling-amzn Jun 6, 2024
b28513f
Fix zero build
earthling-amzn Jun 6, 2024
cbce45f
Detect cancellation of old GC after final mark.
earthling-amzn Jun 7, 2024
80d8865
Do not age regions after completing old mark
earthling-amzn Jun 7, 2024
d8215be
Make age and youth const
earthling-amzn Jun 7, 2024
6757167
Merge remote-tracking branch 'shenandoah/master' into move-young-old-…
earthling-amzn Jun 11, 2024
664da23
Improve method name and comments
earthling-amzn Jun 11, 2024
1dce85a
Reduce mode checks when making a region young
earthling-amzn Jun 11, 2024
694a4d2
Simplify affiliation accounting on allocation path
earthling-amzn Jun 11, 2024
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
4 changes: 3 additions & 1 deletion src/hotspot/share/gc/shenandoah/shenandoahConcurrentGC.cpp
Original file line number Diff line number Diff line change
@@ -1224,7 +1224,9 @@ void ShenandoahConcurrentGC::op_final_roots() {
heap->old_generation()->transfer_pointers_from_satb();
}

ShenandoahGenerationalHeap::heap()->update_region_ages();
if (!_generation->is_old()) {
ShenandoahGenerationalHeap::heap()->update_region_ages(_generation->complete_marking_context());
}
}
}

Original file line number Diff line number Diff line change
@@ -1116,8 +1116,7 @@ void ShenandoahGenerationalHeap::entry_global_coalesce_and_fill() {
coalesce_and_fill_old_regions(true);
}

void ShenandoahGenerationalHeap::update_region_ages() {
ShenandoahMarkingContext* ctx = active_generation()->complete_marking_context();
void ShenandoahGenerationalHeap::update_region_ages(ShenandoahMarkingContext* ctx) {
ShenandoahUpdateRegionAges cl(ctx);
parallel_heap_region_iterate(&cl);
}
Original file line number Diff line number Diff line change
@@ -68,7 +68,7 @@ class ShenandoahGenerationalHeap : public ShenandoahHeap {

// Ages regions that haven't been used for allocations in the current cycle.
// Resets ages for regions that have been used for allocations.
void update_region_ages();
void update_region_ages(ShenandoahMarkingContext* ctx);

oop evacuate_object(oop p, Thread* thread) override;
oop try_evacuate_object(oop p, Thread* thread, ShenandoahHeapRegion* from_region, ShenandoahAffiliation target_gen);
4 changes: 2 additions & 2 deletions src/hotspot/share/gc/shenandoah/shenandoahHeapRegion.hpp
Original file line number Diff line number Diff line change
@@ -453,8 +453,8 @@ class ShenandoahHeapRegion {
void set_affiliation(ShenandoahAffiliation new_affiliation);

// Region ageing and rejuvenation
uint age() { return _age; }
CENSUS_NOISE(uint youth() { return _youth; })
uint age() const { return _age; }
CENSUS_NOISE(uint youth() const { return _youth; })

void increment_age() {
const uint max_age = markWord::max_age;
6 changes: 6 additions & 0 deletions src/hotspot/share/gc/shenandoah/shenandoahOldGC.cpp
Original file line number Diff line number Diff line change
@@ -111,6 +111,12 @@ bool ShenandoahOldGC::collect(GCCause::Cause cause) {
// Complete marking under STW
vmop_entry_final_mark();

if (_generation->is_concurrent_mark_in_progress()) {
assert(heap->cancelled_gc(), "Safepoint operation observed gc cancellation");
// GC may have been cancelled before final mark, but after the preceding cancellation check.
return false;
}

// We aren't dealing with old generation evacuation yet. Our heuristic
// should not have built a cset in final mark.
assert(!heap->is_evacuation_in_progress(), "Old gen evacuations are not supported");