We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c326ff1 commit d295143Copy full SHA for d295143
src/hotspot/share/gc/shenandoah/shenandoahConcurrentGC.cpp
@@ -921,8 +921,11 @@ void ShenandoahConcurrentGC::op_init_updaterefs() {
921
heap->set_evacuation_in_progress(false);
922
heap->set_concurrent_weak_root_in_progress(false);
923
heap->prepare_update_heap_references(true /*concurrent*/);
924
- heap->set_update_refs_in_progress(true);
+ if (ShenandoahVerify) {
925
+ heap->verifier()->verify_before_updaterefs();
926
+ }
927
928
+ heap->set_update_refs_in_progress(true);
929
if (ShenandoahPacing) {
930
heap->pacer()->setup_for_updaterefs();
931
}
0 commit comments