< prev index next >

test/compiler/jvmci/events/JvmciNotifyBootstrapFinishedEventTest.java

Print this page




   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  * @test
  26  * @bug 8156034
  27  * @requires (vm.simpleArch == "x64" | vm.simpleArch == "sparcv9" | vm.simpleArch == "aarch64")
  28  * @library / /testlibrary
  29  * @library ../common/patches
  30  * @modules java.base/jdk.internal.misc
  31  *          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.meta
  36  *          jdk.vm.ci/jdk.vm.ci.runtime
  37  *
  38  * @build jdk.vm.ci/jdk.vm.ci.hotspot.CompilerToVMHelper
  39  * @build compiler.jvmci.common.JVMCIHelpers
  40  *        compiler.jvmci.events.JvmciNotifyBootstrapFinishedEventTest
  41  * @run driver jdk.test.lib.FileInstaller ../common/services/ ./META-INF/services/
  42  * @run driver jdk.test.lib.FileInstaller ./JvmciNotifyBootstrapFinishedEventTest.config
  43  *     ./META-INF/services/jdk.vm.ci.hotspot.services.HotSpotVMEventListener
  44  * @run driver ClassFileInstaller
  45  *      compiler.jvmci.common.JVMCIHelpers$EmptyHotspotCompiler
  46  *      compiler.jvmci.common.JVMCIHelpers$EmptyCompilerFactory
  47  *      compiler.jvmci.common.JVMCIHelpers$EmptyCompilationRequestResult
  48  *      compiler.jvmci.common.JVMCIHelpers$EmptyVMEventListener
  49  *      compiler.jvmci.events.JvmciNotifyBootstrapFinishedEventTest
  50  *      jdk.test.lib.Asserts
  51  *      jdk.test.lib.Utils
  52  * @run main/othervm -XX:+UnlockExperimentalVMOptions
  53  *     -Djvmci.Compiler=EmptyCompiler -Xbootclasspath/a:.
  54  *     -XX:+UseJVMCICompiler -XX:-BootstrapJVMCI
  55  *     -Dcompiler.jvmci.events.JvmciNotifyBootstrapFinishedEventTest.bootstrap=false
  56  *     compiler.jvmci.events.JvmciNotifyBootstrapFinishedEventTest
  57  * @run main/othervm -XX:+UnlockExperimentalVMOptions
  58  *     -Djvmci.Compiler=EmptyCompiler -Xbootclasspath/a:.
  59  *     -XX:+UseJVMCICompiler -XX:+BootstrapJVMCI
  60  *     -Dcompiler.jvmci.events.JvmciNotifyBootstrapFinishedEventTest.bootstrap=true
  61  *     compiler.jvmci.events.JvmciNotifyBootstrapFinishedEventTest
  62  */
  63 
  64 package compiler.jvmci.events;
  65 
  66 import jdk.test.lib.Asserts;
  67 import jdk.vm.ci.hotspot.services.HotSpotVMEventListener;
  68 
  69 public class JvmciNotifyBootstrapFinishedEventTest extends HotSpotVMEventListener {
  70     private static final boolean BOOTSTRAP = Boolean
  71             .getBoolean("compiler.jvmci.events.JvmciNotifyBootstrapFinishedEventTest.bootstrap");


   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  * @test
  26  * @bug 8156034
  27  * @requires (vm.simpleArch == "x64" | vm.simpleArch == "sparcv9" | vm.simpleArch == "aarch64")
  28  * @library / /test/lib
  29  * @library ../common/patches
  30  * @modules java.base/jdk.internal.misc
  31  *          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.meta
  36  *          jdk.vm.ci/jdk.vm.ci.runtime
  37  *
  38  * @build jdk.vm.ci/jdk.vm.ci.hotspot.CompilerToVMHelper
  39  * @build compiler.jvmci.common.JVMCIHelpers

  40  * @run driver jdk.test.lib.FileInstaller ../common/services/ ./META-INF/services/
  41  * @run driver jdk.test.lib.FileInstaller ./JvmciNotifyBootstrapFinishedEventTest.config
  42  *     ./META-INF/services/jdk.vm.ci.hotspot.services.HotSpotVMEventListener
  43  * @run driver ClassFileInstaller
  44  *      compiler.jvmci.common.JVMCIHelpers$EmptyHotspotCompiler
  45  *      compiler.jvmci.common.JVMCIHelpers$EmptyCompilerFactory
  46  *      compiler.jvmci.common.JVMCIHelpers$EmptyCompilationRequestResult
  47  *      compiler.jvmci.common.JVMCIHelpers$EmptyVMEventListener



  48  * @run main/othervm -XX:+UnlockExperimentalVMOptions
  49  *     -Djvmci.Compiler=EmptyCompiler -Xbootclasspath/a:.
  50  *     -XX:+UseJVMCICompiler -XX:-BootstrapJVMCI
  51  *     -Dcompiler.jvmci.events.JvmciNotifyBootstrapFinishedEventTest.bootstrap=false
  52  *     compiler.jvmci.events.JvmciNotifyBootstrapFinishedEventTest
  53  * @run main/othervm -XX:+UnlockExperimentalVMOptions
  54  *     -Djvmci.Compiler=EmptyCompiler -Xbootclasspath/a:.
  55  *     -XX:+UseJVMCICompiler -XX:+BootstrapJVMCI
  56  *     -Dcompiler.jvmci.events.JvmciNotifyBootstrapFinishedEventTest.bootstrap=true
  57  *     compiler.jvmci.events.JvmciNotifyBootstrapFinishedEventTest
  58  */
  59 
  60 package compiler.jvmci.events;
  61 
  62 import jdk.test.lib.Asserts;
  63 import jdk.vm.ci.hotspot.services.HotSpotVMEventListener;
  64 
  65 public class JvmciNotifyBootstrapFinishedEventTest extends HotSpotVMEventListener {
  66     private static final boolean BOOTSTRAP = Boolean
  67             .getBoolean("compiler.jvmci.events.JvmciNotifyBootstrapFinishedEventTest.bootstrap");
< prev index next >