hotspot/src/share/vm/runtime/init.cpp
changeset 13087 673ea6efaf18
parent 11636 3c07b54482a5
child 13728 882756847a04
equal deleted inserted replaced
12943:5ebbcf0cb20f 13087:673ea6efaf18
    21  * questions.
    21  * questions.
    22  *
    22  *
    23  */
    23  */
    24 
    24 
    25 #include "precompiled.hpp"
    25 #include "precompiled.hpp"
       
    26 #include "classfile/symbolTable.hpp"
    26 #include "code/icBuffer.hpp"
    27 #include "code/icBuffer.hpp"
    27 #include "gc_interface/collectedHeap.hpp"
    28 #include "gc_interface/collectedHeap.hpp"
    28 #include "interpreter/bytecodes.hpp"
    29 #include "interpreter/bytecodes.hpp"
    29 #include "memory/universe.hpp"
    30 #include "memory/universe.hpp"
    30 #include "prims/methodHandles.hpp"
    31 #include "prims/methodHandles.hpp"
   155     perfMemory_exit();
   156     perfMemory_exit();
   156     if (PrintSafepointStatistics) {
   157     if (PrintSafepointStatistics) {
   157       // Print the collected safepoint statistics.
   158       // Print the collected safepoint statistics.
   158       SafepointSynchronize::print_stat_on_exit();
   159       SafepointSynchronize::print_stat_on_exit();
   159     }
   160     }
       
   161     if (PrintStringTableStatistics) {
       
   162       SymbolTable::dump(tty);
       
   163       StringTable::dump(tty);
       
   164     }
   160     ostream_exit();
   165     ostream_exit();
   161   }
   166   }
   162 }
   167 }
   163 
   168 
   164 
   169