Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/hotspot/jtreg/compiler/rtm/locking/TestUseRTMXendForLockBusy.java
41154 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
/**
25
* @test
26
* @bug 8031320
27
* @summary Verify that UseRTMXendForLockBusy option affects
28
* method behaviour if lock is busy.
29
* @library /test/lib /
30
* @modules java.base/jdk.internal.misc
31
* java.management
32
* @requires vm.rtm.cpu & vm.rtm.compiler
33
* @build sun.hotspot.WhiteBox
34
* @run driver jdk.test.lib.helpers.ClassFileInstaller sun.hotspot.WhiteBox
35
* @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
36
* -XX:+WhiteBoxAPI
37
* compiler.rtm.locking.TestUseRTMXendForLockBusy
38
*/
39
40
package compiler.rtm.locking;
41
42
import compiler.testlibrary.rtm.AbortType;
43
import compiler.testlibrary.rtm.BusyLock;
44
import compiler.testlibrary.rtm.CompilableTest;
45
import compiler.testlibrary.rtm.RTMLockingStatistics;
46
import compiler.testlibrary.rtm.RTMTestBase;
47
import jdk.test.lib.Asserts;
48
import jdk.test.lib.process.OutputAnalyzer;
49
import jdk.test.lib.cli.CommandLineOptionTest;
50
51
import java.util.List;
52
53
/**
54
* Test verifies that with +UseRTMXendForLockBusy there will be no aborts
55
* forced by the test.
56
*/
57
public class TestUseRTMXendForLockBusy {
58
private final static int LOCKING_TIME = 5000;
59
60
protected void runTestCases() throws Throwable {
61
// inflated lock, xabort on lock busy
62
verifyXendForLockBusy(true, false);
63
// inflated lock, xend on lock busy
64
verifyXendForLockBusy(true, true);
65
// stack lock, xabort on lock busy
66
verifyXendForLockBusy(false, false);
67
// stack lock, xend on lock busy
68
verifyXendForLockBusy(false, true);
69
}
70
71
private void verifyXendForLockBusy(boolean inflateMonitor,
72
boolean useXend) throws Throwable {
73
CompilableTest test = new BusyLock();
74
75
OutputAnalyzer outputAnalyzer = RTMTestBase.executeRTMTest(
76
test,
77
CommandLineOptionTest.prepareBooleanFlag("UseRTMForStackLocks",
78
!inflateMonitor),
79
CommandLineOptionTest.prepareBooleanFlag(
80
"UseRTMXendForLockBusy",
81
useXend),
82
"-XX:RTMRetryCount=0",
83
"-XX:RTMTotalCountIncrRate=1",
84
"-XX:+PrintPreciseRTMLockingStatistics",
85
BusyLock.class.getName(),
86
Boolean.toString(inflateMonitor),
87
Integer.toString(TestUseRTMXendForLockBusy.LOCKING_TIME)
88
);
89
90
outputAnalyzer.shouldHaveExitValue(0);
91
92
List<RTMLockingStatistics> statistics = RTMLockingStatistics.fromString(
93
test.getMethodWithLockName(), outputAnalyzer.getOutput());
94
95
Asserts.assertEQ(statistics.size(), 1, "VM output should contain "
96
+ "exactly one rtm locking statistics entry for method "
97
+ test.getMethodWithLockName());
98
99
long aborts = statistics.get(0).getAborts(AbortType.XABORT);
100
101
if (useXend) {
102
Asserts.assertEQ(aborts, 0L,
103
"Expected to get no aborts on busy lock");
104
} else {
105
Asserts.assertGT(aborts, 0L,
106
"Expected to get at least one abort on busy lock");
107
}
108
}
109
110
public static void main(String args[]) throws Throwable {
111
new TestUseRTMXendForLockBusy().runTestCases();
112
}
113
}
114
115