IsMethodCompilableTest.java 4.8 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
/*
 * 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
 * @bug 8007270
27 28 29
 * @library /testlibrary /testlibrary/whitebox
 * @build IsMethodCompilableTest
 * @run main ClassFileInstaller sun.hotspot.WhiteBox
30
 * @run main/othervm/timeout=600 -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
        if (!WHITE_BOX.isMethodCompilable(method)) {
            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 (!WHITE_BOX.isMethodCompilable(method)) {
            throw new RuntimeException(method + " is not compilable after "
88 89
                    + (PER_METHOD_RECOMPILATION_CUTOFF - 1) + " iterations");
        }
90
        WHITE_BOX.clearMethodState(method);
91

92
        // deoptimize 'PerMethodRecompilationCutoff' + 1 times
93 94
        long i;
        for (i = 0L; i < PER_METHOD_RECOMPILATION_CUTOFF
95 96
                && WHITE_BOX.isMethodCompilable(method); ++i) {
            compileAndDeoptimize();
97 98
        }
        if (i != PER_METHOD_RECOMPILATION_CUTOFF) {
99 100 101
            throw new RuntimeException(method + " is not compilable after "
                    + i + " iterations, but must only after "
                    + PER_METHOD_RECOMPILATION_CUTOFF);
102
        }
103 104
        if (WHITE_BOX.isMethodCompilable(method)) {
            throw new RuntimeException(method + " is still compilable after "
105 106 107
                    + PER_METHOD_RECOMPILATION_CUTOFF + " iterations");
        }
        compile();
108
        checkNotCompiled();
109

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

120
    private void compileAndDeoptimize() throws Exception {
121
        compile();
122 123
        waitBackgroundCompilation();
        WHITE_BOX.deoptimizeMethod(method);
124 125
    }
}