1 /*
   2  * Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test IsMethodCompilableTest
  26  * @bug 8007270 8006683 8007288 8022832
  27  * @library /testlibrary /../../test/lib /testlibrary/com/oracle/java/testlibrary
  28  * @modules java.base/sun.misc
  29  *          java.management
  30  * @build IsMethodCompilableTest
  31  * @run main ClassFileInstaller sun.hotspot.WhiteBox
  32  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
  33  * @run main ClassFileInstaller com.oracle.java.testlibrary.Platform
  34  * @run main/othervm/timeout=2400 -Xbootclasspath/a:. -Xmixed -XX:-TieredCompilation -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:PerMethodRecompilationCutoff=3 -XX:CompileCommand=compileonly,SimpleTestCase$Helper::* IsMethodCompilableTest
  35  * @summary testing of WB::isMethodCompilable()
  36  * @author igor.ignatyev@oracle.com
  37  */
  38 
  39 import com.oracle.java.testlibrary.Platform;
  40 
  41 public class IsMethodCompilableTest extends CompilerWhiteBoxTest {
  42     /**
  43      * Value of {@code -XX:PerMethodRecompilationCutoff}
  44      */
  45     protected static final long PER_METHOD_RECOMPILATION_CUTOFF;
  46 
  47     static {
  48         long tmp = Long.parseLong(
  49                 getVMOption("PerMethodRecompilationCutoff", "400"));
  50         if (tmp == -1) {
  51             PER_METHOD_RECOMPILATION_CUTOFF = -1 /* Inf */;
  52         } else {
  53             PER_METHOD_RECOMPILATION_CUTOFF = (0xFFFFFFFFL & tmp);
  54         }
  55     }
  56 
  57     public static void main(String[] args) throws Exception {
  58         CompilerWhiteBoxTest.main(IsMethodCompilableTest::new, args);
  59     }
  60 
  61     private IsMethodCompilableTest(TestCase testCase) {
  62         super(testCase);
  63         // to prevent inlining of #method
  64         WHITE_BOX.testSetDontInlineMethod(method, true);
  65     }
  66 
  67     /**
  68      * Tests {@code WB::isMethodCompilable()} by recompilation of tested method
  69      * 'PerMethodRecompilationCutoff' times and checks compilation status. Also
  70      * checks that WB::clearMethodState() clears no-compilable flags. Only
  71      * applicable to c2 compiled methods.
  72      *
  73      * @throws Exception if one of the checks fails.
  74      */
  75     @Override
  76     protected void test() throws Exception {
  77 
  78         // Only c2 compilations can be disabled through PerMethodRecompilationCutoff
  79         if (!Platform.isServer()) {
  80             return;
  81         }
  82 
  83         if (skipXcompOSR()) {
  84             return;
  85         }
  86         if (!isCompilable(COMP_LEVEL_FULL_OPTIMIZATION)) {
  87             throw new RuntimeException(method + " must be compilable");
  88         }
  89         System.out.println("PerMethodRecompilationCutoff = "
  90                 + PER_METHOD_RECOMPILATION_CUTOFF);
  91         if (PER_METHOD_RECOMPILATION_CUTOFF == -1) {
  92             System.err.println(
  93                     "Warning: test is not applicable if PerMethodRecompilationCutoff == Inf");
  94             return;
  95         }
  96 
  97         // deoptimize 'PerMethodRecompilationCutoff' times
  98         for (long attempts = 0, successes = 0;
  99                (successes < PER_METHOD_RECOMPILATION_CUTOFF)  &&
 100                (attempts < PER_METHOD_RECOMPILATION_CUTOFF*2) &&
 101                isCompilable(COMP_LEVEL_FULL_OPTIMIZATION); attempts++) {
 102             if (compileAndDeoptimize() == COMP_LEVEL_FULL_OPTIMIZATION) {
 103                 successes++;
 104             }
 105         }
 106 
 107         if (!testCase.isOsr() && !isCompilable(COMP_LEVEL_FULL_OPTIMIZATION)) {
 108             // in osr test case count of deopt maybe more than iterations
 109             throw new RuntimeException(method + " is not compilable after "
 110                     + PER_METHOD_RECOMPILATION_CUTOFF + " iterations");
 111         }
 112 
 113         // Now compile once more
 114         compileAndDeoptimize();
 115 
 116         if (isCompilable(COMP_LEVEL_FULL_OPTIMIZATION)) {
 117             throw new RuntimeException(method + " is still compilable after "
 118                     + PER_METHOD_RECOMPILATION_CUTOFF + " iterations");
 119         }
 120         checkNotCompiled();
 121         compile();
 122         waitBackgroundCompilation();
 123         checkNotCompiled(COMP_LEVEL_FULL_OPTIMIZATION);
 124 
 125         // WB.clearMethodState() must reset no-compilable flags
 126         WHITE_BOX.clearMethodState(method);
 127         if (!isCompilable(COMP_LEVEL_FULL_OPTIMIZATION)) {
 128             throw new RuntimeException(method
 129                     + " is not compilable after clearMethodState()");
 130         }
 131         compile();
 132         checkCompiled();
 133     }
 134 
 135     private int compileAndDeoptimize() throws Exception {
 136         compile();
 137         waitBackgroundCompilation();
 138         int compLevel = getCompLevel();
 139         deoptimize();
 140         return compLevel;
 141     }
 142 }