author | kshefov |
Sat, 20 Feb 2016 11:49:02 +0300 | |
changeset 36305 | 55c7fe59d6d7 |
parent 35148 | 5cfafc99d791 |
child 36508 | 5f9eee6b383b |
permissions | -rw-r--r-- |
33160 | 1 |
/* |
36305
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
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 |
|
35148 | 28 |
* @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9" | os.simpleArch == "aarch64") |
33160 | 29 |
* @summary Testing compiler.jvmci.CompilerToVM.lookupKlassInPool method |
33730
30e064828045
8140189: [TESTBUG] Get rid of "@library /../../test/lib" in jtreg tests
cjplummer
parents:
33160
diff
changeset
|
30 |
* @library /testlibrary /test/lib / |
33160 | 31 |
* @compile ../common/CompilerToVMHelper.java |
36305
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
32 |
* @build sun.hotspot.WhiteBox |
33160 | 33 |
* compiler.jvmci.compilerToVM.LookupKlassInPoolTest |
36305
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
34 |
* @run main ClassFileInstaller sun.hotspot.WhiteBox |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
35 |
* sun.hotspot.WhiteBox$WhiteBoxPermission |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
36 |
* jdk.vm.ci.hotspot.CompilerToVMHelper |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
37 |
* @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
38 |
* -XX:+WhiteBoxAPI -XX:+UnlockExperimentalVMOptions |
33160 | 39 |
* -XX:+EnableJVMCI compiler.jvmci.compilerToVM.LookupKlassInPoolTest |
40 |
*/ |
|
41 |
||
42 |
package compiler.jvmci.compilerToVM; |
|
43 |
||
36305
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
44 |
import compiler.jvmci.compilerToVM.ConstantPoolTestsHelper.DummyClasses; |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
45 |
import compiler.jvmci.compilerToVM.ConstantPoolTestCase.ConstantTypes; |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
46 |
import static compiler.jvmci.compilerToVM.ConstantPoolTestCase.ConstantTypes.*; |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
47 |
import compiler.jvmci.compilerToVM.ConstantPoolTestCase.TestedCPEntry; |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
48 |
import compiler.jvmci.compilerToVM.ConstantPoolTestCase.Validator; |
33160 | 49 |
import java.util.HashMap; |
50 |
import java.util.Map; |
|
51 |
import jdk.vm.ci.hotspot.CompilerToVMHelper; |
|
33632 | 52 |
import jdk.vm.ci.hotspot.HotSpotResolvedObjectType; |
36305
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
53 |
import jdk.vm.ci.meta.ConstantPool; |
33160 | 54 |
|
55 |
/** |
|
36305
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
56 |
* Test for {@code jdk.vm.ci.hotspot.CompilerToVM.lookupKlassInPool} method |
33160 | 57 |
*/ |
58 |
public class LookupKlassInPoolTest { |
|
59 |
||
36305
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
60 |
public static void main(String[] args) throws Exception { |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
61 |
Map<ConstantTypes, Validator> typeTests = new HashMap<>(); |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
62 |
typeTests.put(CONSTANT_CLASS, LookupKlassInPoolTest::validate); |
33160 | 63 |
ConstantPoolTestCase testCase = new ConstantPoolTestCase(typeTests); |
64 |
testCase.test(); |
|
36305
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
65 |
// The next "Class.forName" and repeating "testCase.test()" |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
66 |
// are here for the following reason. |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
67 |
// The first test run is without dummy class initialization, |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
68 |
// which means no constant pool cache exists. |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
69 |
// The second run is with initialized class (with constant pool cache available). |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
70 |
// Some CompilerToVM methods require different input |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
71 |
// depending on whether CP cache exists or not. |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
72 |
for (DummyClasses dummy : DummyClasses.values()) { |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
73 |
Class.forName(dummy.klass.getName()); |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
74 |
} |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
75 |
testCase.test(); |
33160 | 76 |
} |
77 |
||
36305
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
78 |
public static void validate(ConstantPool constantPoolCTVM, |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
79 |
ConstantTypes cpType, |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
80 |
DummyClasses dummyClass, |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
81 |
int i) { |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
82 |
TestedCPEntry entry = cpType.getTestedCPEntry(dummyClass, i); |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
83 |
if (entry == null) { |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
84 |
return; |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
85 |
} |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
86 |
Object classToVerify = CompilerToVMHelper.lookupKlassInPool(constantPoolCTVM, i); |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
87 |
if (!(classToVerify instanceof HotSpotResolvedObjectType) && !(classToVerify instanceof String)) { |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
88 |
String msg = String.format("Output of method CTVM.lookupKlassInPool is neither" |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
89 |
+ " a HotSpotResolvedObjectType, nor a String"); |
33160 | 90 |
throw new AssertionError(msg); |
91 |
} |
|
36305
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
92 |
String classNameToRefer = entry.klass; |
33160 | 93 |
String outputToVerify = classToVerify.toString(); |
94 |
if (!outputToVerify.contains(classNameToRefer)) { |
|
36305
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
95 |
String msg = String.format("Wrong class accessed by constant pool index %d: %s, but should be %s", |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
96 |
i, |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
97 |
outputToVerify, |
55c7fe59d6d7
8141618: Change JVMCI compilerToVM constant pool tests to support CP cache
kshefov
parents:
35148
diff
changeset
|
98 |
classNameToRefer); |
33160 | 99 |
throw new AssertionError(msg); |
100 |
} |
|
101 |
} |
|
102 |
} |