File tree 1 file changed +3
-4
lines changed
src/hotspot/share/gc/parallel
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -344,6 +344,9 @@ bool PSScavenge::invoke(bool clear_soft_refs) {
344
344
PSOldGen* old_gen = heap->old_gen ();
345
345
PSAdaptiveSizePolicy* size_policy = heap->size_policy ();
346
346
347
+ assert (young_gen->to_space ()->is_empty (),
348
+ " Attempt to scavenge with live objects in to_space" );
349
+
347
350
heap->increment_total_collections ();
348
351
349
352
if (AdaptiveSizePolicy::should_update_eden_stats (gc_cause)) {
@@ -379,10 +382,6 @@ bool PSScavenge::invoke(bool clear_soft_refs) {
379
382
// Let the size policy know we're starting
380
383
size_policy->minor_collection_begin ();
381
384
382
- assert (young_gen->to_space ()->is_empty (),
383
- " Attempt to scavenge with live objects in to_space" );
384
- young_gen->to_space ()->clear (SpaceDecorator::Mangle);
385
-
386
385
#if COMPILER2_OR_JVMCI
387
386
DerivedPointerTable::clear ();
388
387
#endif
You can’t perform that action at this time.
0 commit comments