src/share/vm/jfr/jfr.hpp

Fri, 12 Jun 2020 02:59:56 +0100

author
jbachorik
date
Fri, 12 Jun 2020 02:59:56 +0100
changeset 9925
30fb8c8cceb9
parent 9868
69fb91513217
child 9986
85e682d8ab91
permissions
-rw-r--r--

8233197: Invert JvmtiExport::post_vm_initialized() and Jfr:on_vm_start() start-up order for correct option parsing
8246703: [TESTBUG] Add test for JDK-8233197
Reviewed-by: aph, adinn, neugens

     1 /*
     2  * Copyright (c) 2018, 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  */
    25 #ifndef SHARE_VM_JFR_JFR_HPP
    26 #define SHARE_VM_JFR_JFR_HPP
    28 #include "jni.h"
    29 #include "memory/allocation.hpp"
    31 class BoolObjectClosure;
    32 class JavaThread;
    33 class OopClosure;
    34 class Thread;
    36 extern "C" void JNICALL jfr_register_natives(JNIEnv*, jclass);
    38 //
    39 // The VM interface to Flight Recorder.
    40 //
    41 class Jfr : AllStatic {
    42  public:
    43   static bool is_enabled();
    44   static bool is_disabled();
    45   static bool is_recording();
    46   static void on_create_vm_1();
    47   static void on_create_vm_2();
    48   static void on_create_vm_3();
    49   static void on_unloading_classes();
    50   static void on_thread_start(Thread* thread);
    51   static void on_thread_exit(Thread* thread);
    52   static void on_java_thread_dismantle(JavaThread* jt);
    53   static void on_vm_shutdown(bool exception_handler = false);
    54   static bool on_flight_recorder_option(const JavaVMOption** option, char* delimiter);
    55   static bool on_start_flight_recording_option(const JavaVMOption** option, char* delimiter);
    56   static void weak_oops_do(BoolObjectClosure* is_alive, OopClosure* f);
    57   static void weak_oops_do(OopClosure* f);
    58   static Thread* sampler_thread();
    59 };
    61 #endif // SHARE_VM_JFR_JFR_HPP

mercurial