hotspot/test/compiler/jvmci/compilerToVM/AllocateCompileIdTest.java
author stsmirno
Mon, 17 Oct 2016 18:54:12 -0400
changeset 41705 332239c052cc
parent 40631 ed82623d7831
child 42607 acd91f1875d4
permissions -rw-r--r--
8165687: Fix license and copyright headers in jd9 under hotspot/test Summary: Legal notices and Oracle copyrights were updated (white and blank space, commas) in tests files for uniformity to meet Oracle requirements. Reviewed-by: dholmes, iris Contributed-by: Stanislav Smirnov <stanislav.smirnov@oracle.com>, Vassili Igouchkine <vassili.igouchkine@oracle.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
     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
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
     4
 *
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
     7
 * published by the Free Software Foundation.
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
     8
 *
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    13
 * accompanied this code).
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    14
 *
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    18
 *
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    21
 * questions.
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    22
 */
41705
332239c052cc 8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents: 40631
diff changeset
    23
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    24
/**
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    25
 * @test
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    26
 * @bug 8136421
39291
a4efe145313d 8157831: JVMCI tests should not be executed on linux-arm32
lmesnik
parents: 38152
diff changeset
    27
 * @requires (vm.simpleArch == "x64" | vm.simpleArch == "sparcv9" | vm.simpleArch == "aarch64")
40631
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 40059
diff changeset
    28
 * @library /test/lib /
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35148
diff changeset
    29
 * @library ../common/patches
38152
80e5da81fb2c 8154258: [TESTBUG] Various serviceability tests fail compilation
dsamersoff
parents: 36508
diff changeset
    30
 * @modules java.base/jdk.internal.misc
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35148
diff changeset
    31
 * @modules java.base/jdk.internal.org.objectweb.asm
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35148
diff changeset
    32
 *          java.base/jdk.internal.org.objectweb.asm.tree
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35148
diff changeset
    33
 *          jdk.vm.ci/jdk.vm.ci.hotspot
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35148
diff changeset
    34
 *          jdk.vm.ci/jdk.vm.ci.code
40053
b3617982544e 8160657: Compiler HotSpot tests should use the "run driver" directive where applicable
iignatyev
parents: 39291
diff changeset
    35
 *
40631
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 40059
diff changeset
    36
 * @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
    37
 * @run driver ClassFileInstaller sun.hotspot.WhiteBox
b3617982544e 8160657: Compiler HotSpot tests should use the "run driver" directive where applicable
iignatyev
parents: 39291
diff changeset
    38
 *                                sun.hotspot.WhiteBox$WhiteBoxPermission
36508
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35148
diff changeset
    39
 * @run main/othervm -Xbootclasspath/a:.
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35148
diff changeset
    40
 *                   -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35148
diff changeset
    41
 *                   -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35148
diff changeset
    42
 *                   -XX:-BackgroundCompilation
5f9eee6b383b 8142968: Module System implementation
alanb
parents: 35148
diff changeset
    43
 *                   compiler.jvmci.compilerToVM.AllocateCompileIdTest
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    44
 */
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    45
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    46
package compiler.jvmci.compilerToVM;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    47
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    48
import compiler.jvmci.common.CTVMUtilities;
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 40053
diff changeset
    49
import jdk.test.lib.Asserts;
40631
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 40059
diff changeset
    50
import jdk.test.lib.util.Pair;
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 40053
diff changeset
    51
import jdk.test.lib.Utils;
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 40053
diff changeset
    52
import jdk.vm.ci.hotspot.CompilerToVMHelper;
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 40053
diff changeset
    53
import jdk.vm.ci.hotspot.HotSpotResolvedJavaMethod;
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 40053
diff changeset
    54
import sun.hotspot.code.NMethod;
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    55
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    56
import java.lang.reflect.Executable;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    57
import java.lang.reflect.Method;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    58
import java.util.ArrayList;
40059
c2304140ed64 8132919: Put compiler tests in packages
tpivovarova
parents: 40053
diff changeset
    59
import java.util.HashSet;
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    60
import java.util.List;
34171
84f04836ec54 8138810: rework tests for CompilerToVM::allocateCompiledId
tpivovarova
parents: 33632
diff changeset
    61
import java.util.stream.Collectors;
84f04836ec54 8138810: rework tests for CompilerToVM::allocateCompiledId
tpivovarova
parents: 33632
diff changeset
    62
import java.util.stream.Stream;
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    63
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    64
public class AllocateCompileIdTest {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    65
34171
84f04836ec54 8138810: rework tests for CompilerToVM::allocateCompiledId
tpivovarova
parents: 33632
diff changeset
    66
    private static final int SOME_REPEAT_VALUE = 5;
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    67
    private final HashSet<Integer> ids = new HashSet<>();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    68
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    69
    public static void main(String[] args) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    70
        AllocateCompileIdTest test = new AllocateCompileIdTest();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    71
        createTestCasesCorrectBci().forEach(test::runSanityCorrectTest);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    72
        createTestCasesIncorrectBci().forEach(test::runSanityIncorrectTest);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    73
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    74
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    75
    private static List<CompileCodeTestCase> createTestCasesCorrectBci() {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    76
        List<CompileCodeTestCase> result = new ArrayList<>();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    77
        try {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    78
            Class<?> aClass = DummyClass.class;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    79
            Method method = aClass.getMethod("withLoop");
33632
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33160
diff changeset
    80
            Object receiver = new DummyClass();
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33160
diff changeset
    81
            result.add(new CompileCodeTestCase(receiver, method, 17));
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33160
diff changeset
    82
            result.add(new CompileCodeTestCase(receiver, method, -1));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    83
        } catch (NoSuchMethodException e) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    84
            throw new Error("TEST BUG : " + e, e);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    85
        }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    86
        return result;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    87
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    88
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    89
    private static List<Pair<CompileCodeTestCase, Class<? extends Throwable>>>
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    90
            createTestCasesIncorrectBci() {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    91
        List<Pair<CompileCodeTestCase, Class<? extends Throwable>>> result
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    92
                = new ArrayList<>();
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    93
        try {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    94
            Class<?> aClass = DummyClass.class;
33632
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33160
diff changeset
    95
            Object receiver = new DummyClass();
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    96
            Method method = aClass.getMethod("dummyInstanceFunction");
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
    97
            // greater than bytecode.length
34171
84f04836ec54 8138810: rework tests for CompilerToVM::allocateCompiledId
tpivovarova
parents: 33632
diff changeset
    98
            byte[] bytecode = CompilerToVMHelper.getBytecode(CTVMUtilities
84f04836ec54 8138810: rework tests for CompilerToVM::allocateCompiledId
tpivovarova
parents: 33632
diff changeset
    99
                    .getResolvedMethod(method));
84f04836ec54 8138810: rework tests for CompilerToVM::allocateCompiledId
tpivovarova
parents: 33632
diff changeset
   100
            Stream.of(
84f04836ec54 8138810: rework tests for CompilerToVM::allocateCompiledId
tpivovarova
parents: 33632
diff changeset
   101
                    // greater than bytecode.length
84f04836ec54 8138810: rework tests for CompilerToVM::allocateCompiledId
tpivovarova
parents: 33632
diff changeset
   102
                    bytecode.length + 4,
84f04836ec54 8138810: rework tests for CompilerToVM::allocateCompiledId
tpivovarova
parents: 33632
diff changeset
   103
                    bytecode.length + 50,
84f04836ec54 8138810: rework tests for CompilerToVM::allocateCompiledId
tpivovarova
parents: 33632
diff changeset
   104
                    bytecode.length + 200,
84f04836ec54 8138810: rework tests for CompilerToVM::allocateCompiledId
tpivovarova
parents: 33632
diff changeset
   105
                    // negative cases
84f04836ec54 8138810: rework tests for CompilerToVM::allocateCompiledId
tpivovarova
parents: 33632
diff changeset
   106
                    -4, -50, -200)
84f04836ec54 8138810: rework tests for CompilerToVM::allocateCompiledId
tpivovarova
parents: 33632
diff changeset
   107
                    .map(bci -> new Pair<CompileCodeTestCase,
84f04836ec54 8138810: rework tests for CompilerToVM::allocateCompiledId
tpivovarova
parents: 33632
diff changeset
   108
                            Class<? extends Throwable>>(
84f04836ec54 8138810: rework tests for CompilerToVM::allocateCompiledId
tpivovarova
parents: 33632
diff changeset
   109
                            new CompileCodeTestCase(receiver, method, bci),
84f04836ec54 8138810: rework tests for CompilerToVM::allocateCompiledId
tpivovarova
parents: 33632
diff changeset
   110
                            IllegalArgumentException.class))
84f04836ec54 8138810: rework tests for CompilerToVM::allocateCompiledId
tpivovarova
parents: 33632
diff changeset
   111
                    .collect(Collectors.toList());
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   112
        } catch (NoSuchMethodException e) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   113
            throw new Error("TEST BUG : " + e.getMessage(), e);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   114
        }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   115
        return result;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   116
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   117
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   118
    private void runSanityCorrectTest(CompileCodeTestCase testCase) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   119
        System.out.println(testCase);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   120
        Executable aMethod = testCase.executable;
33632
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33160
diff changeset
   121
        // to generate ciTypeFlow
34171
84f04836ec54 8138810: rework tests for CompilerToVM::allocateCompiledId
tpivovarova
parents: 33632
diff changeset
   122
        testCase.invoke(Utils.getNullValues(aMethod.getParameterTypes()));
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   123
        int bci = testCase.bci;
33632
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33160
diff changeset
   124
        HotSpotResolvedJavaMethod method = CTVMUtilities
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   125
                .getResolvedMethod(aMethod);
34171
84f04836ec54 8138810: rework tests for CompilerToVM::allocateCompiledId
tpivovarova
parents: 33632
diff changeset
   126
        for (int i = 0; i < SOME_REPEAT_VALUE; ++i) {
84f04836ec54 8138810: rework tests for CompilerToVM::allocateCompiledId
tpivovarova
parents: 33632
diff changeset
   127
            int wbCompileID = getWBCompileID(testCase);
84f04836ec54 8138810: rework tests for CompilerToVM::allocateCompiledId
tpivovarova
parents: 33632
diff changeset
   128
            int id = CompilerToVMHelper.allocateCompileId(method, bci);
84f04836ec54 8138810: rework tests for CompilerToVM::allocateCompiledId
tpivovarova
parents: 33632
diff changeset
   129
            Asserts.assertNE(id, 0, testCase + " : zero compile id");
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   130
            Asserts.assertGT(id, wbCompileID, testCase
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   131
                    + " : allocated 'compile id' not  greater than existed");
34171
84f04836ec54 8138810: rework tests for CompilerToVM::allocateCompiledId
tpivovarova
parents: 33632
diff changeset
   132
            Asserts.assertTrue(ids.add(wbCompileID), testCase
84f04836ec54 8138810: rework tests for CompilerToVM::allocateCompiledId
tpivovarova
parents: 33632
diff changeset
   133
                    + " : vm compilation allocated existing id " + id);
84f04836ec54 8138810: rework tests for CompilerToVM::allocateCompiledId
tpivovarova
parents: 33632
diff changeset
   134
            Asserts.assertTrue(ids.add(id), testCase
84f04836ec54 8138810: rework tests for CompilerToVM::allocateCompiledId
tpivovarova
parents: 33632
diff changeset
   135
                    + " : allocateCompileId returned existing id " + id);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   136
        }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   137
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   138
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   139
    private void runSanityIncorrectTest(
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   140
            Pair<CompileCodeTestCase, Class<? extends Throwable>> testCase) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   141
        System.out.println(testCase);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   142
        Class<? extends Throwable> exception = testCase.second;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   143
        Executable aMethod = testCase.first.executable;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   144
        int bci = testCase.first.bci;
33632
038347770a9e 8139170: JVMCI refresh
twisti
parents: 33160
diff changeset
   145
        HotSpotResolvedJavaMethod method = CTVMUtilities
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   146
                .getResolvedMethod(aMethod);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   147
        Utils.runAndCheckException(
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   148
                () -> CompilerToVMHelper.allocateCompileId(method, bci),
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   149
                exception);
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   150
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   151
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   152
    private int getWBCompileID(CompileCodeTestCase testCase) {
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   153
        NMethod nm = testCase.deoptimizeAndCompile();
34171
84f04836ec54 8138810: rework tests for CompilerToVM::allocateCompiledId
tpivovarova
parents: 33632
diff changeset
   154
        if (nm == null || nm.compile_id <= 0) {
84f04836ec54 8138810: rework tests for CompilerToVM::allocateCompiledId
tpivovarova
parents: 33632
diff changeset
   155
            throw new Error("TEST BUG : cannot compile method " + testCase);
33160
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   156
        }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   157
        return nm.compile_id;
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   158
    }
c59f1676d27e 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
diff changeset
   159
}