author | chegar |
Tue, 22 Mar 2016 15:26:07 +0000 | |
changeset 36694 | 182a5e7a519e |
parent 34185 | ee71c590a456 |
child 36599 | 8dd1694c0480 |
permissions | -rw-r--r-- |
15621 | 1 |
/* |
29678
dd2f3932c21e
8075586: Add @modules as needed to the open hotspot tests
ykantser
parents:
28190
diff
changeset
|
2 |
* Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved. |
15621 | 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 |
||
34155
8d9e0cbf93a2
8138689: use package for /compiler/whitebox common classes
dpochepk
parents:
29678
diff
changeset
|
24 |
import compiler.whitebox.CompilerWhiteBoxTest; |
8d9e0cbf93a2
8138689: use package for /compiler/whitebox common classes
dpochepk
parents:
29678
diff
changeset
|
25 |
|
15621 | 26 |
/* |
27 |
* @test MakeMethodNotCompilableTest |
|
19332 | 28 |
* @bug 8012322 8006683 8007288 8022832 |
34185 | 29 |
* @library /testlibrary /test/lib / |
29678
dd2f3932c21e
8075586: Add @modules as needed to the open hotspot tests
ykantser
parents:
28190
diff
changeset
|
30 |
* @modules java.management |
15793
4867678e3517
8006753: fix failed for JDK-8002415 White box testing API for HotSpot
mgerdin
parents:
15621
diff
changeset
|
31 |
* @build MakeMethodNotCompilableTest |
4867678e3517
8006753: fix failed for JDK-8002415 White box testing API for HotSpot
mgerdin
parents:
15621
diff
changeset
|
32 |
* @run main ClassFileInstaller sun.hotspot.WhiteBox |
25958
8dc85547d6d6
8011397: JTREG needs to copy additional WhiteBox class file to JTwork/scratch/sun/hotspot
mgerdin
parents:
25736
diff
changeset
|
33 |
* sun.hotspot.WhiteBox$WhiteBoxPermission |
34155
8d9e0cbf93a2
8138689: use package for /compiler/whitebox common classes
dpochepk
parents:
29678
diff
changeset
|
34 |
* @run main/othervm/timeout=2400 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:CompileCommand=compileonly,compiler.whitebox.SimpleTestCase$Helper::* MakeMethodNotCompilableTest |
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
35 |
* @summary testing of WB::makeMethodNotCompilable() |
15621 | 36 |
* @author igor.ignatyev@oracle.com |
37 |
*/ |
|
38 |
public class MakeMethodNotCompilableTest extends CompilerWhiteBoxTest { |
|
19332 | 39 |
private int bci; |
15621 | 40 |
public static void main(String[] args) throws Exception { |
22214
c551021e75b2
8028587: New tests development for intrisics for basic operators - add, neg, inc, dec, sub, mul
iignatyev
parents:
20294
diff
changeset
|
41 |
CompilerWhiteBoxTest.main(MakeMethodNotCompilableTest::new, args); |
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
42 |
} |
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
43 |
|
22214
c551021e75b2
8028587: New tests development for intrisics for basic operators - add, neg, inc, dec, sub, mul
iignatyev
parents:
20294
diff
changeset
|
44 |
private MakeMethodNotCompilableTest(TestCase testCase) { |
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
45 |
super(testCase); |
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
46 |
// to prevent inlining of #method |
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
47 |
WHITE_BOX.testSetDontInlineMethod(method, true); |
15621 | 48 |
} |
49 |
||
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
50 |
/** |
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
51 |
* Tests {@code WB::makeMethodNotCompilable()} by calling it before |
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
52 |
* compilation and checking that method isn't compiled. Also |
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
53 |
* checks that WB::clearMethodState() clears no-compilable flags. For |
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
54 |
* tiered, additional checks for all available levels are conducted. |
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
55 |
* |
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
56 |
* @throws Exception if one of the checks fails. |
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
57 |
*/ |
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
58 |
@Override |
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
59 |
protected void test() throws Exception { |
23207
fc39038d37dc
8027124: [TESTBUG] NonTieredLevelsTest: java.lang.RuntimeException: private TestCase$Helper(java.lang.Object) must be osr_compiled
iignatyev
parents:
22214
diff
changeset
|
60 |
if (skipXcompOSR()) { |
fc39038d37dc
8027124: [TESTBUG] NonTieredLevelsTest: java.lang.RuntimeException: private TestCase$Helper(java.lang.Object) must be osr_compiled
iignatyev
parents:
22214
diff
changeset
|
61 |
return; |
20294
af95d17f2e04
8023452: TestCase$Helper(java.lang.Object) must be osr_compiled
iignatyev
parents:
19332
diff
changeset
|
62 |
} |
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
63 |
checkNotCompiled(); |
19332 | 64 |
if (!isCompilable()) { |
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
65 |
throw new RuntimeException(method + " must be compilable"); |
15621 | 66 |
} |
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
67 |
|
19332 | 68 |
bci = getBci(); |
69 |
||
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
70 |
if (TIERED_COMPILATION) { |
17126
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
71 |
final int tierLimit = TIERED_STOP_AT_LEVEL + 1; |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
72 |
for (int testedTier = 1; testedTier < tierLimit; ++testedTier) { |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
73 |
testTier(testedTier); |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
74 |
} |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
75 |
for (int testedTier = 1; testedTier < tierLimit; ++testedTier) { |
19332 | 76 |
makeNotCompilable(testedTier); |
77 |
if (isCompilable(testedTier)) { |
|
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
78 |
throw new RuntimeException(method |
17126
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
79 |
+ " must be not compilable at level" + testedTier); |
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
80 |
} |
19332 | 81 |
WHITE_BOX.enqueueMethodForCompilation(method, testedTier, bci); |
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
82 |
checkNotCompiled(); |
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
83 |
|
19332 | 84 |
if (!isCompilable()) { |
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
85 |
System.out.println(method |
17126
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
86 |
+ " is not compilable after level " + testedTier); |
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
87 |
} |
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
88 |
} |
17126
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
89 |
} else { |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
90 |
compile(); |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
91 |
checkCompiled(); |
19332 | 92 |
int compLevel = getCompLevel(); |
93 |
deoptimize(); |
|
94 |
makeNotCompilable(compLevel); |
|
95 |
if (isCompilable(COMP_LEVEL_ANY)) { |
|
17126
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
96 |
throw new RuntimeException(method |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
97 |
+ " must be not compilable at CompLevel::CompLevel_any," |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
98 |
+ " after it is not compilable at " + compLevel); |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
99 |
} |
19332 | 100 |
|
17126
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
101 |
WHITE_BOX.clearMethodState(method); |
19332 | 102 |
if (!isCompilable()) { |
103 |
throw new RuntimeException(method |
|
104 |
+ " is not compilable after clearMethodState()"); |
|
105 |
} |
|
17126
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
106 |
|
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
107 |
// nocompilable at opposite level must make no sense |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
108 |
int oppositeLevel; |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
109 |
if (isC1Compile(compLevel)) { |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
110 |
oppositeLevel = COMP_LEVEL_FULL_OPTIMIZATION; |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
111 |
} else { |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
112 |
oppositeLevel = COMP_LEVEL_SIMPLE; |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
113 |
} |
19332 | 114 |
makeNotCompilable(oppositeLevel); |
17126
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
115 |
|
19332 | 116 |
if (!isCompilable(COMP_LEVEL_ANY)) { |
17126
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
117 |
throw new RuntimeException(method |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
118 |
+ " must be compilable at CompLevel::CompLevel_any," |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
119 |
+ " even it is not compilable at opposite level [" |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
120 |
+ compLevel + "]"); |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
121 |
} |
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
122 |
|
19332 | 123 |
if (!isCompilable(compLevel)) { |
17126
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
124 |
throw new RuntimeException(method |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
125 |
+ " must be compilable at level " + compLevel |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
126 |
+ ", even it is not compilable at opposite level [" |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
127 |
+ compLevel + "]"); |
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
128 |
} |
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
129 |
} |
17126
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
130 |
|
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
131 |
// clearing after tiered/non-tiered tests |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
132 |
// WB.clearMethodState() must reset no-compilable flags |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
133 |
WHITE_BOX.clearMethodState(method); |
19332 | 134 |
if (!isCompilable()) { |
17126
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
135 |
throw new RuntimeException(method |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
136 |
+ " is not compilable after clearMethodState()"); |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
137 |
} |
27430
c148f9c9fd4f
8061983: [TESTBUG] compiler/whitebox/MakeMethodNotCompilableTest.java fails with "must not be in queue"
thartmann
parents:
27146
diff
changeset
|
138 |
// Make method not (OSR-)compilable (depending on testCase.isOsr()) |
19332 | 139 |
makeNotCompilable(); |
140 |
if (isCompilable()) { |
|
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
141 |
throw new RuntimeException(method + " must be not compilable"); |
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
142 |
} |
27430
c148f9c9fd4f
8061983: [TESTBUG] compiler/whitebox/MakeMethodNotCompilableTest.java fails with "must not be in queue"
thartmann
parents:
27146
diff
changeset
|
143 |
// Try to (OSR-)compile method |
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
144 |
compile(); |
27430
c148f9c9fd4f
8061983: [TESTBUG] compiler/whitebox/MakeMethodNotCompilableTest.java fails with "must not be in queue"
thartmann
parents:
27146
diff
changeset
|
145 |
// Method should not be (OSR-)compiled |
c148f9c9fd4f
8061983: [TESTBUG] compiler/whitebox/MakeMethodNotCompilableTest.java fails with "must not be in queue"
thartmann
parents:
27146
diff
changeset
|
146 |
checkNotCompiled(testCase.isOsr()); |
19332 | 147 |
if (isCompilable()) { |
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
148 |
throw new RuntimeException(method + " must be not compilable"); |
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
149 |
} |
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
150 |
// WB.clearMethodState() must reset no-compilable flags |
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
151 |
WHITE_BOX.clearMethodState(method); |
19332 | 152 |
if (!isCompilable()) { |
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
153 |
throw new RuntimeException(method |
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
154 |
+ " is not compilable after clearMethodState()"); |
15621 | 155 |
} |
156 |
compile(); |
|
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
157 |
checkCompiled(); |
15621 | 158 |
} |
17126
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
159 |
|
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
160 |
// separately tests each tier |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
161 |
private void testTier(int testedTier) { |
19332 | 162 |
if (!isCompilable(testedTier)) { |
17126
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
163 |
throw new RuntimeException(method |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
164 |
+ " is not compilable on start"); |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
165 |
} |
19332 | 166 |
makeNotCompilable(testedTier); |
17126
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
167 |
|
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
168 |
// tests for all other tiers |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
169 |
for (int anotherTier = 1, tierLimit = TIERED_STOP_AT_LEVEL + 1; |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
170 |
anotherTier < tierLimit; ++anotherTier) { |
19332 | 171 |
boolean isCompilable = isCompilable(anotherTier); |
17126
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
172 |
if (sameCompile(testedTier, anotherTier)) { |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
173 |
if (isCompilable) { |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
174 |
throw new RuntimeException(method |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
175 |
+ " must be not compilable at level " + anotherTier |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
176 |
+ ", if it is not compilable at " + testedTier); |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
177 |
} |
19332 | 178 |
WHITE_BOX.enqueueMethodForCompilation(method, anotherTier, bci); |
17126
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
179 |
checkNotCompiled(); |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
180 |
} else { |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
181 |
if (!isCompilable) { |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
182 |
throw new RuntimeException(method |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
183 |
+ " must be compilable at level " + anotherTier |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
184 |
+ ", even if it is not compilable at " |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
185 |
+ testedTier); |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
186 |
} |
19332 | 187 |
WHITE_BOX.enqueueMethodForCompilation(method, anotherTier, bci); |
17126
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
188 |
checkCompiled(); |
19332 | 189 |
deoptimize(); |
17126
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
190 |
} |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
191 |
|
19332 | 192 |
if (!isCompilable(COMP_LEVEL_ANY)) { |
17126
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
193 |
throw new RuntimeException(method |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
194 |
+ " must be compilable at 'CompLevel::CompLevel_any'" |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
195 |
+ ", if it is not compilable only at " + testedTier); |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
196 |
} |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
197 |
} |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
198 |
|
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
199 |
// clear state after test |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
200 |
WHITE_BOX.clearMethodState(method); |
19332 | 201 |
if (!isCompilable(testedTier)) { |
17126
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
202 |
throw new RuntimeException(method |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
203 |
+ " is not compilable after clearMethodState()"); |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
204 |
} |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
205 |
} |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
206 |
|
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
207 |
private boolean sameCompile(int level1, int level2) { |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
208 |
if (level1 == level2) { |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
209 |
return true; |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
210 |
} |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
211 |
if (isC1Compile(level1) && isC1Compile(level2)) { |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
212 |
return true; |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
213 |
} |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
214 |
if (isC2Compile(level1) && isC2Compile(level2)) { |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
215 |
return true; |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
216 |
} |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
217 |
return false; |
42a942feeea2
8012322: Tiered: CompilationPolicy::can_be_compiled(CompLevel_all) mistakenly return false
iignatyev
parents:
17015
diff
changeset
|
218 |
} |
19332 | 219 |
|
220 |
private int getBci() { |
|
221 |
compile(); |
|
222 |
checkCompiled(); |
|
223 |
int result = WHITE_BOX.getMethodEntryBci(method); |
|
224 |
deoptimize(); |
|
225 |
WHITE_BOX.clearMethodState(method); |
|
226 |
return result; |
|
227 |
} |
|
15621 | 228 |
} |