mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8054889: Compiler team's implementation task
Adding three new diagnostic commands for compiler Reviewed-by: anoll, kvn, drchase
This commit is contained in:
parent
7275456c3a
commit
6062c2db15
14 changed files with 747 additions and 53 deletions
|
@ -470,3 +470,15 @@ void VM_Exit::wait_if_vm_exited() {
|
|||
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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue