< prev index next >

test/compiler/jvmci/compilerToVM/ExecuteInstalledCodeTest.java

Print this page


























   1 package compiler.jvmci.compilerToVM;
   2 
   3 import jdk.vm.ci.code.InstalledCode;
   4 import jdk.vm.ci.code.InvalidInstalledCodeException;
   5 import jdk.vm.ci.hotspot.CompilerToVMHelper;
   6 import jdk.test.lib.Asserts;
   7 import jdk.test.lib.Utils;
   8 import jdk.test.lib.Pair;
   9 import sun.hotspot.code.NMethod;
  10 
  11 import java.lang.reflect.Constructor;
  12 import java.lang.reflect.Executable;
  13 import java.lang.reflect.InvocationTargetException;
  14 import java.lang.reflect.Method;
  15 import java.lang.reflect.Modifier;
  16 import java.util.ArrayList;
  17 import java.util.HashMap;
  18 import java.util.List;
  19 import java.util.Map;
  20 
  21 /*
  22  * @test
  23  * @bug 8136421
  24  * @requires (os.simpleArch == "x64" | os.simpleArch == "sparcv9" | os.simpleArch == "aarch64")
  25  * @library /testlibrary /test/lib /
  26  * @library ../common/patches
  27  * @ignore 8139383
  28  * @modules java.base/jdk.internal.misc
  29  * @modules java.base/jdk.internal.org.objectweb.asm
  30  *          java.base/jdk.internal.org.objectweb.asm.tree
  31  *          jdk.vm.ci/jdk.vm.ci.hotspot
  32  *          jdk.vm.ci/jdk.vm.ci.code
  33  * @build jdk.vm.ci/jdk.vm.ci.hotspot.CompilerToVMHelper
  34  * @build compiler.jvmci.compilerToVM.ExecuteInstalledCodeTest
  35  * @build sun.hotspot.WhiteBox
  36  * @run main ClassFileInstaller sun.hotspot.WhiteBox
  37  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
  38  * @run main/othervm -Xbootclasspath/a:.
  39  *                   -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
  40  *                   -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI
  41  *                   compiler.jvmci.compilerToVM.ExecuteInstalledCodeTest
  42  */
  43 
  44 public class ExecuteInstalledCodeTest {


   1 /*
   2  * Copyright (c) 2015, 2016, 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 package compiler.jvmci.compilerToVM;
  26 
  27 import jdk.vm.ci.code.InstalledCode;
  28 import jdk.vm.ci.code.InvalidInstalledCodeException;
  29 import jdk.vm.ci.hotspot.CompilerToVMHelper;
  30 import jdk.test.lib.Asserts;
  31 import jdk.test.lib.Utils;
  32 import jdk.test.lib.Pair;
  33 import sun.hotspot.code.NMethod;
  34 
  35 import java.lang.reflect.Constructor;
  36 import java.lang.reflect.Executable;
  37 import java.lang.reflect.InvocationTargetException;
  38 import java.lang.reflect.Method;
  39 import java.lang.reflect.Modifier;
  40 import java.util.ArrayList;
  41 import java.util.HashMap;
  42 import java.util.List;
  43 import java.util.Map;
  44 
  45 /*
  46  * @test
  47  * @bug 8136421
  48  * @requires (vm.arch == "x64" | vm.arch == "sparcv9" | vm.arch == "arm64")
  49  * @library /testlibrary /test/lib /
  50  * @library ../common/patches
  51  * @ignore 8139383
  52  * @modules java.base/jdk.internal.misc
  53  * @modules java.base/jdk.internal.org.objectweb.asm
  54  *          java.base/jdk.internal.org.objectweb.asm.tree
  55  *          jdk.vm.ci/jdk.vm.ci.hotspot
  56  *          jdk.vm.ci/jdk.vm.ci.code
  57  * @build jdk.vm.ci/jdk.vm.ci.hotspot.CompilerToVMHelper
  58  * @build compiler.jvmci.compilerToVM.ExecuteInstalledCodeTest
  59  * @build sun.hotspot.WhiteBox
  60  * @run main ClassFileInstaller sun.hotspot.WhiteBox
  61  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
  62  * @run main/othervm -Xbootclasspath/a:.
  63  *                   -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
  64  *                   -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI
  65  *                   compiler.jvmci.compilerToVM.ExecuteInstalledCodeTest
  66  */
  67 
  68 public class ExecuteInstalledCodeTest {


< prev index next >