/
githubmirror
/
panama-vector
Обзор
Документация
Войти
/
githubmirror
/
panama-vector
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/hotspot/share/nmt/nmtUsage.cpp
148 строк
5 KB
Coleen Phillimore
8369622: GlobalChunkPoolMutex is recursively locked during error handling
23 окт 2025, 14:46
23 окт 2025, 14:46
3fdb15f
Код
Авторство
О чём код?
/* * Copyright (c) 2022, 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 "memory/arena.hpp" #include "nmt/mallocTracker.hpp" #include "nmt/memoryFileTracker.hpp" #include "nmt/memTracker.hpp" #include "nmt/nmtCommon.hpp" #include "nmt/nmtUsage.hpp" #include "nmt/threadStackTracker.hpp" #include "runtime/mutexLocker.hpp" #include "utilities/vmError.hpp" // Enabled all options for snapshot. const NMTUsageOptions NMTUsage::OptionsAll = { true, true, true }; // Skip expensive thread stacks when refreshing usage. const NMTUsageOptions NMTUsage::OptionsNoTS = { false, true, true }; NMTUsage::NMTUsage(NMTUsageOptions options) : _malloc_by_type(), _malloc_total(), _vm_by_type(), _vm_total(), _usage_options(options) { } void NMTUsage::walk_thread_stacks() { // Snapping the thread stacks involves walking the areas to figure out how // much memory had been committed if they are backed by virtual memory. This // needs to happen before we take the snapshot of the virtual memory since it // will update this information. MemTracker::NmtVirtualMemoryLocker locker; VirtualMemoryTracker::Instance::snapshot_thread_stacks(); } void NMTUsage::update_malloc_usage() { MallocMemorySnapshot* ms; // Lock needed to keep values in sync, total area size // is deducted from mtChunk in the end to give correct values. { ChunkPoolLocker::LockStrategy ls = ChunkPoolLocker::LockStrategy::Lock; if (VMError::is_error_reported() && VMError::is_error_reported_in_current_thread()) { ls = ChunkPoolLocker::LockStrategy::Try; } ChunkPoolLocker cpl(ls); ms = MallocMemorySummary::as_snapshot(); } size_t total_arena_size = 0; for (int i = 0; i < mt_number_of_tags; i++) { MemTag mem_tag = NMTUtil::index_to_tag(i); const MallocMemory* mm = ms->by_tag(mem_tag); _malloc_by_type[i] = mm->malloc_size() + mm->arena_size(); total_arena_size += mm->arena_size(); } // Total malloc size. _malloc_total = ms->total(); // Adjustment due to mtChunk double counting. _malloc_by_type[NMTUtil::tag_to_index(mtChunk)] -= total_arena_size; _malloc_total -= total_arena_size; // Adjust mtNMT to include malloc overhead. _malloc_by_type[NMTUtil::tag_to_index(mtNMT)] += ms->malloc_overhead(); } void NMTUsage::update_vm_usage() { const VirtualMemorySnapshot* vms = VirtualMemorySummary::as_snapshot(); // Reset total to allow recalculation. _vm_total.committed = 0; _vm_total.reserved = 0; for (int i = 0; i < mt_number_of_tags; i++) { MemTag mem_tag = NMTUtil::index_to_tag(i); const VirtualMemory* vm = vms->by_tag(mem_tag); _vm_by_type[i].reserved = vm->reserved(); _vm_by_type[i].committed = vm->committed(); _vm_total.reserved += vm->reserved(); _vm_total.committed += vm->committed(); } { // MemoryFileTracker addition using MFT = MemoryFileTracker::Instance; MemTracker::NmtVirtualMemoryLocker nvml; MFT::iterate_summary([&](MemTag tag, const VirtualMemory* vm) { int i = NMTUtil::tag_to_index(tag); _vm_by_type[i].committed += vm->committed(); _vm_total.committed += vm->committed(); }); } } void NMTUsage::refresh() { if (_usage_options.include_malloc) { update_malloc_usage(); } if (_usage_options.include_vm) { // Thread stacks only makes sense if virtual memory // is also included. It must be executed before the // over all usage is calculated. if (_usage_options.update_thread_stacks) { walk_thread_stacks(); } update_vm_usage(); } } size_t NMTUsage::total_reserved() const { return _malloc_total + _vm_total.reserved; } size_t NMTUsage::total_committed() const { return _malloc_total + _vm_total.committed; } size_t NMTUsage::reserved(MemTag mem_tag) const { int index = NMTUtil::tag_to_index(mem_tag); return _malloc_by_type[index] + _vm_by_type[index].reserved; } size_t NMTUsage::committed(MemTag mem_tag) const { int index = NMTUtil::tag_to_index(mem_tag); return _malloc_by_type[index] + _vm_by_type[index].committed; }