hotspot/src/share/vm/runtime/java.cpp
changeset 31790 4a08476437e8
parent 30764 fec48bf5a827
child 32349 8b5eb3750c41
child 33965 e03572caaf4c
--- a/hotspot/src/share/vm/runtime/java.cpp	Tue Jul 14 16:28:53 2015 +0200
+++ b/hotspot/src/share/vm/runtime/java.cpp	Wed Jul 15 12:24:41 2015 -0700
@@ -330,6 +330,10 @@
     SystemDictionary::print();
   }
 
+  if (LogTouchedMethods && PrintTouchedMethodsAtExit) {
+    Method::print_touched_methods(tty);
+  }
+
   if (PrintBiasedLockingStatistics) {
     BiasedLocking::print_counters();
   }
@@ -382,6 +386,10 @@
   if (PrintNMTStatistics) {
     MemTracker::final_report(tty);
   }
+
+  if (LogTouchedMethods && PrintTouchedMethodsAtExit) {
+    Method::print_touched_methods(tty);
+  }
 }
 
 #endif