1
1
/*
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.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
34
34
* @modules java.management
35
35
* @library /test/lib
36
36
* @library /
37
+ * @build sun.hotspot.WhiteBox
38
+ * @run driver jdk.test.lib.helpers.ClassFileInstaller sun.hotspot.WhiteBox
37
39
* @run driver gc.arguments.TestVerifyBeforeAndAfterGCFlags
38
40
*/
39
41
44
46
import jdk .test .lib .process .OutputAnalyzer ;
45
47
import jdk .test .lib .process .ProcessTools ;
46
48
49
+ import sun .hotspot .WhiteBox ;
50
+
47
51
public class TestVerifyBeforeAndAfterGCFlags {
48
52
49
53
// 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 {
63
67
"-XX:-DisplayVMOutput" ,
64
68
"VerifyBeforeGC" ,
65
69
"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 );
70
80
}
71
81
72
82
public static void testVerifyFlags (boolean verifyBeforeGC ,
73
83
boolean verifyAfterGC ,
84
+ boolean doFullGC ,
74
85
String [] opts ) throws Exception {
75
86
ArrayList <String > vmOpts = new ArrayList <>();
76
87
if (opts != null && (opts .length > 0 )) {
77
88
Collections .addAll (vmOpts , opts );
78
89
}
79
90
Collections .addAll (vmOpts , new String [] {
91
+ "-Xbootclasspath/a:." ,
92
+ "-XX:+UnlockDiagnosticVMOptions" ,
93
+ "-XX:+WhiteBoxAPI" ,
80
94
"-Xlog:gc+verify=debug" ,
81
95
"-Xmx5m" ,
82
96
"-Xms5m" ,
83
97
"-Xmn3m" ,
84
- "-XX:+UnlockDiagnosticVMOptions" ,
85
98
(verifyBeforeGC ? "-XX:+VerifyBeforeGC"
86
99
: "-XX:-VerifyBeforeGC" ),
87
100
(verifyAfterGC ? "-XX:+VerifyAfterGC"
88
101
: "-XX:-VerifyAfterGC" ),
89
- GarbageProducer .class .getName () });
102
+ GarbageProducer .class .getName (),
103
+ doFullGC ? "t" : "f" });
90
104
ProcessBuilder pb = GCArguments .createJavaProcessBuilder (vmOpts );
91
105
OutputAnalyzer analyzer = new OutputAnalyzer (pb .start ());
92
106
@@ -111,10 +125,12 @@ public static class GarbageProducer {
111
125
static long [][] garbage = new long [10 ][];
112
126
113
127
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 ();
118
134
}
119
135
}
120
136
}
0 commit comments