Skip to content

Commit efdc003

Browse files
committedFeb 27, 2020
8239354: Shenandoah: minor enhancements to traversal GC
Reviewed-by: rkennke
1 parent 882633a commit efdc003

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed
 

‎src/hotspot/share/gc/shenandoah/shenandoahHeap.inline.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,7 @@ inline oop ShenandoahHeap::evacuate_object(oop p, Thread* thread) {
248248
}
249249

250250
assert(ShenandoahThreadLocalData::is_evac_allowed(thread), "must be enclosed in oom-evac scope");
251+
assert(is_concurrent_traversal_in_progress() || !is_traversal_mode(), "Should not evacuate objects");
251252

252253
size_t size = p->size();
253254

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

+5-2
Original file line numberDiff line numberDiff line change
@@ -571,8 +571,6 @@ void ShenandoahTraversalGC::concurrent_traversal_collection() {
571571
}
572572

573573
void ShenandoahTraversalGC::final_traversal_collection() {
574-
_heap->make_parsable(true);
575-
576574
if (!_heap->cancelled_gc()) {
577575
#if COMPILER2_OR_JVMCI
578576
DerivedPointerTable::clear();
@@ -606,6 +604,11 @@ void ShenandoahTraversalGC::final_traversal_collection() {
606604
_heap->set_concurrent_traversal_in_progress(false);
607605
_heap->mark_complete_marking_context();
608606

607+
// A rare case, TLAB/GCLAB is initialized from an empty region without
608+
// any live data, the region can be trashed and may be uncommitted in later code,
609+
// that results the TLAB/GCLAB not usable. Retire them here.
610+
_heap->make_parsable(true);
611+
609612
_heap->parallel_cleaning(false);
610613
fixup_roots();
611614

0 commit comments

Comments
 (0)
Please sign in to comment.