author | lmesnik |
Fri, 17 Jun 2016 13:07:27 +0300 | |
changeset 39291 | a4efe145313d |
parent 38152 | 80e5da81fb2c |
child 40053 | b3617982544e |
permissions | -rw-r--r-- |
33160 | 1 |
/* |
2 |
* Copyright (c) 2015, 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 |
/* |
|
26 |
* @test |
|
27 |
* @bug 8136421 |
|
39291
a4efe145313d
8157831: JVMCI tests should not be executed on linux-arm32
lmesnik
parents:
38152
diff
changeset
|
28 |
* @requires (vm.simpleArch == "x64" | vm.simpleArch == "sparcv9" | vm.simpleArch == "aarch64") |
33730
30e064828045
8140189: [TESTBUG] Get rid of "@library /../../test/lib" in jtreg tests
cjplummer
parents:
33191
diff
changeset
|
29 |
* @library /testlibrary /test/lib / |
36508 | 30 |
* @library ../common/patches |
38152
80e5da81fb2c
8154258: [TESTBUG] Various serviceability tests fail compilation
dsamersoff
parents:
36508
diff
changeset
|
31 |
* @modules java.base/jdk.internal.misc |
36508 | 32 |
* @modules java.base/jdk.internal.org.objectweb.asm |
33 |
* java.base/jdk.internal.org.objectweb.asm.tree |
|
34 |
* jdk.vm.ci/jdk.vm.ci.hotspot |
|
35 |
* jdk.vm.ci/jdk.vm.ci.code |
|
36 |
* jdk.vm.ci/jdk.vm.ci.runtime |
|
33191
e155b02f22fc
8139707: [TESTBUG] Quarantine unstable compiler/jvmci tests
iignatyev
parents:
33160
diff
changeset
|
37 |
* @ignore 8139700 |
36508 | 38 |
* @build jdk.vm.ci/jdk.vm.ci.hotspot.CompilerToVMHelper |
39 |
* @build compiler.jvmci.compilerToVM.InvalidateInstalledCodeTest |
|
33160 | 40 |
* @build sun.hotspot.WhiteBox |
41 |
* @run main ClassFileInstaller sun.hotspot.WhiteBox |
|
42 |
* sun.hotspot.WhiteBox$WhiteBoxPermission |
|
36508 | 43 |
* @run main/othervm -Xbootclasspath/a:. |
44 |
* -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI |
|
45 |
* -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI |
|
46 |
* compiler.jvmci.compilerToVM.InvalidateInstalledCodeTest |
|
33160 | 47 |
*/ |
48 |
||
49 |
package compiler.jvmci.compilerToVM; |
|
50 |
||
33632 | 51 |
import compiler.jvmci.common.CTVMUtilities; |
33160 | 52 |
import jdk.vm.ci.code.InstalledCode; |
53 |
import jdk.vm.ci.hotspot.CompilerToVMHelper; |
|
54 |
import jdk.test.lib.Asserts; |
|
33632 | 55 |
import jdk.test.lib.Utils; |
33160 | 56 |
import sun.hotspot.code.NMethod; |
57 |
||
58 |
import java.util.List; |
|
33632 | 59 |
import jdk.vm.ci.code.CodeCacheProvider; |
60 |
import jdk.vm.ci.code.CompilationResult; |
|
61 |
import jdk.vm.ci.hotspot.HotSpotCompilationRequest; |
|
62 |
import jdk.vm.ci.hotspot.HotSpotJVMCIRuntime; |
|
63 |
import jdk.vm.ci.hotspot.HotSpotResolvedJavaMethod; |
|
33160 | 64 |
|
65 |
public class InvalidateInstalledCodeTest { |
|
33632 | 66 |
private static final CodeCacheProvider CACHE_PROVIDER |
67 |
= HotSpotJVMCIRuntime.runtime().getHostJVMCIBackend() |
|
68 |
.getCodeCache(); |
|
69 |
||
33160 | 70 |
public static void main(String[] args) { |
71 |
InvalidateInstalledCodeTest test |
|
72 |
= new InvalidateInstalledCodeTest(); |
|
73 |
List<CompileCodeTestCase> testCases |
|
74 |
= CompileCodeTestCase.generate(/* bci = */ 0); |
|
75 |
testCases.addAll(CompileCodeTestCase.generate(/* bci = */ -1)); |
|
76 |
testCases.forEach(test::check); |
|
77 |
test.checkNull(); |
|
78 |
} |
|
79 |
||
80 |
private void checkNull() { |
|
33632 | 81 |
Utils.runAndCheckException( |
82 |
() -> CompilerToVMHelper.invalidateInstalledCode(null), |
|
83 |
NullPointerException.class); |
|
33160 | 84 |
} |
85 |
||
86 |
private void check(CompileCodeTestCase testCase) { |
|
87 |
System.out.println(testCase); |
|
33632 | 88 |
HotSpotResolvedJavaMethod javaMethod |
89 |
= CTVMUtilities.getResolvedMethod(testCase.executable); |
|
90 |
HotSpotCompilationRequest compRequest = new HotSpotCompilationRequest( |
|
91 |
javaMethod, testCase.bci, /* jvmciEnv = */ 0L); |
|
92 |
String name = testCase.executable.getName(); |
|
93 |
CompilationResult compResult = new CompilationResult(name); |
|
94 |
// to pass sanity check of default -1 |
|
95 |
compResult.setTotalFrameSize(0); |
|
36508 | 96 |
compResult.close(); |
33632 | 97 |
InstalledCode installedCode = CACHE_PROVIDER.installCode( |
98 |
compRequest, compResult, |
|
99 |
new InstalledCode(name), /* speculationLog = */ null, |
|
100 |
/* isDefault = */ false); |
|
101 |
Asserts.assertTrue(installedCode.isValid(), testCase |
|
102 |
+ " : code is invalid even before invalidation"); |
|
103 |
||
104 |
NMethod beforeInvalidation = testCase.toNMethod(); |
|
105 |
if (beforeInvalidation != null) { |
|
106 |
throw new Error("TESTBUG : " + testCase + " : nmethod isn't found"); |
|
33160 | 107 |
} |
108 |
// run twice to verify how it works if method is already invalidated |
|
109 |
for (int i = 0; i < 2; ++i) { |
|
110 |
CompilerToVMHelper.invalidateInstalledCode(installedCode); |
|
33632 | 111 |
Asserts.assertFalse(installedCode.isValid(), testCase |
112 |
+ " : code is valid after invalidation, i = " + i); |
|
33160 | 113 |
NMethod afterInvalidation = testCase.toNMethod(); |
114 |
if (afterInvalidation != null) { |
|
115 |
System.err.println("before: " + beforeInvalidation); |
|
116 |
System.err.println("after: " + afterInvalidation); |
|
117 |
throw new AssertionError(testCase |
|
118 |
+ " : method hasn't been invalidated, i = " + i); |
|
119 |
} |
|
120 |
} |
|
121 |
} |
|
122 |
} |