Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/hotspot/jtreg/gc/g1/TestRemsetLogging.java
40942 views
1
/*
2
* Copyright (c) 2013, 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.g1;
25
26
/*
27
* @test TestRemsetLogging.java
28
* @requires vm.gc.G1
29
* @bug 8013895 8129977 8145534
30
* @library /test/lib
31
* @library /
32
* @modules java.base/jdk.internal.misc
33
* java.management/sun.management
34
* @build sun.hotspot.WhiteBox
35
* @run driver jdk.test.lib.helpers.ClassFileInstaller sun.hotspot.WhiteBox
36
* @summary Verify output of -Xlog:gc+remset*=trace
37
* @run driver gc.g1.TestRemsetLogging
38
*
39
* Test the output of -Xlog:gc+remset*=trace in conjunction with G1SummarizeRSetStatsPeriod.
40
*/
41
42
public class TestRemsetLogging {
43
44
public static void main(String[] args) throws Exception {
45
String result;
46
47
// no remembered set summary output
48
result = TestRemsetLoggingTools.runTest(null, 0);
49
TestRemsetLoggingTools.expectRSetSummaries(result, 0, 0);
50
51
// no remembered set summary output
52
result = TestRemsetLoggingTools.runTest(null, 2);
53
TestRemsetLoggingTools.expectRSetSummaries(result, 0, 0);
54
55
// no remembered set summary output
56
result = TestRemsetLoggingTools.runTest(new String[] { "-XX:G1SummarizeRSetStatsPeriod=1" }, 3);
57
TestRemsetLoggingTools.expectRSetSummaries(result, 0, 0);
58
59
// single remembered set summary output at the end
60
result = TestRemsetLoggingTools.runTest(new String[] { "-Xlog:gc+remset*=trace" }, 0);
61
TestRemsetLoggingTools.expectRSetSummaries(result, 1, 0);
62
63
// single remembered set summary output at the end
64
result = TestRemsetLoggingTools.runTest(new String[] { "-Xlog:gc+remset*=trace" }, 2);
65
TestRemsetLoggingTools.expectRSetSummaries(result, 1, 0);
66
67
// single remembered set summary output
68
result = TestRemsetLoggingTools.runTest(new String[] { "-Xlog:gc+remset*=trace", "-XX:G1SummarizeRSetStatsPeriod=1" }, 0);
69
TestRemsetLoggingTools.expectRSetSummaries(result, 1, 0);
70
71
// two times remembered set summary output
72
result = TestRemsetLoggingTools.runTest(new String[] { "-Xlog:gc+remset*=trace", "-XX:G1SummarizeRSetStatsPeriod=1" }, 1);
73
TestRemsetLoggingTools.expectRSetSummaries(result, 1, 2);
74
75
// four times remembered set summary output
76
result = TestRemsetLoggingTools.runTest(new String[] { "-Xlog:gc+remset*=trace", "-XX:G1SummarizeRSetStatsPeriod=1" }, 3);
77
TestRemsetLoggingTools.expectRSetSummaries(result, 1, 6);
78
79
// three times remembered set summary output
80
result = TestRemsetLoggingTools.runTest(new String[] { "-Xlog:gc+remset*=trace", "-XX:G1SummarizeRSetStatsPeriod=2" }, 3);
81
TestRemsetLoggingTools.expectRSetSummaries(result, 1, 4);
82
83
// single remembered set summary output
84
result = TestRemsetLoggingTools.runTest(new String[] { "-Xlog:gc+remset*=trace", "-XX:G1SummarizeRSetStatsPeriod=100" }, 3);
85
TestRemsetLoggingTools.expectRSetSummaries(result, 1, 2);
86
}
87
}
88
89
90