Skip to content

Commit 57611b3

Browse files
author
Thomas Schatzl
committedJul 21, 2021
8270991: G1 Full GC always performs heap verification after JDK-8269295
Reviewed-by: iwalulya, kbarrett
1 parent cd8783c commit 57611b3

File tree

2 files changed

+33
-11
lines changed

2 files changed

+33
-11
lines changed
 

‎src/hotspot/share/gc/g1/g1CollectedHeap.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -1028,6 +1028,9 @@ void G1CollectedHeap::prepare_heap_for_full_collection() {
10281028
void G1CollectedHeap::verify_before_full_collection(bool explicit_gc) {
10291029
assert(!GCCause::is_user_requested_gc(gc_cause()) || explicit_gc, "invariant");
10301030
assert_used_and_recalculate_used_equal(this);
1031+
if (!VerifyBeforeGC) {
1032+
return;
1033+
}
10311034
_verifier->verify_region_sets_optional();
10321035
_verifier->verify_before_gc(G1HeapVerifier::G1VerifyFull);
10331036
_verifier->check_bitmaps("Full GC Start");
@@ -1073,6 +1076,9 @@ void G1CollectedHeap::abort_refinement() {
10731076
}
10741077

10751078
void G1CollectedHeap::verify_after_full_collection() {
1079+
if (!VerifyAfterGC) {
1080+
return;
1081+
}
10761082
_hrm.verify_optional();
10771083
_verifier->verify_region_sets_optional();
10781084
_verifier->verify_after_gc(G1HeapVerifier::G1VerifyFull);

‎test/hotspot/jtreg/gc/arguments/TestVerifyBeforeAndAfterGCFlags.java

+27-11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -34,6 +34,8 @@
3434
* @modules java.management
3535
* @library /test/lib
3636
* @library /
37+
* @build sun.hotspot.WhiteBox
38+
* @run driver jdk.test.lib.helpers.ClassFileInstaller sun.hotspot.WhiteBox
3739
* @run driver gc.arguments.TestVerifyBeforeAndAfterGCFlags
3840
*/
3941

@@ -44,6 +46,8 @@
4446
import jdk.test.lib.process.OutputAnalyzer;
4547
import jdk.test.lib.process.ProcessTools;
4648

49+
import sun.hotspot.WhiteBox;
50+
4751
public class TestVerifyBeforeAndAfterGCFlags {
4852

4953
// VerifyBeforeGC:[Verifying threads heap tenured eden syms strs zone dict metaspace chunks hand code cache ]
@@ -63,30 +67,40 @@ public static void main(String args[]) throws Exception {
6367
"-XX:-DisplayVMOutput",
6468
"VerifyBeforeGC",
6569
"VerifyAfterGC" });
66-
testVerifyFlags(false, false, filteredOpts);
67-
testVerifyFlags(true, true, filteredOpts);
68-
testVerifyFlags(true, false, filteredOpts);
69-
testVerifyFlags(false, true, filteredOpts);
70+
// Young GC
71+
testVerifyFlags(false, false, false, filteredOpts);
72+
testVerifyFlags(true, true, false, filteredOpts);
73+
testVerifyFlags(true, false, false, filteredOpts);
74+
testVerifyFlags(false, true, false, filteredOpts);
75+
// Full GC
76+
testVerifyFlags(false, false, true, filteredOpts);
77+
testVerifyFlags(true, true, true, filteredOpts);
78+
testVerifyFlags(true, false, true, filteredOpts);
79+
testVerifyFlags(false, true, true, filteredOpts);
7080
}
7181

7282
public static void testVerifyFlags(boolean verifyBeforeGC,
7383
boolean verifyAfterGC,
84+
boolean doFullGC,
7485
String[] opts) throws Exception {
7586
ArrayList<String> vmOpts = new ArrayList<>();
7687
if (opts != null && (opts.length > 0)) {
7788
Collections.addAll(vmOpts, opts);
7889
}
7990
Collections.addAll(vmOpts, new String[] {
91+
"-Xbootclasspath/a:.",
92+
"-XX:+UnlockDiagnosticVMOptions",
93+
"-XX:+WhiteBoxAPI",
8094
"-Xlog:gc+verify=debug",
8195
"-Xmx5m",
8296
"-Xms5m",
8397
"-Xmn3m",
84-
"-XX:+UnlockDiagnosticVMOptions",
8598
(verifyBeforeGC ? "-XX:+VerifyBeforeGC"
8699
: "-XX:-VerifyBeforeGC"),
87100
(verifyAfterGC ? "-XX:+VerifyAfterGC"
88101
: "-XX:-VerifyAfterGC"),
89-
GarbageProducer.class.getName() });
102+
GarbageProducer.class.getName(),
103+
doFullGC ? "t" : "f" });
90104
ProcessBuilder pb = GCArguments.createJavaProcessBuilder(vmOpts);
91105
OutputAnalyzer analyzer = new OutputAnalyzer(pb.start());
92106

@@ -111,10 +125,12 @@ public static class GarbageProducer {
111125
static long[][] garbage = new long[10][];
112126

113127
public static void main(String args[]) {
114-
int j = 0;
115-
for(int i = 0; i<1000; i++) {
116-
garbage[j] = new long[10000];
117-
j = (j+1)%garbage.length;
128+
WhiteBox wb = WhiteBox.getWhiteBox();
129+
130+
if (args[0].equals("t")) {
131+
wb.fullGC();
132+
} else {
133+
wb.youngGC();
118134
}
119135
}
120136
}

0 commit comments

Comments
 (0)
Please sign in to comment.