mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-25 05:45:11 +02:00
6909153: Fix broken options on Zero
Smaller fixes to ensure that Zero still works with non-standard options. Reviewed-by: twisti
This commit is contained in:
parent
f64d1c0216
commit
915d9602fe
2 changed files with 14 additions and 5 deletions
|
@ -1820,9 +1820,11 @@ void CompileBroker::print_times() {
|
|||
CompileBroker::_t_standard_compilation.seconds(),
|
||||
CompileBroker::_t_standard_compilation.seconds() / CompileBroker::_total_standard_compile_count);
|
||||
tty->print_cr(" On stack replacement : %6.3f s, Average : %2.3f", CompileBroker::_t_osr_compilation.seconds(), CompileBroker::_t_osr_compilation.seconds() / CompileBroker::_total_osr_compile_count);
|
||||
compiler(CompLevel_fast_compile)->print_timers();
|
||||
if (compiler(CompLevel_fast_compile) != compiler(CompLevel_highest_tier)) {
|
||||
compiler(CompLevel_highest_tier)->print_timers();
|
||||
|
||||
if (compiler(CompLevel_fast_compile)) {
|
||||
compiler(CompLevel_fast_compile)->print_timers();
|
||||
if (compiler(CompLevel_fast_compile) != compiler(CompLevel_highest_tier))
|
||||
compiler(CompLevel_highest_tier)->print_timers();
|
||||
}
|
||||
|
||||
tty->cr();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue