Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/hotspot/jtreg/gc/logging/TestGCId.java
40942 views
1
/*
2
* Copyright (c) 2014, 2021, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*/
23
24
package gc.logging;
25
26
/*
27
* @test TestGCId
28
* @bug 8043607
29
* @summary Ensure that the GCId is logged
30
* @library /test/lib
31
* @modules java.base/jdk.internal.misc
32
* java.management
33
* @build sun.hotspot.WhiteBox
34
* @run driver jdk.test.lib.helpers.ClassFileInstaller sun.hotspot.WhiteBox
35
* @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI gc.logging.TestGCId
36
*/
37
38
import jdk.test.lib.process.OutputAnalyzer;
39
import jdk.test.lib.process.ProcessTools;
40
import jtreg.SkippedException;
41
import sun.hotspot.gc.GC;
42
43
public class TestGCId {
44
public static void main(String[] args) throws Exception {
45
boolean noneGCSupported = true;
46
47
if (GC.Parallel.isSupported()) {
48
noneGCSupported = false;
49
testGCId("UseParallelGC");
50
}
51
if (GC.G1.isSupported()) {
52
noneGCSupported = false;
53
testGCId("UseG1GC");
54
}
55
if (GC.Serial.isSupported()) {
56
noneGCSupported = false;
57
testGCId("UseSerialGC");
58
}
59
if (GC.Shenandoah.isSupported()) {
60
noneGCSupported = false;
61
testGCId("UseShenandoahGC");
62
}
63
64
if (noneGCSupported) {
65
throw new SkippedException("Skipping test because none of Parallel/G1/Serial/Shenandoah is supported.");
66
}
67
}
68
69
private static void verifyContainsGCIDs(OutputAnalyzer output) {
70
output.shouldMatch("\\[.*\\]\\[.*\\]\\[.*\\] GC\\(0\\) ");
71
output.shouldMatch("\\[.*\\]\\[.*\\]\\[.*\\] GC\\(1\\) ");
72
output.shouldHaveExitValue(0);
73
}
74
75
private static void testGCId(String gcFlag) throws Exception {
76
ProcessBuilder pb_default =
77
ProcessTools.createJavaProcessBuilder("-XX:+UnlockExperimentalVMOptions", "-XX:+" + gcFlag, "-Xlog:gc", "-Xmx10M", GCTest.class.getName());
78
verifyContainsGCIDs(new OutputAnalyzer(pb_default.start()));
79
}
80
81
static class GCTest {
82
private static byte[] garbage;
83
public static void main(String [] args) {
84
System.out.println("Creating garbage");
85
// create 128MB of garbage. This should result in at least one GC
86
for (int i = 0; i < 1024; i++) {
87
garbage = new byte[128 * 1024];
88
}
89
// do a system gc to get one more gc
90
System.gc();
91
System.out.println("Done");
92
}
93
}
94
}
95
96