author | chegar |
Tue, 22 Mar 2016 15:26:07 +0000 | |
changeset 36694 | 182a5e7a519e |
parent 34185 | ee71c590a456 |
child 36599 | 8dd1694c0480 |
permissions | -rw-r--r-- |
16689 | 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. |
16689 | 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 |
|
16689 | 26 |
/* |
27 |
* @test EnqueueMethodForCompilationTest |
|
19332 | 28 |
* @bug 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 |
16689 | 31 |
* @build EnqueueMethodForCompilationTest |
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=600 -Xbootclasspath/a:. -Xmixed -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:CompileCommand=compileonly,compiler.whitebox.SimpleTestCase$Helper::* EnqueueMethodForCompilationTest |
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
35 |
* @summary testing of WB::enqueueMethodForCompilation() |
16689 | 36 |
* @author igor.ignatyev@oracle.com |
37 |
*/ |
|
38 |
public class EnqueueMethodForCompilationTest extends CompilerWhiteBoxTest { |
|
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
39 |
|
16689 | 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(EnqueueMethodForCompilationTest::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 EnqueueMethodForCompilationTest(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); |
16689 | 48 |
} |
49 |
||
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
50 |
@Override |
16689 | 51 |
protected void test() throws Exception { |
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
52 |
checkNotCompiled(); |
16689 | 53 |
|
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
54 |
// method can not be compiled on level 'none' |
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
55 |
WHITE_BOX.enqueueMethodForCompilation(method, COMP_LEVEL_NONE); |
19332 | 56 |
if (isCompilable(COMP_LEVEL_NONE)) { |
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
57 |
throw new RuntimeException(method |
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
58 |
+ " is compilable at level COMP_LEVEL_NONE"); |
16689 | 59 |
} |
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
60 |
checkNotCompiled(); |
16689 | 61 |
|
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
62 |
// COMP_LEVEL_ANY is inapplicable as level for compilation |
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
63 |
WHITE_BOX.enqueueMethodForCompilation(method, COMP_LEVEL_ANY); |
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
64 |
checkNotCompiled(); |
16689 | 65 |
|
19332 | 66 |
// not existing comp level |
67 |
WHITE_BOX.enqueueMethodForCompilation(method, 42); |
|
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
68 |
checkNotCompiled(); |
16689 | 69 |
|
70 |
compile(); |
|
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
71 |
checkCompiled(); |
19332 | 72 |
|
73 |
int compLevel = getCompLevel(); |
|
74 |
int bci = WHITE_BOX.getMethodEntryBci(method); |
|
75 |
deoptimize(); |
|
76 |
checkNotCompiled(); |
|
20294
af95d17f2e04
8023452: TestCase$Helper(java.lang.Object) must be osr_compiled
iignatyev
parents:
19332
diff
changeset
|
77 |
WHITE_BOX.clearMethodState(method); |
af95d17f2e04
8023452: TestCase$Helper(java.lang.Object) must be osr_compiled
iignatyev
parents:
19332
diff
changeset
|
78 |
|
19332 | 79 |
WHITE_BOX.enqueueMethodForCompilation(method, compLevel, bci); |
80 |
checkCompiled(); |
|
81 |
deoptimize(); |
|
82 |
checkNotCompiled(); |
|
83 |
||
84 |
compile(); |
|
85 |
checkCompiled(); |
|
86 |
deoptimize(); |
|
17015
92390f57e8b1
8011971: WB API doesn't accept j.l.reflect.Constructor
iignatyev
parents:
16689
diff
changeset
|
87 |
checkNotCompiled(); |
16689 | 88 |
} |
89 |
} |