| /* |
| * Copyright (c) 2001, 2023, 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 <cstdio> |
| |
| #include "precompiled.hpp" |
| #include "gc/g1/g1BlockOffsetTable.inline.hpp" |
| #include "gc/g1/g1CardSetContainers.inline.hpp" |
| #include "gc/g1/g1CollectedHeap.inline.hpp" |
| #include "gc/g1/g1ConcurrentRefine.hpp" |
| #include "gc/g1/heapRegionManager.inline.hpp" |
| #include "gc/g1/heapRegionRemSet.inline.hpp" |
| #include "memory/allocation.hpp" |
| #include "memory/padded.inline.hpp" |
| #include "oops/oop.inline.hpp" |
| #include "runtime/atomic.hpp" |
| #include "runtime/globals_extension.hpp" |
| #include "runtime/java.hpp" |
| #include "runtime/mutexLocker.hpp" |
| #include "utilities/bitMap.inline.hpp" |
| #include "utilities/debug.hpp" |
| #include "utilities/formatBuffer.hpp" |
| #include "utilities/globalDefinitions.hpp" |
| #include "utilities/growableArray.hpp" |
| #include "utilities/powerOfTwo.hpp" |
| |
| HeapWord* HeapRegionRemSet::_heap_base_address = nullptr; |
| |
| const char* HeapRegionRemSet::_state_strings[] = {"Untracked", "Updating", "Complete"}; |
| const char* HeapRegionRemSet::_short_state_strings[] = {"UNTRA", "UPDAT", "CMPLT"}; |
| |
| void HeapRegionRemSet::initialize(MemRegion reserved) { |
| G1CardSet::initialize(reserved); |
| _heap_base_address = reserved.start(); |
| } |
| |
| HeapRegionRemSet::HeapRegionRemSet(HeapRegion* hr, |
| G1CardSetConfiguration* config) : |
| _code_roots(), |
| _card_set_mm(config, G1CollectedHeap::heap()->card_set_freelist_pool()), |
| _card_set(config, &_card_set_mm), |
| _hr(hr), |
| _state(Untracked) { } |
| |
| void HeapRegionRemSet::clear_fcc() { |
| G1FromCardCache::clear(_hr->hrm_index()); |
| } |
| |
| void HeapRegionRemSet::clear(bool only_cardset) { |
| if (!only_cardset) { |
| _code_roots.clear(); |
| } |
| clear_fcc(); |
| _card_set.clear(); |
| set_state_untracked(); |
| assert(occupied() == 0, "Should be clear."); |
| } |
| |
| void HeapRegionRemSet::reset_table_scanner() { |
| _code_roots.reset_table_scanner(); |
| _card_set.reset_table_scanner(); |
| } |
| |
| G1MonotonicArenaMemoryStats HeapRegionRemSet::card_set_memory_stats() const { |
| return _card_set_mm.memory_stats(); |
| } |
| |
| void HeapRegionRemSet::print_static_mem_size(outputStream* out) { |
| out->print_cr(" Static structures = " SIZE_FORMAT, HeapRegionRemSet::static_mem_size()); |
| } |
| |
| // Code roots support |
| // |
| // The code root set is protected by two separate locking schemes |
| // When at safepoint the per-hrrs lock must be held during modifications |
| // except when doing a full gc. |
| // When not at safepoint the CodeCache_lock must be held during modifications. |
| |
| void HeapRegionRemSet::add_code_root(nmethod* nm) { |
| _code_roots.add(nm); |
| } |
| |
| void HeapRegionRemSet::remove_code_root(nmethod* nm) { |
| assert(nm != nullptr, "sanity"); |
| |
| _code_roots.remove(nm); |
| |
| // Check that there were no duplicates |
| guarantee(!_code_roots.contains(nm), "duplicate entry found"); |
| } |
| |
| void HeapRegionRemSet::bulk_remove_code_roots() { |
| _code_roots.bulk_remove(); |
| } |
| |
| void HeapRegionRemSet::code_roots_do(CodeBlobClosure* blk) const { |
| _code_roots.nmethods_do(blk); |
| } |
| |
| void HeapRegionRemSet::clean_code_roots(HeapRegion* hr) { |
| _code_roots.clean(hr); |
| } |
| |
| size_t HeapRegionRemSet::code_roots_mem_size() { |
| return _code_roots.mem_size(); |
| } |