< prev index next >

test/jdk/jdk/jfr/event/compiler/TestCompilerPhase.java

Print this page
rev 51054 : imported patch 9000013-aixDisableJFR-requires.patch


  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package jdk.jfr.event.compiler;
  27 
  28 import java.lang.reflect.Method;
  29 import java.util.List;
  30 
  31 import jdk.jfr.Recording;
  32 import jdk.jfr.consumer.RecordedEvent;
  33 import jdk.test.lib.Utils;
  34 import jdk.test.lib.jfr.EventNames;
  35 import jdk.test.lib.jfr.Events;
  36 import sun.hotspot.WhiteBox;
  37 
  38 /*
  39  * @test
  40  * @key jfr

  41  * @requires vm.compMode!="Xint" & vm.flavor == "server" & (vm.opt.TieredStopAtLevel == 4 | vm.opt.TieredStopAtLevel == null)
  42  * @library /test/lib
  43  * @build sun.hotspot.WhiteBox
  44  * @run main ClassFileInstaller sun.hotspot.WhiteBox
  45  *     sun.hotspot.WhiteBox$WhiteBoxPermission
  46  * @run main/othervm -Xbootclasspath/a:.
  47  *     -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
  48  *     -XX:CompileOnly=jdk.jfr.event.compiler.TestCompilerPhase::dummyMethod
  49  *     -XX:+SegmentedCodeCache -Xbootclasspath/a:.
  50  *     jdk.jfr.event.compiler.TestCompilerPhase
  51  */
  52 public class TestCompilerPhase {
  53     private final static String EVENT_NAME = EventNames.CompilerPhase;
  54     private final static String METHOD_NAME = "dummyMethod";
  55     private static final int COMP_LEVEL_SIMPLE = 1;
  56     private static final int COMP_LEVEL_FULL_OPTIMIZATION = 4;
  57 
  58     public static void main(String[] args) throws Exception {
  59         Recording recording = new Recording();
  60         recording.enable(EVENT_NAME);




  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package jdk.jfr.event.compiler;
  27 
  28 import java.lang.reflect.Method;
  29 import java.util.List;
  30 
  31 import jdk.jfr.Recording;
  32 import jdk.jfr.consumer.RecordedEvent;
  33 import jdk.test.lib.Utils;
  34 import jdk.test.lib.jfr.EventNames;
  35 import jdk.test.lib.jfr.Events;
  36 import sun.hotspot.WhiteBox;
  37 
  38 /**
  39  * @test
  40  * @key jfr
  41  * @requires vm.hasJFR
  42  * @requires vm.compMode!="Xint" & vm.flavor == "server" & (vm.opt.TieredStopAtLevel == 4 | vm.opt.TieredStopAtLevel == null)
  43  * @library /test/lib
  44  * @build sun.hotspot.WhiteBox
  45  * @run main ClassFileInstaller sun.hotspot.WhiteBox
  46  *     sun.hotspot.WhiteBox$WhiteBoxPermission
  47  * @run main/othervm -Xbootclasspath/a:.
  48  *     -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
  49  *     -XX:CompileOnly=jdk.jfr.event.compiler.TestCompilerPhase::dummyMethod
  50  *     -XX:+SegmentedCodeCache -Xbootclasspath/a:.
  51  *     jdk.jfr.event.compiler.TestCompilerPhase
  52  */
  53 public class TestCompilerPhase {
  54     private final static String EVENT_NAME = EventNames.CompilerPhase;
  55     private final static String METHOD_NAME = "dummyMethod";
  56     private static final int COMP_LEVEL_SIMPLE = 1;
  57     private static final int COMP_LEVEL_FULL_OPTIMIZATION = 4;
  58 
  59     public static void main(String[] args) throws Exception {
  60         Recording recording = new Recording();
  61         recording.enable(EVENT_NAME);


< prev index next >