File tree 2 files changed +18
-8
lines changed
2 files changed +18
-8
lines changed Original file line number Diff line number Diff line change @@ -2308,10 +2308,20 @@ void ShenandoahHeap::flush_liveness_cache(uint worker_id) {
2308
2308
}
2309
2309
2310
2310
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 ;
2317
2327
}
Original file line number Diff line number Diff line change @@ -1285,8 +1285,8 @@ stackChunkOop Freeze<ConfigT>::allocate_chunk(size_t stack_size) {
1285
1285
if (fast_oop != nullptr ) {
1286
1286
assert (!chunk->requires_barriers (), " Unfamiliar GC requires barriers on TLAB allocation" );
1287
1287
} 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 ();
1290
1290
1291
1291
if (_barriers) {
1292
1292
log_develop_trace (continuations)(" allocation requires barriers" );
You can’t perform that action at this time.
0 commit comments