test/compiler/whitebox/IsMethodCompilableTest.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Sdiff test/compiler/whitebox

test/compiler/whitebox/IsMethodCompilableTest.java

Print this page




  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 /testlibrary/whitebox /testlibrary/com/oracle/java/testlibrary
  28  * @build IsMethodCompilableTest
  29  * @run main ClassFileInstaller sun.hotspot.WhiteBox
  30  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
  31  * @run main ClassFileInstaller com.oracle.java.testlibrary.Platform
  32  * @run main/othervm/timeout=2400 -Xbootclasspath/a:. -Xmixed -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:PerMethodRecompilationCutoff=3 -XX:CompileCommand=compileonly,SimpleTestCase$Helper::* IsMethodCompilableTest
  33  * @summary testing of WB::isMethodCompilable()
  34  * @author igor.ignatyev@oracle.com
  35  */
  36 
  37 import com.oracle.java.testlibrary.Platform;
  38 
  39 public class IsMethodCompilableTest extends CompilerWhiteBoxTest {
  40     /**
  41      * Value of {@code -XX:PerMethodRecompilationCutoff}
  42      */
  43     protected static final long PER_METHOD_RECOMPILATION_CUTOFF;
  44 
  45     static {
  46         long tmp = Long.parseLong(
  47                 getVMOption("PerMethodRecompilationCutoff", "400"));
  48         if (tmp == -1) {
  49             PER_METHOD_RECOMPILATION_CUTOFF = -1 /* Inf */;
  50         } else {
  51             PER_METHOD_RECOMPILATION_CUTOFF = (0xFFFFFFFFL & tmp);
  52         }




  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 /testlibrary/whitebox /testlibrary/com/oracle/java/testlibrary
  28  * @build IsMethodCompilableTest
  29  * @run main ClassFileInstaller sun.hotspot.WhiteBox
  30  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
  31  * @run main ClassFileInstaller com.oracle.java.testlibrary.Platform
  32  * @run main/othervm/timeout=2400 -Xbootclasspath/a:. -Xmixed -XX:-TieredCompilation -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -XX:PerMethodRecompilationCutoff=3 -XX:CompileCommand=compileonly,SimpleTestCase$Helper::* IsMethodCompilableTest
  33  * @summary testing of WB::isMethodCompilable()
  34  * @author igor.ignatyev@oracle.com
  35  */
  36 
  37 import com.oracle.java.testlibrary.Platform;
  38 
  39 public class IsMethodCompilableTest extends CompilerWhiteBoxTest {
  40     /**
  41      * Value of {@code -XX:PerMethodRecompilationCutoff}
  42      */
  43     protected static final long PER_METHOD_RECOMPILATION_CUTOFF;
  44 
  45     static {
  46         long tmp = Long.parseLong(
  47                 getVMOption("PerMethodRecompilationCutoff", "400"));
  48         if (tmp == -1) {
  49             PER_METHOD_RECOMPILATION_CUTOFF = -1 /* Inf */;
  50         } else {
  51             PER_METHOD_RECOMPILATION_CUTOFF = (0xFFFFFFFFL & tmp);
  52         }


test/compiler/whitebox/IsMethodCompilableTest.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File