hotspot/src/share/vm/opto/bytecodeInfo.cpp
changeset 21582 6c76cdd733fe
parent 20689 bc5805c29150
child 22234 da823d78ad65
equal deleted inserted replaced
21581:73584c201e2d 21582:6c76cdd733fe
   387   if (!C->do_inlining() && InlineAccessors) {
   387   if (!C->do_inlining() && InlineAccessors) {
   388     set_msg("not an accessor");
   388     set_msg("not an accessor");
   389     return false;
   389     return false;
   390   }
   390   }
   391   if (inline_level() > _max_inline_level) {
   391   if (inline_level() > _max_inline_level) {
       
   392     if (callee_method->force_inline() && inline_level() > MaxForceInlineLevel) {
       
   393       set_msg("MaxForceInlineLevel");
       
   394       return false;
       
   395     }
   392     if (!callee_method->force_inline() || !IncrementalInline) {
   396     if (!callee_method->force_inline() || !IncrementalInline) {
   393       set_msg("inlining too deep");
   397       set_msg("inlining too deep");
   394       return false;
   398       return false;
   395     } else if (!C->inlining_incrementally()) {
   399     } else if (!C->inlining_incrementally()) {
   396       should_delay = true;
   400       should_delay = true;