1 /*
   2  * Copyright (c) 2013, 2019, 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.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  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 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 com.oracle.java.testlibrary.Utils;
  34 import com.oracle.java.testlibrary.jfr.EventNames;
  35 import com.oracle.java.testlibrary.jfr.Events;
  36 import sun.hotspot.WhiteBox;
  37 
  38 /*
  39  * @test
  40  * @requires vm.compMode!="Xint" & vm.flavor == "server" & (vm.opt.TieredStopAtLevel == 4 | vm.opt.TieredStopAtLevel == null)
  41  * @library /testlibrary /testlibrary/jfr /testlibrary/whitebox
  42  * @build sun.hotspot.WhiteBox
  43  * @run main ClassFileInstaller sun.hotspot.WhiteBox
  44  *     sun.hotspot.WhiteBox$WhiteBoxPermission
  45  * @run main/othervm -Xbootclasspath/a:.
  46  *     -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI
  47  *     -XX:CompileOnly=jfr.event.compiler.TestCompilerPhase::dummyMethod
  48  *     -XX:+SegmentedCodeCache -Xbootclasspath/a:.
  49  *     jfr.event.compiler.TestCompilerPhase
  50  */
  51 public class TestCompilerPhase {
  52     private final static String EVENT_NAME = EventNames.CompilerPhase;
  53     private final static String METHOD_NAME = "dummyMethod";
  54     private static final int COMP_LEVEL_SIMPLE = 1;
  55     private static final int COMP_LEVEL_FULL_OPTIMIZATION = 4;
  56 
  57     public static void main(String[] args) throws Exception {
  58         Recording recording = new Recording();
  59         recording.enable(EVENT_NAME);
  60         recording.start();
  61 
  62         // Provoke compilation
  63         Method mtd = TestCompilerPhase.class.getDeclaredMethod(METHOD_NAME, new Class[0]);
  64         WhiteBox WB = WhiteBox.getWhiteBox();
  65         String directive = "[{ match: \"" + TestCompilerPhase.class.getName().replace('.', '/')
  66                 + "." + METHOD_NAME + "\", " + "BackgroundCompilation: false }]";
  67         WB.addCompilerDirective(directive);
  68         if (!WB.enqueueMethodForCompilation(mtd, COMP_LEVEL_FULL_OPTIMIZATION)) {
  69             WB.enqueueMethodForCompilation(mtd, COMP_LEVEL_SIMPLE);
  70         }
  71         Utils.waitForCondition(() -> WB.isMethodCompiled(mtd));
  72         dummyMethod();
  73 
  74         recording.stop();
  75 
  76         List<RecordedEvent> events = Events.fromRecording(recording);
  77         Events.hasEvents(events);
  78         for (RecordedEvent event : events) {
  79             System.out.println("Event:" + event);
  80             Events.assertField(event, "phase").notEmpty();
  81             Events.assertField(event, "compileId").atLeast(0);
  82             Events.assertField(event, "phaseLevel").atLeast((short)0).atMost((short)4);
  83             Events.assertEventThread(event);
  84         }
  85     }
  86 
  87     static void dummyMethod() {
  88         System.out.println("hello!");
  89     }
  90 }