diff -r 2048b8d90c91 -r e8b28fa936af hotspot/src/share/vm/runtime/vm_operations.cpp --- 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); +}