mirror of
https://github.com/openjdk/jdk.git
synced 2026-04-16 01:40:31 +00:00
799 lines
26 KiB
C++
799 lines
26 KiB
C++
/*
|
|
* Copyright (c) 2017, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 only, as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
* accompanied this code).
|
|
*
|
|
* You should have received a copy of the GNU General Public License version
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
* questions.
|
|
*
|
|
*/
|
|
|
|
#include "classfile/classLoaderDataGraph.hpp"
|
|
#include "classfile/stringTable.hpp"
|
|
#include "classfile/symbolTable.hpp"
|
|
#include "classfile/vmSymbols.hpp"
|
|
#include "code/codeCache.hpp"
|
|
#include "compiler/oopMap.hpp"
|
|
#include "gc/serial/cardTableRS.hpp"
|
|
#include "gc/serial/serialFullGC.hpp"
|
|
#include "gc/serial/serialHeap.inline.hpp"
|
|
#include "gc/serial/serialMemoryPools.hpp"
|
|
#include "gc/serial/serialVMOperations.hpp"
|
|
#include "gc/serial/tenuredGeneration.inline.hpp"
|
|
#include "gc/shared/barrierSetNMethod.hpp"
|
|
#include "gc/shared/cardTableBarrierSet.hpp"
|
|
#include "gc/shared/classUnloadingContext.hpp"
|
|
#include "gc/shared/collectedHeap.inline.hpp"
|
|
#include "gc/shared/collectorCounters.hpp"
|
|
#include "gc/shared/continuationGCSupport.inline.hpp"
|
|
#include "gc/shared/fullGCForwarding.hpp"
|
|
#include "gc/shared/gcId.hpp"
|
|
#include "gc/shared/gcInitLogger.hpp"
|
|
#include "gc/shared/gcLocker.inline.hpp"
|
|
#include "gc/shared/gcPolicyCounters.hpp"
|
|
#include "gc/shared/gcTrace.hpp"
|
|
#include "gc/shared/gcTraceTime.inline.hpp"
|
|
#include "gc/shared/gcVMOperations.hpp"
|
|
#include "gc/shared/genArguments.hpp"
|
|
#include "gc/shared/isGCActiveMark.hpp"
|
|
#include "gc/shared/locationPrinter.inline.hpp"
|
|
#include "gc/shared/oopStorage.inline.hpp"
|
|
#include "gc/shared/oopStorageParState.inline.hpp"
|
|
#include "gc/shared/oopStorageSet.inline.hpp"
|
|
#include "gc/shared/scavengableNMethods.hpp"
|
|
#include "gc/shared/space.hpp"
|
|
#include "gc/shared/suspendibleThreadSet.hpp"
|
|
#include "gc/shared/weakProcessor.hpp"
|
|
#include "gc/shared/workerThread.hpp"
|
|
#include "memory/iterator.hpp"
|
|
#include "memory/metaspaceCounters.hpp"
|
|
#include "memory/metaspaceUtils.hpp"
|
|
#include "memory/reservedSpace.hpp"
|
|
#include "memory/resourceArea.hpp"
|
|
#include "memory/universe.hpp"
|
|
#include "oops/oop.inline.hpp"
|
|
#include "runtime/handles.inline.hpp"
|
|
#include "runtime/init.hpp"
|
|
#include "runtime/java.hpp"
|
|
#include "runtime/mutexLocker.hpp"
|
|
#include "runtime/threads.hpp"
|
|
#include "runtime/vmThread.hpp"
|
|
#include "services/memoryManager.hpp"
|
|
#include "services/memoryService.hpp"
|
|
#include "utilities/debug.hpp"
|
|
#include "utilities/formatBuffer.hpp"
|
|
#include "utilities/macros.hpp"
|
|
#include "utilities/stack.inline.hpp"
|
|
#include "utilities/vmError.hpp"
|
|
#if INCLUDE_JVMCI
|
|
#include "jvmci/jvmci.hpp"
|
|
#endif
|
|
|
|
SerialHeap* SerialHeap::heap() {
|
|
return named_heap<SerialHeap>(CollectedHeap::Serial);
|
|
}
|
|
|
|
SerialHeap::SerialHeap() :
|
|
CollectedHeap(),
|
|
_young_gen(nullptr),
|
|
_old_gen(nullptr),
|
|
_rem_set(nullptr),
|
|
_gc_policy_counters(new GCPolicyCounters("Copy:MSC", 2, 2)),
|
|
_young_manager(nullptr),
|
|
_old_manager(nullptr),
|
|
_is_heap_almost_full(false),
|
|
_eden_pool(nullptr),
|
|
_survivor_pool(nullptr),
|
|
_old_pool(nullptr) {
|
|
_young_manager = new GCMemoryManager("Copy");
|
|
_old_manager = new GCMemoryManager("MarkSweepCompact");
|
|
GCLocker::initialize();
|
|
}
|
|
|
|
void SerialHeap::initialize_serviceability() {
|
|
DefNewGeneration* young = young_gen();
|
|
|
|
// Add a memory pool for each space and young gen doesn't
|
|
// support low memory detection as it is expected to get filled up.
|
|
_eden_pool = new ContiguousSpacePool(young->eden(),
|
|
"Eden Space",
|
|
young->max_eden_size(),
|
|
false /* support_usage_threshold */);
|
|
_survivor_pool = new SurvivorContiguousSpacePool(young,
|
|
"Survivor Space",
|
|
young->max_survivor_size(),
|
|
false /* support_usage_threshold */);
|
|
TenuredGeneration* old = old_gen();
|
|
_old_pool = new TenuredGenerationPool(old, "Tenured Gen", true);
|
|
|
|
_young_manager->add_pool(_eden_pool);
|
|
_young_manager->add_pool(_survivor_pool);
|
|
young->set_gc_manager(_young_manager);
|
|
|
|
_old_manager->add_pool(_eden_pool);
|
|
_old_manager->add_pool(_survivor_pool);
|
|
_old_manager->add_pool(_old_pool);
|
|
old->set_gc_manager(_old_manager);
|
|
}
|
|
|
|
GrowableArray<GCMemoryManager*> SerialHeap::memory_managers() {
|
|
GrowableArray<GCMemoryManager*> memory_managers(2);
|
|
memory_managers.append(_young_manager);
|
|
memory_managers.append(_old_manager);
|
|
return memory_managers;
|
|
}
|
|
|
|
GrowableArray<MemoryPool*> SerialHeap::memory_pools() {
|
|
GrowableArray<MemoryPool*> memory_pools(3);
|
|
memory_pools.append(_eden_pool);
|
|
memory_pools.append(_survivor_pool);
|
|
memory_pools.append(_old_pool);
|
|
return memory_pools;
|
|
}
|
|
|
|
HeapWord* SerialHeap::allocate_loaded_archive_space(size_t word_size) {
|
|
MutexLocker ml(Heap_lock);
|
|
return old_gen()->allocate(word_size);
|
|
}
|
|
|
|
void SerialHeap::complete_loaded_archive_space(MemRegion archive_space) {
|
|
assert(old_gen()->used_region().contains(archive_space), "Archive space not contained in old gen");
|
|
old_gen()->complete_loaded_archive_space(archive_space);
|
|
}
|
|
|
|
void SerialHeap::pin_object(JavaThread* thread, oop obj) {
|
|
GCLocker::enter(thread);
|
|
}
|
|
|
|
void SerialHeap::unpin_object(JavaThread* thread, oop obj) {
|
|
GCLocker::exit(thread);
|
|
}
|
|
|
|
jint SerialHeap::initialize() {
|
|
// Allocate space for the heap.
|
|
|
|
ReservedHeapSpace heap_rs = allocate(HeapAlignment);
|
|
|
|
if (!heap_rs.is_reserved()) {
|
|
vm_shutdown_during_initialization(
|
|
"Could not reserve enough space for object heap");
|
|
return JNI_ENOMEM;
|
|
}
|
|
|
|
initialize_reserved_region(heap_rs);
|
|
|
|
ReservedSpace young_rs = heap_rs.first_part(MaxNewSize, SpaceAlignment);
|
|
ReservedSpace old_rs = heap_rs.last_part(MaxNewSize, SpaceAlignment);
|
|
|
|
_rem_set = new CardTableRS(_reserved);
|
|
_rem_set->initialize(young_rs.base(), old_rs.base());
|
|
|
|
CardTableBarrierSet *bs = new CardTableBarrierSet(_rem_set);
|
|
BarrierSet::set_barrier_set(bs);
|
|
|
|
_young_gen = new DefNewGeneration(young_rs, NewSize, MinNewSize, MaxNewSize);
|
|
_old_gen = new TenuredGeneration(old_rs, OldSize, MinOldSize, MaxOldSize, rem_set());
|
|
|
|
GCInitLogger::print();
|
|
|
|
FullGCForwarding::initialize(_reserved);
|
|
|
|
return JNI_OK;
|
|
}
|
|
|
|
ReservedHeapSpace SerialHeap::allocate(size_t alignment) {
|
|
// Now figure out the total size.
|
|
const size_t pageSize = UseLargePages ? os::large_page_size() : os::vm_page_size();
|
|
assert(alignment % pageSize == 0, "Must be");
|
|
|
|
// Check for overflow.
|
|
size_t total_reserved = MaxNewSize + MaxOldSize;
|
|
if (total_reserved < MaxNewSize) {
|
|
vm_exit_during_initialization("The size of the object heap + VM data exceeds "
|
|
"the maximum representable size");
|
|
}
|
|
assert(total_reserved % alignment == 0,
|
|
"Gen size; total_reserved=%zu, alignment=%zu", total_reserved, alignment);
|
|
|
|
ReservedHeapSpace heap_rs = Universe::reserve_heap(total_reserved, alignment);
|
|
size_t used_page_size = heap_rs.page_size();
|
|
|
|
os::trace_page_sizes("Heap",
|
|
MinHeapSize,
|
|
total_reserved,
|
|
heap_rs.base(),
|
|
heap_rs.size(),
|
|
used_page_size);
|
|
|
|
return heap_rs;
|
|
}
|
|
|
|
class GenIsScavengable : public BoolObjectClosure {
|
|
public:
|
|
bool do_object_b(oop obj) {
|
|
return SerialHeap::heap()->is_in_young(obj);
|
|
}
|
|
};
|
|
|
|
static GenIsScavengable _is_scavengable;
|
|
|
|
void SerialHeap::post_initialize() {
|
|
CollectedHeap::post_initialize();
|
|
|
|
DefNewGeneration* def_new_gen = (DefNewGeneration*)_young_gen;
|
|
|
|
def_new_gen->ref_processor_init();
|
|
|
|
SerialFullGC::initialize();
|
|
|
|
ScavengableNMethods::initialize(&_is_scavengable);
|
|
}
|
|
|
|
PreGenGCValues SerialHeap::get_pre_gc_values() const {
|
|
const DefNewGeneration* const def_new_gen = (DefNewGeneration*) young_gen();
|
|
|
|
return PreGenGCValues(def_new_gen->used(),
|
|
def_new_gen->capacity(),
|
|
def_new_gen->eden()->used(),
|
|
def_new_gen->eden()->capacity(),
|
|
def_new_gen->from()->used(),
|
|
def_new_gen->from()->capacity(),
|
|
old_gen()->used(),
|
|
old_gen()->capacity());
|
|
}
|
|
|
|
size_t SerialHeap::capacity() const {
|
|
return _young_gen->capacity() + _old_gen->capacity();
|
|
}
|
|
|
|
size_t SerialHeap::used() const {
|
|
return _young_gen->used() + _old_gen->used();
|
|
}
|
|
|
|
size_t SerialHeap::max_capacity() const {
|
|
return _young_gen->max_capacity() + _old_gen->max_capacity();
|
|
}
|
|
|
|
HeapWord* SerialHeap::expand_heap_and_allocate(size_t size, bool is_tlab) {
|
|
assert(Heap_lock->is_locked(), "precondition");
|
|
|
|
HeapWord* result = _young_gen->expand_and_allocate(size);
|
|
|
|
if (result == nullptr && !is_tlab) {
|
|
result = _old_gen->expand_and_allocate(size);
|
|
}
|
|
|
|
assert(result == nullptr || is_in_reserved(result), "result not in heap");
|
|
return result;
|
|
}
|
|
|
|
HeapWord* SerialHeap::mem_allocate_cas_noexpand(size_t size, bool is_tlab) {
|
|
HeapWord* result = _young_gen->par_allocate(size);
|
|
if (result != nullptr) {
|
|
return result;
|
|
}
|
|
// Try old-gen allocation for non-TLAB.
|
|
if (!is_tlab) {
|
|
// If it's too large for young-gen or heap is too full.
|
|
if (size > heap_word_size(_young_gen->capacity_before_gc()) || _is_heap_almost_full) {
|
|
result = _old_gen->par_allocate(size);
|
|
if (result != nullptr) {
|
|
return result;
|
|
}
|
|
}
|
|
}
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
HeapWord* SerialHeap::mem_allocate_work(size_t size, bool is_tlab) {
|
|
HeapWord* result = nullptr;
|
|
|
|
for (uint try_count = 1; /* break */; try_count++) {
|
|
{
|
|
ConditionalMutexLocker locker(Heap_lock, !is_init_completed());
|
|
result = mem_allocate_cas_noexpand(size, is_tlab);
|
|
if (result != nullptr) {
|
|
break;
|
|
}
|
|
}
|
|
uint gc_count_before; // Read inside the Heap_lock locked region.
|
|
{
|
|
MutexLocker ml(Heap_lock);
|
|
|
|
// Re-try after acquiring the lock, because a GC might have occurred
|
|
// while waiting for this lock.
|
|
result = mem_allocate_cas_noexpand(size, is_tlab);
|
|
if (result != nullptr) {
|
|
break;
|
|
}
|
|
|
|
if (!is_init_completed()) {
|
|
// Double checked locking, this ensure that is_init_completed() does not
|
|
// transition while expanding the heap.
|
|
MonitorLocker ml(InitCompleted_lock, Monitor::_no_safepoint_check_flag);
|
|
if (!is_init_completed()) {
|
|
// Can't do GC; try heap expansion to satisfy the request.
|
|
result = expand_heap_and_allocate(size, is_tlab);
|
|
if (result != nullptr) {
|
|
return result;
|
|
}
|
|
}
|
|
}
|
|
|
|
gc_count_before = total_collections();
|
|
}
|
|
|
|
VM_SerialCollectForAllocation op(size, is_tlab, gc_count_before);
|
|
VMThread::execute(&op);
|
|
if (op.gc_succeeded()) {
|
|
result = op.result();
|
|
break;
|
|
}
|
|
|
|
// Give a warning if we seem to be looping forever.
|
|
if ((QueuedAllocationWarningCount > 0) &&
|
|
(try_count % QueuedAllocationWarningCount == 0)) {
|
|
log_warning(gc, ergo)("SerialHeap::mem_allocate_work retries %d times,"
|
|
" size=%zu %s", try_count, size, is_tlab ? "(TLAB)" : "");
|
|
}
|
|
}
|
|
|
|
assert(result == nullptr || is_in_reserved(result), "postcondition");
|
|
return result;
|
|
}
|
|
|
|
HeapWord* SerialHeap::mem_allocate(size_t size) {
|
|
return mem_allocate_work(size,
|
|
false /* is_tlab */);
|
|
}
|
|
|
|
bool SerialHeap::is_young_gc_safe() const {
|
|
if (!_young_gen->to()->is_empty()) {
|
|
return false;
|
|
}
|
|
return _old_gen->promotion_attempt_is_safe(_young_gen->used());
|
|
}
|
|
|
|
bool SerialHeap::do_young_collection(bool clear_soft_refs) {
|
|
if (!is_young_gc_safe()) {
|
|
return false;
|
|
}
|
|
IsSTWGCActiveMark gc_active_mark;
|
|
SvcGCMarker sgcm(SvcGCMarker::MINOR);
|
|
GCIdMark gc_id_mark;
|
|
GCTraceCPUTime tcpu(_young_gen->gc_tracer());
|
|
GCTraceTime(Info, gc) t("Pause Young", nullptr, gc_cause(), true);
|
|
TraceCollectorStats tcs(_young_gen->counters());
|
|
TraceMemoryManagerStats tmms(_young_gen->gc_manager(), gc_cause(), "end of minor GC");
|
|
print_before_gc();
|
|
const PreGenGCValues pre_gc_values = get_pre_gc_values();
|
|
|
|
increment_total_collections(false);
|
|
const bool should_verify = total_collections() >= VerifyGCStartAt;
|
|
if (should_verify && VerifyBeforeGC) {
|
|
prepare_for_verify();
|
|
Universe::verify("Before GC");
|
|
}
|
|
gc_prologue();
|
|
COMPILER2_OR_JVMCI_PRESENT(DerivedPointerTable::clear());
|
|
|
|
save_marks();
|
|
|
|
bool result = _young_gen->collect(clear_soft_refs);
|
|
|
|
COMPILER2_OR_JVMCI_PRESENT(DerivedPointerTable::update_pointers());
|
|
|
|
// Only update stats for successful young-gc
|
|
if (result) {
|
|
_old_gen->update_promote_stats();
|
|
_young_gen->resize_after_young_gc();
|
|
}
|
|
|
|
if (should_verify && VerifyAfterGC) {
|
|
Universe::verify("After GC");
|
|
}
|
|
|
|
print_heap_change(pre_gc_values);
|
|
|
|
// Track memory usage and detect low memory after GC finishes
|
|
MemoryService::track_memory_usage();
|
|
|
|
gc_epilogue(false);
|
|
|
|
print_after_gc();
|
|
|
|
return result;
|
|
}
|
|
|
|
void SerialHeap::register_nmethod(nmethod* nm) {
|
|
ScavengableNMethods::register_nmethod(nm);
|
|
BarrierSetNMethod* bs_nm = BarrierSet::barrier_set()->barrier_set_nmethod();
|
|
bs_nm->disarm(nm);
|
|
}
|
|
|
|
void SerialHeap::unregister_nmethod(nmethod* nm) {
|
|
ScavengableNMethods::unregister_nmethod(nm);
|
|
}
|
|
|
|
void SerialHeap::verify_nmethod(nmethod* nm) {
|
|
ScavengableNMethods::verify_nmethod(nm);
|
|
}
|
|
|
|
void SerialHeap::prune_scavengable_nmethods() {
|
|
ScavengableNMethods::prune_nmethods_not_into_young();
|
|
}
|
|
|
|
void SerialHeap::prune_unlinked_nmethods() {
|
|
ScavengableNMethods::prune_unlinked_nmethods();
|
|
}
|
|
|
|
HeapWord* SerialHeap::satisfy_failed_allocation(size_t size, bool is_tlab) {
|
|
assert(size != 0, "precondition");
|
|
|
|
HeapWord* result = nullptr;
|
|
|
|
// If young-gen can handle this allocation, attempt young-gc firstly.
|
|
bool should_run_young_gc = is_tlab || size <= _young_gen->eden()->capacity();
|
|
collect_at_safepoint(!should_run_young_gc);
|
|
|
|
// Just finished a GC, try to satisfy this allocation, using expansion if needed.
|
|
result = expand_heap_and_allocate(size, is_tlab);
|
|
if (result != nullptr) {
|
|
return result;
|
|
}
|
|
|
|
// If we reach this point, we're really out of memory. Try every trick
|
|
// we can to reclaim memory. Force collection of soft references. Force
|
|
// a complete compaction of the heap. Any additional methods for finding
|
|
// free memory should be here, especially if they are expensive. If this
|
|
// attempt fails, an OOM exception will be thrown.
|
|
{
|
|
UIntFlagSetting flag_change(MarkSweepAlwaysCompactCount, 1); // Make sure the heap is fully compacted
|
|
const bool clear_all_soft_refs = true;
|
|
do_full_collection(clear_all_soft_refs);
|
|
}
|
|
|
|
// The previous full-gc can shrink the heap, so re-expand it.
|
|
result = expand_heap_and_allocate(size, is_tlab);
|
|
if (result != nullptr) {
|
|
return result;
|
|
}
|
|
|
|
// What else? We might try synchronous finalization later. If the total
|
|
// space available is large enough for the allocation, then a more
|
|
// complete compaction phase than we've tried so far might be
|
|
// appropriate.
|
|
return nullptr;
|
|
}
|
|
|
|
template <typename OopClosureType>
|
|
static void oop_iterate_from(OopClosureType* blk, ContiguousSpace* space, HeapWord** from) {
|
|
assert(*from != nullptr, "precondition");
|
|
HeapWord* t;
|
|
HeapWord* p = *from;
|
|
|
|
const intx interval = PrefetchScanIntervalInBytes;
|
|
do {
|
|
t = space->top();
|
|
while (p < t) {
|
|
Prefetch::write(p, interval);
|
|
p += cast_to_oop(p)->oop_iterate_size(blk);
|
|
}
|
|
} while (t < space->top());
|
|
|
|
*from = space->top();
|
|
}
|
|
|
|
void SerialHeap::scan_evacuated_objs(YoungGenScanClosure* young_cl,
|
|
OldGenScanClosure* old_cl) {
|
|
ContiguousSpace* to_space = young_gen()->to();
|
|
do {
|
|
oop_iterate_from(young_cl, to_space, &_young_gen_saved_top);
|
|
oop_iterate_from(old_cl, old_gen()->space(), &_old_gen_saved_top);
|
|
// Recheck to-space only, because postcondition of oop_iterate_from is no
|
|
// unscanned objs
|
|
} while (_young_gen_saved_top != to_space->top());
|
|
guarantee(young_gen()->promo_failure_scan_is_complete(), "Failed to finish scan");
|
|
}
|
|
|
|
void SerialHeap::collect_at_safepoint(bool full) {
|
|
assert(!GCLocker::is_active(), "precondition");
|
|
bool clear_soft_refs = GCCause::should_clear_all_soft_refs(_gc_cause);
|
|
|
|
if (!full) {
|
|
bool success = do_young_collection(clear_soft_refs);
|
|
if (success) {
|
|
return;
|
|
}
|
|
// Upgrade to Full-GC if young-gc fails
|
|
}
|
|
do_full_collection(clear_soft_refs);
|
|
}
|
|
|
|
// public collection interfaces
|
|
void SerialHeap::collect(GCCause::Cause cause) {
|
|
// The caller doesn't have the Heap_lock
|
|
assert(!Heap_lock->owned_by_self(), "this thread should not own the Heap_lock");
|
|
|
|
unsigned int gc_count_before;
|
|
unsigned int full_gc_count_before;
|
|
|
|
{
|
|
MutexLocker ml(Heap_lock);
|
|
// Read the GC count while holding the Heap_lock
|
|
gc_count_before = total_collections();
|
|
full_gc_count_before = total_full_collections();
|
|
}
|
|
|
|
bool should_run_young_gc = (cause == GCCause::_wb_young_gc)
|
|
DEBUG_ONLY(|| (cause == GCCause::_scavenge_alot));
|
|
|
|
VM_SerialGCCollect op(!should_run_young_gc,
|
|
gc_count_before,
|
|
full_gc_count_before,
|
|
cause);
|
|
VMThread::execute(&op);
|
|
}
|
|
|
|
void SerialHeap::do_full_collection(bool clear_all_soft_refs) {
|
|
IsSTWGCActiveMark gc_active_mark;
|
|
SvcGCMarker sgcm(SvcGCMarker::FULL);
|
|
GCIdMark gc_id_mark;
|
|
GCTraceCPUTime tcpu(SerialFullGC::gc_tracer());
|
|
GCTraceTime(Info, gc) t("Pause Full", nullptr, gc_cause(), true);
|
|
TraceCollectorStats tcs(_old_gen->counters());
|
|
TraceMemoryManagerStats tmms(_old_gen->gc_manager(), gc_cause(), "end of major GC");
|
|
const PreGenGCValues pre_gc_values = get_pre_gc_values();
|
|
print_before_gc();
|
|
|
|
increment_total_collections(true);
|
|
const bool should_verify = total_collections() >= VerifyGCStartAt;
|
|
if (should_verify && VerifyBeforeGC) {
|
|
prepare_for_verify();
|
|
Universe::verify("Before GC");
|
|
}
|
|
|
|
gc_prologue();
|
|
COMPILER2_OR_JVMCI_PRESENT(DerivedPointerTable::clear());
|
|
CodeCache::on_gc_marking_cycle_start();
|
|
|
|
STWGCTimer* gc_timer = SerialFullGC::gc_timer();
|
|
gc_timer->register_gc_start();
|
|
|
|
SerialOldTracer* gc_tracer = SerialFullGC::gc_tracer();
|
|
gc_tracer->report_gc_start(gc_cause(), gc_timer->gc_start());
|
|
|
|
pre_full_gc_dump(gc_timer);
|
|
|
|
SerialFullGC::invoke_at_safepoint(clear_all_soft_refs);
|
|
|
|
post_full_gc_dump(gc_timer);
|
|
|
|
gc_timer->register_gc_end();
|
|
|
|
gc_tracer->report_gc_end(gc_timer->gc_end(), gc_timer->time_partitions());
|
|
CodeCache::on_gc_marking_cycle_finish();
|
|
CodeCache::arm_all_nmethods();
|
|
COMPILER2_OR_JVMCI_PRESENT(DerivedPointerTable::update_pointers());
|
|
|
|
// Adjust generation sizes.
|
|
_old_gen->compute_new_size();
|
|
_young_gen->resize_after_full_gc();
|
|
|
|
_old_gen->update_promote_stats();
|
|
|
|
// Resize the metaspace capacity after full collections
|
|
MetaspaceGC::compute_new_size();
|
|
|
|
print_heap_change(pre_gc_values);
|
|
|
|
// Track memory usage and detect low memory after GC finishes
|
|
MemoryService::track_memory_usage();
|
|
|
|
// Need to tell the epilogue code we are done with Full GC, regardless what was
|
|
// the initial value for "complete" flag.
|
|
gc_epilogue(true);
|
|
|
|
print_after_gc();
|
|
|
|
if (should_verify && VerifyAfterGC) {
|
|
Universe::verify("After GC");
|
|
}
|
|
}
|
|
|
|
bool SerialHeap::is_in_young(const void* p) const {
|
|
bool result = p < _old_gen->reserved().start();
|
|
assert(result == _young_gen->is_in_reserved(p),
|
|
"incorrect test - result=%d, p=" PTR_FORMAT, result, p2i(p));
|
|
return result;
|
|
}
|
|
|
|
bool SerialHeap::requires_barriers(stackChunkOop obj) const {
|
|
return !is_in_young(obj);
|
|
}
|
|
|
|
// Returns "TRUE" iff "p" points into the committed areas of the heap.
|
|
bool SerialHeap::is_in(const void* p) const {
|
|
return _young_gen->is_in(p) || _old_gen->is_in(p);
|
|
}
|
|
|
|
void SerialHeap::object_iterate(ObjectClosure* cl) {
|
|
_young_gen->object_iterate(cl);
|
|
_old_gen->object_iterate(cl);
|
|
}
|
|
|
|
HeapWord* SerialHeap::block_start(const void* addr) const {
|
|
assert(is_in_reserved(addr), "block_start of address outside of heap");
|
|
if (_young_gen->is_in_reserved(addr)) {
|
|
assert(_young_gen->is_in(addr), "addr should be in allocated part of generation");
|
|
return _young_gen->block_start(addr);
|
|
}
|
|
|
|
assert(_old_gen->is_in_reserved(addr), "Some generation should contain the address");
|
|
assert(_old_gen->is_in(addr), "addr should be in allocated part of generation");
|
|
return _old_gen->block_start(addr);
|
|
}
|
|
|
|
bool SerialHeap::block_is_obj(const HeapWord* addr) const {
|
|
assert(is_in_reserved(addr), "block_is_obj of address outside of heap");
|
|
assert(block_start(addr) == addr, "addr must be a block start");
|
|
|
|
if (_young_gen->is_in_reserved(addr)) {
|
|
return _young_gen->eden()->is_in(addr)
|
|
|| _young_gen->from()->is_in(addr)
|
|
|| _young_gen->to() ->is_in(addr);
|
|
}
|
|
|
|
assert(_old_gen->is_in_reserved(addr), "must be in old-gen");
|
|
return addr < _old_gen->space()->top();
|
|
}
|
|
|
|
size_t SerialHeap::tlab_capacity() const {
|
|
// Only young-gen supports tlab allocation.
|
|
return _young_gen->tlab_capacity();
|
|
}
|
|
|
|
size_t SerialHeap::tlab_used() const {
|
|
return _young_gen->tlab_used();
|
|
}
|
|
|
|
size_t SerialHeap::unsafe_max_tlab_alloc() const {
|
|
return _young_gen->unsafe_max_tlab_alloc();
|
|
}
|
|
|
|
HeapWord* SerialHeap::allocate_new_tlab(size_t min_size,
|
|
size_t requested_size,
|
|
size_t* actual_size) {
|
|
HeapWord* result = mem_allocate_work(requested_size /* size */,
|
|
true /* is_tlab */);
|
|
if (result != nullptr) {
|
|
*actual_size = requested_size;
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
void SerialHeap::prepare_for_verify() {
|
|
ensure_parsability(false); // no need to retire TLABs
|
|
}
|
|
|
|
void SerialHeap::save_marks() {
|
|
_young_gen_saved_top = _young_gen->to()->top();
|
|
_old_gen_saved_top = _old_gen->space()->top();
|
|
}
|
|
|
|
void SerialHeap::verify(VerifyOption option /* ignored */) {
|
|
log_debug(gc, verify)("%s", _old_gen->name());
|
|
_old_gen->verify();
|
|
|
|
log_debug(gc, verify)("%s", _young_gen->name());
|
|
_young_gen->verify();
|
|
|
|
log_debug(gc, verify)("RemSet");
|
|
rem_set()->verify();
|
|
}
|
|
|
|
void SerialHeap::print_heap_on(outputStream* st) const {
|
|
assert(_young_gen != nullptr, "precondition");
|
|
assert(_old_gen != nullptr, "precondition");
|
|
|
|
_young_gen->print_on(st);
|
|
_old_gen->print_on(st);
|
|
}
|
|
|
|
void SerialHeap::print_gc_on(outputStream* st) const {
|
|
BarrierSet* bs = BarrierSet::barrier_set();
|
|
if (bs != nullptr) {
|
|
bs->print_on(st);
|
|
}
|
|
}
|
|
|
|
void SerialHeap::gc_threads_do(ThreadClosure* tc) const {
|
|
}
|
|
|
|
bool SerialHeap::print_location(outputStream* st, void* addr) const {
|
|
return BlockLocationPrinter<SerialHeap>::print_location(st, addr);
|
|
}
|
|
|
|
void SerialHeap::print_tracing_info() const {
|
|
// Does nothing
|
|
}
|
|
|
|
void SerialHeap::print_heap_change(const PreGenGCValues& pre_gc_values) const {
|
|
const DefNewGeneration* const def_new_gen = (DefNewGeneration*) young_gen();
|
|
|
|
log_info(gc, heap)(HEAP_CHANGE_FORMAT" "
|
|
HEAP_CHANGE_FORMAT" "
|
|
HEAP_CHANGE_FORMAT,
|
|
HEAP_CHANGE_FORMAT_ARGS(def_new_gen->name(),
|
|
pre_gc_values.young_gen_used(),
|
|
pre_gc_values.young_gen_capacity(),
|
|
def_new_gen->used(),
|
|
def_new_gen->capacity()),
|
|
HEAP_CHANGE_FORMAT_ARGS("Eden",
|
|
pre_gc_values.eden_used(),
|
|
pre_gc_values.eden_capacity(),
|
|
def_new_gen->eden()->used(),
|
|
def_new_gen->eden()->capacity()),
|
|
HEAP_CHANGE_FORMAT_ARGS("From",
|
|
pre_gc_values.from_used(),
|
|
pre_gc_values.from_capacity(),
|
|
def_new_gen->from()->used(),
|
|
def_new_gen->from()->capacity()));
|
|
log_info(gc, heap)(HEAP_CHANGE_FORMAT,
|
|
HEAP_CHANGE_FORMAT_ARGS(old_gen()->name(),
|
|
pre_gc_values.old_gen_used(),
|
|
pre_gc_values.old_gen_capacity(),
|
|
old_gen()->used(),
|
|
old_gen()->capacity()));
|
|
MetaspaceUtils::print_metaspace_change(pre_gc_values.metaspace_sizes());
|
|
}
|
|
|
|
void SerialHeap::gc_prologue() {
|
|
// Fill TLAB's and such
|
|
ensure_parsability(true); // retire TLABs
|
|
|
|
_old_gen->gc_prologue();
|
|
};
|
|
|
|
void SerialHeap::gc_epilogue(bool full) {
|
|
#if COMPILER2_OR_JVMCI
|
|
assert(DerivedPointerTable::is_empty(), "derived pointer present");
|
|
#endif // COMPILER2_OR_JVMCI
|
|
|
|
resize_all_tlabs();
|
|
|
|
_young_gen->gc_epilogue();
|
|
_old_gen->gc_epilogue();
|
|
|
|
if (_is_heap_almost_full) {
|
|
// Reset the emergency state if eden is empty after a young/full gc
|
|
if (_young_gen->eden()->is_empty()) {
|
|
_is_heap_almost_full = false;
|
|
}
|
|
} else {
|
|
if (full && !_young_gen->eden()->is_empty()) {
|
|
// Usually eden should be empty after a full GC, so heap is probably too
|
|
// full now; entering emergency state.
|
|
_is_heap_almost_full = true;
|
|
}
|
|
}
|
|
|
|
MetaspaceCounters::update_performance_counters();
|
|
};
|