Skip to content

Commit 56073cd

Browse files
committedFeb 20, 2024
8326171: Serial: Remove VerifyGCLevel
Reviewed-by: stefank, tschatzl
1 parent bb675af commit 56073cd

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed
 

‎src/hotspot/share/gc/serial/serialHeap.cpp

+4-5
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ void SerialHeap::do_collection(bool full,
521521

522522
print_heap_before_gc();
523523

524-
if (run_verification && VerifyGCLevel <= 0 && VerifyBeforeGC) {
524+
if (run_verification && VerifyBeforeGC) {
525525
prepare_for_verify();
526526
prepared_for_verification = true;
527527
}
@@ -533,7 +533,7 @@ void SerialHeap::do_collection(bool full,
533533
full,
534534
size,
535535
is_tlab,
536-
run_verification && VerifyGCLevel <= 0,
536+
run_verification,
537537
do_clear_all_soft_refs);
538538

539539
if (size > 0 && (!is_tlab || _young_gen->supports_tlab_allocation()) &&
@@ -571,8 +571,7 @@ void SerialHeap::do_collection(bool full,
571571

572572
print_heap_before_gc();
573573

574-
if (!prepared_for_verification && run_verification &&
575-
VerifyGCLevel <= 1 && VerifyBeforeGC) {
574+
if (!prepared_for_verification && run_verification && VerifyBeforeGC) {
576575
prepare_for_verify();
577576
}
578577

@@ -598,7 +597,7 @@ void SerialHeap::do_collection(bool full,
598597
full,
599598
size,
600599
is_tlab,
601-
run_verification && VerifyGCLevel <= 1,
600+
run_verification,
602601
do_clear_all_soft_refs);
603602

604603
CodeCache::on_gc_marking_cycle_finish();

‎src/hotspot/share/gc/shared/gc_globals.hpp

-4
Original file line numberDiff line numberDiff line change
@@ -617,10 +617,6 @@
617617
"GC invoke count where +VerifyBefore/AfterGC kicks in") \
618618
range(0, max_uintx) \
619619
\
620-
product(int, VerifyGCLevel, 0, DIAGNOSTIC, \
621-
"Generation level at which to start +VerifyBefore/AfterGC") \
622-
range(0, 1) \
623-
\
624620
product(uint, MaxTenuringThreshold, 15, \
625621
"Maximum value for tenuring threshold") \
626622
range(0, markWord::max_age + 1) \

0 commit comments

Comments
 (0)
Please sign in to comment.