IsMethodCompilableTest.java 4.9 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
        if (!isCompilable()) {
72
            throw new RuntimeException(method + " must be compilable");
73 74 75 76 77 78 79 80 81
        }
        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;
        }

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

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

112 113
        // WB.clearMethodState() must reset no-compilable flags
        WHITE_BOX.clearMethodState(method);
114
        if (!isCompilable()) {
115 116
            throw new RuntimeException(method
                    + " is not compilable after clearMethodState()");
117
        }
118
        compile();
119
        checkCompiled();
120 121
    }

122
    private void compileAndDeoptimize() throws Exception {
123
        compile();
124
        waitBackgroundCompilation();
125
        deoptimize();
126 127
    }
}