comparison src/share/vm/compiler/compileBroker.cpp @ 4122:cc81b9c09bbb

7112478: after 7105605 JRuby bench_define_method_methods.rb fails with NPE Summary: Fixed several EA issues with Connection Graph construction. Reviewed-by: never, twisti
author kvn
date Mon, 28 Nov 2011 15:46:31 -0800
parents 670a74b863fc
children 04b9a2566eec 20334ed5ed3c de268c8a8075
comparison
equal deleted inserted replaced
4121:db2e64ca2d5a 4122:cc81b9c09bbb
1746 if (PrintCompilation && PrintCompilation2) { 1746 if (PrintCompilation && PrintCompilation2) {
1747 tty->print("%7d ", (int) tty->time_stamp().milliseconds()); // print timestamp 1747 tty->print("%7d ", (int) tty->time_stamp().milliseconds()); // print timestamp
1748 tty->print("%4d ", compile_id); // print compilation number 1748 tty->print("%4d ", compile_id); // print compilation number
1749 tty->print("%s ", (is_osr ? "%" : " ")); 1749 tty->print("%s ", (is_osr ? "%" : " "));
1750 int code_size = (task->code() == NULL) ? 0 : task->code()->total_size(); 1750 int code_size = (task->code() == NULL) ? 0 : task->code()->total_size();
1751 tty->print_cr("size: %d time: %d inlined: %d bytes", code_size, time.milliseconds(), task->num_inlined_bytecodes()); 1751 tty->print_cr("size: %d time: %d inlined: %d bytes", code_size, (int)time.milliseconds(), task->num_inlined_bytecodes());
1752 } 1752 }
1753 1753
1754 if (compilable == ciEnv::MethodCompilable_never) { 1754 if (compilable == ciEnv::MethodCompilable_never) {
1755 if (is_osr) { 1755 if (is_osr) {
1756 method->set_not_osr_compilable(); 1756 method->set_not_osr_compilable();