Skip to content

Commit 98a5d5a

Browse files
committedNov 20, 2020
8256664: Shenandoah: Cleanup after JDK-8212879
Reviewed-by: rkennke
1 parent b99fd4c commit 98a5d5a

9 files changed

+33
-61
lines changed
 

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

+14-16
Original file line numberDiff line numberDiff line change
@@ -1690,7 +1690,9 @@ void ShenandoahHeap::op_final_mark() {
16901690
// Notify JVMTI that the tagmap table will need cleaning.
16911691
JvmtiTagMap::set_needs_cleaning();
16921692

1693-
parallel_cleaning(false /* full gc*/);
1693+
if (is_degenerated_gc_in_progress()) {
1694+
parallel_cleaning(false /* full gc*/);
1695+
}
16941696

16951697
if (ShenandoahVerify) {
16961698
verifier()->verify_roots_no_forwarded();
@@ -1761,10 +1763,8 @@ void ShenandoahHeap::op_final_mark() {
17611763
if (ShenandoahVerify) {
17621764
// If OOM while evacuating/updating of roots, there is no guarantee of their consistencies
17631765
if (!cancelled_gc()) {
1764-
// We only evacuate/update thread and serial weak roots at this pause
1765-
ShenandoahRootVerifier::RootTypes types = ShenandoahRootVerifier::combine(ShenandoahRootVerifier::ThreadRoots,
1766-
ShenandoahRootVerifier::SerialWeakRoots);
1767-
verifier()->verify_roots_no_forwarded(types);
1766+
// We only evacuate/update thread roots at this pause
1767+
verifier()->verify_roots_no_forwarded(ShenandoahRootVerifier::ThreadRoots);
17681768
}
17691769
verifier()->verify_during_evacuation();
17701770
}
@@ -2415,12 +2415,11 @@ void ShenandoahHeap::stop() {
24152415

24162416
void ShenandoahHeap::stw_unload_classes(bool full_gc) {
24172417
if (!unload_classes()) return;
2418-
24192418
// Unload classes and purge SystemDictionary.
24202419
{
24212420
ShenandoahGCPhase phase(full_gc ?
24222421
ShenandoahPhaseTimings::full_gc_purge_class_unload :
2423-
ShenandoahPhaseTimings::purge_class_unload);
2422+
ShenandoahPhaseTimings::degen_gc_purge_class_unload);
24242423
bool purged_class = SystemDictionary::do_unloading(gc_timer());
24252424

24262425
ShenandoahIsAliveSelector is_alive;
@@ -2432,7 +2431,7 @@ void ShenandoahHeap::stw_unload_classes(bool full_gc) {
24322431
{
24332432
ShenandoahGCPhase phase(full_gc ?
24342433
ShenandoahPhaseTimings::full_gc_purge_cldg :
2435-
ShenandoahPhaseTimings::purge_cldg);
2434+
ShenandoahPhaseTimings::degen_gc_purge_cldg);
24362435
ClassLoaderDataGraph::purge(/*at_safepoint*/true);
24372436
}
24382437
// Resize and verify metaspace
@@ -2447,11 +2446,11 @@ void ShenandoahHeap::stw_unload_classes(bool full_gc) {
24472446
void ShenandoahHeap::stw_process_weak_roots(bool full_gc) {
24482447
ShenandoahGCPhase root_phase(full_gc ?
24492448
ShenandoahPhaseTimings::full_gc_purge :
2450-
ShenandoahPhaseTimings::purge);
2449+
ShenandoahPhaseTimings::degen_gc_purge);
24512450
uint num_workers = _workers->active_workers();
24522451
ShenandoahPhaseTimings::Phase timing_phase = full_gc ?
24532452
ShenandoahPhaseTimings::full_gc_purge_weak_par :
2454-
ShenandoahPhaseTimings::purge_weak_par;
2453+
ShenandoahPhaseTimings::degen_gc_purge_weak_par;
24552454
ShenandoahGCPhase phase(timing_phase);
24562455
ShenandoahGCWorkerPhase worker_phase(timing_phase);
24572456

@@ -2460,28 +2459,27 @@ void ShenandoahHeap::stw_process_weak_roots(bool full_gc) {
24602459
ShenandoahForwardedIsAliveClosure is_alive;
24612460
ShenandoahUpdateRefsClosure keep_alive;
24622461
ShenandoahParallelWeakRootsCleaningTask<ShenandoahForwardedIsAliveClosure, ShenandoahUpdateRefsClosure>
2463-
cleaning_task(timing_phase, &is_alive, &keep_alive, num_workers, is_stw_gc_in_progress());
2462+
cleaning_task(timing_phase, &is_alive, &keep_alive, num_workers);
24642463
_workers->run_task(&cleaning_task);
24652464
} else {
24662465
ShenandoahIsAliveClosure is_alive;
24672466
#ifdef ASSERT
24682467
ShenandoahAssertNotForwardedClosure verify_cl;
24692468
ShenandoahParallelWeakRootsCleaningTask<ShenandoahIsAliveClosure, ShenandoahAssertNotForwardedClosure>
2470-
cleaning_task(timing_phase, &is_alive, &verify_cl, num_workers, is_stw_gc_in_progress());
2469+
cleaning_task(timing_phase, &is_alive, &verify_cl, num_workers);
24712470
#else
24722471
ShenandoahParallelWeakRootsCleaningTask<ShenandoahIsAliveClosure, DoNothingClosure>
2473-
cleaning_task(timing_phase, &is_alive, &do_nothing_cl, num_workers, is_stw_gc_in_progress());
2472+
cleaning_task(timing_phase, &is_alive, &do_nothing_cl, num_workers);
24742473
#endif
24752474
_workers->run_task(&cleaning_task);
24762475
}
24772476
}
24782477

24792478
void ShenandoahHeap::parallel_cleaning(bool full_gc) {
24802479
assert(SafepointSynchronize::is_at_safepoint(), "Must be at a safepoint");
2480+
assert(is_stw_gc_in_progress(), "Only for Degenerated and Full GC");
24812481
stw_process_weak_roots(full_gc);
2482-
if (!ShenandoahConcurrentRoots::should_do_concurrent_class_unloading()) {
2483-
stw_unload_classes(full_gc);
2484-
}
2482+
stw_unload_classes(full_gc);
24852483
}
24862484

24872485
void ShenandoahHeap::set_has_forwarded_objects(bool cond) {

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

+1-3
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,12 @@ class ShenandoahParallelWeakRootsCleaningTask : public AbstractGangTask {
4040
WeakProcessor::Task _weak_processing_task;
4141
IsAlive* _is_alive;
4242
KeepAlive* _keep_alive;
43-
bool _include_concurrent_roots;
4443

4544
public:
4645
ShenandoahParallelWeakRootsCleaningTask(ShenandoahPhaseTimings::Phase phase,
4746
IsAlive* is_alive,
4847
KeepAlive* keep_alive,
49-
uint num_workers,
50-
bool include_concurrent_roots);
48+
uint num_workers);
5149
~ShenandoahParallelWeakRootsCleaningTask();
5250

5351
void work(uint worker_id);

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

+4-9
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,10 @@ template<typename IsAlive, typename KeepAlive>
3636
ShenandoahParallelWeakRootsCleaningTask<IsAlive, KeepAlive>::ShenandoahParallelWeakRootsCleaningTask(ShenandoahPhaseTimings::Phase phase,
3737
IsAlive* is_alive,
3838
KeepAlive* keep_alive,
39-
uint num_workers,
40-
bool include_concurrent_roots) :
39+
uint num_workers) :
4140
AbstractGangTask("Shenandoah Weak Root Cleaning"),
4241
_phase(phase), _weak_processing_task(num_workers),
43-
_is_alive(is_alive), _keep_alive(keep_alive), _include_concurrent_roots(include_concurrent_roots) {
42+
_is_alive(is_alive), _keep_alive(keep_alive) {
4443
assert(SafepointSynchronize::is_at_safepoint(), "Must be at a safepoint");
4544

4645
if (ShenandoahStringDedup::is_enabled()) {
@@ -53,16 +52,12 @@ ShenandoahParallelWeakRootsCleaningTask<IsAlive, KeepAlive>::~ShenandoahParallel
5352
if (StringDedup::is_enabled()) {
5453
StringDedup::gc_epilogue();
5554
}
56-
if (_include_concurrent_roots) {
57-
_weak_processing_task.report_num_dead();
58-
}
55+
_weak_processing_task.report_num_dead();
5956
}
6057

6158
template<typename IsAlive, typename KeepAlive>
6259
void ShenandoahParallelWeakRootsCleaningTask<IsAlive, KeepAlive>::work(uint worker_id) {
63-
if (_include_concurrent_roots) {
64-
_weak_processing_task.work<IsAlive, KeepAlive>(worker_id, _is_alive, _keep_alive);
65-
}
60+
_weak_processing_task.work<IsAlive, KeepAlive>(worker_id, _is_alive, _keep_alive);
6661

6762
if (ShenandoahStringDedup::is_enabled()) {
6863
ShenandoahStringDedup::parallel_oops_do(_phase, _is_alive, _keep_alive, worker_id);

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ bool ShenandoahPhaseTimings::is_worker_phase(Phase phase) {
108108
case full_gc_scan_conc_roots:
109109
case full_gc_purge_class_unload:
110110
case full_gc_purge_weak_par:
111-
case purge_class_unload:
112-
case purge_weak_par:
111+
case degen_gc_purge_class_unload:
112+
case degen_gc_purge_weak_par:
113113
case heap_iteration_roots:
114114
case conc_mark_roots:
115115
case conc_weak_roots_work:

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

+6-6
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,6 @@ class outputStream;
6666
f(finish_queues, " Finish Queues") \
6767
f(weakrefs, " Weak References") \
6868
f(weakrefs_process, " Process") \
69-
f(purge, " System Purge") \
70-
f(purge_class_unload, " Unload Classes") \
71-
SHENANDOAH_PAR_PHASE_DO(purge_cu_par_, " CU: ", f) \
72-
f(purge_weak_par, " Weak Roots") \
73-
SHENANDOAH_PAR_PHASE_DO(purge_weak_par_, " WR: ", f) \
74-
f(purge_cldg, " CLDG") \
7569
f(final_update_region_states, " Update Region States") \
7670
f(final_manage_labs, " Manage GC/TLABs") \
7771
f(choose_cset, " Choose Collection Set") \
@@ -124,6 +118,12 @@ class outputStream;
124118
f(degen_gc, "Pause Degenerated GC (N)") \
125119
f(degen_gc_scan_conc_roots, " Degen Mark Roots") \
126120
SHENANDOAH_PAR_PHASE_DO(degen_gc_conc_mark_, " DM: ", f) \
121+
f(degen_gc_purge, " System Purge") \
122+
f(degen_gc_purge_class_unload, " Unload Classes") \
123+
SHENANDOAH_PAR_PHASE_DO(degen_gc_purge_cu_par_, " DCU: ", f) \
124+
f(degen_gc_purge_weak_par, " Weak Roots") \
125+
SHENANDOAH_PAR_PHASE_DO(degen_gc_purge_weak_p_, " DWR: ", f) \
126+
f(degen_gc_purge_cldg, " CLDG") \
127127
f(degen_gc_update_roots, " Degen Update Roots") \
128128
SHENANDOAH_PAR_PHASE_DO(degen_gc_update_, " DU: ", f) \
129129
\

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

-2
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,6 @@ void ShenandoahRootEvacuator::roots_do(uint worker_id, OopClosure* oops) {
172172
// Always disarm on-stack nmethods, because we are evacuating/updating them
173173
// here
174174
ShenandoahCodeBlobAndDisarmClosure codeblob_cl(oops);
175-
176-
// Process light-weight/limited parallel roots then
177175
_thread_roots.oops_do(oops, &codeblob_cl, worker_id);
178176
}
179177

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

+2-4
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,7 @@ void ShenandoahRootVerifier::oops_do(OopClosure* oops) {
9999

100100
if (verify(WeakRoots)) {
101101
shenandoah_assert_safepoint();
102-
concurrent_weak_roots_do(oops);
103-
} else if (verify(ConcurrentWeakRoots)) {
104-
concurrent_weak_roots_do(oops);
102+
weak_roots_do(oops);
105103
}
106104

107105
if (ShenandoahStringDedup::is_enabled() && verify(StringDedupRoots)) {
@@ -155,7 +153,7 @@ void ShenandoahRootVerifier::strong_roots_do(OopClosure* oops) {
155153
Threads::possibly_parallel_oops_do(true, oops, &blobs);
156154
}
157155

158-
void ShenandoahRootVerifier::concurrent_weak_roots_do(OopClosure* cl) {
156+
void ShenandoahRootVerifier::weak_roots_do(OopClosure* cl) {
159157
for (OopStorageSet::Iterator it = OopStorageSet::weak_iterator(); !it.is_end(); ++it) {
160158
OopStorage* storage = *it;
161159
storage->oops_do<OopClosure>(cl);

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

+4-6
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,9 @@ class ShenandoahRootVerifier : public StackObj {
4747
ThreadRoots = 1 << 1,
4848
CodeRoots = 1 << 2,
4949
CLDGRoots = 1 << 3,
50-
SerialWeakRoots = 1 << 4,
51-
ConcurrentWeakRoots = 1 << 5,
52-
WeakRoots = (SerialWeakRoots | ConcurrentWeakRoots),
53-
StringDedupRoots = 1 << 6,
54-
JNIHandleRoots = 1 << 7,
50+
WeakRoots = 1 << 4,
51+
StringDedupRoots = 1 << 5,
52+
JNIHandleRoots = 1 << 6,
5553
AllRoots = (SerialRoots | ThreadRoots | CodeRoots | CLDGRoots | WeakRoots | StringDedupRoots | JNIHandleRoots)
5654
};
5755

@@ -72,7 +70,7 @@ class ShenandoahRootVerifier : public StackObj {
7270
private:
7371
bool verify(RootTypes type) const;
7472

75-
void concurrent_weak_roots_do(OopClosure* cl);
73+
void weak_roots_do(OopClosure* cl);
7674
};
7775

7876
#endif // SHARE_GC_SHENANDOAH_SHENANDOAHROOTVERIFIER_HPP

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

-13
Original file line numberDiff line numberDiff line change
@@ -715,19 +715,6 @@ void ShenandoahVerifier::verify_at_safepoint(const char *label,
715715
size_t count_reachable = 0;
716716
if (ShenandoahVerifyLevel >= 2) {
717717
ShenandoahRootVerifier verifier;
718-
switch (weak_roots) {
719-
case _verify_serial_weak_roots:
720-
verifier.excludes(ShenandoahRootVerifier::ConcurrentWeakRoots);
721-
break;
722-
case _verify_concurrent_weak_roots:
723-
verifier.excludes(ShenandoahRootVerifier::SerialWeakRoots);
724-
break;
725-
case _verify_all_weak_roots:
726-
break;
727-
default:
728-
ShouldNotReachHere();
729-
}
730-
731718
ShenandoahVerifierReachableTask task(_verification_bit_map, ld, &verifier, label, options);
732719
_heap->workers()->run_task(&task);
733720
count_reachable = task.processed();

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Nov 20, 2020

@openjdk-notifier[bot]
Please sign in to comment.