Skip to content

Commit fd4b2f2

Browse files
xmas92fisk
authored andcommittedAug 15, 2022
8291718: Remove mark_for_deoptimization from klass unloading
Reviewed-by: eosterlund, dlong
1 parent 9d7c13e commit fd4b2f2

18 files changed

+41
-36
lines changed
 

‎src/hotspot/share/code/codeCache.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -758,9 +758,8 @@ int CodeCache::alignment_offset() {
758758
}
759759

760760
// Mark nmethods for unloading if they contain otherwise unreachable oops.
761-
void CodeCache::do_unloading(BoolObjectClosure* is_alive, bool unloading_occurred) {
761+
void CodeCache::do_unloading(bool unloading_occurred) {
762762
assert_locked_or_safepoint(CodeCache_lock);
763-
UnloadingScope scope(is_alive);
764763
CompiledMethodIterator iter(CompiledMethodIterator::only_alive);
765764
while(iter.next()) {
766765
iter.method()->do_unloading(unloading_occurred);

‎src/hotspot/share/code/codeCache.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ class CodeCache : AllStatic {
197197
~UnloadingScope();
198198
};
199199

200-
static void do_unloading(BoolObjectClosure* is_alive, bool unloading_occurred);
200+
static void do_unloading(bool unloading_occurred);
201201
static uint8_t unloading_cycle() { return _unloading_cycle; }
202202

203203
static void increment_unloading_cycle();

‎src/hotspot/share/code/dependencyContext.cpp

+14-9
Original file line numberDiff line numberDiff line change
@@ -205,26 +205,31 @@ void DependencyContext::clean_unloading_dependents() {
205205
}
206206
}
207207

208+
nmethodBucket* DependencyContext::release_and_get_next_not_unloading(nmethodBucket* b) {
209+
nmethodBucket* next = b->next_not_unloading();
210+
release(b);
211+
return next;
212+
}
213+
208214
//
209215
// Invalidate all dependencies in the context
210-
int DependencyContext::remove_all_dependents() {
216+
void DependencyContext::remove_all_dependents() {
217+
nmethodBucket* b = dependencies_not_unloading();
218+
set_dependencies(NULL);
219+
assert(b == nullptr, "All dependents should be unloading");
220+
}
221+
222+
int DependencyContext::remove_and_mark_for_deoptimization_all_dependents() {
211223
nmethodBucket* b = dependencies_not_unloading();
212224
set_dependencies(NULL);
213225
int marked = 0;
214-
int removed = 0;
215226
while (b != NULL) {
216227
nmethod* nm = b->get_nmethod();
217228
if (b->count() > 0 && nm->is_alive() && !nm->is_marked_for_deoptimization()) {
218229
nm->mark_for_deoptimization();
219230
marked++;
220231
}
221-
nmethodBucket* next = b->next_not_unloading();
222-
removed++;
223-
release(b);
224-
b = next;
225-
}
226-
if (UsePerfData && removed > 0) {
227-
_perf_total_buckets_deallocated_count->inc(removed);
232+
b = release_and_get_next_not_unloading(b);
228233
}
229234
return marked;
230235
}

‎src/hotspot/share/code/dependencyContext.hpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,10 @@ class DependencyContext : public StackObj {
120120
int mark_dependent_nmethods(DepChange& changes);
121121
void add_dependent_nmethod(nmethod* nm);
122122
void remove_dependent_nmethod(nmethod* nm);
123-
int remove_all_dependents();
123+
void remove_all_dependents();
124+
int remove_and_mark_for_deoptimization_all_dependents();
124125
void clean_unloading_dependents();
126+
static nmethodBucket* release_and_get_next_not_unloading(nmethodBucket* b);
125127
static void purge_dependency_contexts();
126128
static void release(nmethodBucket* b);
127129
static void cleaning_start();

‎src/hotspot/share/gc/g1/g1CollectedHeap.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -2882,10 +2882,9 @@ void G1CollectedHeap::do_collection_pause_at_safepoint_helper(double target_paus
28822882
}
28832883
}
28842884

2885-
void G1CollectedHeap::complete_cleaning(BoolObjectClosure* is_alive,
2886-
bool class_unloading_occurred) {
2885+
void G1CollectedHeap::complete_cleaning(bool class_unloading_occurred) {
28872886
uint num_workers = workers()->active_workers();
2888-
G1ParallelCleaningTask unlink_task(is_alive, num_workers, class_unloading_occurred);
2887+
G1ParallelCleaningTask unlink_task(num_workers, class_unloading_occurred);
28892888
workers()->run_task(&unlink_task);
28902889
}
28912890

‎src/hotspot/share/gc/g1/g1CollectedHeap.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1261,7 +1261,7 @@ class G1CollectedHeap : public CollectedHeap {
12611261
void rebuild_code_roots();
12621262

12631263
// Performs cleaning of data structures after class unloading.
1264-
void complete_cleaning(BoolObjectClosure* is_alive, bool class_unloading_occurred);
1264+
void complete_cleaning(bool class_unloading_occurred);
12651265

12661266
// Verification
12671267

‎src/hotspot/share/gc/g1/g1ConcurrentMark.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -1689,8 +1689,9 @@ void G1ConcurrentMark::weak_refs_work() {
16891689
// Unload Klasses, String, Code Cache, etc.
16901690
if (ClassUnloadingWithConcurrentMark) {
16911691
GCTraceTime(Debug, gc, phases) debug("Class Unloading", _gc_timer_cm);
1692+
CodeCache::UnloadingScope scope(&g1_is_alive);
16921693
bool purged_classes = SystemDictionary::do_unloading(_gc_timer_cm);
1693-
_g1h->complete_cleaning(&g1_is_alive, purged_classes);
1694+
_g1h->complete_cleaning(purged_classes);
16941695
}
16951696
}
16961697

‎src/hotspot/share/gc/g1/g1FullCollector.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -301,9 +301,10 @@ void G1FullCollector::phase1_mark_live_objects() {
301301
// Class unloading and cleanup.
302302
if (ClassUnloading) {
303303
GCTraceTime(Debug, gc, phases) debug("Phase 1: Class Unloading and Cleanup", scope()->timer());
304+
CodeCache::UnloadingScope unloading_scope(&_is_alive);
304305
// Unload classes and purge the SystemDictionary.
305306
bool purged_class = SystemDictionary::do_unloading(scope()->timer());
306-
_heap->complete_cleaning(&_is_alive, purged_class);
307+
_heap->complete_cleaning(purged_class);
307308
}
308309

309310
scope()->tracer()->report_object_count_after_gc(&_is_alive);

‎src/hotspot/share/gc/g1/g1ParallelCleaning.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,11 @@ void JVMCICleaningTask::work(bool unloading_occurred) {
5151
}
5252
#endif // INCLUDE_JVMCI
5353

54-
G1ParallelCleaningTask::G1ParallelCleaningTask(BoolObjectClosure* is_alive,
55-
uint num_workers,
54+
G1ParallelCleaningTask::G1ParallelCleaningTask(uint num_workers,
5655
bool unloading_occurred) :
5756
WorkerTask("G1 Parallel Cleaning"),
5857
_unloading_occurred(unloading_occurred),
59-
_code_cache_task(num_workers, is_alive, unloading_occurred),
58+
_code_cache_task(num_workers, unloading_occurred),
6059
JVMCI_ONLY(_jvmci_cleaning_task() COMMA)
6160
_klass_cleaning_task() {
6261
}

‎src/hotspot/share/gc/g1/g1ParallelCleaning.hpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,7 @@ class G1ParallelCleaningTask : public WorkerTask {
5454

5555
public:
5656
// The constructor is run in the VMThread.
57-
G1ParallelCleaningTask(BoolObjectClosure* is_alive,
58-
uint num_workers,
57+
G1ParallelCleaningTask(uint num_workers,
5958
bool unloading_occurred);
6059

6160
void work(uint worker_id);

‎src/hotspot/share/gc/parallel/psParallelCompact.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -2056,12 +2056,13 @@ void PSParallelCompact::marking_phase(ParallelOldTracer *gc_tracer) {
20562056

20572057
{
20582058
GCTraceTime(Debug, gc, phases) tm_m("Class Unloading", &_gc_timer);
2059+
CodeCache::UnloadingScope scope(is_alive_closure());
20592060

20602061
// Follow system dictionary roots and unload classes.
20612062
bool purged_class = SystemDictionary::do_unloading(&_gc_timer);
20622063

20632064
// Unload nmethods.
2064-
CodeCache::do_unloading(is_alive_closure(), purged_class);
2065+
CodeCache::do_unloading(purged_class);
20652066

20662067
// Prune dead klasses from subklass/sibling/implementor lists.
20672068
Klass::clean_weak_klass_links(purged_class);

‎src/hotspot/share/gc/serial/genMarkSweep.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -215,12 +215,13 @@ void GenMarkSweep::mark_sweep_phase1(bool clear_all_softrefs) {
215215

216216
{
217217
GCTraceTime(Debug, gc, phases) tm_m("Class Unloading", gc_timer());
218+
CodeCache::UnloadingScope scope(&is_alive);
218219

219220
// Unload classes and purge the SystemDictionary.
220221
bool purged_class = SystemDictionary::do_unloading(gc_timer());
221222

222223
// Unload nmethods.
223-
CodeCache::do_unloading(&is_alive, purged_class);
224+
CodeCache::do_unloading(purged_class);
224225

225226
// Prune dead klasses from subklass/sibling/implementor lists.
226227
Klass::clean_weak_klass_links(purged_class);

‎src/hotspot/share/gc/shared/parallelCleaning.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@
3232
#include "logging/log.hpp"
3333
#include "runtime/atomic.hpp"
3434

35-
CodeCacheUnloadingTask::CodeCacheUnloadingTask(uint num_workers, BoolObjectClosure* is_alive, bool unloading_occurred) :
36-
_unloading_scope(is_alive),
35+
CodeCacheUnloadingTask::CodeCacheUnloadingTask(uint num_workers, bool unloading_occurred) :
3736
_unloading_occurred(unloading_occurred),
3837
_num_workers(num_workers),
3938
_first_nmethod(NULL),

‎src/hotspot/share/gc/shared/parallelCleaning.hpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232

3333
class CodeCacheUnloadingTask {
3434

35-
CodeCache::UnloadingScope _unloading_scope;
3635
const bool _unloading_occurred;
3736
const uint _num_workers;
3837

@@ -41,7 +40,7 @@ class CodeCacheUnloadingTask {
4140
CompiledMethod* volatile _claimed_nmethod;
4241

4342
public:
44-
CodeCacheUnloadingTask(uint num_workers, BoolObjectClosure* is_alive, bool unloading_occurred);
43+
CodeCacheUnloadingTask(uint num_workers, bool unloading_occurred);
4544
~CodeCacheUnloadingTask();
4645

4746
private:

‎src/hotspot/share/gc/shenandoah/shenandoahHeap.cpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@
7373
#endif
7474

7575
#include "classfile/systemDictionary.hpp"
76+
#include "code/codeCache.hpp"
7677
#include "memory/classLoaderMetaspace.hpp"
7778
#include "memory/metaspaceUtils.hpp"
7879
#include "oops/compressedOops.inline.hpp"
@@ -1790,13 +1791,14 @@ void ShenandoahHeap::stw_unload_classes(bool full_gc) {
17901791
ShenandoahPhaseTimings::Phase phase = full_gc ?
17911792
ShenandoahPhaseTimings::full_gc_purge_class_unload :
17921793
ShenandoahPhaseTimings::degen_gc_purge_class_unload;
1794+
ShenandoahIsAliveSelector is_alive;
1795+
CodeCache::UnloadingScope scope(is_alive.is_alive_closure());
17931796
ShenandoahGCPhase gc_phase(phase);
17941797
ShenandoahGCWorkerPhase worker_phase(phase);
17951798
bool purged_class = SystemDictionary::do_unloading(gc_timer());
17961799

1797-
ShenandoahIsAliveSelector is_alive;
17981800
uint num_workers = _workers->active_workers();
1799-
ShenandoahClassUnloadingTask unlink_task(phase, is_alive.is_alive_closure(), num_workers, purged_class);
1801+
ShenandoahClassUnloadingTask unlink_task(phase, num_workers, purged_class);
18001802
_workers->run_task(&unlink_task);
18011803
}
18021804

‎src/hotspot/share/gc/shenandoah/shenandoahParallelCleaning.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,12 @@
3232
#include "runtime/safepoint.hpp"
3333

3434
ShenandoahClassUnloadingTask::ShenandoahClassUnloadingTask(ShenandoahPhaseTimings::Phase phase,
35-
BoolObjectClosure* is_alive,
3635
uint num_workers,
3736
bool unloading_occurred) :
3837
WorkerTask("Shenandoah Class Unloading"),
3938
_phase(phase),
4039
_unloading_occurred(unloading_occurred),
41-
_code_cache_task(num_workers, is_alive, unloading_occurred),
40+
_code_cache_task(num_workers, unloading_occurred),
4241
_klass_cleaning_task() {
4342
assert(SafepointSynchronize::is_at_safepoint(), "Must be at a safepoint");
4443
}

‎src/hotspot/share/gc/shenandoah/shenandoahParallelCleaning.hpp

-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ class ShenandoahClassUnloadingTask : public WorkerTask {
5959
KlassCleaningTask _klass_cleaning_task;
6060
public:
6161
ShenandoahClassUnloadingTask(ShenandoahPhaseTimings::Phase phase,
62-
BoolObjectClosure* is_alive,
6362
uint num_workers,
6463
bool unloading_occurred);
6564

‎src/hotspot/share/prims/methodHandles.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1495,7 +1495,7 @@ JVM_ENTRY(void, MHN_clearCallSiteContext(JNIEnv* env, jobject igcls, jobject con
14951495
NoSafepointVerifier nsv;
14961496
MutexLocker mu2(THREAD, CodeCache_lock, Mutex::_no_safepoint_check_flag);
14971497
DependencyContext deps = java_lang_invoke_MethodHandleNatives_CallSiteContext::vmdependencies(context());
1498-
marked = deps.remove_all_dependents();
1498+
marked = deps.remove_and_mark_for_deoptimization_all_dependents();
14991499
}
15001500
if (marked > 0) {
15011501
// At least one nmethod has been marked for deoptimization

0 commit comments

Comments
 (0)
Please sign in to comment.