/* * Copyright (c) 2017, 2021, Red Hat, Inc. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. *
*/
/* * ShenandoahGCPhaseTiming tracks Shenandoah specific timing information * of a GC phase
*/ class ShenandoahTimingsTracker : public StackObj { private: static ShenandoahPhaseTimings::Phase _current_phase;
/* * ShenandoahGCPhase tracks Shenandoah specific timing information * and emits a corresponding JFR event of a GC phase
*/ class ShenandoahGCPhase : public ShenandoahTimingsTracker { private:
ConcurrentGCTimer* const _timer;
class ShenandoahGCWorkerPhase : public StackObj { private:
ShenandoahPhaseTimings* const _timings; const ShenandoahPhaseTimings::Phase _phase; public:
ShenandoahGCWorkerPhase(ShenandoahPhaseTimings::Phase phase);
~ShenandoahGCWorkerPhase();
};
// Aggregates all the things that should happen before/after the pause. class ShenandoahGCPauseMark : public StackObj { private:
ShenandoahHeap* const _heap; const GCIdMark _gc_id_mark; const SvcGCMarker _svc_gc_mark; const IsGCActiveMark _is_gc_active_mark;
TraceMemoryManagerStats _trace_pause;
class ShenandoahSafepoint : public AllStatic { public: // Check if Shenandoah GC safepoint is in progress. This is nominally // equivalent to calling SafepointSynchronize::is_at_safepoint(), but // it also checks the Shenandoah specifics, when it can. staticinlinebool is_at_shenandoah_safepoint() { if (!SafepointSynchronize::is_at_safepoint()) returnfalse;
Thread* const thr = Thread::current(); // Shenandoah GC specific safepoints are scheduled by control thread. // So if we are enter here from control thread, then we are definitely not // at Shenandoah safepoint, but at something else. if (thr == ShenandoahHeap::heap()->control_thread()) returnfalse;
// This is not VM thread, cannot see what VM thread is doing, // so pretend this is a proper Shenandoah safepoint if (!thr->is_VM_thread()) returntrue;
// Otherwise check we are at proper operation type
VM_Operation* vm_op = VMThread::vm_operation(); if (vm_op == NULL) returnfalse;
VM_Operation::VMOp_Type type = vm_op->type(); return type == VM_Operation::VMOp_ShenandoahInitMark ||
type == VM_Operation::VMOp_ShenandoahFinalMarkStartEvac ||
type == VM_Operation::VMOp_ShenandoahInitUpdateRefs ||
type == VM_Operation::VMOp_ShenandoahFinalUpdateRefs ||
type == VM_Operation::VMOp_ShenandoahFinalRoots ||
type == VM_Operation::VMOp_ShenandoahFullGC ||
type == VM_Operation::VMOp_ShenandoahDegeneratedGC;
}
};
class ShenandoahWorkerSession : public StackObj { protected:
ShenandoahWorkerSession(uint worker_id); public: staticinline uint worker_id() { return WorkerThread::worker_id();
}
};
class ShenandoahConcurrentWorkerSession : public ShenandoahWorkerSession { private:
EventGCPhaseConcurrent _event;
class ShenandoahSuspendibleThreadSetJoiner { private:
SuspendibleThreadSetJoiner _joiner; public:
ShenandoahSuspendibleThreadSetJoiner(bool active = true) : _joiner(active) {
assert(!ShenandoahThreadLocalData::is_evac_allowed(Thread::current()), "STS should be joined before evac scope");
}
~ShenandoahSuspendibleThreadSetJoiner() {
assert(!ShenandoahThreadLocalData::is_evac_allowed(Thread::current()), "STS should be left after evac scope");
}
};
class ShenandoahSuspendibleThreadSetLeaver { private:
SuspendibleThreadSetLeaver _leaver; public:
ShenandoahSuspendibleThreadSetLeaver(bool active = true) : _leaver(active) {
assert(!ShenandoahThreadLocalData::is_evac_allowed(Thread::current()), "STS should be left after evac scope");
}
~ShenandoahSuspendibleThreadSetLeaver() {
assert(!ShenandoahThreadLocalData::is_evac_allowed(Thread::current()), "STS should be joined before evac scope");
}
};
#endif// SHARE_GC_SHENANDOAH_SHENANDOAHUTILS_HPP
Messung V0.5
¤ Dauer der Verarbeitung: 0.1 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.