jdk/src/hotspot/share/gc/shenandoah/shenandoahSTWMark.cpp
Aleksey Shipilev 17ee366ff9 8382150: Shenandoah: Clean up nmethod entry barrier support
Reviewed-by: xpeng, kdnilsen, wkemper
2026-04-16 18:20:29 +00:00

155 lines
5.5 KiB
C++

/*
* Copyright (c) 2021, 2022, Red Hat, Inc. All rights reserved.
* Copyright Amazon.com Inc. 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.
*
*/
#include "code/nmethod.hpp"
#include "gc/shared/taskTerminator.hpp"
#include "gc/shared/workerThread.hpp"
#include "gc/shenandoah/shenandoahClosures.inline.hpp"
#include "gc/shenandoah/shenandoahGeneration.hpp"
#include "gc/shenandoah/shenandoahGenerationType.hpp"
#include "gc/shenandoah/shenandoahMark.inline.hpp"
#include "gc/shenandoah/shenandoahReferenceProcessor.hpp"
#include "gc/shenandoah/shenandoahRootProcessor.inline.hpp"
#include "gc/shenandoah/shenandoahSTWMark.hpp"
#include "gc/shenandoah/shenandoahVerifier.hpp"
#include "runtime/threads.hpp"
class ShenandoahSTWMarkTask : public WorkerTask {
private:
ShenandoahSTWMark* const _mark;
NMethodMarkingScope _nmethod_marking_scope;
ThreadsClaimTokenScope _threads_claim_token_scope;
public:
ShenandoahSTWMarkTask(ShenandoahSTWMark* mark);
void work(uint worker_id);
};
ShenandoahSTWMarkTask::ShenandoahSTWMarkTask(ShenandoahSTWMark* mark) :
WorkerTask("Shenandoah STW mark"),
_mark(mark),
_nmethod_marking_scope(),
_threads_claim_token_scope() {
}
void ShenandoahSTWMarkTask::work(uint worker_id) {
ShenandoahParallelWorkerSession worker_session(worker_id);
_mark->mark_roots(worker_id);
_mark->finish_mark(worker_id);
}
ShenandoahSTWMark::ShenandoahSTWMark(ShenandoahGeneration* generation, bool full_gc) :
ShenandoahMark(generation),
_root_scanner(full_gc ? ShenandoahPhaseTimings::full_gc_mark : ShenandoahPhaseTimings::degen_gc_stw_mark),
_terminator(ShenandoahHeap::heap()->workers()->active_workers(), task_queues()),
_full_gc(full_gc) {
assert(ShenandoahSafepoint::is_at_shenandoah_safepoint(), "Must be at a Shenandoah safepoint");
}
void ShenandoahSTWMark::mark() {
ShenandoahHeap* const heap = ShenandoahHeap::heap();
// Arm all nmethods. Even though this is STW mark, some marking code
// piggybacks on nmethod barriers for special instances.
ShenandoahCodeRoots::arm_nmethods();
// Weak reference processing
ShenandoahReferenceProcessor* rp = _generation->ref_processor();
rp->reset_thread_locals();
// Init mark, do not expect forwarded pointers in roots
if (ShenandoahVerify) {
assert(Thread::current()->is_VM_thread(), "Must be");
heap->verifier()->verify_roots_no_forwarded(_generation);
}
start_mark();
uint nworkers = heap->workers()->active_workers();
task_queues()->reserve(nworkers);
TASKQUEUE_STATS_ONLY(task_queues()->reset_taskqueue_stats());
{
// Mark
if (_generation->is_young()) {
// But only scan the remembered set for young generation.
_generation->scan_remembered_set(false /* is_concurrent */);
}
ShenandoahSTWMarkTask task(this);
heap->workers()->run_task(&task);
assert(task_queues()->is_empty(), "Should be empty");
}
_generation->set_mark_complete();
end_mark();
// Mark is finished, can disarm the nmethods now.
ShenandoahCodeRoots::disarm_nmethods();
assert(task_queues()->is_empty(), "Should be empty");
TASKQUEUE_STATS_ONLY(task_queues()->print_and_reset_taskqueue_stats(""));
}
void ShenandoahSTWMark::mark_roots(uint worker_id) {
ShenandoahReferenceProcessor* rp = _generation->ref_processor();
auto queue = task_queues()->queue(worker_id);
switch (_generation->type()) {
case NON_GEN: {
ShenandoahMarkRefsClosure<NON_GEN> init_mark(queue, rp, nullptr);
_root_scanner.roots_do(&init_mark, worker_id);
break;
}
case GLOBAL: {
ShenandoahMarkRefsClosure<GLOBAL> init_mark(queue, rp, nullptr);
_root_scanner.roots_do(&init_mark, worker_id);
break;
}
case YOUNG: {
ShenandoahMarkRefsClosure<YOUNG> init_mark(queue, rp, nullptr);
_root_scanner.roots_do(&init_mark, worker_id);
break;
}
case OLD:
// We never exclusively mark the old generation on a safepoint. This would be encompassed
// by a 'global' collection. Note that both GLOBAL and NON_GEN mark the entire heap, but
// the GLOBAL closure is specialized for the generational mode.
default:
ShouldNotReachHere();
}
}
void ShenandoahSTWMark::finish_mark(uint worker_id) {
ShenandoahPhaseTimings::Phase phase = _full_gc ? ShenandoahPhaseTimings::full_gc_mark : ShenandoahPhaseTimings::degen_gc_stw_mark;
ShenandoahWorkerTimingsTracker timer(phase, ShenandoahPhaseTimings::ParallelMark, worker_id);
StringDedup::Requests requests;
mark_loop(worker_id, &_terminator, _generation->type(), false /* not cancellable */,
ShenandoahStringDedup::is_enabled() ? ALWAYS_DEDUP : NO_DEDUP, &requests);
}