author | gromero |
Fri, 14 Sep 2018 15:32:22 -0400 | |
changeset 51753 | 763aa4d1d596 |
parent 47216 | 71c04702a3d5 |
child 55087 | 82fe7292ca5c |
permissions | -rw-r--r-- |
24006
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
1 |
/* |
40631
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
40059
diff
changeset
|
2 |
* Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved. |
24006
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
4 |
* |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
8 |
* |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
13 |
* accompanied this code). |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
14 |
* |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
18 |
* |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
21 |
* questions. |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
22 |
*/ |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
23 |
|
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
24 |
/** |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
25 |
* @test |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
26 |
* @bug 8031320 |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
27 |
* @summary Verify that UseRTMDeopt affects uncommon trap installation in |
51753 | 28 |
* compiled methods with synchronized block. |
40631
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
40059
diff
changeset
|
29 |
* @library /test/lib / |
36851 | 30 |
* @modules java.base/jdk.internal.misc |
29678
dd2f3932c21e
8075586: Add @modules as needed to the open hotspot tests
ykantser
parents:
28190
diff
changeset
|
31 |
* java.management |
51753 | 32 |
* @requires vm.rtm.cpu & vm.rtm.compiler |
40631
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
40059
diff
changeset
|
33 |
* @build sun.hotspot.WhiteBox |
39438 | 34 |
* @run driver ClassFileInstaller sun.hotspot.WhiteBox |
35 |
* sun.hotspot.WhiteBox$WhiteBoxPermission |
|
24006
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
36 |
* @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions |
40059 | 37 |
* -XX:+WhiteBoxAPI |
38 |
* compiler.rtm.locking.TestUseRTMDeopt |
|
24006
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
39 |
*/ |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
40 |
|
40059 | 41 |
package compiler.rtm.locking; |
42 |
||
43 |
import compiler.testlibrary.rtm.AbortProvoker; |
|
44 |
import compiler.testlibrary.rtm.AbortType; |
|
45 |
import compiler.testlibrary.rtm.RTMTestBase; |
|
46 |
import jdk.test.lib.Asserts; |
|
40631
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
40059
diff
changeset
|
47 |
import jdk.test.lib.process.OutputAnalyzer; |
30604
b8d532cb6420
8067013: Rename the com.oracle.java.testlibary package
ykantser
parents:
29678
diff
changeset
|
48 |
import jdk.test.lib.cli.CommandLineOptionTest; |
24006
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
49 |
|
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
50 |
/** |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
51 |
* Test verifies that usage of UseRTMDeopt option affects uncommon traps usage |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
52 |
* for methods that use locking. |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
53 |
*/ |
46515
dbb676a40899
8181124: Get rid of compiler.testlibrary.rtm.predicate
epavlova
parents:
41705
diff
changeset
|
54 |
public class TestUseRTMDeopt { |
24006
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
55 |
|
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
56 |
protected void runTestCases() throws Throwable { |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
57 |
verifyUseRTMDeopt(false); |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
58 |
verifyUseRTMDeopt(true); |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
59 |
} |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
60 |
|
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
61 |
private void verifyUseRTMDeopt(boolean useRTMDeopt) throws Throwable { |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
62 |
AbortProvoker provoker = AbortType.XABORT.provoker(); |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
63 |
String logFileName = String.format("rtm_%s_deopt.xml", |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
64 |
useRTMDeopt ? "use" : "no"); |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
65 |
|
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
66 |
OutputAnalyzer outputAnalyzer = RTMTestBase.executeRTMTest( |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
67 |
logFileName, |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
68 |
provoker, |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
69 |
CommandLineOptionTest.prepareBooleanFlag("UseRTMDeopt", |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
70 |
useRTMDeopt), |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
71 |
AbortProvoker.class.getName(), |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
72 |
AbortType.XABORT.toString() |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
73 |
); |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
74 |
|
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
75 |
outputAnalyzer.shouldHaveExitValue(0); |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
76 |
|
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
77 |
int expectedUncommonTraps = useRTMDeopt ? 1 : 0; |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
78 |
int installedUncommonTraps |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
79 |
= RTMTestBase.installedRTMStateChangeTraps(logFileName); |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
80 |
|
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
81 |
Asserts.assertEQ(expectedUncommonTraps, installedUncommonTraps, |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
82 |
String.format("Expected to find %d uncommon traps " |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
83 |
+ "installed with reason rtm_state_change.", |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
84 |
expectedUncommonTraps)); |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
85 |
} |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
86 |
|
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
87 |
public static void main(String args[]) throws Throwable { |
46515
dbb676a40899
8181124: Get rid of compiler.testlibrary.rtm.predicate
epavlova
parents:
41705
diff
changeset
|
88 |
new TestUseRTMDeopt().runTestCases(); |
24006
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
89 |
} |
54399106938f
8037860: Add tests to cover Intel RTM instructions support
iignatyev
parents:
diff
changeset
|
90 |
} |