IsMethodCompilableTest.java 4.9 KB
Newer Older
1
/*
2
 * Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
 * 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,SimpleTestCase$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
        CompilerWhiteBoxTest.main(IsMethodCompilableTest::new, args);
52 53
    }

54
    private IsMethodCompilableTest(TestCase testCase) {
55 56 57
        super(testCase);
        // to prevent inlining of #method
        WHITE_BOX.testSetDontInlineMethod(method, true);
58 59
    }

60 61 62 63 64 65 66 67
    /**
     * 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
68
    protected void test() throws Exception {
69
        if (skipXcompOSR()) {
70 71
          return;
        }
72
        if (!isCompilable()) {
73
            throw new RuntimeException(method + " must be compilable");
74 75 76 77 78 79 80 81 82
        }
        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;
        }

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

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

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

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