mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-16 17:14:41 +02:00
8317683: Add JIT memory statistics
Reviewed-by: kvn, adinn
This commit is contained in:
parent
f7d6d7a04f
commit
56aa1e8dc8
28 changed files with 903 additions and 27 deletions
|
@ -31,6 +31,7 @@
|
|||
#include "classfile/symbolTable.hpp"
|
||||
#include "classfile/systemDictionary.hpp"
|
||||
#include "code/codeCache.hpp"
|
||||
#include "compiler/compilationMemoryStatistic.hpp"
|
||||
#include "compiler/compileBroker.hpp"
|
||||
#include "compiler/compilerOracle.hpp"
|
||||
#include "gc/shared/collectedHeap.hpp"
|
||||
|
@ -341,6 +342,10 @@ void print_statistics() {
|
|||
MetaspaceUtils::print_basic_report(tty, 0);
|
||||
}
|
||||
|
||||
if (CompilerOracle::should_print_final_memstat_report()) {
|
||||
CompilationMemoryStatistic::print_all_by_size(tty, false, 0);
|
||||
}
|
||||
|
||||
ThreadsSMRSupport::log_statistics();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue