Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/test/sun/management/HotspotRuntimeMBean/GetSafepointSyncTime.java
38841 views
1
/*
2
* Copyright (c) 2003, 2013, 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
/*
25
* @test
26
* @bug 4858522
27
* @summary Basic unit test of HotspotRuntimeMBean.getSafepointSyncTime()
28
* @author Steve Bohne
29
*/
30
31
/*
32
* This test is just a sanity check and does not check for the correct value.
33
*/
34
35
import sun.management.*;
36
37
public class GetSafepointSyncTime {
38
39
private static HotspotRuntimeMBean mbean =
40
(HotspotRuntimeMBean)ManagementFactoryHelper.getHotspotRuntimeMBean();
41
42
private static final long NUM_THREAD_DUMPS = 300;
43
44
// Careful with these values.
45
private static final long MIN_VALUE_FOR_PASS = 1;
46
private static final long MAX_VALUE_FOR_PASS = Long.MAX_VALUE;
47
48
public static void main(String args[]) throws Exception {
49
long count = mbean.getSafepointCount();
50
long value = mbean.getSafepointSyncTime();
51
52
// Thread.getAllStackTraces() should cause safepoints.
53
// If this test is failing because it doesn't,
54
// MIN_VALUE_FOR_PASS should be reset to 0
55
for (int i = 0; i < NUM_THREAD_DUMPS; i++) {
56
Thread.getAllStackTraces();
57
}
58
59
long count1 = mbean.getSafepointCount();
60
long value1 = mbean.getSafepointSyncTime();
61
62
System.out.format("Safepoint count=%d (diff=%d), sync time=%d ms (diff=%d)%n",
63
count1, count1-count, value1, value1-value);
64
65
if (value1 < MIN_VALUE_FOR_PASS || value1 > MAX_VALUE_FOR_PASS) {
66
throw new RuntimeException("Safepoint sync time " +
67
"illegal value: " + value1 + " ms " +
68
"(MIN = " + MIN_VALUE_FOR_PASS + "; " +
69
"MAX = " + MAX_VALUE_FOR_PASS + ")");
70
}
71
72
for (int i = 0; i < NUM_THREAD_DUMPS; i++) {
73
Thread.getAllStackTraces();
74
}
75
76
long count2 = mbean.getSafepointCount();
77
long value2 = mbean.getSafepointSyncTime();
78
79
System.out.format("Safepoint count=%d (diff=%d), sync time=%d ms (diff=%d)%n",
80
count2, count2-count1, value2, value2-value1);
81
82
if (value2 <= value1) {
83
throw new RuntimeException("Safepoint sync time " +
84
"did not increase " +
85
"(value1 = " + value1 + "; " +
86
"value2 = " + value2 + ")");
87
}
88
89
System.out.println("Test passed.");
90
}
91
}
92
93