IsMethodCompilableTest.java 5.2 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
/*
 * Copyright (c) 2013, 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.
 */

/*
 * @test IsMethodCompilableTest
26
 * @bug 8007270 8006683 8007288 8022832
27 28 29
 * @library /testlibrary /testlibrary/whitebox
 * @build IsMethodCompilableTest
 * @run main ClassFileInstaller sun.hotspot.WhiteBox
30
 * @run main/othervm/timeout=2400 -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:CompileCommand=compileonly,TestCase$Helper::* IsMethodCompilableTest
31
 * @summary testing of WB::isMethodCompilable()
32 33 34
 * @author igor.ignatyev@oracle.com
 */
public class IsMethodCompilableTest extends CompilerWhiteBoxTest {
35 36 37
    /**
     * Value of {@code -XX:PerMethodRecompilationCutoff}
     */
38 39 40 41 42 43 44 45 46 47 48 49 50
    protected static final long PER_METHOD_RECOMPILATION_CUTOFF;

    static {
        long tmp = Long.parseLong(
                getVMOption("PerMethodRecompilationCutoff", "400"));
        if (tmp == -1) {
            PER_METHOD_RECOMPILATION_CUTOFF = -1 /* Inf */;
        } else {
            PER_METHOD_RECOMPILATION_CUTOFF = 1 + (0xFFFFFFFFL & tmp);
        }
    }

    public static void main(String[] args) throws Exception {
51 52 53 54 55 56 57 58 59
        for (TestCase test : TestCase.values()) {
            new IsMethodCompilableTest(test).runTest();
        }
    }

    public IsMethodCompilableTest(TestCase testCase) {
        super(testCase);
        // to prevent inlining of #method
        WHITE_BOX.testSetDontInlineMethod(method, true);
60 61
    }

62 63 64 65 66 67 68 69
    /**
     * Tests {@code WB::isMethodCompilable()} by recompilation of tested method
     * 'PerMethodRecompilationCutoff' times and checks compilation status. Also
     * checks that WB::clearMethodState() clears no-compilable flags.
     *
     * @throws Exception if one of the checks fails.
     */
    @Override
70
    protected void test() throws Exception {
71 72 73 74 75 76
        if (testCase.isOsr && CompilerWhiteBoxTest.MODE.startsWith(
                "compiled ")) {
          System.err.printf("Warning: %s is not applicable in %s%n",
                testCase.name(), CompilerWhiteBoxTest.MODE);
          return;
        }
77
        if (!isCompilable()) {
78
            throw new RuntimeException(method + " must be compilable");
79 80 81 82 83 84 85 86 87
        }
        System.out.println("PerMethodRecompilationCutoff = "
                + PER_METHOD_RECOMPILATION_CUTOFF);
        if (PER_METHOD_RECOMPILATION_CUTOFF == -1) {
            System.err.println(
                    "Warning: test is not applicable if PerMethodRecompilationCutoff == Inf");
            return;
        }

88
        // deoptimize 'PerMethodRecompilationCutoff' times and clear state
89
        for (long i = 0L, n = PER_METHOD_RECOMPILATION_CUTOFF - 1; i < n; ++i) {
90
            compileAndDeoptimize();
91
        }
92 93
        if (!testCase.isOsr && !isCompilable()) {
            // in osr test case count of deopt maybe more than iterations
94
            throw new RuntimeException(method + " is not compilable after "
95 96
                    + (PER_METHOD_RECOMPILATION_CUTOFF - 1) + " iterations");
        }
97
        WHITE_BOX.clearMethodState(method);
98

99
        // deoptimize 'PerMethodRecompilationCutoff' + 1 times
100 101
        long i;
        for (i = 0L; i < PER_METHOD_RECOMPILATION_CUTOFF
102
                && isCompilable(); ++i) {
103
            compileAndDeoptimize();
104
        }
105 106
        if (!testCase.isOsr && i != PER_METHOD_RECOMPILATION_CUTOFF) {
            // in osr test case count of deopt maybe more than iterations
107 108 109
            throw new RuntimeException(method + " is not compilable after "
                    + i + " iterations, but must only after "
                    + PER_METHOD_RECOMPILATION_CUTOFF);
110
        }
111
        if (isCompilable()) {
112
            throw new RuntimeException(method + " is still compilable after "
113 114 115
                    + PER_METHOD_RECOMPILATION_CUTOFF + " iterations");
        }
        compile();
116
        checkNotCompiled();
117

118 119
        // WB.clearMethodState() must reset no-compilable flags
        WHITE_BOX.clearMethodState(method);
120
        if (!isCompilable()) {
121 122
            throw new RuntimeException(method
                    + " is not compilable after clearMethodState()");
123
        }
124
        compile();
125
        checkCompiled();
126 127
    }

128
    private void compileAndDeoptimize() throws Exception {
129
        compile();
130
        waitBackgroundCompilation();
131
        deoptimize();
132 133
    }
}