diff -r 4d399f013e5a -r e9140bf80b4a src/share/vm/runtime/init.cpp --- a/src/share/vm/runtime/init.cpp Mon Jun 11 13:10:14 2012 -0400 +++ b/src/share/vm/runtime/init.cpp Wed Jun 13 19:52:59 2012 -0400 @@ -23,6 +23,7 @@ */ #include "precompiled.hpp" +#include "classfile/symbolTable.hpp" #include "code/icBuffer.hpp" #include "gc_interface/collectedHeap.hpp" #include "interpreter/bytecodes.hpp" @@ -157,6 +158,10 @@ // Print the collected safepoint statistics. SafepointSynchronize::print_stat_on_exit(); } + if (PrintStringTableStatistics) { + SymbolTable::dump(tty); + StringTable::dump(tty); + } ostream_exit(); } }