ConstantGettersTransitionsTest.java 5.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
/*
 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

import java.lang.reflect.Executable;
import java.util.concurrent.Callable;

/**
 * @test ConstantGettersTransitionsTest
 * @library /testlibrary /testlibrary/whitebox /compiler/whitebox
 * @build TransitionsTestExecutor ConstantGettersTransitionsTest
 * @run main ClassFileInstaller sun.hotspot.WhiteBox sun.hotspot.WhiteBox$WhiteBoxPermission
 * @run main/othervm/timeout=240 -Xmixed -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions
 *                   -XX:+WhiteBoxAPI -XX:+TieredCompilation
 *                   -XX:CompileCommand=compileonly,ConstantGettersTestCase$TrivialMethods::*
 *                   TransitionsTestExecutor ConstantGettersTransitionsTest
 * @summary Test the correctness of compilation level transitions for constant getters methods
 */
public class ConstantGettersTransitionsTest extends LevelTransitionTest {
    public static void main(String[] args) {
        assert (!CompilerWhiteBoxTest.skipOnTieredCompilation(false));

        // run test cases
        for (TestCase testCase : ConstantGettersTestCase.values()) {
            new ConstantGettersTransitionsTest(testCase).runTest();
        }
    }

    @Override
    protected boolean isTrivial() {
        return true;
    }

    private ConstantGettersTransitionsTest(TestCase testCase) {
        super(testCase);
    }
}

enum ConstantGettersTestCase implements CompilerWhiteBoxTest.TestCase {
    ICONST_M1,
    ICONST_0,
    ICONST_1,
    ICONST_2,
    ICONST_3,
    ICONST_4,
    ICONST_5,
    LCONST_0,
    LCONST_1,
    FCONST_0,
    FCONST_1,
    FCONST_2,
    DCONST_0,
    DCONST_1,
    DCONST_W,
    BYTE,
    SHORT,
    CHAR;

    private final Executable executable;
    private final Callable<Integer> callable;

    @Override
    public Executable getExecutable() {
        return executable;
    }

    @Override
    public Callable<Integer> getCallable() {
        return callable;
    }

    @Override
    public boolean isOsr() {
        return false;
    }

    private ConstantGettersTestCase() {
        String name = "make" + this.name();
        this.executable = LevelTransitionTest.Helper.getMethod(TrivialMethods.class, name);
        this.callable = LevelTransitionTest.Helper.getCallable(new TrivialMethods(), name);
    }

    /**
     * Contains methods that load constants with certain types of bytecodes
     * See JVMS 2.11.2. Load and Store Instructions
     * Note that it doesn't have a method for ldc_w instruction
     */
    private static class TrivialMethods {
        public static int makeICONST_M1() {
            return -1;
        }

        public static int makeICONST_0() {
            return 0;
        }

        public static int makeICONST_1() {
            return 1;
        }

        public static int makeICONST_2() {
            return 2;
        }

        public static int makeICONST_3() {
            return 3;
        }

        public static int makeICONST_4() {
            return 4;
        }

        public static int makeICONST_5() {
            return 5;
        }

        public static long makeLCONST_0() {
            return 0L;
        }

        public static long makeLCONST_1() {
            return 1L;
        }

        public static float makeFCONST_0() {
            return 0F;
        }

        public static float makeFCONST_1() {
            return 1F;
        }

        public static float makeFCONST_2() {
            return 2F;
        }

        public static double makeDCONST_0() {
            return 0D;
        }

        public static double makeDCONST_1() {
            return 1D;
        }

        public static double makeDCONST_W() {
            // ldc2_w
            return Double.MAX_VALUE;
        }

        public static Object makeOBJECT() {
            // aconst_null
            return null;
        }

        public static byte makeBYTE() {
            // bipush
            return (byte) 0x7F;
        }

        public static short makeSHORT() {
            // sipush
            return (short) 0x7FFF;
        }

        public static char makeCHAR() {
            // ldc
            return (char) 0xFFFF;
        }

        public static boolean makeBOOLEAN() {
            return true;
        }
    }
}