test/compiler/jvmci/compilerToVM/ExecuteInstalledCodeTest.java
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File hotspot Cdiff test/compiler/jvmci/compilerToVM/ExecuteInstalledCodeTest.java

test/compiler/jvmci/compilerToVM/ExecuteInstalledCodeTest.java

Print this page

        

*** 19,63 **** * 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. */ - package compiler.jvmci.compilerToVM; - - import jdk.test.lib.Asserts; - import jdk.test.lib.util.Pair; - import jdk.test.lib.Utils; - import jdk.vm.ci.code.InstalledCode; - import jdk.vm.ci.code.InvalidInstalledCodeException; - import jdk.vm.ci.hotspot.CompilerToVMHelper; - import sun.hotspot.code.NMethod; - - import java.lang.reflect.Constructor; - import java.lang.reflect.Modifier; - import java.util.ArrayList; - import java.util.List; - /* * @test * @bug 8136421 * @requires vm.jvmci * @library /test/lib / * @library ../common/patches * @modules java.base/jdk.internal.misc * @modules java.base/jdk.internal.org.objectweb.asm * java.base/jdk.internal.org.objectweb.asm.tree ! * jdk.vm.ci/jdk.vm.ci.hotspot ! * jdk.vm.ci/jdk.vm.ci.code ! * @build jdk.vm.ci/jdk.vm.ci.hotspot.CompilerToVMHelper sun.hotspot.WhiteBox * @run driver ClassFileInstaller sun.hotspot.WhiteBox * sun.hotspot.WhiteBox$WhiteBoxPermission * @run main/othervm -Xbootclasspath/a:. * -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI * -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI * compiler.jvmci.compilerToVM.ExecuteInstalledCodeTest */ public class ExecuteInstalledCodeTest { public static void main(String[] args) { ExecuteInstalledCodeTest test = new ExecuteInstalledCodeTest(); List<CompileCodeTestCase> testCases = new ArrayList<>(); --- 19,63 ---- * 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 * @bug 8136421 * @requires vm.jvmci * @library /test/lib / * @library ../common/patches * @modules java.base/jdk.internal.misc * @modules java.base/jdk.internal.org.objectweb.asm * java.base/jdk.internal.org.objectweb.asm.tree ! * jdk.internal.vm.ci/jdk.vm.ci.hotspot ! * jdk.internal.vm.ci/jdk.vm.ci.code ! * @build jdk.internal.vm.ci/jdk.vm.ci.hotspot.CompilerToVMHelper sun.hotspot.WhiteBox * @run driver ClassFileInstaller sun.hotspot.WhiteBox * sun.hotspot.WhiteBox$WhiteBoxPermission * @run main/othervm -Xbootclasspath/a:. * -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI * -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI * compiler.jvmci.compilerToVM.ExecuteInstalledCodeTest */ + package compiler.jvmci.compilerToVM; + + import jdk.test.lib.Asserts; + import jdk.test.lib.util.Pair; + import jdk.test.lib.Utils; + import jdk.vm.ci.code.InstalledCode; + import jdk.vm.ci.code.InvalidInstalledCodeException; + import jdk.vm.ci.hotspot.CompilerToVMHelper; + import sun.hotspot.code.NMethod; + + import java.lang.reflect.Constructor; + import java.lang.reflect.Modifier; + import java.util.ArrayList; + import java.util.List; + public class ExecuteInstalledCodeTest { public static void main(String[] args) { ExecuteInstalledCodeTest test = new ExecuteInstalledCodeTest(); List<CompileCodeTestCase> testCases = new ArrayList<>();
test/compiler/jvmci/compilerToVM/ExecuteInstalledCodeTest.java
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File