comparison src/share/vm/compiler/compileBroker.cpp @ 10278:6f3fd5150b67

6934604: enable parts of EliminateAutoBox by default Summary: Resurrected autobox elimination code and enabled part of it by default. Reviewed-by: roland, twisti
author kvn
date Wed, 08 May 2013 15:08:01 -0700
parents e4e131b15d5c
children 813f26e34135 d2907f74462e
comparison
equal deleted inserted replaced
10277:aabf54ccedb1 10278:6f3fd5150b67
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