author | ctornqvi |
Fri, 19 Aug 2016 10:06:30 -0400 | |
changeset 40631 | ed82623d7831 |
parent 40059 | c2304140ed64 |
child 40866 | 3eef10047a6b |
permissions | -rw-r--r-- |
33160 | 1 |
/* |
40631
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
40059
diff
changeset
|
2 |
* Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved. |
33160 | 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") |
40631
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
40059
diff
changeset
|
29 |
* @library /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 |
|
40053
b3617982544e
8160657: Compiler HotSpot tests should use the "run driver" directive where applicable
iignatyev
parents:
39291
diff
changeset
|
37 |
* |
33191
e155b02f22fc
8139707: [TESTBUG] Quarantine unstable compiler/jvmci tests
iignatyev
parents:
33160
diff
changeset
|
38 |
* @ignore 8139700 |
40631
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
40059
diff
changeset
|
39 |
* @build jdk.vm.ci/jdk.vm.ci.hotspot.CompilerToVMHelper sun.hotspot.WhiteBox |
40053
b3617982544e
8160657: Compiler HotSpot tests should use the "run driver" directive where applicable
iignatyev
parents:
39291
diff
changeset
|
40 |
* @run driver ClassFileInstaller sun.hotspot.WhiteBox |
b3617982544e
8160657: Compiler HotSpot tests should use the "run driver" directive where applicable
iignatyev
parents:
39291
diff
changeset
|
41 |
* sun.hotspot.WhiteBox$WhiteBoxPermission |
36508 | 42 |
* @run main/othervm -Xbootclasspath/a:. |
43 |
* -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI |
|
44 |
* -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI |
|
45 |
* compiler.jvmci.compilerToVM.InvalidateInstalledCodeTest |
|
33160 | 46 |
*/ |
47 |
||
48 |
package compiler.jvmci.compilerToVM; |
|
49 |
||
33632 | 50 |
import compiler.jvmci.common.CTVMUtilities; |
40059 | 51 |
import jdk.test.lib.Asserts; |
52 |
import jdk.test.lib.Utils; |
|
53 |
import jdk.vm.ci.code.CodeCacheProvider; |
|
54 |
import jdk.vm.ci.code.CompilationResult; |
|
33160 | 55 |
import jdk.vm.ci.code.InstalledCode; |
56 |
import jdk.vm.ci.hotspot.CompilerToVMHelper; |
|
40059 | 57 |
import jdk.vm.ci.hotspot.HotSpotCompilationRequest; |
58 |
import jdk.vm.ci.hotspot.HotSpotJVMCIRuntime; |
|
59 |
import jdk.vm.ci.hotspot.HotSpotResolvedJavaMethod; |
|
33160 | 60 |
import sun.hotspot.code.NMethod; |
61 |
||
62 |
import java.util.List; |
|
63 |
||
64 |
public class InvalidateInstalledCodeTest { |
|
33632 | 65 |
private static final CodeCacheProvider CACHE_PROVIDER |
66 |
= HotSpotJVMCIRuntime.runtime().getHostJVMCIBackend() |
|
67 |
.getCodeCache(); |
|
68 |
||
33160 | 69 |
public static void main(String[] args) { |
70 |
InvalidateInstalledCodeTest test |
|
71 |
= new InvalidateInstalledCodeTest(); |
|
72 |
List<CompileCodeTestCase> testCases |
|
73 |
= CompileCodeTestCase.generate(/* bci = */ 0); |
|
74 |
testCases.addAll(CompileCodeTestCase.generate(/* bci = */ -1)); |
|
75 |
testCases.forEach(test::check); |
|
76 |
test.checkNull(); |
|
77 |
} |
|
78 |
||
79 |
private void checkNull() { |
|
33632 | 80 |
Utils.runAndCheckException( |
81 |
() -> CompilerToVMHelper.invalidateInstalledCode(null), |
|
82 |
NullPointerException.class); |
|
33160 | 83 |
} |
84 |
||
85 |
private void check(CompileCodeTestCase testCase) { |
|
86 |
System.out.println(testCase); |
|
33632 | 87 |
HotSpotResolvedJavaMethod javaMethod |
88 |
= CTVMUtilities.getResolvedMethod(testCase.executable); |
|
89 |
HotSpotCompilationRequest compRequest = new HotSpotCompilationRequest( |
|
90 |
javaMethod, testCase.bci, /* jvmciEnv = */ 0L); |
|
91 |
String name = testCase.executable.getName(); |
|
92 |
CompilationResult compResult = new CompilationResult(name); |
|
93 |
// to pass sanity check of default -1 |
|
94 |
compResult.setTotalFrameSize(0); |
|
36508 | 95 |
compResult.close(); |
33632 | 96 |
InstalledCode installedCode = CACHE_PROVIDER.installCode( |
97 |
compRequest, compResult, |
|
98 |
new InstalledCode(name), /* speculationLog = */ null, |
|
99 |
/* isDefault = */ false); |
|
100 |
Asserts.assertTrue(installedCode.isValid(), testCase |
|
101 |
+ " : code is invalid even before invalidation"); |
|
102 |
||
103 |
NMethod beforeInvalidation = testCase.toNMethod(); |
|
104 |
if (beforeInvalidation != null) { |
|
105 |
throw new Error("TESTBUG : " + testCase + " : nmethod isn't found"); |
|
33160 | 106 |
} |
107 |
// run twice to verify how it works if method is already invalidated |
|
108 |
for (int i = 0; i < 2; ++i) { |
|
109 |
CompilerToVMHelper.invalidateInstalledCode(installedCode); |
|
33632 | 110 |
Asserts.assertFalse(installedCode.isValid(), testCase |
111 |
+ " : code is valid after invalidation, i = " + i); |
|
33160 | 112 |
NMethod afterInvalidation = testCase.toNMethod(); |
113 |
if (afterInvalidation != null) { |
|
114 |
System.err.println("before: " + beforeInvalidation); |
|
115 |
System.err.println("after: " + afterInvalidation); |
|
116 |
throw new AssertionError(testCase |
|
117 |
+ " : method hasn't been invalidated, i = " + i); |
|
118 |
} |
|
119 |
} |
|
120 |
} |
|
121 |
} |