hotspot/src/share/vm/runtime/vm_operations.cpp
changeset 26587 e8b28fa936af
parent 25715 d5a8dbdc5150
child 27420 04e6f914cce1
--- a/hotspot/src/share/vm/runtime/vm_operations.cpp	Wed Sep 10 19:08:17 2014 -0700
+++ b/hotspot/src/share/vm/runtime/vm_operations.cpp	Wed Sep 10 13:27:33 2014 +0200
@@ -470,3 +470,15 @@
     ShouldNotReachHere();
   }
 }
+
+void VM_PrintCompileQueue::doit() {
+  CompileBroker::print_compile_queues(_out);
+}
+
+void VM_PrintCodeList::doit() {
+  CodeCache::print_codelist(_out);
+}
+
+void VM_PrintCodeCache::doit() {
+  CodeCache::print_layout(_out);
+}