< prev index next >

src/hotspot/share/runtime/init.cpp

Print this page

        

*** 26,35 **** --- 26,37 ---- #include "classfile/stringTable.hpp" #include "classfile/symbolTable.hpp" #include "code/icBuffer.hpp" #include "gc/shared/collectedHeap.hpp" #include "interpreter/bytecodes.hpp" + #include "logging/log.hpp" + #include "logging/logTag.hpp" #include "memory/universe.hpp" #include "prims/methodHandles.hpp" #include "runtime/flags/jvmFlag.hpp" #include "runtime/handles.inline.hpp" #include "runtime/icache.hpp"
*** 163,173 **** void exit_globals() { static bool destructorsCalled = false; if (!destructorsCalled) { destructorsCalled = true; perfMemory_exit(); ! if (PrintSafepointStatistics) { // Print the collected safepoint statistics. SafepointSynchronize::print_stat_on_exit(); } if (PrintStringTableStatistics) { SymbolTable::dump(tty); --- 165,175 ---- void exit_globals() { static bool destructorsCalled = false; if (!destructorsCalled) { destructorsCalled = true; perfMemory_exit(); ! if (log_is_enabled(Debug, safepoint, stats)) { // Print the collected safepoint statistics. SafepointSynchronize::print_stat_on_exit(); } if (PrintStringTableStatistics) { SymbolTable::dump(tty);
< prev index next >