< prev index next >

test/compiler/jvmci/compilerToVM/IsCompilableTest.java

Print this page




  22  */
  23 
  24 /**
  25  * @test
  26  * @bug 8136421
  27  * @requires vm.jvmci
  28  * @library /test/lib /
  29  * @library ../common/patches
  30  * @modules java.base/jdk.internal.misc
  31  * @modules java.base/jdk.internal.org.objectweb.asm
  32  *          java.base/jdk.internal.org.objectweb.asm.tree
  33  *          jdk.internal.vm.ci/jdk.vm.ci.hotspot
  34  *          jdk.internal.vm.ci/jdk.vm.ci.code
  35  *
  36  * @build jdk.internal.vm.ci/jdk.vm.ci.hotspot.CompilerToVMHelper sun.hotspot.WhiteBox
  37  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  38  *                                sun.hotspot.WhiteBox$WhiteBoxPermission
  39  * @run main/othervm -Xbootclasspath/a:.
  40  *                   -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
  41  *                   -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI -XX:+UseJVMCICompiler

  42  *                   compiler.jvmci.compilerToVM.IsCompilableTest
  43  * @run main/othervm -Xbootclasspath/a:.
  44  *                   -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
  45  *                   -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI -XX:-UseJVMCICompiler

  46  *                   compiler.jvmci.compilerToVM.IsCompilableTest
  47  */
  48 
  49 package compiler.jvmci.compilerToVM;
  50 
  51 import compiler.jvmci.common.CTVMUtilities;
  52 import jdk.test.lib.Asserts;
  53 import jdk.vm.ci.hotspot.CompilerToVMHelper;
  54 import jdk.vm.ci.hotspot.HotSpotResolvedJavaMethod;
  55 import sun.hotspot.WhiteBox;
  56 
  57 import java.lang.reflect.Executable;
  58 import java.util.ArrayList;
  59 import java.util.Arrays;
  60 import java.util.List;
  61 
  62 public class IsCompilableTest {
  63 
  64     private static final WhiteBox WB = WhiteBox.getWhiteBox();
  65 




  22  */
  23 
  24 /**
  25  * @test
  26  * @bug 8136421
  27  * @requires vm.jvmci
  28  * @library /test/lib /
  29  * @library ../common/patches
  30  * @modules java.base/jdk.internal.misc
  31  * @modules java.base/jdk.internal.org.objectweb.asm
  32  *          java.base/jdk.internal.org.objectweb.asm.tree
  33  *          jdk.internal.vm.ci/jdk.vm.ci.hotspot
  34  *          jdk.internal.vm.ci/jdk.vm.ci.code
  35  *
  36  * @build jdk.internal.vm.ci/jdk.vm.ci.hotspot.CompilerToVMHelper sun.hotspot.WhiteBox
  37  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  38  *                                sun.hotspot.WhiteBox$WhiteBoxPermission
  39  * @run main/othervm -Xbootclasspath/a:.
  40  *                   -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
  41  *                   -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI -XX:+UseJVMCICompiler
  42  *                   -Djvmci.Compiler=null
  43  *                   compiler.jvmci.compilerToVM.IsCompilableTest
  44  * @run main/othervm -Xbootclasspath/a:.
  45  *                   -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
  46  *                   -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI -XX:-UseJVMCICompiler
  47  *                   -Djvmci.Compiler=null
  48  *                   compiler.jvmci.compilerToVM.IsCompilableTest
  49  */
  50 
  51 package compiler.jvmci.compilerToVM;
  52 
  53 import compiler.jvmci.common.CTVMUtilities;
  54 import jdk.test.lib.Asserts;
  55 import jdk.vm.ci.hotspot.CompilerToVMHelper;
  56 import jdk.vm.ci.hotspot.HotSpotResolvedJavaMethod;
  57 import sun.hotspot.WhiteBox;
  58 
  59 import java.lang.reflect.Executable;
  60 import java.util.ArrayList;
  61 import java.util.Arrays;
  62 import java.util.List;
  63 
  64 public class IsCompilableTest {
  65 
  66     private static final WhiteBox WB = WhiteBox.getWhiteBox();
  67 


< prev index next >