@@ -1690,7 +1690,9 @@ void ShenandoahHeap::op_final_mark() {
1690
1690
// Notify JVMTI that the tagmap table will need cleaning.
1691
1691
JvmtiTagMap::set_needs_cleaning ();
1692
1692
1693
- parallel_cleaning (false /* full gc*/ );
1693
+ if (is_degenerated_gc_in_progress ()) {
1694
+ parallel_cleaning (false /* full gc*/ );
1695
+ }
1694
1696
1695
1697
if (ShenandoahVerify) {
1696
1698
verifier ()->verify_roots_no_forwarded ();
@@ -1761,10 +1763,8 @@ void ShenandoahHeap::op_final_mark() {
1761
1763
if (ShenandoahVerify) {
1762
1764
// If OOM while evacuating/updating of roots, there is no guarantee of their consistencies
1763
1765
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);
1768
1768
}
1769
1769
verifier ()->verify_during_evacuation ();
1770
1770
}
@@ -2415,12 +2415,11 @@ void ShenandoahHeap::stop() {
2415
2415
2416
2416
void ShenandoahHeap::stw_unload_classes (bool full_gc) {
2417
2417
if (!unload_classes ()) return ;
2418
-
2419
2418
// Unload classes and purge SystemDictionary.
2420
2419
{
2421
2420
ShenandoahGCPhase phase (full_gc ?
2422
2421
ShenandoahPhaseTimings::full_gc_purge_class_unload :
2423
- ShenandoahPhaseTimings::purge_class_unload );
2422
+ ShenandoahPhaseTimings::degen_gc_purge_class_unload );
2424
2423
bool purged_class = SystemDictionary::do_unloading (gc_timer ());
2425
2424
2426
2425
ShenandoahIsAliveSelector is_alive;
@@ -2432,7 +2431,7 @@ void ShenandoahHeap::stw_unload_classes(bool full_gc) {
2432
2431
{
2433
2432
ShenandoahGCPhase phase (full_gc ?
2434
2433
ShenandoahPhaseTimings::full_gc_purge_cldg :
2435
- ShenandoahPhaseTimings::purge_cldg );
2434
+ ShenandoahPhaseTimings::degen_gc_purge_cldg );
2436
2435
ClassLoaderDataGraph::purge (/* at_safepoint*/ true );
2437
2436
}
2438
2437
// Resize and verify metaspace
@@ -2447,11 +2446,11 @@ void ShenandoahHeap::stw_unload_classes(bool full_gc) {
2447
2446
void ShenandoahHeap::stw_process_weak_roots (bool full_gc) {
2448
2447
ShenandoahGCPhase root_phase (full_gc ?
2449
2448
ShenandoahPhaseTimings::full_gc_purge :
2450
- ShenandoahPhaseTimings::purge );
2449
+ ShenandoahPhaseTimings::degen_gc_purge );
2451
2450
uint num_workers = _workers->active_workers ();
2452
2451
ShenandoahPhaseTimings::Phase timing_phase = full_gc ?
2453
2452
ShenandoahPhaseTimings::full_gc_purge_weak_par :
2454
- ShenandoahPhaseTimings::purge_weak_par ;
2453
+ ShenandoahPhaseTimings::degen_gc_purge_weak_par ;
2455
2454
ShenandoahGCPhase phase (timing_phase);
2456
2455
ShenandoahGCWorkerPhase worker_phase (timing_phase);
2457
2456
@@ -2460,28 +2459,27 @@ void ShenandoahHeap::stw_process_weak_roots(bool full_gc) {
2460
2459
ShenandoahForwardedIsAliveClosure is_alive;
2461
2460
ShenandoahUpdateRefsClosure keep_alive;
2462
2461
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);
2464
2463
_workers->run_task (&cleaning_task);
2465
2464
} else {
2466
2465
ShenandoahIsAliveClosure is_alive;
2467
2466
#ifdef ASSERT
2468
2467
ShenandoahAssertNotForwardedClosure verify_cl;
2469
2468
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);
2471
2470
#else
2472
2471
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);
2474
2473
#endif
2475
2474
_workers->run_task (&cleaning_task);
2476
2475
}
2477
2476
}
2478
2477
2479
2478
void ShenandoahHeap::parallel_cleaning (bool full_gc) {
2480
2479
assert (SafepointSynchronize::is_at_safepoint (), " Must be at a safepoint" );
2480
+ assert (is_stw_gc_in_progress (), " Only for Degenerated and Full GC" );
2481
2481
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);
2485
2483
}
2486
2484
2487
2485
void ShenandoahHeap::set_has_forwarded_objects (bool cond) {
1 commit comments
openjdk-notifier[bot] commentedon Nov 20, 2020
Review
Issues