author | kvn |
Wed, 01 May 2019 12:31:29 -0700 | |
changeset 54669 | ad45b3802d4e |
parent 47216 | 71c04702a3d5 |
permissions | -rw-r--r-- |
33160 | 1 |
/* |
54669
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
47216
diff
changeset
|
2 |
* Copyright (c) 2015, 2019, 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 |
* @test |
|
26 |
* @bug 8136421 |
|
42607
acd91f1875d4
8170227: use vm.jvmci property in compiler/jvmci tests
iignatyev
parents:
41705
diff
changeset
|
27 |
* @requires vm.jvmci |
40631
ed82623d7831
8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents:
40059
diff
changeset
|
28 |
* @library /test/lib / |
36508 | 29 |
* @library ../common/patches |
54669
ad45b3802d4e
8220623: [JVMCI] Update JVMCI to support JVMCI based Compiler compiled into shared library
kvn
parents:
47216
diff
changeset
|
30 |
* @ignore Not supported JVMCI API |
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 |
|
43972 | 34 |
* jdk.internal.vm.ci/jdk.vm.ci.hotspot |
35 |
* jdk.internal.vm.ci/jdk.vm.ci.code |
|
36 |
* jdk.internal.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 |
* |
43972 | 38 |
* @build jdk.internal.vm.ci/jdk.vm.ci.hotspot.CompilerToVMHelper |
36508 | 39 |
* @build compiler.jvmci.compilerToVM.InvalidateInstalledCodeTest |
33160 | 40 |
* @build sun.hotspot.WhiteBox |
40053
b3617982544e
8160657: Compiler HotSpot tests should use the "run driver" directive where applicable
iignatyev
parents:
39291
diff
changeset
|
41 |
* @run driver ClassFileInstaller sun.hotspot.WhiteBox |
b3617982544e
8160657: Compiler HotSpot tests should use the "run driver" directive where applicable
iignatyev
parents:
39291
diff
changeset
|
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; |
40059 | 52 |
import jdk.test.lib.Asserts; |
53 |
import jdk.test.lib.Utils; |
|
54 |
import jdk.vm.ci.code.CodeCacheProvider; |
|
55 |
import jdk.vm.ci.code.CompilationResult; |
|
33160 | 56 |
import jdk.vm.ci.code.InstalledCode; |
57 |
import jdk.vm.ci.hotspot.CompilerToVMHelper; |
|
40059 | 58 |
import jdk.vm.ci.hotspot.HotSpotCompilationRequest; |
59 |
import jdk.vm.ci.hotspot.HotSpotJVMCIRuntime; |
|
60 |
import jdk.vm.ci.hotspot.HotSpotResolvedJavaMethod; |
|
33160 | 61 |
import sun.hotspot.code.NMethod; |
62 |
||
63 |
import java.util.List; |
|
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 |
} |