Skip to content

Commit f78440a

Browse files
committedMay 10, 2021
8266440: Shenandoah: TestReferenceShortcutCycle.java test failed on AArch64
Reviewed-by: aph
1 parent de78431 commit f78440a

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed
 

‎src/hotspot/cpu/aarch64/gc/shenandoah/shenandoahBarrierSetAssembler_aarch64.cpp

+8-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,14 @@ void ShenandoahBarrierSetAssembler::load_reference_barrier(MacroAssembler* masm,
242242
__ ldrb(rscratch2, gc_state);
243243

244244
// Check for heap stability
245-
__ tbz(rscratch2, ShenandoahHeap::HAS_FORWARDED_BITPOS, heap_stable);
245+
if (is_strong) {
246+
__ tbz(rscratch2, ShenandoahHeap::HAS_FORWARDED_BITPOS, heap_stable);
247+
} else {
248+
Label lrb;
249+
__ tbnz(rscratch2, ShenandoahHeap::WEAK_ROOTS_BITPOS, lrb);
250+
__ tbz(rscratch2, ShenandoahHeap::HAS_FORWARDED_BITPOS, heap_stable);
251+
__ bind(lrb);
252+
}
246253

247254
// use r1 for load address
248255
Register result_dst = dst;

0 commit comments

Comments
 (0)