< prev index next >

test/compiler/jvmci/compilerToVM/GetConstantPoolTest.java

Print this page




  21  * questions.
  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.meta
  35  *          jdk.internal.vm.ci/jdk.vm.ci.code
  36  *
  37  * @build jdk.internal.vm.ci/jdk.vm.ci.hotspot.CompilerToVMHelper
  38  * @run main/othervm -Xbootclasspath/a:.
  39  *                   -XX:+UnlockDiagnosticVMOptions
  40  *                   -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI

  41  *                   compiler.jvmci.compilerToVM.GetConstantPoolTest
  42  */
  43 package compiler.jvmci.compilerToVM;
  44 
  45 import jdk.test.lib.Utils;
  46 import compiler.jvmci.common.CTVMUtilities;
  47 import compiler.jvmci.common.testcases.TestCase;
  48 import jdk.vm.ci.hotspot.CompilerToVMHelper;
  49 import jdk.vm.ci.hotspot.HotSpotResolvedJavaMethod;
  50 import jdk.vm.ci.hotspot.HotSpotResolvedObjectType;
  51 import jdk.vm.ci.meta.ConstantPool;
  52 
  53 import java.lang.reflect.Field;
  54 import java.lang.reflect.Executable;
  55 
  56 /**
  57  * Tests for jdk.vm.ci.hotspot.CompilerToVM::getConstantPool method
  58  */
  59 public class GetConstantPoolTest {
  60 




  21  * questions.
  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.meta
  35  *          jdk.internal.vm.ci/jdk.vm.ci.code
  36  *
  37  * @build jdk.internal.vm.ci/jdk.vm.ci.hotspot.CompilerToVMHelper
  38  * @run main/othervm -Xbootclasspath/a:.
  39  *                   -XX:+UnlockDiagnosticVMOptions
  40  *                   -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI
  41  *                   -Djvmci.Compiler=null
  42  *                   compiler.jvmci.compilerToVM.GetConstantPoolTest
  43  */
  44 package compiler.jvmci.compilerToVM;
  45 
  46 import jdk.test.lib.Utils;
  47 import compiler.jvmci.common.CTVMUtilities;
  48 import compiler.jvmci.common.testcases.TestCase;
  49 import jdk.vm.ci.hotspot.CompilerToVMHelper;
  50 import jdk.vm.ci.hotspot.HotSpotResolvedJavaMethod;
  51 import jdk.vm.ci.hotspot.HotSpotResolvedObjectType;
  52 import jdk.vm.ci.meta.ConstantPool;
  53 
  54 import java.lang.reflect.Field;
  55 import java.lang.reflect.Executable;
  56 
  57 /**
  58  * Tests for jdk.vm.ci.hotspot.CompilerToVM::getConstantPool method
  59  */
  60 public class GetConstantPoolTest {
  61 


< prev index next >