< prev index next > src/hotspot/share/gc/shenandoah/shenandoahRootVerifier.cpp
Print this page
/*
* Copyright (c) 2019, 2021, Red Hat, Inc. All rights reserved.
+ * Copyright Amazon.com Inc. 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.
#include "classfile/classLoaderDataGraph.hpp"
#include "code/codeCache.hpp"
#include "gc/shenandoah/shenandoahAsserts.hpp"
#include "gc/shenandoah/shenandoahHeap.inline.hpp"
+ #include "gc/shenandoah/shenandoahGeneration.hpp"
#include "gc/shenandoah/shenandoahPhaseTimings.hpp"
#include "gc/shenandoah/shenandoahRootVerifier.hpp"
+ #include "gc/shenandoah/shenandoahScanRemembered.inline.hpp"
#include "gc/shenandoah/shenandoahStringDedup.hpp"
#include "gc/shenandoah/shenandoahUtils.hpp"
#include "gc/shared/oopStorage.inline.hpp"
#include "gc/shared/oopStorageSet.hpp"
#include "runtime/javaThread.hpp"
ShenandoahGCStateResetter::~ShenandoahGCStateResetter() {
_heap->_gc_state.set(_gc_state);
assert(_heap->gc_state() == _gc_state, "Should be restored");
}
! void ShenandoahRootVerifier::roots_do(OopClosure* oops) {
ShenandoahGCStateResetter resetter;
shenandoah_assert_safepoint();
NMethodToOopClosure blobs(oops, !NMethodToOopClosure::FixRelocations);
CodeCache::nmethods_do(&blobs);
ShenandoahGCStateResetter::~ShenandoahGCStateResetter() {
_heap->_gc_state.set(_gc_state);
assert(_heap->gc_state() == _gc_state, "Should be restored");
}
! void ShenandoahRootVerifier::roots_do(OopIterateClosure* oops) {
ShenandoahGCStateResetter resetter;
shenandoah_assert_safepoint();
NMethodToOopClosure blobs(oops, !NMethodToOopClosure::FixRelocations);
CodeCache::nmethods_do(&blobs);
for (auto id : EnumRange<OopStorageSet::StrongId>()) {
OopStorageSet::storage(id)->oops_do(oops);
}
// Do thread roots the last. This allows verification code to find
// any broken objects from those special roots first, not the accidental
// dangling reference from the thread root.
Threads::possibly_parallel_oops_do(true, oops, nullptr);
}
! void ShenandoahRootVerifier::strong_roots_do(OopClosure* oops) {
ShenandoahGCStateResetter resetter;
shenandoah_assert_safepoint();
CLDToOopClosure clds(oops, ClassLoaderData::_claim_none);
ClassLoaderDataGraph::always_strong_cld_do(&clds);
for (auto id : EnumRange<OopStorageSet::StrongId>()) {
OopStorageSet::storage(id)->oops_do(oops);
}
// Do thread roots the last. This allows verification code to find
// any broken objects from those special roots first, not the accidental
// dangling reference from the thread root.
NMethodToOopClosure nmethods(oops, !NMethodToOopClosure::FixRelocations);
Threads::possibly_parallel_oops_do(true, oops, &nmethods);
for (auto id : EnumRange<OopStorageSet::StrongId>()) {
OopStorageSet::storage(id)->oops_do(oops);
}
+ ShenandoahHeap* heap = ShenandoahHeap::heap();
+ if (heap->mode()->is_generational() && heap->active_generation()->is_young()) {
+ shenandoah_assert_safepoint();
+ ShenandoahGenerationalHeap::heap()->old_generation()->card_scan()->roots_do(oops);
+ }
+
// Do thread roots the last. This allows verification code to find
// any broken objects from those special roots first, not the accidental
// dangling reference from the thread root.
Threads::possibly_parallel_oops_do(true, oops, nullptr);
}
! void ShenandoahRootVerifier::strong_roots_do(OopIterateClosure* oops) {
ShenandoahGCStateResetter resetter;
shenandoah_assert_safepoint();
CLDToOopClosure clds(oops, ClassLoaderData::_claim_none);
ClassLoaderDataGraph::always_strong_cld_do(&clds);
for (auto id : EnumRange<OopStorageSet::StrongId>()) {
OopStorageSet::storage(id)->oops_do(oops);
}
+
+ ShenandoahHeap* heap = ShenandoahHeap::heap();
+ if (heap->mode()->is_generational() && heap->active_generation()->is_young()) {
+ ShenandoahGenerationalHeap::heap()->old_generation()->card_scan()->roots_do(oops);
+ }
+
// Do thread roots the last. This allows verification code to find
// any broken objects from those special roots first, not the accidental
// dangling reference from the thread root.
NMethodToOopClosure nmethods(oops, !NMethodToOopClosure::FixRelocations);
Threads::possibly_parallel_oops_do(true, oops, &nmethods);
< prev index next >