< prev index next >

test/compiler/jvmci/compilerToVM/InvalidateInstalledCodeTest.java

Print this page
rev 12340 : 8170227: use vm.jvmci property in compiler/jvmci tests
Reviewed-by:
rev 12341 : 8078450: Implement consistent process for quarantine of tests


  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
  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.vm.ci/jdk.vm.ci.hotspot
  34  *          jdk.vm.ci/jdk.vm.ci.code
  35  *          jdk.vm.ci/jdk.vm.ci.runtime
  36  *
  37  * @ignore 8163894
  38  * @build jdk.vm.ci/jdk.vm.ci.hotspot.CompilerToVMHelper
  39  * @build compiler.jvmci.compilerToVM.InvalidateInstalledCodeTest
  40  * @build sun.hotspot.WhiteBox
  41  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  42  *                                sun.hotspot.WhiteBox$WhiteBoxPermission
  43  * @run main/othervm -Xbootclasspath/a:.
  44  *                   -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
  45  *                   -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI
  46  *                   compiler.jvmci.compilerToVM.InvalidateInstalledCodeTest
  47  */
  48 
  49 package compiler.jvmci.compilerToVM;
  50 
  51 import compiler.jvmci.common.CTVMUtilities;
  52 import jdk.test.lib.Asserts;
  53 import jdk.test.lib.Utils;
  54 import jdk.vm.ci.code.CodeCacheProvider;
  55 import jdk.vm.ci.code.CompilationResult;
  56 import jdk.vm.ci.code.InstalledCode;
  57 import jdk.vm.ci.hotspot.CompilerToVMHelper;




  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
  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.vm.ci/jdk.vm.ci.hotspot
  34  *          jdk.vm.ci/jdk.vm.ci.code
  35  *          jdk.vm.ci/jdk.vm.ci.runtime
  36  *

  37  * @build jdk.vm.ci/jdk.vm.ci.hotspot.CompilerToVMHelper
  38  * @build compiler.jvmci.compilerToVM.InvalidateInstalledCodeTest
  39  * @build sun.hotspot.WhiteBox
  40  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  41  *                                sun.hotspot.WhiteBox$WhiteBoxPermission
  42  * @run main/othervm -Xbootclasspath/a:.
  43  *                   -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
  44  *                   -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI
  45  *                   compiler.jvmci.compilerToVM.InvalidateInstalledCodeTest
  46  */
  47 
  48 package compiler.jvmci.compilerToVM;
  49 
  50 import compiler.jvmci.common.CTVMUtilities;
  51 import jdk.test.lib.Asserts;
  52 import jdk.test.lib.Utils;
  53 import jdk.vm.ci.code.CodeCacheProvider;
  54 import jdk.vm.ci.code.CompilationResult;
  55 import jdk.vm.ci.code.InstalledCode;
  56 import jdk.vm.ci.hotspot.CompilerToVMHelper;


< prev index next >