1 /*
   2  * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "ci/ciReplay.hpp"
  27 #include "classfile/systemDictionary.hpp"
  28 #include "classfile/vmSymbols.hpp"
  29 #include "compiler/compileBroker.hpp"
  30 #include "compiler/compileLog.hpp"
  31 #include "interpreter/linkResolver.hpp"
  32 #include "oops/objArrayKlass.hpp"
  33 #include "opto/callGenerator.hpp"
  34 #include "opto/parse.hpp"
  35 #include "runtime/handles.inline.hpp"
  36 #include "utilities/events.hpp"
  37 
  38 //=============================================================================
  39 //------------------------------InlineTree-------------------------------------
  40 InlineTree::InlineTree(Compile* c,
  41                        const InlineTree *caller_tree, ciMethod* callee,
  42                        JVMState* caller_jvms, int caller_bci,
  43                        float site_invoke_ratio, int max_inline_level) :
  44   C(c),
  45   _caller_jvms(caller_jvms),
  46   _caller_tree((InlineTree*) caller_tree),
  47   _method(callee),
  48   _site_invoke_ratio(site_invoke_ratio),
  49   _max_inline_level(max_inline_level),
  50   _count_inline_bcs(method()->code_size_for_inlining()),
  51   _subtrees(c->comp_arena(), 2, 0, NULL),
  52   _msg(NULL)
  53 {
  54 #ifndef PRODUCT
  55   _count_inlines = 0;
  56   _forced_inline = false;
  57 #endif
  58   if (_caller_jvms != NULL) {
  59     // Keep a private copy of the caller_jvms:
  60     _caller_jvms = new (C) JVMState(caller_jvms->method(), caller_tree->caller_jvms());
  61     _caller_jvms->set_bci(caller_jvms->bci());
  62     assert(!caller_jvms->should_reexecute(), "there should be no reexecute bytecode with inlining");
  63   }
  64   assert(_caller_jvms->same_calls_as(caller_jvms), "consistent JVMS");
  65   assert((caller_tree == NULL ? 0 : caller_tree->stack_depth() + 1) == stack_depth(), "correct (redundant) depth parameter");
  66   assert(caller_bci == this->caller_bci(), "correct (redundant) bci parameter");
  67   // Update hierarchical counts, count_inline_bcs() and count_inlines()
  68   InlineTree *caller = (InlineTree *)caller_tree;
  69   for( ; caller != NULL; caller = ((InlineTree *)(caller->caller_tree())) ) {
  70     caller->_count_inline_bcs += count_inline_bcs();
  71     NOT_PRODUCT(caller->_count_inlines++;)
  72   }
  73 }
  74 
  75 /**
  76  *  Return true when EA is ON and a java constructor is called or
  77  *  a super constructor is called from an inlined java constructor.
  78  *  Also return true for boxing methods.
  79  */
  80 static bool is_init_with_ea(ciMethod* callee_method,
  81                             ciMethod* caller_method, Compile* C) {
  82   if (!C->do_escape_analysis() || !EliminateAllocations) {
  83     return false; // EA is off
  84   }
  85   if (callee_method->is_initializer()) {
  86     return true; // constuctor
  87   }
  88   if (caller_method->is_initializer() &&
  89       caller_method != C->method() &&
  90       caller_method->holder()->is_subclass_of(callee_method->holder())) {
  91     return true; // super constructor is called from inlined constructor
  92   }
  93   if (C->eliminate_boxing() && callee_method->is_boxing_method()) {
  94     return true;
  95   }
  96   return false;
  97 }
  98 
  99 /**
 100  *  Force inlining unboxing accessor.
 101  */
 102 static bool is_unboxing_method(ciMethod* callee_method, Compile* C) {
 103   return C->eliminate_boxing() && callee_method->is_unboxing_method();
 104 }
 105 
 106 // positive filter: should callee be inlined?
 107 bool InlineTree::should_inline(ciMethod* callee_method, ciMethod* caller_method,
 108                                int caller_bci, ciCallProfile& profile,
 109                                WarmCallInfo* wci_result) {
 110   // Allows targeted inlining
 111   if (C->directive()->should_inline(callee_method)) {
 112     *wci_result = *(WarmCallInfo::always_hot());
 113     if (C->print_inlining() && Verbose) {
 114       CompileTask::print_inline_indent(inline_level());
 115       tty->print_cr("Inlined method is hot: ");
 116     }
 117     set_msg("force inline by CompileCommand");
 118     _forced_inline = true;
 119     return true;
 120   }
 121 
 122   if (callee_method->force_inline()) {
 123       set_msg("force inline by annotation");
 124       _forced_inline = true;
 125       return true;
 126   }
 127 
 128 #ifndef PRODUCT
 129   int inline_depth = inline_level()+1;
 130   if (ciReplay::should_inline(C->replay_inline_data(), callee_method, caller_bci, inline_depth)) {
 131     set_msg("force inline by ciReplay");
 132     _forced_inline = true;
 133     return true;
 134   }
 135 #endif
 136 
 137   int size = callee_method->code_size_for_inlining();
 138 
 139   // Check for too many throws (and not too huge)
 140   if(callee_method->interpreter_throwout_count() > InlineThrowCount &&
 141      size < InlineThrowMaxSize ) {
 142     wci_result->set_profit(wci_result->profit() * 100);
 143     if (C->print_inlining() && Verbose) {
 144       CompileTask::print_inline_indent(inline_level());
 145       tty->print_cr("Inlined method with many throws (throws=%d):", callee_method->interpreter_throwout_count());
 146     }
 147     set_msg("many throws");
 148     return true;
 149   }
 150 
 151   int default_max_inline_size = C->max_inline_size();
 152   int inline_small_code_size  = InlineSmallCode / 4;
 153   int max_inline_size         = default_max_inline_size;
 154 
 155   int call_site_count  = method()->scale_count(profile.count());
 156   int invoke_count     = method()->interpreter_invocation_count();
 157 
 158   assert(invoke_count != 0, "require invocation count greater than zero");
 159   int freq = call_site_count / invoke_count;
 160 
 161   // bump the max size if the call is frequent
 162   if ((freq >= InlineFrequencyRatio) ||
 163       (call_site_count >= InlineFrequencyCount) ||
 164       is_unboxing_method(callee_method, C) ||
 165       is_init_with_ea(callee_method, caller_method, C)) {
 166 
 167     max_inline_size = C->freq_inline_size();
 168     if (size <= max_inline_size && TraceFrequencyInlining) {
 169       CompileTask::print_inline_indent(inline_level());
 170       tty->print_cr("Inlined frequent method (freq=%d count=%d):", freq, call_site_count);
 171       CompileTask::print_inline_indent(inline_level());
 172       callee_method->print();
 173       tty->cr();
 174     }
 175   } else {
 176     // Not hot.  Check for medium-sized pre-existing nmethod at cold sites.
 177     if (callee_method->has_compiled_code() &&
 178         callee_method->instructions_size() > inline_small_code_size) {
 179       set_msg("already compiled into a medium method");
 180       return false;
 181     }
 182   }
 183   if (size > max_inline_size) {
 184     if (max_inline_size > default_max_inline_size) {
 185       set_msg("hot method too big");
 186     } else {
 187       set_msg("too big");
 188     }
 189     return false;
 190   }
 191   return true;
 192 }
 193 
 194 
 195 // negative filter: should callee NOT be inlined?
 196 bool InlineTree::should_not_inline(ciMethod *callee_method,
 197                                    ciMethod* caller_method,
 198                                    JVMState* jvms,
 199                                    WarmCallInfo* wci_result) {
 200 
 201   const char* fail_msg = NULL;
 202 
 203   // First check all inlining restrictions which are required for correctness
 204   if ( callee_method->is_abstract()) {
 205     fail_msg = "abstract method"; // // note: we allow ik->is_abstract()
 206   } else if (!callee_method->holder()->is_initialized()) {
 207     fail_msg = "method holder not initialized";
 208   } else if ( callee_method->is_native()) {
 209     fail_msg = "native method";
 210   } else if ( callee_method->dont_inline()) {
 211     fail_msg = "don't inline by annotation";
 212   }
 213 
 214   // one more inlining restriction
 215   if (fail_msg == NULL && callee_method->has_unloaded_classes_in_signature()) {
 216     fail_msg = "unloaded signature classes";
 217   }
 218 
 219   if (fail_msg != NULL) {
 220     set_msg(fail_msg);
 221     return true;
 222   }
 223 
 224   // ignore heuristic controls on inlining
 225   if (C->directive()->should_inline(callee_method)) {
 226     set_msg("force inline by CompileCommand");
 227     return false;
 228   }
 229 
 230   if (C->directive()->should_not_inline(callee_method)) {
 231     set_msg("disallowed by CompileCommand");
 232     return true;
 233   }
 234 
 235 #ifndef PRODUCT
 236   int caller_bci = jvms->bci();
 237   int inline_depth = inline_level()+1;
 238   if (ciReplay::should_inline(C->replay_inline_data(), callee_method, caller_bci, inline_depth)) {
 239     set_msg("force inline by ciReplay");
 240     return false;
 241   }
 242 
 243   if (ciReplay::should_not_inline(C->replay_inline_data(), callee_method, caller_bci, inline_depth)) {
 244     set_msg("disallowed by ciReplay");
 245     return true;
 246   }
 247 
 248   if (ciReplay::should_not_inline(callee_method)) {
 249     set_msg("disallowed by ciReplay");
 250     return true;
 251   }
 252 #endif
 253 
 254   if (callee_method->force_inline()) {
 255     set_msg("force inline by annotation");
 256     return false;
 257   }
 258 
 259   // Now perform checks which are heuristic
 260 
 261   if (is_unboxing_method(callee_method, C)) {
 262     // Inline unboxing methods.
 263     return false;
 264   }
 265 
 266   if (callee_method->has_compiled_code() &&
 267       callee_method->instructions_size() > InlineSmallCode) {
 268     set_msg("already compiled into a big method");
 269     return true;
 270   }
 271 
 272   // don't inline exception code unless the top method belongs to an
 273   // exception class
 274   if (caller_tree() != NULL &&
 275       callee_method->holder()->is_subclass_of(C->env()->Throwable_klass())) {
 276     const InlineTree *top = this;
 277     while (top->caller_tree() != NULL) top = top->caller_tree();
 278     ciInstanceKlass* k = top->method()->holder();
 279     if (!k->is_subclass_of(C->env()->Throwable_klass())) {
 280       set_msg("exception method");
 281       return true;
 282     }
 283   }
 284 
 285   // use frequency-based objections only for non-trivial methods
 286   if (callee_method->code_size() <= MaxTrivialSize) {
 287     return false;
 288   }
 289 
 290   // don't use counts with -Xcomp or CTW
 291   if (UseInterpreter && !CompileTheWorld) {
 292 
 293     if (!callee_method->has_compiled_code() &&
 294         !callee_method->was_executed_more_than(0)) {
 295       set_msg("never executed");
 296       return true;
 297     }
 298 
 299     if (is_init_with_ea(callee_method, caller_method, C)) {
 300       // Escape Analysis: inline all executed constructors
 301       return false;
 302     } else {
 303       intx counter_high_value;
 304       // Tiered compilation uses a different "high value" than non-tiered compilation.
 305       // Determine the right value to use.
 306       if (TieredCompilation) {
 307         counter_high_value = InvocationCounter::count_limit / 2;
 308       } else {
 309         counter_high_value = CompileThreshold / 2;
 310       }
 311       if (!callee_method->was_executed_more_than(MIN2(MinInliningThreshold, counter_high_value))) {
 312         set_msg("executed < MinInliningThreshold times");
 313         return true;
 314       }
 315     }
 316   }
 317 
 318   return false;
 319 }
 320 
 321 //-----------------------------try_to_inline-----------------------------------
 322 // return true if ok
 323 // Relocated from "InliningClosure::try_to_inline"
 324 bool InlineTree::try_to_inline(ciMethod* callee_method, ciMethod* caller_method,
 325                                int caller_bci, JVMState* jvms, ciCallProfile& profile,
 326                                WarmCallInfo* wci_result, bool& should_delay) {
 327 
 328   if (ClipInlining && (int)count_inline_bcs() >= DesiredMethodLimit) {
 329     if (!callee_method->force_inline() || !IncrementalInline) {
 330       set_msg("size > DesiredMethodLimit");
 331       return false;
 332     } else if (!C->inlining_incrementally()) {
 333       should_delay = true;
 334     }
 335   }
 336 
 337   _forced_inline = false; // Reset
 338   if (!should_inline(callee_method, caller_method, caller_bci, profile,
 339                      wci_result)) {
 340     return false;
 341   }
 342   if (should_not_inline(callee_method, caller_method, jvms, wci_result)) {
 343     return false;
 344   }
 345 
 346   if (InlineAccessors && callee_method->is_accessor()) {
 347     // accessor methods are not subject to any of the following limits.
 348     set_msg("accessor");
 349     return true;
 350   }
 351 
 352   // suppress a few checks for accessors and trivial methods
 353   if (callee_method->code_size() > MaxTrivialSize) {
 354 
 355     // don't inline into giant methods
 356     if (C->over_inlining_cutoff()) {
 357       if ((!callee_method->force_inline() && !caller_method->is_compiled_lambda_form())
 358           || !IncrementalInline) {
 359         set_msg("NodeCountInliningCutoff");
 360         return false;
 361       } else {
 362         should_delay = true;
 363       }
 364     }
 365 
 366     if ((!UseInterpreter || CompileTheWorld) &&
 367         is_init_with_ea(callee_method, caller_method, C)) {
 368       // Escape Analysis stress testing when running Xcomp or CTW:
 369       // inline constructors even if they are not reached.
 370     } else if (forced_inline()) {
 371       // Inlining was forced by CompilerOracle, ciReplay or annotation
 372     } else if (profile.count() == 0) {
 373       // don't inline unreached call sites
 374        set_msg("call site not reached");
 375        return false;
 376     }
 377   }
 378 
 379   if (!C->do_inlining() && InlineAccessors) {
 380     set_msg("not an accessor");
 381     return false;
 382   }
 383 
 384   // Limit inlining depth in case inlining is forced or
 385   // _max_inline_level was increased to compensate for lambda forms.
 386   if (inline_level() > MaxForceInlineLevel) {
 387     set_msg("MaxForceInlineLevel");
 388     return false;
 389   }
 390   if (inline_level() > _max_inline_level) {
 391     if (!callee_method->force_inline() || !IncrementalInline) {
 392       set_msg("inlining too deep");
 393       return false;
 394     } else if (!C->inlining_incrementally()) {
 395       should_delay = true;
 396     }
 397   }
 398 
 399   // detect direct and indirect recursive inlining
 400   {
 401     // count the current method and the callee
 402     const bool is_compiled_lambda_form = callee_method->is_compiled_lambda_form();
 403     int inline_level = 0;
 404     if (!is_compiled_lambda_form) {
 405       if (method() == callee_method) {
 406         inline_level++;
 407       }
 408     }
 409     // count callers of current method and callee
 410     Node* callee_argument0 = is_compiled_lambda_form ? jvms->map()->argument(jvms, 0)->uncast() : NULL;
 411     for (JVMState* j = jvms->caller(); j != NULL && j->has_method(); j = j->caller()) {
 412       if (j->method() == callee_method) {
 413         if (is_compiled_lambda_form) {
 414           // Since compiled lambda forms are heavily reused we allow recursive inlining.  If it is truly
 415           // a recursion (using the same "receiver") we limit inlining otherwise we can easily blow the
 416           // compiler stack.
 417           Node* caller_argument0 = j->map()->argument(j, 0)->uncast();
 418           if (caller_argument0 == callee_argument0) {
 419             inline_level++;
 420           }
 421         } else {
 422           inline_level++;
 423         }
 424       }
 425     }
 426     if (inline_level > MaxRecursiveInlineLevel) {
 427       set_msg("recursive inlining is too deep");
 428       return false;
 429     }
 430   }
 431 
 432   int size = callee_method->code_size_for_inlining();
 433 
 434   if (ClipInlining && (int)count_inline_bcs() + size >= DesiredMethodLimit) {
 435     if (!callee_method->force_inline() || !IncrementalInline) {
 436       set_msg("size > DesiredMethodLimit");
 437       return false;
 438     } else if (!C->inlining_incrementally()) {
 439       should_delay = true;
 440     }
 441   }
 442 
 443   // ok, inline this method
 444   return true;
 445 }
 446 
 447 //------------------------------pass_initial_checks----------------------------
 448 bool pass_initial_checks(ciMethod* caller_method, int caller_bci, ciMethod* callee_method) {
 449   ciInstanceKlass *callee_holder = callee_method ? callee_method->holder() : NULL;
 450   // Check if a callee_method was suggested
 451   if( callee_method == NULL )            return false;
 452   // Check if klass of callee_method is loaded
 453   if( !callee_holder->is_loaded() )      return false;
 454   if( !callee_holder->is_initialized() ) return false;
 455   if( !UseInterpreter || CompileTheWorld /* running Xcomp or CTW */ ) {
 456     // Checks that constant pool's call site has been visited
 457     // stricter than callee_holder->is_initialized()
 458     ciBytecodeStream iter(caller_method);
 459     iter.force_bci(caller_bci);
 460     Bytecodes::Code call_bc = iter.cur_bc();
 461     // An invokedynamic instruction does not have a klass.
 462     if (call_bc != Bytecodes::_invokedynamic) {
 463       int index = iter.get_index_u2_cpcache();
 464       if (!caller_method->is_klass_loaded(index, true)) {
 465         return false;
 466       }
 467       // Try to do constant pool resolution if running Xcomp
 468       if( !caller_method->check_call(index, call_bc == Bytecodes::_invokestatic) ) {
 469         return false;
 470       }
 471     }
 472   }
 473   return true;
 474 }
 475 
 476 //------------------------------check_can_parse--------------------------------
 477 const char* InlineTree::check_can_parse(ciMethod* callee) {
 478   // Certain methods cannot be parsed at all:
 479   if ( callee->is_native())                     return "native method";
 480   if ( callee->is_abstract())                   return "abstract method";
 481   if (!callee->can_be_compiled())               return "not compilable (disabled)";
 482   if (!callee->has_balanced_monitors())         return "not compilable (unbalanced monitors)";
 483   if ( callee->get_flow_analysis()->failing())  return "not compilable (flow analysis failed)";
 484   return NULL;
 485 }
 486 
 487 //------------------------------print_inlining---------------------------------
 488 void InlineTree::print_inlining(ciMethod* callee_method, int caller_bci,
 489                                 ciMethod* caller_method, bool success) const {
 490   const char* inline_msg = msg();
 491   assert(inline_msg != NULL, "just checking");
 492   if (C->log() != NULL) {
 493     if (success) {
 494       C->log()->inline_success(inline_msg);
 495     } else {
 496       C->log()->inline_fail(inline_msg);
 497     }
 498   }
 499   CompileTask::print_inlining_ul(callee_method, inline_level(),
 500                                                caller_bci, inline_msg);
 501   if (C->print_inlining()) {
 502     C->print_inlining(callee_method, inline_level(), caller_bci, inline_msg);
 503     if (callee_method == NULL) tty->print(" callee not monotonic or profiled");
 504     if (Verbose && callee_method) {
 505       const InlineTree *top = this;
 506       while( top->caller_tree() != NULL ) { top = top->caller_tree(); }
 507       //tty->print("  bcs: %d+%d  invoked: %d", top->count_inline_bcs(), callee_method->code_size(), callee_method->interpreter_invocation_count());
 508     }
 509   }
 510 #if INCLUDE_TRACE
 511   EventCompilerInlining event;
 512   if (event.should_commit()) {
 513     event.set_compileId(C->compile_id());
 514     event.set_message(inline_msg);
 515     event.set_succeeded(success);
 516     event.set_bci(caller_bci);
 517     event.set_caller(caller_method->get_Method());
 518     event.set_callee(callee_method->to_trace_struct());
 519     event.commit();
 520   }
 521 #endif // INCLUDE_TRACE
 522 }
 523 
 524 //------------------------------ok_to_inline-----------------------------------
 525 WarmCallInfo* InlineTree::ok_to_inline(ciMethod* callee_method, JVMState* jvms, ciCallProfile& profile, WarmCallInfo* initial_wci, bool& should_delay) {
 526   assert(callee_method != NULL, "caller checks for optimized virtual!");
 527   assert(!should_delay, "should be initialized to false");
 528 #ifdef ASSERT
 529   // Make sure the incoming jvms has the same information content as me.
 530   // This means that we can eventually make this whole class AllStatic.
 531   if (jvms->caller() == NULL) {
 532     assert(_caller_jvms == NULL, "redundant instance state");
 533   } else {
 534     assert(_caller_jvms->same_calls_as(jvms->caller()), "redundant instance state");
 535   }
 536   assert(_method == jvms->method(), "redundant instance state");
 537 #endif
 538   int         caller_bci    = jvms->bci();
 539   ciMethod*   caller_method = jvms->method();
 540 
 541   // Do some initial checks.
 542   if (!pass_initial_checks(caller_method, caller_bci, callee_method)) {
 543     set_msg("failed initial checks");
 544     print_inlining(callee_method, caller_bci, caller_method, false /* !success */);
 545     return NULL;
 546   }
 547 
 548   // Do some parse checks.
 549   set_msg(check_can_parse(callee_method));
 550   if (msg() != NULL) {
 551     print_inlining(callee_method, caller_bci, caller_method, false /* !success */);
 552     return NULL;
 553   }
 554 
 555   // Check if inlining policy says no.
 556   WarmCallInfo wci = *(initial_wci);
 557   bool success = try_to_inline(callee_method, caller_method, caller_bci,
 558                                jvms, profile, &wci, should_delay);
 559 
 560 #ifndef PRODUCT
 561   if (InlineWarmCalls && (PrintOpto || C->print_inlining())) {
 562     bool cold = wci.is_cold();
 563     bool hot  = !cold && wci.is_hot();
 564     bool old_cold = !success;
 565     if (old_cold != cold || (Verbose || WizardMode)) {
 566       if (msg() == NULL) {
 567         set_msg("OK");
 568       }
 569       tty->print("   OldInlining= %4s : %s\n           WCI=",
 570                  old_cold ? "cold" : "hot", msg());
 571       wci.print();
 572     }
 573   }
 574 #endif
 575   if (success) {
 576     wci = *(WarmCallInfo::always_hot());
 577   } else {
 578     wci = *(WarmCallInfo::always_cold());
 579   }
 580 
 581   if (!InlineWarmCalls) {
 582     if (!wci.is_cold() && !wci.is_hot()) {
 583       // Do not inline the warm calls.
 584       wci = *(WarmCallInfo::always_cold());
 585     }
 586   }
 587 
 588   if (!wci.is_cold()) {
 589     // Inline!
 590     if (msg() == NULL) {
 591       set_msg("inline (hot)");
 592     }
 593     print_inlining(callee_method, caller_bci, caller_method, true /* success */);
 594     build_inline_tree_for_callee(callee_method, jvms, caller_bci);
 595     if (InlineWarmCalls && !wci.is_hot()) {
 596       return new (C) WarmCallInfo(wci);  // copy to heap
 597     }
 598     return WarmCallInfo::always_hot();
 599   }
 600 
 601   // Do not inline
 602   if (msg() == NULL) {
 603     set_msg("too cold to inline");
 604   }
 605   print_inlining(callee_method, caller_bci, caller_method, false /* !success */ );
 606   return NULL;
 607 }
 608 
 609 //------------------------------compute_callee_frequency-----------------------
 610 float InlineTree::compute_callee_frequency( int caller_bci ) const {
 611   int count  = method()->interpreter_call_site_count(caller_bci);
 612   int invcnt = method()->interpreter_invocation_count();
 613   float freq = (float)count/(float)invcnt;
 614   // Call-site count / interpreter invocation count, scaled recursively.
 615   // Always between 0.0 and 1.0.  Represents the percentage of the method's
 616   // total execution time used at this call site.
 617 
 618   return freq;
 619 }
 620 
 621 //------------------------------build_inline_tree_for_callee-------------------
 622 InlineTree *InlineTree::build_inline_tree_for_callee( ciMethod* callee_method, JVMState* caller_jvms, int caller_bci) {
 623   float recur_frequency = _site_invoke_ratio * compute_callee_frequency(caller_bci);
 624   // Attempt inlining.
 625   InlineTree* old_ilt = callee_at(caller_bci, callee_method);
 626   if (old_ilt != NULL) {
 627     return old_ilt;
 628   }
 629   int max_inline_level_adjust = 0;
 630   if (caller_jvms->method() != NULL) {
 631     if (caller_jvms->method()->is_compiled_lambda_form()) {
 632       max_inline_level_adjust += 1;  // don't count actions in MH or indy adapter frames
 633     } else if (callee_method->is_method_handle_intrinsic() ||
 634                callee_method->is_compiled_lambda_form()) {
 635       max_inline_level_adjust += 1;  // don't count method handle calls from java.lang.invoke implementation
 636     }
 637     if (max_inline_level_adjust != 0 && C->print_inlining() && (Verbose || WizardMode)) {
 638       CompileTask::print_inline_indent(inline_level());
 639       tty->print_cr(" \\-> discounting inline depth");
 640     }
 641     if (max_inline_level_adjust != 0 && C->log()) {
 642       int id1 = C->log()->identify(caller_jvms->method());
 643       int id2 = C->log()->identify(callee_method);
 644       C->log()->elem("inline_level_discount caller='%d' callee='%d'", id1, id2);
 645     }
 646   }
 647   // Allocate in the comp_arena to make sure the InlineTree is live when dumping a replay compilation file
 648   InlineTree* ilt = new (C->comp_arena()) InlineTree(C, this, callee_method, caller_jvms, caller_bci, recur_frequency, _max_inline_level + max_inline_level_adjust);
 649   _subtrees.append(ilt);
 650 
 651   NOT_PRODUCT( _count_inlines += 1; )
 652 
 653   return ilt;
 654 }
 655 
 656 
 657 //---------------------------------------callee_at-----------------------------
 658 InlineTree *InlineTree::callee_at(int bci, ciMethod* callee) const {
 659   for (int i = 0; i < _subtrees.length(); i++) {
 660     InlineTree* sub = _subtrees.at(i);
 661     if (sub->caller_bci() == bci && callee == sub->method()) {
 662       return sub;
 663     }
 664   }
 665   return NULL;
 666 }
 667 
 668 
 669 //------------------------------build_inline_tree_root-------------------------
 670 InlineTree *InlineTree::build_inline_tree_root() {
 671   Compile* C = Compile::current();
 672 
 673   // Root of inline tree
 674   InlineTree* ilt = new InlineTree(C, NULL, C->method(), NULL, -1, 1.0F, MaxInlineLevel);
 675 
 676   return ilt;
 677 }
 678 
 679 
 680 //-------------------------find_subtree_from_root-----------------------------
 681 // Given a jvms, which determines a call chain from the root method,
 682 // find the corresponding inline tree.
 683 // Note: This method will be removed or replaced as InlineTree goes away.
 684 InlineTree* InlineTree::find_subtree_from_root(InlineTree* root, JVMState* jvms, ciMethod* callee) {
 685   InlineTree* iltp = root;
 686   uint depth = jvms && jvms->has_method() ? jvms->depth() : 0;
 687   for (uint d = 1; d <= depth; d++) {
 688     JVMState* jvmsp  = jvms->of_depth(d);
 689     // Select the corresponding subtree for this bci.
 690     assert(jvmsp->method() == iltp->method(), "tree still in sync");
 691     ciMethod* d_callee = (d == depth) ? callee : jvms->of_depth(d+1)->method();
 692     InlineTree* sub = iltp->callee_at(jvmsp->bci(), d_callee);
 693     if (sub == NULL) {
 694       if (d == depth) {
 695         sub = iltp->build_inline_tree_for_callee(d_callee, jvmsp, jvmsp->bci());
 696       }
 697       guarantee(sub != NULL, "should be a sub-ilt here");
 698       return sub;
 699     }
 700     iltp = sub;
 701   }
 702   return iltp;
 703 }
 704 
 705 // Count number of nodes in this subtree
 706 int InlineTree::count() const {
 707   int result = 1;
 708   for (int i = 0 ; i < _subtrees.length(); i++) {
 709     result += _subtrees.at(i)->count();
 710   }
 711   return result;
 712 }
 713 
 714 void InlineTree::dump_replay_data(outputStream* out) {
 715   out->print(" %d %d ", inline_level(), caller_bci());
 716   method()->dump_name_as_ascii(out);
 717   for (int i = 0 ; i < _subtrees.length(); i++) {
 718     _subtrees.at(i)->dump_replay_data(out);
 719   }
 720 }
 721 
 722 
 723 #ifndef PRODUCT
 724 void InlineTree::print_impl(outputStream* st, int indent) const {
 725   for (int i = 0; i < indent; i++) st->print(" ");
 726   st->print(" @ %d", caller_bci());
 727   method()->print_short_name(st);
 728   st->cr();
 729 
 730   for (int i = 0 ; i < _subtrees.length(); i++) {
 731     _subtrees.at(i)->print_impl(st, indent + 2);
 732   }
 733 }
 734 
 735 void InlineTree::print_value_on(outputStream* st) const {
 736   print_impl(st, 2);
 737 }
 738 #endif