src/share/vm/jfr/jfr.cpp

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

apetushkov@9858 1 /*
apetushkov@9858 2 * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
apetushkov@9858 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
apetushkov@9858 4 *
apetushkov@9858 5 * This code is free software; you can redistribute it and/or modify it
apetushkov@9858 6 * under the terms of the GNU General Public License version 2 only, as
apetushkov@9858 7 * published by the Free Software Foundation.
apetushkov@9858 8 *
apetushkov@9858 9 * This code is distributed in the hope that it will be useful, but WITHOUT
apetushkov@9858 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
apetushkov@9858 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
apetushkov@9858 12 * version 2 for more details (a copy is included in the LICENSE file that
apetushkov@9858 13 * accompanied this code).
apetushkov@9858 14 *
apetushkov@9858 15 * You should have received a copy of the GNU General Public License version
apetushkov@9858 16 * 2 along with this work; if not, write to the Free Software Foundation,
apetushkov@9858 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
apetushkov@9858 18 *
apetushkov@9858 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
apetushkov@9858 20 * or visit www.oracle.com if you need additional information or have any
apetushkov@9858 21 * questions.
apetushkov@9858 22 *
apetushkov@9858 23 */
apetushkov@9858 24
apetushkov@9858 25 #include "precompiled.hpp"
apetushkov@9858 26 #include "jfr/jfr.hpp"
apetushkov@9858 27 #include "jfr/leakprofiler/leakProfiler.hpp"
apetushkov@9858 28 #include "jfr/periodic/sampling/jfrThreadSampler.hpp"
apetushkov@9858 29 #include "jfr/recorder/jfrRecorder.hpp"
apetushkov@9858 30 #include "jfr/recorder/checkpoint/jfrCheckpointManager.hpp"
apetushkov@9858 31 #include "jfr/recorder/repository/jfrEmergencyDump.hpp"
apetushkov@9858 32 #include "jfr/recorder/service/jfrOptionSet.hpp"
apetushkov@9858 33 #include "jfr/support/jfrThreadLocal.hpp"
apetushkov@9858 34 #include "runtime/java.hpp"
jbachorik@9925 35 #include "utilities/defaultStream.hpp"
apetushkov@9858 36
apetushkov@9858 37 bool Jfr::is_enabled() {
apetushkov@9858 38 return JfrRecorder::is_enabled();
apetushkov@9858 39 }
apetushkov@9858 40
apetushkov@9858 41 bool Jfr::is_disabled() {
apetushkov@9858 42 return JfrRecorder::is_disabled();
apetushkov@9858 43 }
apetushkov@9858 44
apetushkov@9858 45 bool Jfr::is_recording() {
apetushkov@9858 46 return JfrRecorder::is_recording();
apetushkov@9858 47 }
apetushkov@9858 48
jbachorik@9925 49 void Jfr::on_create_vm_1() {
jbachorik@9925 50 if (!JfrRecorder::on_create_vm_1()) {
jbachorik@9925 51 vm_exit_during_initialization("Failure when starting JFR on_create_vm_1");
apetushkov@9858 52 }
apetushkov@9858 53 }
apetushkov@9858 54
jbachorik@9925 55 void Jfr::on_create_vm_2() {
jbachorik@9925 56 if (!JfrRecorder::on_create_vm_2()) {
jbachorik@9925 57 vm_exit_during_initialization("Failure when starting JFR on_create_vm_2");
jbachorik@9925 58 }
jbachorik@9925 59 }
jbachorik@9925 60
jbachorik@9925 61 void Jfr::on_create_vm_3() {
jbachorik@9925 62 if (!JfrRecorder::on_create_vm_3()) {
jbachorik@9925 63 vm_exit_during_initialization("Failure when starting JFR on_create_vm_3");
apetushkov@9858 64 }
apetushkov@9858 65 }
apetushkov@9858 66
apetushkov@9858 67 void Jfr::on_unloading_classes() {
apetushkov@9858 68 if (JfrRecorder::is_created()) {
apetushkov@9858 69 JfrCheckpointManager::write_type_set_for_unloaded_classes();
apetushkov@9858 70 }
apetushkov@9858 71 }
apetushkov@9858 72
mgronlun@9868 73 void Jfr::on_thread_start(Thread* t) {
mgronlun@9868 74 JfrThreadLocal::on_start(t);
apetushkov@9858 75 }
apetushkov@9858 76
mgronlun@9868 77 void Jfr::on_thread_exit(Thread* t) {
mgronlun@9868 78 JfrThreadLocal::on_exit(t);
mgronlun@9868 79 }
mgronlun@9868 80
mgronlun@9868 81 void Jfr::on_java_thread_dismantle(JavaThread* jt) {
mgronlun@9868 82 if (JfrRecorder::is_recording()) {
mgronlun@9868 83 JfrCheckpointManager::write_thread_checkpoint(jt);
apetushkov@9858 84 }
apetushkov@9858 85 }
apetushkov@9858 86
apetushkov@9858 87 void Jfr::on_vm_shutdown(bool exception_handler) {
apetushkov@9858 88 JfrRecorder::set_is_shutting_down();
apetushkov@9858 89 if (JfrRecorder::is_recording()) {
apetushkov@9858 90 JfrEmergencyDump::on_vm_shutdown(exception_handler);
apetushkov@9858 91 }
apetushkov@9858 92 }
apetushkov@9858 93
apetushkov@9858 94 void Jfr::weak_oops_do(BoolObjectClosure* is_alive, OopClosure* f) {
apetushkov@9858 95 LeakProfiler::oops_do(is_alive, f);
apetushkov@9858 96 }
apetushkov@9858 97
apetushkov@9858 98 void Jfr::weak_oops_do(OopClosure* f) {
apetushkov@9858 99 AlwaysTrueClosure always_true;
apetushkov@9858 100 LeakProfiler::oops_do(&always_true, f);
apetushkov@9858 101 }
apetushkov@9858 102
apetushkov@9858 103 bool Jfr::on_flight_recorder_option(const JavaVMOption** option, char* delimiter) {
apetushkov@9858 104 return JfrOptionSet::parse_flight_recorder_option(option, delimiter);
apetushkov@9858 105 }
apetushkov@9858 106
apetushkov@9858 107 bool Jfr::on_start_flight_recording_option(const JavaVMOption** option, char* delimiter) {
apetushkov@9858 108 return JfrOptionSet::parse_start_flight_recording_option(option, delimiter);
apetushkov@9858 109 }
apetushkov@9858 110
apetushkov@9858 111 Thread* Jfr::sampler_thread() {
apetushkov@9858 112 return JfrThreadSampling::sampler_thread();
apetushkov@9858 113 }

mercurial