Skip to content

Commit cd5bfe7

Browse files
committedMay 18, 2022
8286814: Shenandoah: RedefineRunningMethods.java test failed with Loom
Reviewed-by: shade
1 parent b5a3d28 commit cd5bfe7

File tree

2 files changed

+18
-8
lines changed

2 files changed

+18
-8
lines changed
 

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

+16-6
Original file line numberDiff line numberDiff line change
@@ -2308,10 +2308,20 @@ void ShenandoahHeap::flush_liveness_cache(uint worker_id) {
23082308
}
23092309

23102310
bool ShenandoahHeap::requires_barriers(stackChunkOop obj) const {
2311-
ShenandoahHeapRegion* region = heap_region_containing(obj);
2312-
bool allocated_after_mark_start = marking_context()->allocated_after_mark_start(obj);
2313-
bool requires_concmark_barriers = is_concurrent_mark_in_progress() && !allocated_after_mark_start;
2314-
bool requires_loadref_barriers = has_forwarded_objects() && cast_from_oop<HeapWord*>(obj) < heap_region_containing(obj)->get_update_watermark();
2315-
bool requires_deep_loadref_barriers = allocated_after_mark_start && has_forwarded_objects();
2316-
return requires_concmark_barriers || requires_loadref_barriers || requires_deep_loadref_barriers;
2311+
if (is_idle()) return false;
2312+
2313+
// Objects allocated after marking start are implicitly alive, don't need any barriers during
2314+
// marking phase.
2315+
if (is_concurrent_mark_in_progress() && marking_context()->allocated_after_mark_start(obj)) {
2316+
return false;
2317+
}
2318+
2319+
// Objects allocated after evacuation start are guaranteed in to-space, don't need any barriers
2320+
// during evacuation/update references phases.
2321+
if (has_forwarded_objects() &&
2322+
cast_from_oop<HeapWord*>(obj) >= heap_region_containing(obj)->get_update_watermark()) {
2323+
return false;
2324+
}
2325+
2326+
return true;
23172327
}

‎src/hotspot/share/runtime/continuationFreezeThaw.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1285,8 +1285,8 @@ stackChunkOop Freeze<ConfigT>::allocate_chunk(size_t stack_size) {
12851285
if (fast_oop != nullptr) {
12861286
assert(!chunk->requires_barriers(), "Unfamiliar GC requires barriers on TLAB allocation");
12871287
} else {
1288-
assert(!UseZGC || !chunk->requires_barriers(), "Allocated ZGC object requires barriers");
1289-
_barriers = !UseZGC && chunk->requires_barriers();
1288+
assert(!UseZGC || !UseShenandoahGC || !chunk->requires_barriers(), "Allocated ZGC/ShenandoahGC object requires barriers");
1289+
_barriers = !UseZGC && !UseShenandoahGC && chunk->requires_barriers();
12901290

12911291
if (_barriers) {
12921292
log_develop_trace(continuations)("allocation requires barriers");

0 commit comments

Comments
 (0)
Please sign in to comment.