Skip to content

Commit

Permalink
8317007: Add bulk removal of dead nmethods during class unloading
Browse files Browse the repository at this point in the history
Backport-of: f55381950266088cc0284754b16663675867ac87
  • Loading branch information
GoeLin committed May 7, 2024
1 parent ed2f5a8 commit 92b43c5
Show file tree
Hide file tree
Showing 27 changed files with 151 additions and 65 deletions.
4 changes: 2 additions & 2 deletions src/hotspot/share/code/codeBlob.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ RuntimeBlob::RuntimeBlob(
void RuntimeBlob::free(RuntimeBlob* blob) {
assert(blob != nullptr, "caller must check for nullptr");
ThreadInVMfromUnknown __tiv; // get to VM state in case we block on CodeCache_lock
blob->purge();
blob->purge(true /* free_code_cache_data */, true /* unregister_nmethod */);
{
MutexLocker mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
CodeCache::free(blob);
Expand All @@ -173,7 +173,7 @@ void RuntimeBlob::free(RuntimeBlob* blob) {
MemoryService::track_code_cache_memory_usage();
}

void CodeBlob::purge(bool free_code_cache_data) {
void CodeBlob::purge(bool free_code_cache_data, bool unregister_nmethod) {
if (_oop_maps != nullptr) {
delete _oop_maps;
_oop_maps = nullptr;
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/code/codeBlob.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ class CodeBlob {
static unsigned int align_code_offset(int offset);

// Deletion
virtual void purge(bool free_code_cache_data = true);
virtual void purge(bool free_code_cache_data, bool unregister_nmethod);

// Typing
virtual bool is_buffer_blob() const { return false; }
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/code/compiledMethod.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ class CompiledMethod : public CodeBlob {

void* _gc_data;

virtual void purge(bool free_code_cache_data = true) = 0;
virtual void purge(bool free_code_cache_data, bool unregister_nmethod) = 0;

private:
DeoptimizationStatus deoptimization_status() const {
Expand Down
14 changes: 8 additions & 6 deletions src/hotspot/share/code/nmethod.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1444,7 +1444,9 @@ void nmethod::unlink() {
ClassUnloadingContext::context()->register_unlinked_nmethod(this);
}

void nmethod::purge(bool free_code_cache_data) {
void nmethod::purge(bool free_code_cache_data, bool unregister_nmethod) {
assert(!free_code_cache_data, "must only call not freeing code cache data");

MutexLocker ml(CodeCache_lock, Mutex::_no_safepoint_check_flag);

// completely deallocate this method
Expand All @@ -1464,13 +1466,13 @@ void nmethod::purge(bool free_code_cache_data) {
ec = next;
}

Universe::heap()->unregister_nmethod(this);
if (unregister_nmethod) {
Universe::heap()->unregister_nmethod(this);
}

CodeCache::unregister_old_nmethod(this);

CodeBlob::purge();
if (free_code_cache_data) {
CodeCache::free(this);
}
CodeBlob::purge(free_code_cache_data, unregister_nmethod);
}

oop nmethod::oop_at(int index) const {
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/code/nmethod.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ class nmethod : public CompiledMethod {
void unlink();

// Deallocate this nmethod - called by the GC
void purge(bool free_code_cache_data = true);
void purge(bool free_code_cache_data, bool unregister_nmethod);

// See comment at definition of _last_seen_on_stack
void mark_as_maybe_on_stack();
Expand Down
2 changes: 1 addition & 1 deletion src/hotspot/share/compiler/compileBroker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1775,7 +1775,7 @@ bool CompileBroker::init_compiler_runtime() {
void CompileBroker::free_buffer_blob_if_allocated(CompilerThread* thread) {
BufferBlob* blob = thread->get_buffer_blob();
if (blob != nullptr) {
blob->purge();
blob->purge(true /* free_code_cache_data */, true /* unregister_nmethod */);
MutexLocker mu(CodeCache_lock, Mutex::_no_safepoint_check_flag);
CodeCache::free(blob);
}
Expand Down
14 changes: 14 additions & 0 deletions src/hotspot/share/gc/g1/g1CodeRootSet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,15 @@ class G1CodeRootSetHashTable : public CHeapObj<mtGC> {
}
}

// Removes dead/unlinked entries.
void bulk_remove() {
auto delete_check = [&] (nmethod** value) {
return (*value)->is_unlinked();
};

clean(delete_check);
}

// Calculate the log2 of the table size we want to shrink to.
size_t log2_target_shrink_size(size_t current_size) const {
// A table with the new size should be at most filled by this factor. Otherwise
Expand Down Expand Up @@ -257,6 +266,11 @@ bool G1CodeRootSet::remove(nmethod* method) {
return _table->remove(method);
}

void G1CodeRootSet::bulk_remove() {
assert(!_is_iterating, "should not mutate while iterating the table");
_table->bulk_remove();
}

bool G1CodeRootSet::contains(nmethod* method) {
return _table->contains(method);
}
Expand Down
1 change: 1 addition & 0 deletions src/hotspot/share/gc/g1/g1CodeRootSet.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ class G1CodeRootSet {

void add(nmethod* method);
bool remove(nmethod* method);
void bulk_remove();
bool contains(nmethod* method);
void clear();

Expand Down
62 changes: 34 additions & 28 deletions src/hotspot/share/gc/g1/g1CollectedHeap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2597,6 +2597,7 @@ void G1CollectedHeap::unload_classes_and_code(const char* description, BoolObjec
GCTraceTime(Debug, gc, phases) debug(description, timer);

ClassUnloadingContext ctx(workers()->active_workers(),
false /* unregister_nmethods_during_purge */,
false /* lock_codeblob_free_separately */);
{
CodeCache::UnlinkingScope scope(is_alive);
Expand All @@ -2608,6 +2609,10 @@ void G1CollectedHeap::unload_classes_and_code(const char* description, BoolObjec
GCTraceTime(Debug, gc, phases) t("Purge Unlinked NMethods", timer);
ctx.purge_nmethods();
}
{
GCTraceTime(Debug, gc, phases) ur("Unregister NMethods", timer);
G1CollectedHeap::heap()->bulk_unregister_nmethods();
}
{
GCTraceTime(Debug, gc, phases) t("Free Code Blobs", timer);
ctx.free_code_blobs();
Expand All @@ -2619,6 +2624,33 @@ void G1CollectedHeap::unload_classes_and_code(const char* description, BoolObjec
}
}

class G1BulkUnregisterNMethodTask : public WorkerTask {
HeapRegionClaimer _hrclaimer;

class UnregisterNMethodsHeapRegionClosure : public HeapRegionClosure {
public:

bool do_heap_region(HeapRegion* hr) {
hr->rem_set()->bulk_remove_code_roots();
return false;
}
} _cl;

public:
G1BulkUnregisterNMethodTask(uint num_workers)
: WorkerTask("G1 Remove Unlinked NMethods From Code Root Set Task"),
_hrclaimer(num_workers) { }

void work(uint worker_id) {
G1CollectedHeap::heap()->heap_region_par_iterate_from_worker_offset(&_cl, &_hrclaimer, worker_id);
}
};

void G1CollectedHeap::bulk_unregister_nmethods() {
uint num_workers = workers()->active_workers();
G1BulkUnregisterNMethodTask t(num_workers);
workers()->run_task(&t);
}

bool G1STWSubjectToDiscoveryClosure::do_object_b(oop obj) {
assert(obj != nullptr, "must not be null");
Expand Down Expand Up @@ -3039,41 +3071,15 @@ class RegisterNMethodOopClosure: public OopClosure {
void do_oop(narrowOop* p) { ShouldNotReachHere(); }
};

class UnregisterNMethodOopClosure: public OopClosure {
G1CollectedHeap* _g1h;
nmethod* _nm;

public:
UnregisterNMethodOopClosure(G1CollectedHeap* g1h, nmethod* nm) :
_g1h(g1h), _nm(nm) {}

void do_oop(oop* p) {
oop heap_oop = RawAccess<>::oop_load(p);
if (!CompressedOops::is_null(heap_oop)) {
oop obj = CompressedOops::decode_not_null(heap_oop);
HeapRegion* hr = _g1h->heap_region_containing(obj);
assert(!hr->is_continues_humongous(),
"trying to remove code root " PTR_FORMAT " in continuation of humongous region " HR_FORMAT
" starting at " HR_FORMAT,
p2i(_nm), HR_FORMAT_PARAMS(hr), HR_FORMAT_PARAMS(hr->humongous_start_region()));

hr->remove_code_root(_nm);
}
}

void do_oop(narrowOop* p) { ShouldNotReachHere(); }
};

void G1CollectedHeap::register_nmethod(nmethod* nm) {
guarantee(nm != nullptr, "sanity");
RegisterNMethodOopClosure reg_cl(this, nm);
nm->oops_do(&reg_cl);
}

void G1CollectedHeap::unregister_nmethod(nmethod* nm) {
guarantee(nm != nullptr, "sanity");
UnregisterNMethodOopClosure reg_cl(this, nm);
nm->oops_do(&reg_cl, true);
// We always unregister nmethods in bulk during code unloading only.
ShouldNotReachHere();
}

void G1CollectedHeap::update_used_after_gc(bool evacuation_failed) {
Expand Down
2 changes: 2 additions & 0 deletions src/hotspot/share/gc/g1/g1CollectedHeap.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1267,6 +1267,8 @@ class G1CollectedHeap : public CollectedHeap {

void unload_classes_and_code(const char* description, BoolObjectClosure* cl, GCTimer* timer);

void bulk_unregister_nmethods();

// Verification

// Perform any cleanup actions necessary before allowing a verification.
Expand Down
4 changes: 4 additions & 0 deletions src/hotspot/share/gc/g1/heapRegionRemSet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ void HeapRegionRemSet::remove_code_root(nmethod* nm) {
guarantee(!_code_roots.contains(nm), "duplicate entry found");
}

void HeapRegionRemSet::bulk_remove_code_roots() {
_code_roots.bulk_remove();
}

void HeapRegionRemSet::code_roots_do(CodeBlobClosure* blk) const {
_code_roots.nmethods_do(blk);
}
Expand Down
1 change: 1 addition & 0 deletions src/hotspot/share/gc/g1/heapRegionRemSet.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ class HeapRegionRemSet : public CHeapObj<mtGC> {
void add_code_root(nmethod* nm);
void add_code_root_locked(nmethod* nm);
void remove_code_root(nmethod* nm);
void bulk_remove_code_roots();

// Applies blk->do_code_blob() to each of the entries in _code_roots
void code_roots_do(CodeBlobClosure* blk) const;
Expand Down
12 changes: 8 additions & 4 deletions src/hotspot/share/gc/parallel/parallelScavengeHeap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -527,6 +527,14 @@ void ParallelScavengeHeap::resize_all_tlabs() {
CollectedHeap::resize_all_tlabs();
}

void ParallelScavengeHeap::prune_scavengable_nmethods() {
ScavengableNMethods::prune_nmethods_not_into_young();
}

void ParallelScavengeHeap::prune_unlinked_nmethods() {
ScavengableNMethods::prune_unlinked_nmethods();
}

// This method is used by System.gc() and JVMTI.
void ParallelScavengeHeap::collect(GCCause::Cause cause) {
assert(!Heap_lock->owned_by_self(),
Expand Down Expand Up @@ -858,10 +866,6 @@ void ParallelScavengeHeap::verify_nmethod(nmethod* nm) {
ScavengableNMethods::verify_nmethod(nm);
}

void ParallelScavengeHeap::prune_scavengable_nmethods() {
ScavengableNMethods::prune_nmethods();
}

GrowableArray<GCMemoryManager*> ParallelScavengeHeap::memory_managers() {
GrowableArray<GCMemoryManager*> memory_managers(2);
memory_managers.append(_young_manager);
Expand Down
1 change: 1 addition & 0 deletions src/hotspot/share/gc/parallel/parallelScavengeHeap.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ class ParallelScavengeHeap : public CollectedHeap {
void verify_nmethod(nmethod* nm) override;

void prune_scavengable_nmethods();
void prune_unlinked_nmethods();

size_t max_capacity() const override;

Expand Down
5 changes: 5 additions & 0 deletions src/hotspot/share/gc/parallel/psParallelCompact.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1769,6 +1769,7 @@ bool PSParallelCompact::invoke_no_policy(bool maximum_heap_compaction) {
ref_processor()->start_discovery(maximum_heap_compaction);

ClassUnloadingContext ctx(1 /* num_nmethod_unlink_workers */,
false /* unregister_nmethods_during_purge */,
false /* lock_codeblob_free_separately */);

marking_phase(&_gc_tracer);
Expand Down Expand Up @@ -2078,6 +2079,10 @@ void PSParallelCompact::marking_phase(ParallelOldTracer *gc_tracer) {
// Release unloaded nmethod's memory.
ctx->purge_nmethods();
}
{
GCTraceTime(Debug, gc, phases) ur("Unregister NMethods", &_gc_timer);
ParallelScavengeHeap::heap()->prune_unlinked_nmethods();
}
{
GCTraceTime(Debug, gc, phases) t("Free Code Blobs", gc_timer());
ctx->free_code_blobs();
Expand Down
4 changes: 4 additions & 0 deletions src/hotspot/share/gc/serial/genMarkSweep.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,10 @@ void GenMarkSweep::mark_sweep_phase1(bool clear_all_softrefs) {
// Release unloaded nmethod's memory.
ctx->purge_nmethods();
}
{
GCTraceTime(Debug, gc, phases) ur("Unregister NMethods", gc_timer());
gch->prune_unlinked_nmethods();
}
{
GCTraceTime(Debug, gc, phases) t("Free Code Blobs", gc_timer());
ctx->free_code_blobs();
Expand Down
1 change: 1 addition & 0 deletions src/hotspot/share/gc/serial/serialHeap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
#include "gc/serial/tenuredGeneration.inline.hpp"
#include "gc/shared/gcLocker.inline.hpp"
#include "gc/shared/genMemoryPools.hpp"
#include "gc/shared/scavengableNMethods.hpp"
#include "gc/shared/strongRootsScope.hpp"
#include "gc/shared/suspendibleThreadSet.hpp"
#include "memory/universe.hpp"
Expand Down
7 changes: 5 additions & 2 deletions src/hotspot/share/gc/shared/classUnloadingContext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,13 @@

ClassUnloadingContext* ClassUnloadingContext::_context = nullptr;

ClassUnloadingContext::ClassUnloadingContext(uint num_workers, bool lock_codeblob_free_separately) :
ClassUnloadingContext::ClassUnloadingContext(uint num_workers,
bool unregister_nmethods_during_purge,
bool lock_codeblob_free_separately) :
_cld_head(nullptr),
_num_nmethod_unlink_workers(num_workers),
_unlinked_nmethods(nullptr),
_unregister_nmethods_during_purge(unregister_nmethods_during_purge),
_lock_codeblob_free_separately(lock_codeblob_free_separately) {

assert(_context == nullptr, "context already set");
Expand Down Expand Up @@ -113,7 +116,7 @@ void ClassUnloadingContext::purge_nmethods() {
NMethodSet* set = _unlinked_nmethods[i];
for (nmethod* nm : *set) {
freed_memory += nm->size();
nm->purge(false /* free_code_cache_data */);
nm->purge(false /* free_code_cache_data */, _unregister_nmethods_during_purge);
}
}

Expand Down
5 changes: 5 additions & 0 deletions src/hotspot/share/gc/shared/classUnloadingContext.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,22 @@ class ClassUnloadingContext : public CHeapObj<mtGC> {
using NMethodSet = GrowableArrayCHeap<nmethod*, mtGC>;
NMethodSet** _unlinked_nmethods;

bool _unregister_nmethods_during_purge;
bool _lock_codeblob_free_separately;

public:
static ClassUnloadingContext* context() { assert(_context != nullptr, "context not set"); return _context; }

// Num_nmethod_unlink_workers configures the maximum numbers of threads unlinking
// nmethods.
// unregister_nmethods_during_purge determines whether unloaded nmethods should
// be unregistered from the garbage collector during purge. If not, ,the caller
// is responsible to do that later.
// lock_codeblob_free_separately determines whether freeing the code blobs takes
// the CodeCache_lock during the whole operation (=false) or per code blob
// free operation (=true).
ClassUnloadingContext(uint num_nmethod_unlink_workers,
bool unregister_nmethods_during_purge,
bool lock_codeblob_free_separately);
~ClassUnloadingContext();

Expand Down
7 changes: 6 additions & 1 deletion src/hotspot/share/gc/shared/genCollectedHeap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -557,6 +557,7 @@ void GenCollectedHeap::do_collection(bool full,
CodeCache::on_gc_marking_cycle_start();

ClassUnloadingContext ctx(1 /* num_nmethod_unlink_workers */,
false /* unregister_nmethods_during_purge */,
false /* lock_codeblob_free_separately */);

collect_generation(_old_gen,
Expand Down Expand Up @@ -615,7 +616,11 @@ void GenCollectedHeap::verify_nmethod(nmethod* nm) {
}

void GenCollectedHeap::prune_scavengable_nmethods() {
ScavengableNMethods::prune_nmethods();
ScavengableNMethods::prune_nmethods_not_into_young();
}

void GenCollectedHeap::prune_unlinked_nmethods() {
ScavengableNMethods::prune_unlinked_nmethods();
}

HeapWord* GenCollectedHeap::satisfy_failed_allocation(size_t size, bool is_tlab) {
Expand Down
1 change: 1 addition & 0 deletions src/hotspot/share/gc/shared/genCollectedHeap.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@ class GenCollectedHeap : public CollectedHeap {
void verify_nmethod(nmethod* nm) override;

void prune_scavengable_nmethods();
void prune_unlinked_nmethods();

// Iteration functions.
void oop_iterate(OopIterateClosure* cl);
Expand Down
Loading

1 comment on commit 92b43c5

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.