comparison src/share/vm/runtime/init.cpp @ 6275:957c266d8bc5

Merge with http://hg.openjdk.java.net/hsx/hsx24/hotspot/
author Doug Simon <doug.simon@oracle.com>
date Tue, 21 Aug 2012 10:39:19 +0200
parents e9140bf80b4a
children da91efe96a93 8c5333c80cfd
comparison
equal deleted inserted replaced
5891:fd8832ae511d 6275:957c266d8bc5
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