1 /*
   2  * Copyright (c) 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  * @test
  26  * @bug 8156034
  27  * @requires vm.jvmci
  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 ./JvmciNotifyBootstrapFinishedEventTest.config
  41  *     ./META-INF/services/jdk.vm.ci.services.JVMCIServiceLocator
  42  * @run driver ClassFileInstaller
  43  *      compiler.jvmci.common.JVMCIHelpers$EmptyHotspotCompiler
  44  *      compiler.jvmci.common.JVMCIHelpers$EmptyCompilerFactory
  45  *      compiler.jvmci.common.JVMCIHelpers$EmptyCompilationRequestResult
  46  *      compiler.jvmci.common.JVMCIHelpers$EmptyVMEventListener
  47  * @run main/othervm -XX:+UnlockExperimentalVMOptions
  48  *     -Djvmci.Compiler=EmptyCompiler -Xbootclasspath/a:.
  49  *     -XX:+UseJVMCICompiler -XX:-BootstrapJVMCI
  50  *     -Dcompiler.jvmci.events.JvmciNotifyBootstrapFinishedEventTest.bootstrap=false
  51  *     compiler.jvmci.events.JvmciNotifyBootstrapFinishedEventTest
  52  * @run main/othervm -XX:+UnlockExperimentalVMOptions
  53  *     -Djvmci.Compiler=EmptyCompiler -Xbootclasspath/a:.
  54  *     -XX:+UseJVMCICompiler -XX:+BootstrapJVMCI
  55  *     -Dcompiler.jvmci.events.JvmciNotifyBootstrapFinishedEventTest.bootstrap=true
  56  *     compiler.jvmci.events.JvmciNotifyBootstrapFinishedEventTest
  57  */
  58 
  59 package compiler.jvmci.events;
  60 
  61 import jdk.test.lib.Asserts;
  62 import jdk.vm.ci.services.JVMCIServiceLocator;
  63 import jdk.vm.ci.hotspot.HotSpotVMEventListener;
  64 
  65 public class JvmciNotifyBootstrapFinishedEventTest extends JVMCIServiceLocator implements HotSpotVMEventListener {
  66     private static final boolean BOOTSTRAP = Boolean
  67             .getBoolean("compiler.jvmci.events.JvmciNotifyBootstrapFinishedEventTest.bootstrap");
  68     private static volatile int gotBoostrapNotification = 0;
  69 
  70     public static void main(String args[]) {
  71         if (BOOTSTRAP) {
  72             Asserts.assertEQ(gotBoostrapNotification, 1, "Did not receive expected number of bootstrap events");
  73         } else {
  74             Asserts.assertEQ(gotBoostrapNotification, 0, "Got unexpected bootstrap event");
  75         }
  76     }
  77 
  78     @Override
  79     public <S> S getProvider(Class<S> service) {
  80         if (service == HotSpotVMEventListener.class) {
  81             return service.cast(this);
  82         }
  83         return null;
  84     }
  85 
  86     @Override
  87     public void notifyBootstrapFinished() {
  88         gotBoostrapNotification++;
  89     }
  90 }