Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/hotspot/share/gc/parallel/psScavenge.cpp
41149 views
1
/*
2
* Copyright (c) 2002, 2021, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*
23
*/
24
25
#include "precompiled.hpp"
26
#include "classfile/classLoaderDataGraph.hpp"
27
#include "classfile/stringTable.hpp"
28
#include "code/codeCache.hpp"
29
#include "compiler/oopMap.hpp"
30
#include "gc/parallel/parallelScavengeHeap.hpp"
31
#include "gc/parallel/psAdaptiveSizePolicy.hpp"
32
#include "gc/parallel/psClosure.inline.hpp"
33
#include "gc/parallel/psCompactionManager.hpp"
34
#include "gc/parallel/psParallelCompact.inline.hpp"
35
#include "gc/parallel/psPromotionManager.inline.hpp"
36
#include "gc/parallel/psRootType.hpp"
37
#include "gc/parallel/psScavenge.inline.hpp"
38
#include "gc/shared/gcCause.hpp"
39
#include "gc/shared/gcHeapSummary.hpp"
40
#include "gc/shared/gcId.hpp"
41
#include "gc/shared/gcLocker.hpp"
42
#include "gc/shared/gcTimer.hpp"
43
#include "gc/shared/gcTrace.hpp"
44
#include "gc/shared/gcTraceTime.inline.hpp"
45
#include "gc/shared/isGCActiveMark.hpp"
46
#include "gc/shared/oopStorage.inline.hpp"
47
#include "gc/shared/oopStorageSetParState.inline.hpp"
48
#include "gc/shared/oopStorageParState.inline.hpp"
49
#include "gc/shared/referencePolicy.hpp"
50
#include "gc/shared/referenceProcessor.hpp"
51
#include "gc/shared/referenceProcessorPhaseTimes.hpp"
52
#include "gc/shared/scavengableNMethods.hpp"
53
#include "gc/shared/spaceDecorator.inline.hpp"
54
#include "gc/shared/taskTerminator.hpp"
55
#include "gc/shared/weakProcessor.inline.hpp"
56
#include "gc/shared/workerPolicy.hpp"
57
#include "gc/shared/workgroup.hpp"
58
#include "memory/iterator.hpp"
59
#include "memory/resourceArea.hpp"
60
#include "memory/universe.hpp"
61
#include "logging/log.hpp"
62
#include "oops/access.inline.hpp"
63
#include "oops/compressedOops.inline.hpp"
64
#include "oops/oop.inline.hpp"
65
#include "runtime/biasedLocking.hpp"
66
#include "runtime/handles.inline.hpp"
67
#include "runtime/threadCritical.hpp"
68
#include "runtime/vmThread.hpp"
69
#include "runtime/vmOperations.hpp"
70
#include "services/memoryService.hpp"
71
#include "utilities/stack.inline.hpp"
72
73
HeapWord* PSScavenge::_to_space_top_before_gc = NULL;
74
int PSScavenge::_consecutive_skipped_scavenges = 0;
75
SpanSubjectToDiscoveryClosure PSScavenge::_span_based_discoverer;
76
ReferenceProcessor* PSScavenge::_ref_processor = NULL;
77
PSCardTable* PSScavenge::_card_table = NULL;
78
bool PSScavenge::_survivor_overflow = false;
79
uint PSScavenge::_tenuring_threshold = 0;
80
HeapWord* PSScavenge::_young_generation_boundary = NULL;
81
uintptr_t PSScavenge::_young_generation_boundary_compressed = 0;
82
elapsedTimer PSScavenge::_accumulated_time;
83
STWGCTimer PSScavenge::_gc_timer;
84
ParallelScavengeTracer PSScavenge::_gc_tracer;
85
CollectorCounters* PSScavenge::_counters = NULL;
86
87
static void scavenge_roots_work(ParallelRootType::Value root_type, uint worker_id) {
88
assert(ParallelScavengeHeap::heap()->is_gc_active(), "called outside gc");
89
90
PSPromotionManager* pm = PSPromotionManager::gc_thread_promotion_manager(worker_id);
91
PSScavengeRootsClosure roots_closure(pm);
92
PSPromoteRootsClosure roots_to_old_closure(pm);
93
94
switch (root_type) {
95
case ParallelRootType::class_loader_data:
96
{
97
PSScavengeCLDClosure cld_closure(pm);
98
ClassLoaderDataGraph::cld_do(&cld_closure);
99
}
100
break;
101
102
case ParallelRootType::code_cache:
103
{
104
MarkingCodeBlobClosure code_closure(&roots_to_old_closure, CodeBlobToOopClosure::FixRelocations);
105
ScavengableNMethods::nmethods_do(&code_closure);
106
}
107
break;
108
109
case ParallelRootType::sentinel:
110
DEBUG_ONLY(default:) // DEBUG_ONLY hack will create compile error on release builds (-Wswitch) and runtime check on debug builds
111
fatal("Bad enumeration value: %u", root_type);
112
break;
113
}
114
115
// Do the real work
116
pm->drain_stacks(false);
117
}
118
119
static void steal_work(TaskTerminator& terminator, uint worker_id) {
120
assert(ParallelScavengeHeap::heap()->is_gc_active(), "called outside gc");
121
122
PSPromotionManager* pm =
123
PSPromotionManager::gc_thread_promotion_manager(worker_id);
124
pm->drain_stacks(true);
125
guarantee(pm->stacks_empty(),
126
"stacks should be empty at this point");
127
128
while (true) {
129
ScannerTask task;
130
if (PSPromotionManager::steal_depth(worker_id, task)) {
131
TASKQUEUE_STATS_ONLY(pm->record_steal(task));
132
pm->process_popped_location_depth(task);
133
pm->drain_stacks_depth(true);
134
} else {
135
if (terminator.offer_termination()) {
136
break;
137
}
138
}
139
}
140
guarantee(pm->stacks_empty(), "stacks should be empty at this point");
141
}
142
143
// Define before use
144
class PSIsAliveClosure: public BoolObjectClosure {
145
public:
146
bool do_object_b(oop p) {
147
return (!PSScavenge::is_obj_in_young(p)) || p->is_forwarded();
148
}
149
};
150
151
PSIsAliveClosure PSScavenge::_is_alive_closure;
152
153
class PSKeepAliveClosure: public OopClosure {
154
protected:
155
MutableSpace* _to_space;
156
PSPromotionManager* _promotion_manager;
157
158
public:
159
PSKeepAliveClosure(PSPromotionManager* pm) : _promotion_manager(pm) {
160
ParallelScavengeHeap* heap = ParallelScavengeHeap::heap();
161
_to_space = heap->young_gen()->to_space();
162
163
assert(_promotion_manager != NULL, "Sanity");
164
}
165
166
template <class T> void do_oop_work(T* p) {
167
assert (oopDesc::is_oop(RawAccess<IS_NOT_NULL>::oop_load(p)),
168
"expected an oop while scanning weak refs");
169
170
// Weak refs may be visited more than once.
171
if (PSScavenge::should_scavenge(p, _to_space)) {
172
_promotion_manager->copy_and_push_safe_barrier</*promote_immediately=*/false>(p);
173
}
174
}
175
virtual void do_oop(oop* p) { PSKeepAliveClosure::do_oop_work(p); }
176
virtual void do_oop(narrowOop* p) { PSKeepAliveClosure::do_oop_work(p); }
177
};
178
179
class PSEvacuateFollowersClosure: public VoidClosure {
180
private:
181
PSPromotionManager* _promotion_manager;
182
TaskTerminator* _terminator;
183
uint _worker_id;
184
185
public:
186
PSEvacuateFollowersClosure(PSPromotionManager* pm, TaskTerminator* terminator, uint worker_id)
187
: _promotion_manager(pm), _terminator(terminator), _worker_id(worker_id) {}
188
189
virtual void do_void() {
190
assert(_promotion_manager != nullptr, "Sanity");
191
_promotion_manager->drain_stacks(true);
192
guarantee(_promotion_manager->stacks_empty(),
193
"stacks should be empty at this point");
194
195
if (_terminator != nullptr) {
196
steal_work(*_terminator, _worker_id);
197
}
198
}
199
};
200
201
class ParallelScavengeRefProcProxyTask : public RefProcProxyTask {
202
TaskTerminator _terminator;
203
204
public:
205
ParallelScavengeRefProcProxyTask(uint max_workers)
206
: RefProcProxyTask("ParallelScavengeRefProcProxyTask", max_workers),
207
_terminator(max_workers, ParCompactionManager::oop_task_queues()) {}
208
209
void work(uint worker_id) override {
210
assert(worker_id < _max_workers, "sanity");
211
PSPromotionManager* promotion_manager = (_tm == RefProcThreadModel::Single) ? PSPromotionManager::vm_thread_promotion_manager() : PSPromotionManager::gc_thread_promotion_manager(worker_id);
212
PSIsAliveClosure is_alive;
213
PSKeepAliveClosure keep_alive(promotion_manager);;
214
PSEvacuateFollowersClosure complete_gc(promotion_manager, (_marks_oops_alive && _tm == RefProcThreadModel::Multi) ? &_terminator : nullptr, worker_id);;
215
_rp_task->rp_work(worker_id, &is_alive, &keep_alive, &complete_gc);
216
}
217
218
void prepare_run_task_hook() override {
219
_terminator.reset_for_reuse(_queue_count);
220
}
221
};
222
223
// This method contains all heap specific policy for invoking scavenge.
224
// PSScavenge::invoke_no_policy() will do nothing but attempt to
225
// scavenge. It will not clean up after failed promotions, bail out if
226
// we've exceeded policy time limits, or any other special behavior.
227
// All such policy should be placed here.
228
//
229
// Note that this method should only be called from the vm_thread while
230
// at a safepoint!
231
bool PSScavenge::invoke() {
232
assert(SafepointSynchronize::is_at_safepoint(), "should be at safepoint");
233
assert(Thread::current() == (Thread*)VMThread::vm_thread(), "should be in vm thread");
234
assert(!ParallelScavengeHeap::heap()->is_gc_active(), "not reentrant");
235
236
ParallelScavengeHeap* const heap = ParallelScavengeHeap::heap();
237
PSAdaptiveSizePolicy* policy = heap->size_policy();
238
IsGCActiveMark mark;
239
240
const bool scavenge_done = PSScavenge::invoke_no_policy();
241
const bool need_full_gc = !scavenge_done ||
242
policy->should_full_GC(heap->old_gen()->free_in_bytes());
243
bool full_gc_done = false;
244
245
if (UsePerfData) {
246
PSGCAdaptivePolicyCounters* const counters = heap->gc_policy_counters();
247
const int ffs_val = need_full_gc ? full_follows_scavenge : not_skipped;
248
counters->update_full_follows_scavenge(ffs_val);
249
}
250
251
if (need_full_gc) {
252
GCCauseSetter gccs(heap, GCCause::_adaptive_size_policy);
253
SoftRefPolicy* srp = heap->soft_ref_policy();
254
const bool clear_all_softrefs = srp->should_clear_all_soft_refs();
255
256
full_gc_done = PSParallelCompact::invoke_no_policy(clear_all_softrefs);
257
}
258
259
return full_gc_done;
260
}
261
262
class PSThreadRootsTaskClosure : public ThreadClosure {
263
uint _worker_id;
264
public:
265
PSThreadRootsTaskClosure(uint worker_id) : _worker_id(worker_id) { }
266
virtual void do_thread(Thread* thread) {
267
assert(ParallelScavengeHeap::heap()->is_gc_active(), "called outside gc");
268
269
PSPromotionManager* pm = PSPromotionManager::gc_thread_promotion_manager(_worker_id);
270
PSScavengeRootsClosure roots_closure(pm);
271
MarkingCodeBlobClosure roots_in_blobs(&roots_closure, CodeBlobToOopClosure::FixRelocations);
272
273
thread->oops_do(&roots_closure, &roots_in_blobs);
274
275
// Do the real work
276
pm->drain_stacks(false);
277
}
278
};
279
280
class ScavengeRootsTask : public AbstractGangTask {
281
StrongRootsScope _strong_roots_scope; // needed for Threads::possibly_parallel_threads_do
282
OopStorageSetStrongParState<false /* concurrent */, false /* is_const */> _oop_storage_strong_par_state;
283
SequentialSubTasksDone _subtasks;
284
PSOldGen* _old_gen;
285
HeapWord* _gen_top;
286
uint _active_workers;
287
bool _is_empty;
288
TaskTerminator _terminator;
289
290
public:
291
ScavengeRootsTask(PSOldGen* old_gen,
292
HeapWord* gen_top,
293
uint active_workers,
294
bool is_empty) :
295
AbstractGangTask("ScavengeRootsTask"),
296
_strong_roots_scope(active_workers),
297
_subtasks(ParallelRootType::sentinel),
298
_old_gen(old_gen),
299
_gen_top(gen_top),
300
_active_workers(active_workers),
301
_is_empty(is_empty),
302
_terminator(active_workers, PSPromotionManager::vm_thread_promotion_manager()->stack_array_depth()) {
303
}
304
305
virtual void work(uint worker_id) {
306
ResourceMark rm;
307
308
if (!_is_empty) {
309
// There are only old-to-young pointers if there are objects
310
// in the old gen.
311
312
assert(_old_gen != NULL, "Sanity");
313
// There are no old-to-young pointers if the old gen is empty.
314
assert(!_old_gen->object_space()->is_empty(), "Should not be called is there is no work");
315
assert(_old_gen->object_space()->contains(_gen_top) || _gen_top == _old_gen->object_space()->top(), "Sanity");
316
assert(worker_id < ParallelGCThreads, "Sanity");
317
318
{
319
PSPromotionManager* pm = PSPromotionManager::gc_thread_promotion_manager(worker_id);
320
PSCardTable* card_table = ParallelScavengeHeap::heap()->card_table();
321
322
card_table->scavenge_contents_parallel(_old_gen->start_array(),
323
_old_gen->object_space(),
324
_gen_top,
325
pm,
326
worker_id,
327
_active_workers);
328
329
// Do the real work
330
pm->drain_stacks(false);
331
}
332
}
333
334
for (uint root_type = 0; _subtasks.try_claim_task(root_type); /* empty */ ) {
335
scavenge_roots_work(static_cast<ParallelRootType::Value>(root_type), worker_id);
336
}
337
338
PSThreadRootsTaskClosure closure(worker_id);
339
Threads::possibly_parallel_threads_do(true /*parallel */, &closure);
340
341
// Scavenge OopStorages
342
{
343
PSPromotionManager* pm = PSPromotionManager::gc_thread_promotion_manager(worker_id);
344
PSScavengeRootsClosure closure(pm);
345
_oop_storage_strong_par_state.oops_do(&closure);
346
// Do the real work
347
pm->drain_stacks(false);
348
}
349
350
// If active_workers can exceed 1, add a steal_work().
351
// PSPromotionManager::drain_stacks_depth() does not fully drain its
352
// stacks and expects a steal_work() to complete the draining if
353
// ParallelGCThreads is > 1.
354
355
if (_active_workers > 1) {
356
steal_work(_terminator, worker_id);
357
}
358
}
359
};
360
361
// This method contains no policy. You should probably
362
// be calling invoke() instead.
363
bool PSScavenge::invoke_no_policy() {
364
assert(SafepointSynchronize::is_at_safepoint(), "should be at safepoint");
365
assert(Thread::current() == (Thread*)VMThread::vm_thread(), "should be in vm thread");
366
367
_gc_timer.register_gc_start();
368
369
TimeStamp scavenge_entry;
370
TimeStamp scavenge_midpoint;
371
TimeStamp scavenge_exit;
372
373
scavenge_entry.update();
374
375
if (GCLocker::check_active_before_gc()) {
376
return false;
377
}
378
379
ParallelScavengeHeap* heap = ParallelScavengeHeap::heap();
380
GCCause::Cause gc_cause = heap->gc_cause();
381
382
// Check for potential problems.
383
if (!should_attempt_scavenge()) {
384
return false;
385
}
386
387
GCIdMark gc_id_mark;
388
_gc_tracer.report_gc_start(heap->gc_cause(), _gc_timer.gc_start());
389
390
bool promotion_failure_occurred = false;
391
392
PSYoungGen* young_gen = heap->young_gen();
393
PSOldGen* old_gen = heap->old_gen();
394
PSAdaptiveSizePolicy* size_policy = heap->size_policy();
395
396
heap->increment_total_collections();
397
398
if (AdaptiveSizePolicy::should_update_eden_stats(gc_cause)) {
399
// Gather the feedback data for eden occupancy.
400
young_gen->eden_space()->accumulate_statistics();
401
}
402
403
heap->print_heap_before_gc();
404
heap->trace_heap_before_gc(&_gc_tracer);
405
406
assert(!NeverTenure || _tenuring_threshold == markWord::max_age + 1, "Sanity");
407
assert(!AlwaysTenure || _tenuring_threshold == 0, "Sanity");
408
409
// Fill in TLABs
410
heap->ensure_parsability(true); // retire TLABs
411
412
if (VerifyBeforeGC && heap->total_collections() >= VerifyGCStartAt) {
413
Universe::verify("Before GC");
414
}
415
416
{
417
ResourceMark rm;
418
419
GCTraceCPUTime tcpu;
420
GCTraceTime(Info, gc) tm("Pause Young", NULL, gc_cause, true);
421
TraceCollectorStats tcs(counters());
422
TraceMemoryManagerStats tms(heap->young_gc_manager(), gc_cause);
423
424
if (log_is_enabled(Debug, gc, heap, exit)) {
425
accumulated_time()->start();
426
}
427
428
// Let the size policy know we're starting
429
size_policy->minor_collection_begin();
430
431
// Verify the object start arrays.
432
if (VerifyObjectStartArray &&
433
VerifyBeforeGC) {
434
old_gen->verify_object_start_array();
435
}
436
437
// Verify no unmarked old->young roots
438
if (VerifyRememberedSets) {
439
heap->card_table()->verify_all_young_refs_imprecise();
440
}
441
442
assert(young_gen->to_space()->is_empty(),
443
"Attempt to scavenge with live objects in to_space");
444
young_gen->to_space()->clear(SpaceDecorator::Mangle);
445
446
save_to_space_top_before_gc();
447
448
#if COMPILER2_OR_JVMCI
449
DerivedPointerTable::clear();
450
#endif
451
452
reference_processor()->enable_discovery();
453
reference_processor()->setup_policy(false);
454
455
const PreGenGCValues pre_gc_values = heap->get_pre_gc_values();
456
457
// Reset our survivor overflow.
458
set_survivor_overflow(false);
459
460
// We need to save the old top values before
461
// creating the promotion_manager. We pass the top
462
// values to the card_table, to prevent it from
463
// straying into the promotion labs.
464
HeapWord* old_top = old_gen->object_space()->top();
465
466
const uint active_workers =
467
WorkerPolicy::calc_active_workers(ParallelScavengeHeap::heap()->workers().total_workers(),
468
ParallelScavengeHeap::heap()->workers().active_workers(),
469
Threads::number_of_non_daemon_threads());
470
ParallelScavengeHeap::heap()->workers().update_active_workers(active_workers);
471
472
PSPromotionManager::pre_scavenge();
473
474
// We'll use the promotion manager again later.
475
PSPromotionManager* promotion_manager = PSPromotionManager::vm_thread_promotion_manager();
476
{
477
GCTraceTime(Debug, gc, phases) tm("Scavenge", &_gc_timer);
478
479
ScavengeRootsTask task(old_gen, old_top, active_workers, old_gen->object_space()->is_empty());
480
ParallelScavengeHeap::heap()->workers().run_task(&task);
481
}
482
483
scavenge_midpoint.update();
484
485
// Process reference objects discovered during scavenge
486
{
487
GCTraceTime(Debug, gc, phases) tm("Reference Processing", &_gc_timer);
488
489
reference_processor()->setup_policy(false); // not always_clear
490
reference_processor()->set_active_mt_degree(active_workers);
491
ReferenceProcessorStats stats;
492
ReferenceProcessorPhaseTimes pt(&_gc_timer, reference_processor()->max_num_queues());
493
494
ParallelScavengeRefProcProxyTask task(reference_processor()->max_num_queues());
495
stats = reference_processor()->process_discovered_references(task, pt);
496
497
_gc_tracer.report_gc_reference_stats(stats);
498
pt.print_all_references();
499
}
500
501
assert(promotion_manager->stacks_empty(),"stacks should be empty at this point");
502
503
{
504
GCTraceTime(Debug, gc, phases) tm("Weak Processing", &_gc_timer);
505
PSAdjustWeakRootsClosure root_closure;
506
WeakProcessor::weak_oops_do(&ParallelScavengeHeap::heap()->workers(), &_is_alive_closure, &root_closure, 1);
507
}
508
509
// Verify that usage of root_closure didn't copy any objects.
510
assert(promotion_manager->stacks_empty(),"stacks should be empty at this point");
511
512
// Finally, flush the promotion_manager's labs, and deallocate its stacks.
513
promotion_failure_occurred = PSPromotionManager::post_scavenge(_gc_tracer);
514
if (promotion_failure_occurred) {
515
clean_up_failed_promotion();
516
log_info(gc, promotion)("Promotion failed");
517
}
518
519
_gc_tracer.report_tenuring_threshold(tenuring_threshold());
520
521
// Let the size policy know we're done. Note that we count promotion
522
// failure cleanup time as part of the collection (otherwise, we're
523
// implicitly saying it's mutator time).
524
size_policy->minor_collection_end(gc_cause);
525
526
if (!promotion_failure_occurred) {
527
// Swap the survivor spaces.
528
young_gen->eden_space()->clear(SpaceDecorator::Mangle);
529
young_gen->from_space()->clear(SpaceDecorator::Mangle);
530
young_gen->swap_spaces();
531
532
size_t survived = young_gen->from_space()->used_in_bytes();
533
size_t promoted = old_gen->used_in_bytes() - pre_gc_values.old_gen_used();
534
size_policy->update_averages(_survivor_overflow, survived, promoted);
535
536
// A successful scavenge should restart the GC time limit count which is
537
// for full GC's.
538
size_policy->reset_gc_overhead_limit_count();
539
if (UseAdaptiveSizePolicy) {
540
// Calculate the new survivor size and tenuring threshold
541
542
log_debug(gc, ergo)("AdaptiveSizeStart: collection: %d ", heap->total_collections());
543
log_trace(gc, ergo)("old_gen_capacity: " SIZE_FORMAT " young_gen_capacity: " SIZE_FORMAT,
544
old_gen->capacity_in_bytes(), young_gen->capacity_in_bytes());
545
546
if (UsePerfData) {
547
PSGCAdaptivePolicyCounters* counters = heap->gc_policy_counters();
548
counters->update_old_eden_size(
549
size_policy->calculated_eden_size_in_bytes());
550
counters->update_old_promo_size(
551
size_policy->calculated_promo_size_in_bytes());
552
counters->update_old_capacity(old_gen->capacity_in_bytes());
553
counters->update_young_capacity(young_gen->capacity_in_bytes());
554
counters->update_survived(survived);
555
counters->update_promoted(promoted);
556
counters->update_survivor_overflowed(_survivor_overflow);
557
}
558
559
size_t max_young_size = young_gen->max_gen_size();
560
561
// Deciding a free ratio in the young generation is tricky, so if
562
// MinHeapFreeRatio or MaxHeapFreeRatio are in use (implicating
563
// that the old generation size may have been limited because of them) we
564
// should then limit our young generation size using NewRatio to have it
565
// follow the old generation size.
566
if (MinHeapFreeRatio != 0 || MaxHeapFreeRatio != 100) {
567
max_young_size = MIN2(old_gen->capacity_in_bytes() / NewRatio,
568
young_gen->max_gen_size());
569
}
570
571
size_t survivor_limit =
572
size_policy->max_survivor_size(max_young_size);
573
_tenuring_threshold =
574
size_policy->compute_survivor_space_size_and_threshold(
575
_survivor_overflow,
576
_tenuring_threshold,
577
survivor_limit);
578
579
log_debug(gc, age)("Desired survivor size " SIZE_FORMAT " bytes, new threshold %u (max threshold " UINTX_FORMAT ")",
580
size_policy->calculated_survivor_size_in_bytes(),
581
_tenuring_threshold, MaxTenuringThreshold);
582
583
if (UsePerfData) {
584
PSGCAdaptivePolicyCounters* counters = heap->gc_policy_counters();
585
counters->update_tenuring_threshold(_tenuring_threshold);
586
counters->update_survivor_size_counters();
587
}
588
589
// Do call at minor collections?
590
// Don't check if the size_policy is ready at this
591
// level. Let the size_policy check that internally.
592
if (UseAdaptiveGenerationSizePolicyAtMinorCollection &&
593
AdaptiveSizePolicy::should_update_eden_stats(gc_cause)) {
594
// Calculate optimal free space amounts
595
assert(young_gen->max_gen_size() >
596
young_gen->from_space()->capacity_in_bytes() +
597
young_gen->to_space()->capacity_in_bytes(),
598
"Sizes of space in young gen are out-of-bounds");
599
600
size_t young_live = young_gen->used_in_bytes();
601
size_t eden_live = young_gen->eden_space()->used_in_bytes();
602
size_t cur_eden = young_gen->eden_space()->capacity_in_bytes();
603
size_t max_old_gen_size = old_gen->max_gen_size();
604
size_t max_eden_size = max_young_size -
605
young_gen->from_space()->capacity_in_bytes() -
606
young_gen->to_space()->capacity_in_bytes();
607
608
// Used for diagnostics
609
size_policy->clear_generation_free_space_flags();
610
611
size_policy->compute_eden_space_size(young_live,
612
eden_live,
613
cur_eden,
614
max_eden_size,
615
false /* not full gc*/);
616
617
size_policy->check_gc_overhead_limit(eden_live,
618
max_old_gen_size,
619
max_eden_size,
620
false /* not full gc*/,
621
gc_cause,
622
heap->soft_ref_policy());
623
624
size_policy->decay_supplemental_growth(false /* not full gc*/);
625
}
626
// Resize the young generation at every collection
627
// even if new sizes have not been calculated. This is
628
// to allow resizes that may have been inhibited by the
629
// relative location of the "to" and "from" spaces.
630
631
// Resizing the old gen at young collections can cause increases
632
// that don't feed back to the generation sizing policy until
633
// a full collection. Don't resize the old gen here.
634
635
heap->resize_young_gen(size_policy->calculated_eden_size_in_bytes(),
636
size_policy->calculated_survivor_size_in_bytes());
637
638
log_debug(gc, ergo)("AdaptiveSizeStop: collection: %d ", heap->total_collections());
639
}
640
641
// Update the structure of the eden. With NUMA-eden CPU hotplugging or offlining can
642
// cause the change of the heap layout. Make sure eden is reshaped if that's the case.
643
// Also update() will case adaptive NUMA chunk resizing.
644
assert(young_gen->eden_space()->is_empty(), "eden space should be empty now");
645
young_gen->eden_space()->update();
646
647
heap->gc_policy_counters()->update_counters();
648
649
heap->resize_all_tlabs();
650
651
assert(young_gen->to_space()->is_empty(), "to space should be empty now");
652
}
653
654
#if COMPILER2_OR_JVMCI
655
DerivedPointerTable::update_pointers();
656
#endif
657
658
NOT_PRODUCT(reference_processor()->verify_no_references_recorded());
659
660
// Re-verify object start arrays
661
if (VerifyObjectStartArray &&
662
VerifyAfterGC) {
663
old_gen->verify_object_start_array();
664
}
665
666
// Verify all old -> young cards are now precise
667
if (VerifyRememberedSets) {
668
// Precise verification will give false positives. Until this is fixed,
669
// use imprecise verification.
670
// heap->card_table()->verify_all_young_refs_precise();
671
heap->card_table()->verify_all_young_refs_imprecise();
672
}
673
674
if (log_is_enabled(Debug, gc, heap, exit)) {
675
accumulated_time()->stop();
676
}
677
678
heap->print_heap_change(pre_gc_values);
679
680
// Track memory usage and detect low memory
681
MemoryService::track_memory_usage();
682
heap->update_counters();
683
}
684
685
if (VerifyAfterGC && heap->total_collections() >= VerifyGCStartAt) {
686
Universe::verify("After GC");
687
}
688
689
heap->print_heap_after_gc();
690
heap->trace_heap_after_gc(&_gc_tracer);
691
692
scavenge_exit.update();
693
694
log_debug(gc, task, time)("VM-Thread " JLONG_FORMAT " " JLONG_FORMAT " " JLONG_FORMAT,
695
scavenge_entry.ticks(), scavenge_midpoint.ticks(),
696
scavenge_exit.ticks());
697
698
AdaptiveSizePolicyOutput::print(size_policy, heap->total_collections());
699
700
_gc_timer.register_gc_end();
701
702
_gc_tracer.report_gc_end(_gc_timer.gc_end(), _gc_timer.time_partitions());
703
704
return !promotion_failure_occurred;
705
}
706
707
// This method iterates over all objects in the young generation,
708
// removing all forwarding references. It then restores any preserved marks.
709
void PSScavenge::clean_up_failed_promotion() {
710
ParallelScavengeHeap* heap = ParallelScavengeHeap::heap();
711
PSYoungGen* young_gen = heap->young_gen();
712
713
RemoveForwardedPointerClosure remove_fwd_ptr_closure;
714
young_gen->object_iterate(&remove_fwd_ptr_closure);
715
716
PSPromotionManager::restore_preserved_marks();
717
718
// Reset the PromotionFailureALot counters.
719
NOT_PRODUCT(heap->reset_promotion_should_fail();)
720
}
721
722
bool PSScavenge::should_attempt_scavenge() {
723
ParallelScavengeHeap* heap = ParallelScavengeHeap::heap();
724
PSGCAdaptivePolicyCounters* counters = heap->gc_policy_counters();
725
726
if (UsePerfData) {
727
counters->update_scavenge_skipped(not_skipped);
728
}
729
730
PSYoungGen* young_gen = heap->young_gen();
731
PSOldGen* old_gen = heap->old_gen();
732
733
// Do not attempt to promote unless to_space is empty
734
if (!young_gen->to_space()->is_empty()) {
735
_consecutive_skipped_scavenges++;
736
if (UsePerfData) {
737
counters->update_scavenge_skipped(to_space_not_empty);
738
}
739
return false;
740
}
741
742
// Test to see if the scavenge will likely fail.
743
PSAdaptiveSizePolicy* policy = heap->size_policy();
744
745
// A similar test is done in the policy's should_full_GC(). If this is
746
// changed, decide if that test should also be changed.
747
size_t avg_promoted = (size_t) policy->padded_average_promoted_in_bytes();
748
size_t promotion_estimate = MIN2(avg_promoted, young_gen->used_in_bytes());
749
bool result = promotion_estimate < old_gen->free_in_bytes();
750
751
log_trace(ergo)("%s scavenge: average_promoted " SIZE_FORMAT " padded_average_promoted " SIZE_FORMAT " free in old gen " SIZE_FORMAT,
752
result ? "Do" : "Skip", (size_t) policy->average_promoted_in_bytes(),
753
(size_t) policy->padded_average_promoted_in_bytes(),
754
old_gen->free_in_bytes());
755
if (young_gen->used_in_bytes() < (size_t) policy->padded_average_promoted_in_bytes()) {
756
log_trace(ergo)(" padded_promoted_average is greater than maximum promotion = " SIZE_FORMAT, young_gen->used_in_bytes());
757
}
758
759
if (result) {
760
_consecutive_skipped_scavenges = 0;
761
} else {
762
_consecutive_skipped_scavenges++;
763
if (UsePerfData) {
764
counters->update_scavenge_skipped(promoted_too_large);
765
}
766
}
767
return result;
768
}
769
770
// Adaptive size policy support.
771
void PSScavenge::set_young_generation_boundary(HeapWord* v) {
772
_young_generation_boundary = v;
773
if (UseCompressedOops) {
774
_young_generation_boundary_compressed = (uintptr_t)CompressedOops::encode(cast_to_oop(v));
775
}
776
}
777
778
void PSScavenge::initialize() {
779
// Arguments must have been parsed
780
781
if (AlwaysTenure || NeverTenure) {
782
assert(MaxTenuringThreshold == 0 || MaxTenuringThreshold == markWord::max_age + 1,
783
"MaxTenuringThreshold should be 0 or markWord::max_age + 1, but is %d", (int) MaxTenuringThreshold);
784
_tenuring_threshold = MaxTenuringThreshold;
785
} else {
786
// We want to smooth out our startup times for the AdaptiveSizePolicy
787
_tenuring_threshold = (UseAdaptiveSizePolicy) ? InitialTenuringThreshold :
788
MaxTenuringThreshold;
789
}
790
791
ParallelScavengeHeap* heap = ParallelScavengeHeap::heap();
792
PSYoungGen* young_gen = heap->young_gen();
793
PSOldGen* old_gen = heap->old_gen();
794
795
// Set boundary between young_gen and old_gen
796
assert(old_gen->reserved().end() <= young_gen->eden_space()->bottom(),
797
"old above young");
798
set_young_generation_boundary(young_gen->eden_space()->bottom());
799
800
// Initialize ref handling object for scavenging.
801
_span_based_discoverer.set_span(young_gen->reserved());
802
_ref_processor =
803
new ReferenceProcessor(&_span_based_discoverer,
804
ParallelGCThreads, // mt processing degree
805
true, // mt discovery
806
ParallelGCThreads, // mt discovery degree
807
true, // atomic_discovery
808
NULL, // header provides liveness info
809
false);
810
811
// Cache the cardtable
812
_card_table = heap->card_table();
813
814
_counters = new CollectorCounters("Parallel young collection pauses", 0);
815
}
816
817