Skip to content

Commit f308b2d

Browse files
satyenmeshipilev
authored andcommittedAug 15, 2024
8336915: Shenandoah: Remove unused ShenandoahVerifier::verify_after_evacuation
Reviewed-by: shade
1 parent e51e40c commit f308b2d

File tree

2 files changed

+0
-13
lines changed

2 files changed

+0
-13
lines changed
 

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

-12
Original file line numberDiff line numberDiff line change
@@ -856,18 +856,6 @@ void ShenandoahVerifier::verify_during_evacuation() {
856856
);
857857
}
858858

859-
void ShenandoahVerifier::verify_after_evacuation() {
860-
verify_at_safepoint(
861-
"After Evacuation",
862-
_verify_forwarded_allow, // objects are still forwarded
863-
_verify_marked_complete, // bitmaps might be stale, but alloc-after-mark should be well
864-
_verify_cset_forwarded, // all cset refs are fully forwarded
865-
_verify_liveness_disable, // no reliable liveness data anymore
866-
_verify_regions_notrash, // trash regions have been recycled already
867-
_verify_gcstate_forwarded // evacuation produced some forwarded objects
868-
);
869-
}
870-
871859
void ShenandoahVerifier::verify_before_updaterefs() {
872860
verify_at_safepoint(
873861
"Before Updating References",

‎src/hotspot/share/gc/shenandoah/shenandoahVerifier.hpp

-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,6 @@ class ShenandoahVerifier : public CHeapObj<mtGC> {
176176
void verify_after_concmark();
177177
void verify_before_evacuation();
178178
void verify_during_evacuation();
179-
void verify_after_evacuation();
180179
void verify_before_updaterefs();
181180
void verify_after_updaterefs();
182181
void verify_before_fullgc();

0 commit comments

Comments
 (0)
Please sign in to comment.