hotspot/test/compiler/jvmci/compilerToVM/LookupNameAndTypeRefIndexInPoolTest.java
author kshefov
Sat, 20 Feb 2016 11:49:45 +0300
changeset 36306 9b8ba80e9327
child 36508 5f9eee6b383b
permissions -rw-r--r--
8141619: Develop new tests for JVMCI compilerToVM class' CP related methods Reviewed-by: twisti, dpochepk
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
36306
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
     1
/*
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
     2
 * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
     4
 *
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
     7
 * published by the Free Software Foundation.
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
     8
 *
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    13
 * accompanied this code).
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    14
 *
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    18
 *
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    21
 * questions.
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    22
 *
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    23
 */
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    24
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    25
/*
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    26
 * @test
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    27
 * @bug 8138708
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    28
 * @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9" | os.simpleArch == "aarch64")
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    29
 * @library /testlibrary /test/lib /
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    30
 * @compile ../common/CompilerToVMHelper.java
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    31
 * @build sun.hotspot.WhiteBox
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    32
 *        compiler.jvmci.compilerToVM.LookupNameAndTypeRefIndexInPoolTest
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    33
 * @run main ClassFileInstaller sun.hotspot.WhiteBox
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    34
 *                              sun.hotspot.WhiteBox$WhiteBoxPermission
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    35
 *                              jdk.vm.ci.hotspot.CompilerToVMHelper
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    36
 * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    37
 *                   -XX:+WhiteBoxAPI -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    38
 *                   compiler.jvmci.compilerToVM.LookupNameAndTypeRefIndexInPoolTest
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    39
 */
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    40
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    41
package compiler.jvmci.compilerToVM;
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    42
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    43
import compiler.jvmci.compilerToVM.ConstantPoolTestsHelper.DummyClasses;
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    44
import compiler.jvmci.compilerToVM.ConstantPoolTestCase.ConstantTypes;
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    45
import static compiler.jvmci.compilerToVM.ConstantPoolTestCase.ConstantTypes.*;
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    46
import compiler.jvmci.compilerToVM.ConstantPoolTestCase.TestedCPEntry;
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    47
import compiler.jvmci.compilerToVM.ConstantPoolTestCase.Validator;
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    48
import java.util.HashMap;
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    49
import java.util.Map;
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    50
import jdk.test.lib.Asserts;
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    51
import jdk.vm.ci.hotspot.CompilerToVMHelper;
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    52
import jdk.vm.ci.meta.ConstantPool;
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    53
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    54
/**
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    55
 * Test for {@code jdk.vm.ci.hotspot.CompilerToVM.lookupNameAndTypeRefIndexInPool} method
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    56
 */
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    57
public class LookupNameAndTypeRefIndexInPoolTest {
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    58
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    59
    public static void main(String[] args) throws Exception {
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    60
        Map<ConstantTypes, Validator> typeTests = new HashMap<>();
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    61
        typeTests.put(CONSTANT_METHODREF, LookupNameAndTypeRefIndexInPoolTest::validate);
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    62
        typeTests.put(CONSTANT_INTERFACEMETHODREF, LookupNameAndTypeRefIndexInPoolTest::validate);
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    63
        typeTests.put(CONSTANT_FIELDREF, LookupNameAndTypeRefIndexInPoolTest::validate);
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    64
        typeTests.put(CONSTANT_INVOKEDYNAMIC, LookupNameAndTypeRefIndexInPoolTest::validate);
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    65
        ConstantPoolTestCase testCase = new ConstantPoolTestCase(typeTests);
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    66
        testCase.test();
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    67
        // The next "Class.forName" and repeating "testCase.test()"
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    68
        // are here for the following reason.
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    69
        // The first test run is without dummy class initialization,
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    70
        // which means no constant pool cache exists.
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    71
        // The second run is with initialized class (with constant pool cache available).
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    72
        // Some CompilerToVM methods require different input
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    73
        // depending on whether CP cache exists or not.
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    74
        for (DummyClasses dummy : DummyClasses.values()) {
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    75
            Class.forName(dummy.klass.getName());
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    76
        }
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    77
        testCase.test();
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    78
    }
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    79
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    80
    private static void validate(ConstantPool constantPoolCTVM,
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    81
                                 ConstantTypes cpType,
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    82
                                 DummyClasses dummyClass,
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    83
                                 int cpi) {
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    84
        TestedCPEntry entry = cpType.getTestedCPEntry(dummyClass, cpi);
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    85
        if (entry == null) {
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    86
            return;
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    87
        }
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    88
        int index = cpi;
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    89
        String cached = "";
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    90
        int cpci = dummyClass.getCPCacheIndex(cpi);
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    91
        if (cpci != ConstantPoolTestsHelper.NO_CP_CACHE_PRESENT) {
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    92
            index = cpci;
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    93
            cached = "cached ";
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    94
        }
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    95
        int indexToVerify = CompilerToVMHelper.lookupNameAndTypeRefIndexInPool(constantPoolCTVM, index);
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    96
        int indexToRefer = dummyClass.constantPoolSS.getNameAndTypeRefIndexAt(cpi);
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    97
        String msg = String.format("Wrong nameAndType index returned by lookupNameAndTypeRefIndexInPool"
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    98
                                           + " method applied to %sconstant pool index %d",
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
    99
                                   cached,
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
   100
                                   index);
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
   101
        Asserts.assertEQ(indexToRefer, indexToVerify, msg);
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
   102
    }
9b8ba80e9327 8141619: Develop new tests for JVMCI compilerToVM class' CP related methods
kshefov
parents:
diff changeset
   103
}