src/share/vm/opto/bytecodeInfo.cpp

Fri, 24 Jan 2014 15:26:56 +0400

author
shade
date
Fri, 24 Jan 2014 15:26:56 +0400
changeset 6314
1419657ed891
parent 6217
849eb7bfceac
child 6709
73c839dda17e
permissions
-rw-r--r--

8032490: Remove -XX:+-UseOldInlining
Summary: Move the option to obsolete options list, purge the redundant compiler code.
Reviewed-by: kvn, jrose

     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  */
    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"
    37 //=============================================================================
    38 //------------------------------InlineTree-------------------------------------
    39 InlineTree::InlineTree(Compile* c,
    40                        const InlineTree *caller_tree, ciMethod* callee,
    41                        JVMState* caller_jvms, int caller_bci,
    42                        float site_invoke_ratio, int max_inline_level) :
    43   C(c),
    44   _caller_jvms(caller_jvms),
    45   _caller_tree((InlineTree*) caller_tree),
    46   _method(callee),
    47   _site_invoke_ratio(site_invoke_ratio),
    48   _max_inline_level(max_inline_level),
    49   _count_inline_bcs(method()->code_size_for_inlining()),
    50   _subtrees(c->comp_arena(), 2, 0, NULL),
    51   _msg(NULL)
    52 {
    53 #ifndef PRODUCT
    54   _count_inlines = 0;
    55   _forced_inline = false;
    56 #endif
    57   if (_caller_jvms != NULL) {
    58     // Keep a private copy of the caller_jvms:
    59     _caller_jvms = new (C) JVMState(caller_jvms->method(), caller_tree->caller_jvms());
    60     _caller_jvms->set_bci(caller_jvms->bci());
    61     assert(!caller_jvms->should_reexecute(), "there should be no reexecute bytecode with inlining");
    62   }
    63   assert(_caller_jvms->same_calls_as(caller_jvms), "consistent JVMS");
    64   assert((caller_tree == NULL ? 0 : caller_tree->stack_depth() + 1) == stack_depth(), "correct (redundant) depth parameter");
    65   assert(caller_bci == this->caller_bci(), "correct (redundant) bci parameter");
    66   // Update hierarchical counts, count_inline_bcs() and count_inlines()
    67   InlineTree *caller = (InlineTree *)caller_tree;
    68   for( ; caller != NULL; caller = ((InlineTree *)(caller->caller_tree())) ) {
    69     caller->_count_inline_bcs += count_inline_bcs();
    70     NOT_PRODUCT(caller->_count_inlines++;)
    71   }
    72 }
    74 /**
    75  *  Return true when EA is ON and a java constructor is called or
    76  *  a super constructor is called from an inlined java constructor.
    77  *  Also return true for boxing methods.
    78  */
    79 static bool is_init_with_ea(ciMethod* callee_method,
    80                             ciMethod* caller_method, Compile* C) {
    81   if (!C->do_escape_analysis() || !EliminateAllocations) {
    82     return false; // EA is off
    83   }
    84   if (callee_method->is_initializer()) {
    85     return true; // constuctor
    86   }
    87   if (caller_method->is_initializer() &&
    88       caller_method != C->method() &&
    89       caller_method->holder()->is_subclass_of(callee_method->holder())) {
    90     return true; // super constructor is called from inlined constructor
    91   }
    92   if (C->eliminate_boxing() && callee_method->is_boxing_method()) {
    93     return true;
    94   }
    95   return false;
    96 }
    98 /**
    99  *  Force inlining unboxing accessor.
   100  */
   101 static bool is_unboxing_method(ciMethod* callee_method, Compile* C) {
   102   return C->eliminate_boxing() && callee_method->is_unboxing_method();
   103 }
   105 // positive filter: should callee be inlined?
   106 bool InlineTree::should_inline(ciMethod* callee_method, ciMethod* caller_method,
   107                                int caller_bci, ciCallProfile& profile,
   108                                WarmCallInfo* wci_result) {
   109   // Allows targeted inlining
   110   if(callee_method->should_inline()) {
   111     *wci_result = *(WarmCallInfo::always_hot());
   112     if (C->print_inlining() && Verbose) {
   113       CompileTask::print_inline_indent(inline_level());
   114       tty->print_cr("Inlined method is hot: ");
   115     }
   116     set_msg("force inline by CompilerOracle");
   117     _forced_inline = true;
   118     return true;
   119   }
   121 #ifndef PRODUCT
   122   int inline_depth = inline_level()+1;
   123   if (ciReplay::should_inline(C->replay_inline_data(), callee_method, caller_bci, inline_depth)) {
   124     set_msg("force inline by ciReplay");
   125     _forced_inline = true;
   126     return true;
   127   }
   128 #endif
   130   int size = callee_method->code_size_for_inlining();
   132   // Check for too many throws (and not too huge)
   133   if(callee_method->interpreter_throwout_count() > InlineThrowCount &&
   134      size < InlineThrowMaxSize ) {
   135     wci_result->set_profit(wci_result->profit() * 100);
   136     if (C->print_inlining() && Verbose) {
   137       CompileTask::print_inline_indent(inline_level());
   138       tty->print_cr("Inlined method with many throws (throws=%d):", callee_method->interpreter_throwout_count());
   139     }
   140     set_msg("many throws");
   141     return true;
   142   }
   144   int default_max_inline_size = C->max_inline_size();
   145   int inline_small_code_size  = InlineSmallCode / 4;
   146   int max_inline_size         = default_max_inline_size;
   148   int call_site_count  = method()->scale_count(profile.count());
   149   int invoke_count     = method()->interpreter_invocation_count();
   151   assert(invoke_count != 0, "require invocation count greater than zero");
   152   int freq = call_site_count / invoke_count;
   154   // bump the max size if the call is frequent
   155   if ((freq >= InlineFrequencyRatio) ||
   156       (call_site_count >= InlineFrequencyCount) ||
   157       is_unboxing_method(callee_method, C) ||
   158       is_init_with_ea(callee_method, caller_method, C)) {
   160     max_inline_size = C->freq_inline_size();
   161     if (size <= max_inline_size && TraceFrequencyInlining) {
   162       CompileTask::print_inline_indent(inline_level());
   163       tty->print_cr("Inlined frequent method (freq=%d count=%d):", freq, call_site_count);
   164       CompileTask::print_inline_indent(inline_level());
   165       callee_method->print();
   166       tty->cr();
   167     }
   168   } else {
   169     // Not hot.  Check for medium-sized pre-existing nmethod at cold sites.
   170     if (callee_method->has_compiled_code() &&
   171         callee_method->instructions_size() > inline_small_code_size) {
   172       set_msg("already compiled into a medium method");
   173       return false;
   174     }
   175   }
   176   if (size > max_inline_size) {
   177     if (max_inline_size > default_max_inline_size) {
   178       set_msg("hot method too big");
   179     } else {
   180       set_msg("too big");
   181     }
   182     return false;
   183   }
   184   return true;
   185 }
   188 // negative filter: should callee NOT be inlined?
   189 bool InlineTree::should_not_inline(ciMethod *callee_method,
   190                                    ciMethod* caller_method,
   191                                    JVMState* jvms,
   192                                    WarmCallInfo* wci_result) {
   194   const char* fail_msg = NULL;
   196   // First check all inlining restrictions which are required for correctness
   197   if ( callee_method->is_abstract()) {
   198     fail_msg = "abstract method"; // // note: we allow ik->is_abstract()
   199   } else if (!callee_method->holder()->is_initialized()) {
   200     fail_msg = "method holder not initialized";
   201   } else if ( callee_method->is_native()) {
   202     fail_msg = "native method";
   203   } else if ( callee_method->dont_inline()) {
   204     fail_msg = "don't inline by annotation";
   205   }
   207   // one more inlining restriction
   208   if (fail_msg == NULL && callee_method->has_unloaded_classes_in_signature()) {
   209     fail_msg = "unloaded signature classes";
   210   }
   212   if (fail_msg != NULL) {
   213     set_msg(fail_msg);
   214     return true;
   215   }
   217   // ignore heuristic controls on inlining
   218   if (callee_method->should_inline()) {
   219     set_msg("force inline by CompilerOracle");
   220     return false;
   221   }
   223   if (callee_method->should_not_inline()) {
   224     set_msg("disallowed by CompilerOracle");
   225     return true;
   226   }
   228 #ifndef PRODUCT
   229   int caller_bci = jvms->bci();
   230   int inline_depth = inline_level()+1;
   231   if (ciReplay::should_inline(C->replay_inline_data(), callee_method, caller_bci, inline_depth)) {
   232     set_msg("force inline by ciReplay");
   233     return false;
   234   }
   236   if (ciReplay::should_not_inline(C->replay_inline_data(), callee_method, caller_bci, inline_depth)) {
   237     set_msg("disallowed by ciReplay");
   238     return true;
   239   }
   241   if (ciReplay::should_not_inline(callee_method)) {
   242     set_msg("disallowed by ciReplay");
   243     return true;
   244   }
   245 #endif
   247   // Now perform checks which are heuristic
   249   if (is_unboxing_method(callee_method, C)) {
   250     // Inline unboxing methods.
   251     return false;
   252   }
   254   if (!callee_method->force_inline()) {
   255     if (callee_method->has_compiled_code() &&
   256         callee_method->instructions_size() > InlineSmallCode) {
   257       set_msg("already compiled into a big method");
   258       return true;
   259     }
   260   }
   262   // don't inline exception code unless the top method belongs to an
   263   // exception class
   264   if (caller_tree() != NULL &&
   265       callee_method->holder()->is_subclass_of(C->env()->Throwable_klass())) {
   266     const InlineTree *top = this;
   267     while (top->caller_tree() != NULL) top = top->caller_tree();
   268     ciInstanceKlass* k = top->method()->holder();
   269     if (!k->is_subclass_of(C->env()->Throwable_klass())) {
   270       set_msg("exception method");
   271       return true;
   272     }
   273   }
   275   // use frequency-based objections only for non-trivial methods
   276   if (callee_method->code_size() <= MaxTrivialSize) {
   277     return false;
   278   }
   280   // don't use counts with -Xcomp or CTW
   281   if (UseInterpreter && !CompileTheWorld) {
   283     if (!callee_method->has_compiled_code() &&
   284         !callee_method->was_executed_more_than(0)) {
   285       set_msg("never executed");
   286       return true;
   287     }
   289     if (is_init_with_ea(callee_method, caller_method, C)) {
   290       // Escape Analysis: inline all executed constructors
   291       return false;
   292     } else if (!callee_method->was_executed_more_than(MIN2(MinInliningThreshold,
   293                                                            CompileThreshold >> 1))) {
   294       set_msg("executed < MinInliningThreshold times");
   295       return true;
   296     }
   297   }
   299   return false;
   300 }
   302 //-----------------------------try_to_inline-----------------------------------
   303 // return true if ok
   304 // Relocated from "InliningClosure::try_to_inline"
   305 bool InlineTree::try_to_inline(ciMethod* callee_method, ciMethod* caller_method,
   306                                int caller_bci, JVMState* jvms, ciCallProfile& profile,
   307                                WarmCallInfo* wci_result, bool& should_delay) {
   309   if (ClipInlining && (int)count_inline_bcs() >= DesiredMethodLimit) {
   310     if (!callee_method->force_inline() || !IncrementalInline) {
   311       set_msg("size > DesiredMethodLimit");
   312       return false;
   313     } else if (!C->inlining_incrementally()) {
   314       should_delay = true;
   315     }
   316   }
   318   _forced_inline = false; // Reset
   319   if (!should_inline(callee_method, caller_method, caller_bci, profile,
   320                      wci_result)) {
   321     return false;
   322   }
   323   if (should_not_inline(callee_method, caller_method, jvms, wci_result)) {
   324     return false;
   325   }
   327   if (InlineAccessors && callee_method->is_accessor()) {
   328     // accessor methods are not subject to any of the following limits.
   329     set_msg("accessor");
   330     return true;
   331   }
   333   // suppress a few checks for accessors and trivial methods
   334   if (callee_method->code_size() > MaxTrivialSize) {
   336     // don't inline into giant methods
   337     if (C->over_inlining_cutoff()) {
   338       if ((!callee_method->force_inline() && !caller_method->is_compiled_lambda_form())
   339           || !IncrementalInline) {
   340         set_msg("NodeCountInliningCutoff");
   341         return false;
   342       } else {
   343         should_delay = true;
   344       }
   345     }
   347     if ((!UseInterpreter || CompileTheWorld) &&
   348         is_init_with_ea(callee_method, caller_method, C)) {
   349       // Escape Analysis stress testing when running Xcomp or CTW:
   350       // inline constructors even if they are not reached.
   351     } else if (forced_inline()) {
   352       // Inlining was forced by CompilerOracle or ciReplay
   353     } else if (profile.count() == 0) {
   354       // don't inline unreached call sites
   355        set_msg("call site not reached");
   356        return false;
   357     }
   358   }
   360   if (!C->do_inlining() && InlineAccessors) {
   361     set_msg("not an accessor");
   362     return false;
   363   }
   364   if (inline_level() > _max_inline_level) {
   365     if (callee_method->force_inline() && inline_level() > MaxForceInlineLevel) {
   366       set_msg("MaxForceInlineLevel");
   367       return false;
   368     }
   369     if (!callee_method->force_inline() || !IncrementalInline) {
   370       set_msg("inlining too deep");
   371       return false;
   372     } else if (!C->inlining_incrementally()) {
   373       should_delay = true;
   374     }
   375   }
   377   // detect direct and indirect recursive inlining
   378   {
   379     // count the current method and the callee
   380     const bool is_compiled_lambda_form = callee_method->is_compiled_lambda_form();
   381     int inline_level = 0;
   382     if (!is_compiled_lambda_form) {
   383       if (method() == callee_method) {
   384         inline_level++;
   385       }
   386     }
   387     // count callers of current method and callee
   388     Node* callee_argument0 = is_compiled_lambda_form ? jvms->map()->argument(jvms, 0)->uncast() : NULL;
   389     for (JVMState* j = jvms->caller(); j != NULL && j->has_method(); j = j->caller()) {
   390       if (j->method() == callee_method) {
   391         if (is_compiled_lambda_form) {
   392           // Since compiled lambda forms are heavily reused we allow recursive inlining.  If it is truly
   393           // a recursion (using the same "receiver") we limit inlining otherwise we can easily blow the
   394           // compiler stack.
   395           Node* caller_argument0 = j->map()->argument(j, 0)->uncast();
   396           if (caller_argument0 == callee_argument0) {
   397             inline_level++;
   398           }
   399         } else {
   400           inline_level++;
   401         }
   402       }
   403     }
   404     if (inline_level > MaxRecursiveInlineLevel) {
   405       set_msg("recursive inlining is too deep");
   406       return false;
   407     }
   408   }
   410   int size = callee_method->code_size_for_inlining();
   412   if (ClipInlining && (int)count_inline_bcs() + size >= DesiredMethodLimit) {
   413     if (!callee_method->force_inline() || !IncrementalInline) {
   414       set_msg("size > DesiredMethodLimit");
   415       return false;
   416     } else if (!C->inlining_incrementally()) {
   417       should_delay = true;
   418     }
   419   }
   421   // ok, inline this method
   422   return true;
   423 }
   425 //------------------------------pass_initial_checks----------------------------
   426 bool pass_initial_checks(ciMethod* caller_method, int caller_bci, ciMethod* callee_method) {
   427   ciInstanceKlass *callee_holder = callee_method ? callee_method->holder() : NULL;
   428   // Check if a callee_method was suggested
   429   if( callee_method == NULL )            return false;
   430   // Check if klass of callee_method is loaded
   431   if( !callee_holder->is_loaded() )      return false;
   432   if( !callee_holder->is_initialized() ) return false;
   433   if( !UseInterpreter || CompileTheWorld /* running Xcomp or CTW */ ) {
   434     // Checks that constant pool's call site has been visited
   435     // stricter than callee_holder->is_initialized()
   436     ciBytecodeStream iter(caller_method);
   437     iter.force_bci(caller_bci);
   438     Bytecodes::Code call_bc = iter.cur_bc();
   439     // An invokedynamic instruction does not have a klass.
   440     if (call_bc != Bytecodes::_invokedynamic) {
   441       int index = iter.get_index_u2_cpcache();
   442       if (!caller_method->is_klass_loaded(index, true)) {
   443         return false;
   444       }
   445       // Try to do constant pool resolution if running Xcomp
   446       if( !caller_method->check_call(index, call_bc == Bytecodes::_invokestatic) ) {
   447         return false;
   448       }
   449     }
   450   }
   451   // We will attempt to see if a class/field/etc got properly loaded.  If it
   452   // did not, it may attempt to throw an exception during our probing.  Catch
   453   // and ignore such exceptions and do not attempt to compile the method.
   454   if( callee_method->should_exclude() )  return false;
   456   return true;
   457 }
   459 //------------------------------check_can_parse--------------------------------
   460 const char* InlineTree::check_can_parse(ciMethod* callee) {
   461   // Certain methods cannot be parsed at all:
   462   if ( callee->is_native())                     return "native method";
   463   if ( callee->is_abstract())                   return "abstract method";
   464   if (!callee->can_be_compiled())               return "not compilable (disabled)";
   465   if (!callee->has_balanced_monitors())         return "not compilable (unbalanced monitors)";
   466   if ( callee->get_flow_analysis()->failing())  return "not compilable (flow analysis failed)";
   467   return NULL;
   468 }
   470 //------------------------------print_inlining---------------------------------
   471 void InlineTree::print_inlining(ciMethod* callee_method, int caller_bci,
   472                                 bool success) const {
   473   const char* inline_msg = msg();
   474   assert(inline_msg != NULL, "just checking");
   475   if (C->log() != NULL) {
   476     if (success) {
   477       C->log()->inline_success(inline_msg);
   478     } else {
   479       C->log()->inline_fail(inline_msg);
   480     }
   481   }
   482   if (C->print_inlining()) {
   483     C->print_inlining(callee_method, inline_level(), caller_bci, inline_msg);
   484     if (callee_method == NULL) tty->print(" callee not monotonic or profiled");
   485     if (Verbose && callee_method) {
   486       const InlineTree *top = this;
   487       while( top->caller_tree() != NULL ) { top = top->caller_tree(); }
   488       //tty->print("  bcs: %d+%d  invoked: %d", top->count_inline_bcs(), callee_method->code_size(), callee_method->interpreter_invocation_count());
   489     }
   490   }
   491 }
   493 //------------------------------ok_to_inline-----------------------------------
   494 WarmCallInfo* InlineTree::ok_to_inline(ciMethod* callee_method, JVMState* jvms, ciCallProfile& profile, WarmCallInfo* initial_wci, bool& should_delay) {
   495   assert(callee_method != NULL, "caller checks for optimized virtual!");
   496   assert(!should_delay, "should be initialized to false");
   497 #ifdef ASSERT
   498   // Make sure the incoming jvms has the same information content as me.
   499   // This means that we can eventually make this whole class AllStatic.
   500   if (jvms->caller() == NULL) {
   501     assert(_caller_jvms == NULL, "redundant instance state");
   502   } else {
   503     assert(_caller_jvms->same_calls_as(jvms->caller()), "redundant instance state");
   504   }
   505   assert(_method == jvms->method(), "redundant instance state");
   506 #endif
   507   int         caller_bci    = jvms->bci();
   508   ciMethod*   caller_method = jvms->method();
   510   // Do some initial checks.
   511   if (!pass_initial_checks(caller_method, caller_bci, callee_method)) {
   512     set_msg("failed initial checks");
   513     print_inlining(callee_method, caller_bci, false /* !success */);
   514     return NULL;
   515   }
   517   // Do some parse checks.
   518   set_msg(check_can_parse(callee_method));
   519   if (msg() != NULL) {
   520     print_inlining(callee_method, caller_bci, false /* !success */);
   521     return NULL;
   522   }
   524   // Check if inlining policy says no.
   525   WarmCallInfo wci = *(initial_wci);
   526   bool success = try_to_inline(callee_method, caller_method, caller_bci,
   527                                jvms, profile, &wci, should_delay);
   529 #ifndef PRODUCT
   530   if (InlineWarmCalls && (PrintOpto || C->print_inlining())) {
   531     bool cold = wci.is_cold();
   532     bool hot  = !cold && wci.is_hot();
   533     bool old_cold = !success;
   534     if (old_cold != cold || (Verbose || WizardMode)) {
   535       if (msg() == NULL) {
   536         set_msg("OK");
   537       }
   538       tty->print("   OldInlining= %4s : %s\n           WCI=",
   539                  old_cold ? "cold" : "hot", msg());
   540       wci.print();
   541     }
   542   }
   543 #endif
   544   if (success) {
   545     wci = *(WarmCallInfo::always_hot());
   546   } else {
   547     wci = *(WarmCallInfo::always_cold());
   548   }
   550   if (!InlineWarmCalls) {
   551     if (!wci.is_cold() && !wci.is_hot()) {
   552       // Do not inline the warm calls.
   553       wci = *(WarmCallInfo::always_cold());
   554     }
   555   }
   557   if (!wci.is_cold()) {
   558     // Inline!
   559     if (msg() == NULL) {
   560       set_msg("inline (hot)");
   561     }
   562     print_inlining(callee_method, caller_bci, true /* success */);
   563     build_inline_tree_for_callee(callee_method, jvms, caller_bci);
   564     if (InlineWarmCalls && !wci.is_hot())
   565       return new (C) WarmCallInfo(wci);  // copy to heap
   566     return WarmCallInfo::always_hot();
   567   }
   569   // Do not inline
   570   if (msg() == NULL) {
   571     set_msg("too cold to inline");
   572   }
   573   print_inlining(callee_method, caller_bci, false /* !success */ );
   574   return NULL;
   575 }
   577 //------------------------------compute_callee_frequency-----------------------
   578 float InlineTree::compute_callee_frequency( int caller_bci ) const {
   579   int count  = method()->interpreter_call_site_count(caller_bci);
   580   int invcnt = method()->interpreter_invocation_count();
   581   float freq = (float)count/(float)invcnt;
   582   // Call-site count / interpreter invocation count, scaled recursively.
   583   // Always between 0.0 and 1.0.  Represents the percentage of the method's
   584   // total execution time used at this call site.
   586   return freq;
   587 }
   589 //------------------------------build_inline_tree_for_callee-------------------
   590 InlineTree *InlineTree::build_inline_tree_for_callee( ciMethod* callee_method, JVMState* caller_jvms, int caller_bci) {
   591   float recur_frequency = _site_invoke_ratio * compute_callee_frequency(caller_bci);
   592   // Attempt inlining.
   593   InlineTree* old_ilt = callee_at(caller_bci, callee_method);
   594   if (old_ilt != NULL) {
   595     return old_ilt;
   596   }
   597   int max_inline_level_adjust = 0;
   598   if (caller_jvms->method() != NULL) {
   599     if (caller_jvms->method()->is_compiled_lambda_form())
   600       max_inline_level_adjust += 1;  // don't count actions in MH or indy adapter frames
   601     else if (callee_method->is_method_handle_intrinsic() ||
   602              callee_method->is_compiled_lambda_form()) {
   603       max_inline_level_adjust += 1;  // don't count method handle calls from java.lang.invoke implem
   604     }
   605     if (max_inline_level_adjust != 0 && C->print_inlining() && (Verbose || WizardMode)) {
   606       CompileTask::print_inline_indent(inline_level());
   607       tty->print_cr(" \\-> discounting inline depth");
   608     }
   609     if (max_inline_level_adjust != 0 && C->log()) {
   610       int id1 = C->log()->identify(caller_jvms->method());
   611       int id2 = C->log()->identify(callee_method);
   612       C->log()->elem("inline_level_discount caller='%d' callee='%d'", id1, id2);
   613     }
   614   }
   615   InlineTree* ilt = new InlineTree(C, this, callee_method, caller_jvms, caller_bci, recur_frequency, _max_inline_level + max_inline_level_adjust);
   616   _subtrees.append(ilt);
   618   NOT_PRODUCT( _count_inlines += 1; )
   620   return ilt;
   621 }
   624 //---------------------------------------callee_at-----------------------------
   625 InlineTree *InlineTree::callee_at(int bci, ciMethod* callee) const {
   626   for (int i = 0; i < _subtrees.length(); i++) {
   627     InlineTree* sub = _subtrees.at(i);
   628     if (sub->caller_bci() == bci && callee == sub->method()) {
   629       return sub;
   630     }
   631   }
   632   return NULL;
   633 }
   636 //------------------------------build_inline_tree_root-------------------------
   637 InlineTree *InlineTree::build_inline_tree_root() {
   638   Compile* C = Compile::current();
   640   // Root of inline tree
   641   InlineTree* ilt = new InlineTree(C, NULL, C->method(), NULL, -1, 1.0F, MaxInlineLevel);
   643   return ilt;
   644 }
   647 //-------------------------find_subtree_from_root-----------------------------
   648 // Given a jvms, which determines a call chain from the root method,
   649 // find the corresponding inline tree.
   650 // Note: This method will be removed or replaced as InlineTree goes away.
   651 InlineTree* InlineTree::find_subtree_from_root(InlineTree* root, JVMState* jvms, ciMethod* callee) {
   652   InlineTree* iltp = root;
   653   uint depth = jvms && jvms->has_method() ? jvms->depth() : 0;
   654   for (uint d = 1; d <= depth; d++) {
   655     JVMState* jvmsp  = jvms->of_depth(d);
   656     // Select the corresponding subtree for this bci.
   657     assert(jvmsp->method() == iltp->method(), "tree still in sync");
   658     ciMethod* d_callee = (d == depth) ? callee : jvms->of_depth(d+1)->method();
   659     InlineTree* sub = iltp->callee_at(jvmsp->bci(), d_callee);
   660     if (sub == NULL) {
   661       if (d == depth) {
   662         sub = iltp->build_inline_tree_for_callee(d_callee, jvmsp, jvmsp->bci());
   663       }
   664       guarantee(sub != NULL, "should be a sub-ilt here");
   665       return sub;
   666     }
   667     iltp = sub;
   668   }
   669   return iltp;
   670 }
   672 // Count number of nodes in this subtree
   673 int InlineTree::count() const {
   674   int result = 1;
   675   for (int i = 0 ; i < _subtrees.length(); i++) {
   676     result += _subtrees.at(i)->count();
   677   }
   678   return result;
   679 }
   681 void InlineTree::dump_replay_data(outputStream* out) {
   682   out->print(" %d %d ", inline_level(), caller_bci());
   683   method()->dump_name_as_ascii(out);
   684   for (int i = 0 ; i < _subtrees.length(); i++) {
   685     _subtrees.at(i)->dump_replay_data(out);
   686   }
   687 }
   690 #ifndef PRODUCT
   691 void InlineTree::print_impl(outputStream* st, int indent) const {
   692   for (int i = 0; i < indent; i++) st->print(" ");
   693   st->print(" @ %d", caller_bci());
   694   method()->print_short_name(st);
   695   st->cr();
   697   for (int i = 0 ; i < _subtrees.length(); i++) {
   698     _subtrees.at(i)->print_impl(st, indent + 2);
   699   }
   700 }
   702 void InlineTree::print_value_on(outputStream* st) const {
   703   print_impl(st, 2);
   704 }
   705 #endif

mercurial