mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8202164: Remove some unneeded BoolObjectClosure* is_alive parameters
Reviewed-by: kbarrett, stefank
This commit is contained in:
parent
465eea6d80
commit
8a427a07d8
6 changed files with 38 additions and 40 deletions
|
@ -1028,17 +1028,16 @@ void nmethod::inc_decompile_count() {
|
|||
mdo->inc_decompile_count();
|
||||
}
|
||||
|
||||
void nmethod::make_unloaded(BoolObjectClosure* is_alive, oop cause) {
|
||||
void nmethod::make_unloaded(oop cause) {
|
||||
|
||||
post_compiled_method_unload();
|
||||
|
||||
// Since this nmethod is being unloaded, make sure that dependencies
|
||||
// recorded in instanceKlasses get flushed and pass non-NULL closure to
|
||||
// indicate that this work is being done during a GC.
|
||||
// This nmethod is being unloaded, make sure that dependencies
|
||||
// recorded in instanceKlasses get flushed.
|
||||
// Since this work is being done during a GC, defer deleting dependencies from the
|
||||
// InstanceKlass.
|
||||
assert(Universe::heap()->is_gc_active(), "should only be called during gc");
|
||||
assert(is_alive != NULL, "Should be non-NULL");
|
||||
// A non-NULL is_alive closure indicates that this is being called during GC.
|
||||
flush_dependencies(is_alive);
|
||||
flush_dependencies(/*delete_immediately*/false);
|
||||
|
||||
// Break cycle between nmethod & method
|
||||
LogTarget(Trace, class, unload) lt;
|
||||
|
@ -1261,7 +1260,7 @@ bool nmethod::make_not_entrant_or_zombie(int state) {
|
|||
if (nmethod_needs_unregister) {
|
||||
Universe::heap()->unregister_nmethod(this);
|
||||
}
|
||||
flush_dependencies(NULL);
|
||||
flush_dependencies(/*delete_immediately*/true);
|
||||
}
|
||||
|
||||
// zombie only - if a JVMTI agent has enabled the CompiledMethodUnload
|
||||
|
@ -1344,13 +1343,13 @@ void nmethod::flush() {
|
|||
// of dependencies must happen during phase 1 since after GC any
|
||||
// dependencies in the unloaded nmethod won't be updated, so
|
||||
// traversing the dependency information in unsafe. In that case this
|
||||
// function is called with a non-NULL argument and this function only
|
||||
// function is called with a boolean argument and this function only
|
||||
// notifies instanceKlasses that are reachable
|
||||
|
||||
void nmethod::flush_dependencies(BoolObjectClosure* is_alive) {
|
||||
void nmethod::flush_dependencies(bool delete_immediately) {
|
||||
assert_locked_or_safepoint(CodeCache_lock);
|
||||
assert(Universe::heap()->is_gc_active() == (is_alive != NULL),
|
||||
"is_alive is non-NULL if and only if we are called during GC");
|
||||
assert(Universe::heap()->is_gc_active() != delete_immediately,
|
||||
"delete_immediately is false if and only if we are called during GC");
|
||||
if (!has_flushed_dependencies()) {
|
||||
set_has_flushed_dependencies();
|
||||
for (Dependencies::DepStream deps(this); deps.next(); ) {
|
||||
|
@ -1363,13 +1362,12 @@ void nmethod::flush_dependencies(BoolObjectClosure* is_alive) {
|
|||
if (klass == NULL) {
|
||||
continue; // ignore things like evol_method
|
||||
}
|
||||
// During GC the is_alive closure is non-NULL, and is used to
|
||||
// determine liveness of dependees that need to be updated.
|
||||
if (is_alive == NULL || klass->is_loader_alive()) {
|
||||
// During GC delete_immediately is false, and liveness
|
||||
// of dependee determines class that needs to be updated.
|
||||
if (delete_immediately || klass->is_loader_alive()) {
|
||||
// The GC defers deletion of this entry, since there might be multiple threads
|
||||
// iterating over the _dependencies graph. Other call paths are single-threaded
|
||||
// and may delete it immediately.
|
||||
bool delete_immediately = is_alive == NULL;
|
||||
InstanceKlass::cast(klass)->remove_dependent_nmethod(this, delete_immediately);
|
||||
}
|
||||
}
|
||||
|
@ -1390,7 +1388,7 @@ bool nmethod::can_unload(BoolObjectClosure* is_alive, oop* root, bool unloading_
|
|||
// simply because one of its constant oops has gone dead.
|
||||
// No actual classes need to be unloaded in order for this to occur.
|
||||
assert(unloading_occurred || ScavengeRootsInCode, "Inconsistency in unloading");
|
||||
make_unloaded(is_alive, obj);
|
||||
make_unloaded(obj);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -1516,12 +1514,12 @@ bool nmethod::do_unloading_oops(address low_boundary, BoolObjectClosure* is_aliv
|
|||
}
|
||||
|
||||
#if INCLUDE_JVMCI
|
||||
bool nmethod::do_unloading_jvmci(BoolObjectClosure* is_alive, bool unloading_occurred) {
|
||||
bool nmethod::do_unloading_jvmci(bool unloading_occurred) {
|
||||
if (_jvmci_installed_code != NULL) {
|
||||
if (JNIHandles::is_global_weak_cleared(_jvmci_installed_code)) {
|
||||
if (_jvmci_installed_code_triggers_unloading) {
|
||||
// jweak reference processing has already cleared the referent
|
||||
make_unloaded(is_alive, NULL);
|
||||
make_unloaded(NULL);
|
||||
return true;
|
||||
} else {
|
||||
clear_jvmci_installed_code();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue