comparison src/share/vm/opto/bytecodeInfo.cpp @ 8883:b9a918201d47

Merge with hsx25
author Gilles Duboscq <duboscq@ssw.jku.at>
date Sat, 06 Apr 2013 20:04:06 +0200
parents b8f261ba79c6 80208f353616
children 836a62f43af9
comparison
equal deleted inserted replaced
8660:d47b52b0ff68 8883:b9a918201d47
155 tty->cr(); 155 tty->cr();
156 } 156 }
157 } else { 157 } else {
158 // Not hot. Check for medium-sized pre-existing nmethod at cold sites. 158 // Not hot. Check for medium-sized pre-existing nmethod at cold sites.
159 if (callee_method->has_compiled_code() && 159 if (callee_method->has_compiled_code() &&
160 callee_method->instructions_size() > inline_small_code_size) 160 callee_method->instructions_size() > inline_small_code_size) {
161 set_msg("already compiled into a medium method"); 161 set_msg("already compiled into a medium method");
162 return false; 162 return false;
163 }
163 } 164 }
164 if (size > max_inline_size) { 165 if (size > max_inline_size) {
165 if (max_inline_size > default_max_inline_size) { 166 if (max_inline_size > default_max_inline_size) {
166 set_msg("hot method too big"); 167 set_msg("hot method too big");
167 } else { 168 } else {