Skip to content

Commit 70e730f

Browse files
committedMar 12, 2020
8240872: Shenandoah: Avoid updating new regions from start of evacuation
Reviewed-by: shade
1 parent 90a3919 commit 70e730f

File tree

5 files changed

+36
-17
lines changed

5 files changed

+36
-17
lines changed
 

‎src/hotspot/share/gc/shenandoah/shenandoahFreeSet.cpp

+10-7
Original file line numberDiff line numberDiff line change
@@ -184,13 +184,16 @@ HeapWord* ShenandoahFreeSet::try_allocate_in(ShenandoahHeapRegion* r, Shenandoah
184184
// Record actual allocation size
185185
req.set_actual_size(size);
186186

187-
if (req.is_gc_alloc() && _heap->is_concurrent_traversal_in_progress()) {
188-
// Traversal needs to traverse through GC allocs. Adjust TAMS to the new top
189-
// so that these allocations appear below TAMS, and thus get traversed.
190-
// See top of shenandoahTraversal.cpp for an explanation.
191-
_heap->marking_context()->capture_top_at_mark_start(r);
192-
_heap->traversal_gc()->traversal_set()->add_region_check_for_duplicates(r);
193-
OrderAccess::fence();
187+
if (req.is_gc_alloc()) {
188+
r->set_update_watermark(r->top());
189+
if (_heap->is_concurrent_traversal_in_progress()) {
190+
// Traversal needs to traverse through GC allocs. Adjust TAMS to the new top
191+
// so that these allocations appear below TAMS, and thus get traversed.
192+
// See top of shenandoahTraversal.cpp for an explanation.
193+
_heap->marking_context()->capture_top_at_mark_start(r);
194+
_heap->traversal_gc()->traversal_set()->add_region_check_for_duplicates(r);
195+
OrderAccess::fence();
196+
}
194197
}
195198
}
196199

‎src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp

+11-8
Original file line numberDiff line numberDiff line change
@@ -1531,6 +1531,13 @@ void ShenandoahHeap::op_final_mark() {
15311531
verifier()->verify_before_evacuation();
15321532
}
15331533

1534+
// Remember limit for updating refs. It's guaranteed that we get no from-space-refs written
1535+
// from here on.
1536+
for (uint i = 0; i < num_regions(); i++) {
1537+
ShenandoahHeapRegion* r = get_region(i);
1538+
r->set_update_watermark(r->top());
1539+
}
1540+
15341541
set_evacuation_in_progress(true);
15351542
// From here on, we need to update references.
15361543
set_has_forwarded_objects(true);
@@ -2391,13 +2398,13 @@ class ShenandoahUpdateHeapRefsTask : public AbstractGangTask {
23912398
ShenandoahHeapRegion* r = _regions->next();
23922399
ShenandoahMarkingContext* const ctx = _heap->complete_marking_context();
23932400
while (r != NULL) {
2394-
HeapWord* top_at_start_ur = r->concurrent_iteration_safe_limit();
2395-
assert (top_at_start_ur >= r->bottom(), "sanity");
2401+
HeapWord* update_watermark = r->get_update_watermark();
2402+
assert (update_watermark >= r->bottom(), "sanity");
23962403
if (r->is_active() && !r->is_cset()) {
2397-
_heap->marked_object_oop_iterate(r, &cl, top_at_start_ur);
2404+
_heap->marked_object_oop_iterate(r, &cl, update_watermark);
23982405
}
23992406
if (ShenandoahPacing) {
2400-
_heap->pacer()->report_updaterefs(pointer_delta(top_at_start_ur, r->bottom()));
2407+
_heap->pacer()->report_updaterefs(pointer_delta(update_watermark, r->bottom()));
24012408
}
24022409
if (_heap->check_cancelled_gc_and_yield(_concurrent)) {
24032410
return;
@@ -2435,10 +2442,6 @@ void ShenandoahHeap::op_init_updaterefs() {
24352442
ShenandoahGCPhase phase(ShenandoahPhaseTimings::init_update_refs_prepare);
24362443

24372444
make_parsable(true);
2438-
for (uint i = 0; i < num_regions(); i++) {
2439-
ShenandoahHeapRegion* r = get_region(i);
2440-
r->set_concurrent_iteration_safe_limit(r->top());
2441-
}
24422445

24432446
// Reset iterator.
24442447
_update_refs_iterator.reset();

‎src/hotspot/share/gc/shenandoah/shenandoahHeapRegion.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ ShenandoahHeapRegion::ShenandoahHeapRegion(ShenandoahHeap* heap, HeapWord* start
7171
_seqnum_last_alloc_mutator(0),
7272
_seqnum_last_alloc_gc(0),
7373
_live_data(0),
74-
_critical_pins(0) {
74+
_critical_pins(0),
75+
_update_watermark(start) {
7576

7677
ContiguousSpace::initialize(_reserved, true, committed);
7778
}
@@ -479,6 +480,7 @@ void ShenandoahHeapRegion::recycle() {
479480
reset_alloc_metadata();
480481

481482
_heap->marking_context()->reset_top_at_mark_start(this);
483+
set_update_watermark(bottom());
482484

483485
make_empty();
484486
}

‎src/hotspot/share/gc/shenandoah/shenandoahHeapRegion.hpp

+12
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,8 @@ class ShenandoahHeapRegion : public ContiguousSpace {
261261
volatile size_t _live_data;
262262
volatile size_t _critical_pins;
263263

264+
HeapWord* _update_watermark;
265+
264266
// Claim some space at the end to protect next region
265267
DEFINE_PAD_MINUS_SIZE(0, DEFAULT_CACHE_LINE_SIZE, 0);
266268

@@ -428,6 +430,16 @@ class ShenandoahHeapRegion : public ContiguousSpace {
428430
return _seqnum_last_alloc_gc;
429431
}
430432

433+
HeapWord* get_update_watermark() const {
434+
assert(bottom() <= _update_watermark && _update_watermark <= top(), "within bounds");
435+
return _update_watermark;
436+
}
437+
438+
void set_update_watermark(HeapWord* w) {
439+
assert(bottom() <= w && w <= top(), "within bounds");
440+
_update_watermark = w;
441+
}
442+
431443
private:
432444
void do_commit();
433445
void do_uncommit();

‎src/hotspot/share/gc/shenandoah/shenandoahMarkCompact.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,6 @@ class ShenandoahPrepareForMarkClosure: public ShenandoahHeapRegionClosure {
224224
void heap_region_do(ShenandoahHeapRegion *r) {
225225
_ctx->capture_top_at_mark_start(r);
226226
r->clear_live_data();
227-
r->set_concurrent_iteration_safe_limit(r->top());
228227
}
229228
};
230229

0 commit comments

Comments
 (0)
Please sign in to comment.