hotspot/src/share/vm/compiler/compileBroker.cpp
changeset 17383 3665c0901a0d
parent 17133 ef4dd2f8fcb1
child 17876 7313e6d57e36
child 22807 1cf02ef734e2
equal deleted inserted replaced
17382:bba473b81ec0 17383:3665c0901a0d
  1852 
  1852 
  1853   if (PrintCompilation && PrintCompilation2) {
  1853   if (PrintCompilation && PrintCompilation2) {
  1854     tty->print("%7d ", (int) tty->time_stamp().milliseconds());  // print timestamp
  1854     tty->print("%7d ", (int) tty->time_stamp().milliseconds());  // print timestamp
  1855     tty->print("%4d ", compile_id);    // print compilation number
  1855     tty->print("%4d ", compile_id);    // print compilation number
  1856     tty->print("%s ", (is_osr ? "%" : " "));
  1856     tty->print("%s ", (is_osr ? "%" : " "));
  1857     int code_size = (task->code() == NULL) ? 0 : task->code()->total_size();
  1857     if (task->code() != NULL) {
  1858     tty->print_cr("size: %d time: %d inlined: %d bytes", code_size, (int)time.milliseconds(), task->num_inlined_bytecodes());
  1858       tty->print("size: %d(%d) ", task->code()->total_size(), task->code()->insts_size());
       
  1859     }
       
  1860     tty->print_cr("time: %d inlined: %d bytes", (int)time.milliseconds(), task->num_inlined_bytecodes());
  1859   }
  1861   }
  1860 
  1862 
  1861   if (PrintCodeCacheOnCompilation)
  1863   if (PrintCodeCacheOnCompilation)
  1862     codecache_print(/* detailed= */ false);
  1864     codecache_print(/* detailed= */ false);
  1863 
  1865