/* * Copyright (c) 1997, 2021, Oracle and/or its affiliates. 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. *
*/
#ifdef ASSERT void GCLocker::verify_critical_count() { if (SafepointSynchronize::is_at_safepoint()) {
assert(!needs_gc() || _debug_jni_lock_count == _jni_lock_count, "must agree"); int count = 0; // Count the number of threads with critical operations in progress
JavaThreadIteratorWithHandle jtiwh; for (; JavaThread *thr = jtiwh.next(); ) { if (thr->in_critical()) {
count++;
}
} if (_jni_lock_count != count) {
log_error(gc, verify)("critical counts don't match: %d != %d", _jni_lock_count, count);
jtiwh.rewind(); for (; JavaThread *thr = jtiwh.next(); ) { if (thr->in_critical()) {
log_error(gc, verify)(PTR_FORMAT " in_critical %d", p2i(thr), thr->in_critical());
}
}
}
assert(_jni_lock_count == count, "must be equal");
}
}
// In debug mode track the locking state at all times void GCLocker::increment_debug_jni_lock_count() {
assert(_debug_jni_lock_count >= 0, "bad value");
Atomic::inc(&_debug_jni_lock_count);
}
void GCLocker::jni_lock(JavaThread* thread) {
assert(!thread->in_critical(), "shouldn't currently be in a critical region");
MonitorLocker ml(JNICritical_lock); // Block entering threads if there's a pending GC request. while (needs_gc()) { // There's at least one thread that has not left the critical region (CR) // completely. When that last thread (no new threads can enter CR due to the // blocking) exits CR, it calls `jni_unlock`, which sets `_needs_gc` // to false and wakes up all blocked threads. // We would like to assert #threads in CR to be > 0, `_jni_lock_count > 0` // in the code, but it's too strong; it's possible that the last thread // has called `jni_unlock`, but not yet finished the call, e.g. initiating // a GCCause::_gc_locker GC.
ml.wait();
}
thread->enter_critical();
_jni_lock_count++;
increment_debug_jni_lock_count();
}
void GCLocker::jni_unlock(JavaThread* thread) {
assert(thread->in_last_critical(), "should be exiting critical region");
MutexLocker mu(JNICritical_lock);
_jni_lock_count--;
decrement_debug_jni_lock_count();
thread->exit_critical(); if (needs_gc() && !is_active_internal()) { // We're the last thread out. Request a GC. // Capture the current total collections, to allow detection of // other collections that make this one unnecessary. The value of // total_collections() is only changed at a safepoint, so there // must not be a safepoint between the lock becoming inactive and // getting the count, else there may be unnecessary GCLocker GCs.
_total_collections = Universe::heap()->total_collections();
GCLockerTracer::report_gc_locker();
{ // Must give up the lock while at a safepoint
MutexUnlocker munlock(JNICritical_lock);
log_debug_jni("Performing GC after exiting critical section.");
Universe::heap()->collect(GCCause::_gc_locker);
}
_needs_gc = false;
JNICritical_lock->notify_all();
}
}
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 ist noch experimentell.