src/share/vm/opto/bytecodeInfo.cpp

Sat, 09 Feb 2013 12:55:09 -0800

author
drchase
date
Sat, 09 Feb 2013 12:55:09 -0800
changeset 4585
2c673161698a
parent 4532
60bba1398c51
child 4660
133bf557ef77
permissions
-rw-r--r--

8007402: Code cleanup to remove Parfait false positive
Summary: add array access range check
Reviewed-by: kvn

     1 /*
     2  * Copyright (c) 1998, 2012, 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 {
    52   NOT_PRODUCT(_count_inlines = 0;)
    53   if (_caller_jvms != NULL) {
    54     // Keep a private copy of the caller_jvms:
    55     _caller_jvms = new (C) JVMState(caller_jvms->method(), caller_tree->caller_jvms());
    56     _caller_jvms->set_bci(caller_jvms->bci());
    57     assert(!caller_jvms->should_reexecute(), "there should be no reexecute bytecode with inlining");
    58   }
    59   assert(_caller_jvms->same_calls_as(caller_jvms), "consistent JVMS");
    60   assert((caller_tree == NULL ? 0 : caller_tree->stack_depth() + 1) == stack_depth(), "correct (redundant) depth parameter");
    61   assert(caller_bci == this->caller_bci(), "correct (redundant) bci parameter");
    62   if (UseOldInlining) {
    63     // Update hierarchical counts, count_inline_bcs() and count_inlines()
    64     InlineTree *caller = (InlineTree *)caller_tree;
    65     for( ; caller != NULL; caller = ((InlineTree *)(caller->caller_tree())) ) {
    66       caller->_count_inline_bcs += count_inline_bcs();
    67       NOT_PRODUCT(caller->_count_inlines++;)
    68     }
    69   }
    70 }
    72 InlineTree::InlineTree(Compile* c, ciMethod* callee_method, JVMState* caller_jvms,
    73                        float site_invoke_ratio, int max_inline_level) :
    74   C(c),
    75   _caller_jvms(caller_jvms),
    76   _caller_tree(NULL),
    77   _method(callee_method),
    78   _site_invoke_ratio(site_invoke_ratio),
    79   _max_inline_level(max_inline_level),
    80   _count_inline_bcs(method()->code_size())
    81 {
    82   NOT_PRODUCT(_count_inlines = 0;)
    83   assert(!UseOldInlining, "do not use for old stuff");
    84 }
    86 static bool is_init_with_ea(ciMethod* callee_method,
    87                             ciMethod* caller_method, Compile* C) {
    88   // True when EA is ON and a java constructor is called or
    89   // a super constructor is called from an inlined java constructor.
    90   return C->do_escape_analysis() && EliminateAllocations &&
    91          ( callee_method->is_initializer() ||
    92            (caller_method->is_initializer() &&
    93             caller_method != C->method() &&
    94             caller_method->holder()->is_subclass_of(callee_method->holder()))
    95          );
    96 }
    98 // positive filter: should callee be inlined?  returns NULL, if yes, or rejection msg
    99 const char* InlineTree::should_inline(ciMethod* callee_method, ciMethod* caller_method, int caller_bci, ciCallProfile& profile, WarmCallInfo* wci_result) const {
   100   // Allows targeted inlining
   101   if(callee_method->should_inline()) {
   102     *wci_result = *(WarmCallInfo::always_hot());
   103     if (PrintInlining && Verbose) {
   104       CompileTask::print_inline_indent(inline_level());
   105       tty->print_cr("Inlined method is hot: ");
   106     }
   107     return NULL;
   108   }
   110   // positive filter: should send be inlined?  returns NULL (--> yes)
   111   // or rejection msg
   112   int size = callee_method->code_size_for_inlining();
   114   // Check for too many throws (and not too huge)
   115   if(callee_method->interpreter_throwout_count() > InlineThrowCount &&
   116      size < InlineThrowMaxSize ) {
   117     wci_result->set_profit(wci_result->profit() * 100);
   118     if (PrintInlining && Verbose) {
   119       CompileTask::print_inline_indent(inline_level());
   120       tty->print_cr("Inlined method with many throws (throws=%d):", callee_method->interpreter_throwout_count());
   121     }
   122     return NULL;
   123   }
   125   if (!UseOldInlining) {
   126     return NULL;  // size and frequency are represented in a new way
   127   }
   129   int default_max_inline_size = C->max_inline_size();
   130   int inline_small_code_size  = InlineSmallCode / 4;
   131   int max_inline_size         = default_max_inline_size;
   133   int call_site_count  = method()->scale_count(profile.count());
   134   int invoke_count     = method()->interpreter_invocation_count();
   136   assert(invoke_count != 0, "require invocation count greater than zero");
   137   int freq = call_site_count / invoke_count;
   139   // bump the max size if the call is frequent
   140   if ((freq >= InlineFrequencyRatio) ||
   141       (call_site_count >= InlineFrequencyCount) ||
   142       is_init_with_ea(callee_method, caller_method, C)) {
   144     max_inline_size = C->freq_inline_size();
   145     if (size <= max_inline_size && TraceFrequencyInlining) {
   146       CompileTask::print_inline_indent(inline_level());
   147       tty->print_cr("Inlined frequent method (freq=%d count=%d):", freq, call_site_count);
   148       CompileTask::print_inline_indent(inline_level());
   149       callee_method->print();
   150       tty->cr();
   151     }
   152   } else {
   153     // Not hot.  Check for medium-sized pre-existing nmethod at cold sites.
   154     if (callee_method->has_compiled_code() &&
   155         callee_method->instructions_size() > inline_small_code_size)
   156       return "already compiled into a medium method";
   157   }
   158   if (size > max_inline_size) {
   159     if (max_inline_size > default_max_inline_size)
   160       return "hot method too big";
   161     return "too big";
   162   }
   163   return NULL;
   164 }
   167 // negative filter: should callee NOT be inlined?  returns NULL, ok to inline, or rejection msg
   168 const char* InlineTree::should_not_inline(ciMethod *callee_method, ciMethod* caller_method, WarmCallInfo* wci_result) const {
   169   // negative filter: should send NOT be inlined?  returns NULL (--> inline) or rejection msg
   170   if (!UseOldInlining) {
   171     const char* fail = NULL;
   172     if ( callee_method->is_abstract())               fail = "abstract method";
   173     // note: we allow ik->is_abstract()
   174     if (!callee_method->holder()->is_initialized())  fail = "method holder not initialized";
   175     if ( callee_method->is_native())                 fail = "native method";
   176     if ( callee_method->dont_inline())               fail = "don't inline by annotation";
   178     if (fail) {
   179       *wci_result = *(WarmCallInfo::always_cold());
   180       return fail;
   181     }
   183     if (callee_method->has_unloaded_classes_in_signature()) {
   184       wci_result->set_profit(wci_result->profit() * 0.1);
   185     }
   187     // don't inline exception code unless the top method belongs to an
   188     // exception class
   189     if (callee_method->holder()->is_subclass_of(C->env()->Throwable_klass())) {
   190       ciMethod* top_method = caller_jvms() ? caller_jvms()->of_depth(1)->method() : method();
   191       if (!top_method->holder()->is_subclass_of(C->env()->Throwable_klass())) {
   192         wci_result->set_profit(wci_result->profit() * 0.1);
   193       }
   194     }
   196     if (callee_method->has_compiled_code() &&
   197         callee_method->instructions_size() > InlineSmallCode) {
   198       wci_result->set_profit(wci_result->profit() * 0.1);
   199       // %%% adjust wci_result->size()?
   200     }
   202     return NULL;
   203   }
   205   // First check all inlining restrictions which are required for correctness
   206   if ( callee_method->is_abstract())                        return "abstract method";
   207   // note: we allow ik->is_abstract()
   208   if (!callee_method->holder()->is_initialized())           return "method holder not initialized";
   209   if ( callee_method->is_native())                          return "native method";
   210   if ( callee_method->dont_inline())                        return "don't inline by annotation";
   211   if ( callee_method->has_unloaded_classes_in_signature())  return "unloaded signature classes";
   213   if (callee_method->should_inline()) {
   214     // ignore heuristic controls on inlining
   215     return NULL;
   216   }
   218   // Now perform checks which are heuristic
   220   if (!callee_method->force_inline()) {
   221     if (callee_method->has_compiled_code() &&
   222         callee_method->instructions_size() > InlineSmallCode) {
   223     return "already compiled into a big method";
   224     }
   225   }
   227   // don't inline exception code unless the top method belongs to an
   228   // exception class
   229   if (caller_tree() != NULL &&
   230       callee_method->holder()->is_subclass_of(C->env()->Throwable_klass())) {
   231     const InlineTree *top = this;
   232     while (top->caller_tree() != NULL) top = top->caller_tree();
   233     ciInstanceKlass* k = top->method()->holder();
   234     if (!k->is_subclass_of(C->env()->Throwable_klass()))
   235       return "exception method";
   236   }
   238   if (callee_method->should_not_inline()) {
   239     return "disallowed by CompilerOracle";
   240   }
   242 #ifndef PRODUCT
   243   if (ciReplay::should_not_inline(callee_method)) {
   244     return "disallowed by ciReplay";
   245   }
   246 #endif
   248   if (UseStringCache) {
   249     // Do not inline StringCache::profile() method used only at the beginning.
   250     if (callee_method->name() == ciSymbol::profile_name() &&
   251         callee_method->holder()->name() == ciSymbol::java_lang_StringCache()) {
   252       return "profiling method";
   253     }
   254   }
   256   // use frequency-based objections only for non-trivial methods
   257   if (callee_method->code_size() <= MaxTrivialSize) return NULL;
   259   // don't use counts with -Xcomp or CTW
   260   if (UseInterpreter && !CompileTheWorld) {
   262     if (!callee_method->has_compiled_code() &&
   263         !callee_method->was_executed_more_than(0)) {
   264       return "never executed";
   265     }
   267     if (is_init_with_ea(callee_method, caller_method, C)) {
   269       // Escape Analysis: inline all executed constructors
   271     } else if (!callee_method->was_executed_more_than(MIN2(MinInliningThreshold,
   272                                                            CompileThreshold >> 1))) {
   273       return "executed < MinInliningThreshold times";
   274     }
   275   }
   277   return NULL;
   278 }
   280 //-----------------------------try_to_inline-----------------------------------
   281 // return NULL if ok, reason for not inlining otherwise
   282 // Relocated from "InliningClosure::try_to_inline"
   283 const char* InlineTree::try_to_inline(ciMethod* callee_method, ciMethod* caller_method, int caller_bci, ciCallProfile& profile, WarmCallInfo* wci_result, bool& should_delay) {
   284   // Old algorithm had funny accumulating BC-size counters
   285   if (UseOldInlining && ClipInlining
   286       && (int)count_inline_bcs() >= DesiredMethodLimit) {
   287     if (!callee_method->force_inline() || !IncrementalInline) {
   288       return "size > DesiredMethodLimit";
   289     } else if (!C->inlining_incrementally()) {
   290       should_delay = true;
   291     }
   292   }
   294   const char *msg = NULL;
   295   msg = should_inline(callee_method, caller_method, caller_bci, profile, wci_result);
   296   if (msg != NULL)
   297     return msg;
   299   msg = should_not_inline(callee_method, caller_method, wci_result);
   300   if (msg != NULL)
   301     return msg;
   303   if (InlineAccessors && callee_method->is_accessor()) {
   304     // accessor methods are not subject to any of the following limits.
   305     return NULL;
   306   }
   308   // suppress a few checks for accessors and trivial methods
   309   if (callee_method->code_size() > MaxTrivialSize) {
   311     // don't inline into giant methods
   312     if (C->over_inlining_cutoff()) {
   313       if ((!callee_method->force_inline() && !caller_method->is_compiled_lambda_form())
   314           || !IncrementalInline) {
   315         return "NodeCountInliningCutoff";
   316       } else {
   317         should_delay = true;
   318       }
   319     }
   321     if ((!UseInterpreter || CompileTheWorld) &&
   322         is_init_with_ea(callee_method, caller_method, C)) {
   324       // Escape Analysis stress testing when running Xcomp or CTW:
   325       // inline constructors even if they are not reached.
   327     } else if (profile.count() == 0) {
   328       // don't inline unreached call sites
   329       return "call site not reached";
   330     }
   331   }
   333   if (!C->do_inlining() && InlineAccessors) {
   334     return "not an accessor";
   335   }
   336   if (inline_level() > _max_inline_level) {
   337     if (!callee_method->force_inline() || !IncrementalInline) {
   338       return "inlining too deep";
   339     } else if (!C->inlining_incrementally()) {
   340       should_delay = true;
   341     }
   342   }
   344   // detect direct and indirect recursive inlining
   345   if (!callee_method->is_compiled_lambda_form()) {
   346     // count the current method and the callee
   347     int inline_level = (method() == callee_method) ? 1 : 0;
   348     if (inline_level > MaxRecursiveInlineLevel)
   349       return "recursively inlining too deep";
   350     // count callers of current method and callee
   351     JVMState* jvms = caller_jvms();
   352     while (jvms != NULL && jvms->has_method()) {
   353       if (jvms->method() == callee_method) {
   354         inline_level++;
   355         if (inline_level > MaxRecursiveInlineLevel)
   356           return "recursively inlining too deep";
   357       }
   358       jvms = jvms->caller();
   359     }
   360   }
   362   int size = callee_method->code_size_for_inlining();
   364   if (UseOldInlining && ClipInlining
   365       && (int)count_inline_bcs() + size >= DesiredMethodLimit) {
   366     if (!callee_method->force_inline() || !IncrementalInline) {
   367       return "size > DesiredMethodLimit";
   368     } else if (!C->inlining_incrementally()) {
   369       should_delay = true;
   370     }
   371   }
   373   // ok, inline this method
   374   return NULL;
   375 }
   377 //------------------------------pass_initial_checks----------------------------
   378 bool pass_initial_checks(ciMethod* caller_method, int caller_bci, ciMethod* callee_method) {
   379   ciInstanceKlass *callee_holder = callee_method ? callee_method->holder() : NULL;
   380   // Check if a callee_method was suggested
   381   if( callee_method == NULL )            return false;
   382   // Check if klass of callee_method is loaded
   383   if( !callee_holder->is_loaded() )      return false;
   384   if( !callee_holder->is_initialized() ) return false;
   385   if( !UseInterpreter || CompileTheWorld /* running Xcomp or CTW */ ) {
   386     // Checks that constant pool's call site has been visited
   387     // stricter than callee_holder->is_initialized()
   388     ciBytecodeStream iter(caller_method);
   389     iter.force_bci(caller_bci);
   390     Bytecodes::Code call_bc = iter.cur_bc();
   391     // An invokedynamic instruction does not have a klass.
   392     if (call_bc != Bytecodes::_invokedynamic) {
   393       int index = iter.get_index_u2_cpcache();
   394       if (!caller_method->is_klass_loaded(index, true)) {
   395         return false;
   396       }
   397       // Try to do constant pool resolution if running Xcomp
   398       if( !caller_method->check_call(index, call_bc == Bytecodes::_invokestatic) ) {
   399         return false;
   400       }
   401     }
   402   }
   403   // We will attempt to see if a class/field/etc got properly loaded.  If it
   404   // did not, it may attempt to throw an exception during our probing.  Catch
   405   // and ignore such exceptions and do not attempt to compile the method.
   406   if( callee_method->should_exclude() )  return false;
   408   return true;
   409 }
   411 //------------------------------check_can_parse--------------------------------
   412 const char* InlineTree::check_can_parse(ciMethod* callee) {
   413   // Certain methods cannot be parsed at all:
   414   if ( callee->is_native())                     return "native method";
   415   if ( callee->is_abstract())                   return "abstract method";
   416   if (!callee->can_be_compiled())               return "not compilable (disabled)";
   417   if (!callee->has_balanced_monitors())         return "not compilable (unbalanced monitors)";
   418   if ( callee->get_flow_analysis()->failing())  return "not compilable (flow analysis failed)";
   419   return NULL;
   420 }
   422 //------------------------------print_inlining---------------------------------
   423 void InlineTree::print_inlining(ciMethod* callee_method, int caller_bci,
   424                                 const char* msg, bool success) const {
   425   assert(msg != NULL, "just checking");
   426   if (C->log() != NULL) {
   427     if (success) {
   428       C->log()->inline_success(msg);
   429     } else {
   430       C->log()->inline_fail(msg);
   431     }
   432   }
   433   if (PrintInlining) {
   434     C->print_inlining(callee_method, inline_level(), caller_bci, msg);
   435     if (callee_method == NULL) tty->print(" callee not monotonic or profiled");
   436     if (Verbose && callee_method) {
   437       const InlineTree *top = this;
   438       while( top->caller_tree() != NULL ) { top = top->caller_tree(); }
   439       //tty->print("  bcs: %d+%d  invoked: %d", top->count_inline_bcs(), callee_method->code_size(), callee_method->interpreter_invocation_count());
   440     }
   441   }
   442 }
   444 //------------------------------ok_to_inline-----------------------------------
   445 WarmCallInfo* InlineTree::ok_to_inline(ciMethod* callee_method, JVMState* jvms, ciCallProfile& profile, WarmCallInfo* initial_wci, bool& should_delay) {
   446   assert(callee_method != NULL, "caller checks for optimized virtual!");
   447   assert(!should_delay, "should be initialized to false");
   448 #ifdef ASSERT
   449   // Make sure the incoming jvms has the same information content as me.
   450   // This means that we can eventually make this whole class AllStatic.
   451   if (jvms->caller() == NULL) {
   452     assert(_caller_jvms == NULL, "redundant instance state");
   453   } else {
   454     assert(_caller_jvms->same_calls_as(jvms->caller()), "redundant instance state");
   455   }
   456   assert(_method == jvms->method(), "redundant instance state");
   457 #endif
   458   const char *failure_msg   = NULL;
   459   int         caller_bci    = jvms->bci();
   460   ciMethod   *caller_method = jvms->method();
   462   // Do some initial checks.
   463   if (!pass_initial_checks(caller_method, caller_bci, callee_method)) {
   464     print_inlining(callee_method, caller_bci, "failed initial checks",
   465                    false /* !success */);
   466     return NULL;
   467   }
   469   // Do some parse checks.
   470   failure_msg = check_can_parse(callee_method);
   471   if (failure_msg != NULL) {
   472     print_inlining(callee_method, caller_bci, failure_msg,
   473                    false /* !success */);
   474     return NULL;
   475   }
   477   // Check if inlining policy says no.
   478   WarmCallInfo wci = *(initial_wci);
   479   failure_msg = try_to_inline(callee_method, caller_method, caller_bci, profile,
   480                               &wci, should_delay);
   482 #ifndef PRODUCT
   483   if (UseOldInlining && InlineWarmCalls
   484       && (PrintOpto || PrintOptoInlining || PrintInlining)) {
   485     bool cold = wci.is_cold();
   486     bool hot  = !cold && wci.is_hot();
   487     bool old_cold = (failure_msg != NULL);
   488     if (old_cold != cold || (Verbose || WizardMode)) {
   489       tty->print("   OldInlining= %4s : %s\n           WCI=",
   490                  old_cold ? "cold" : "hot", failure_msg ? failure_msg : "OK");
   491       wci.print();
   492     }
   493   }
   494 #endif
   495   if (UseOldInlining) {
   496     if (failure_msg == NULL)
   497       wci = *(WarmCallInfo::always_hot());
   498     else
   499       wci = *(WarmCallInfo::always_cold());
   500     }
   501   if (!InlineWarmCalls) {
   502     if (!wci.is_cold() && !wci.is_hot()) {
   503       // Do not inline the warm calls.
   504       wci = *(WarmCallInfo::always_cold());
   505     }
   506   }
   508   if (!wci.is_cold()) {
   509     // Inline!
   510     print_inlining(callee_method, caller_bci,
   511                    failure_msg ? failure_msg : "inline (hot)",
   512                    true /* success */);
   513     if (UseOldInlining)
   514       build_inline_tree_for_callee(callee_method, jvms, caller_bci);
   515     if (InlineWarmCalls && !wci.is_hot())
   516       return new (C) WarmCallInfo(wci);  // copy to heap
   517     return WarmCallInfo::always_hot();
   518   }
   520   // Do not inline
   521   print_inlining(callee_method, caller_bci,
   522                  failure_msg ? failure_msg : "too cold to inline",
   523                  false /* !success */ );
   524   return NULL;
   525 }
   527 //------------------------------compute_callee_frequency-----------------------
   528 float InlineTree::compute_callee_frequency( int caller_bci ) const {
   529   int count  = method()->interpreter_call_site_count(caller_bci);
   530   int invcnt = method()->interpreter_invocation_count();
   531   float freq = (float)count/(float)invcnt;
   532   // Call-site count / interpreter invocation count, scaled recursively.
   533   // Always between 0.0 and 1.0.  Represents the percentage of the method's
   534   // total execution time used at this call site.
   536   return freq;
   537 }
   539 //------------------------------build_inline_tree_for_callee-------------------
   540 InlineTree *InlineTree::build_inline_tree_for_callee( ciMethod* callee_method, JVMState* caller_jvms, int caller_bci) {
   541   float recur_frequency = _site_invoke_ratio * compute_callee_frequency(caller_bci);
   542   // Attempt inlining.
   543   InlineTree* old_ilt = callee_at(caller_bci, callee_method);
   544   if (old_ilt != NULL) {
   545     return old_ilt;
   546   }
   547   int max_inline_level_adjust = 0;
   548   if (caller_jvms->method() != NULL) {
   549     if (caller_jvms->method()->is_compiled_lambda_form())
   550       max_inline_level_adjust += 1;  // don't count actions in MH or indy adapter frames
   551     else if (callee_method->is_method_handle_intrinsic() ||
   552              callee_method->is_compiled_lambda_form()) {
   553       max_inline_level_adjust += 1;  // don't count method handle calls from java.lang.invoke implem
   554     }
   555     if (max_inline_level_adjust != 0 && PrintInlining && (Verbose || WizardMode)) {
   556       CompileTask::print_inline_indent(inline_level());
   557       tty->print_cr(" \\-> discounting inline depth");
   558     }
   559     if (max_inline_level_adjust != 0 && C->log()) {
   560       int id1 = C->log()->identify(caller_jvms->method());
   561       int id2 = C->log()->identify(callee_method);
   562       C->log()->elem("inline_level_discount caller='%d' callee='%d'", id1, id2);
   563     }
   564   }
   565   InlineTree* ilt = new InlineTree(C, this, callee_method, caller_jvms, caller_bci, recur_frequency, _max_inline_level + max_inline_level_adjust);
   566   _subtrees.append(ilt);
   568   NOT_PRODUCT( _count_inlines += 1; )
   570   return ilt;
   571 }
   574 //---------------------------------------callee_at-----------------------------
   575 InlineTree *InlineTree::callee_at(int bci, ciMethod* callee) const {
   576   for (int i = 0; i < _subtrees.length(); i++) {
   577     InlineTree* sub = _subtrees.at(i);
   578     if (sub->caller_bci() == bci && callee == sub->method()) {
   579       return sub;
   580     }
   581   }
   582   return NULL;
   583 }
   586 //------------------------------build_inline_tree_root-------------------------
   587 InlineTree *InlineTree::build_inline_tree_root() {
   588   Compile* C = Compile::current();
   590   // Root of inline tree
   591   InlineTree* ilt = new InlineTree(C, NULL, C->method(), NULL, -1, 1.0F, MaxInlineLevel);
   593   return ilt;
   594 }
   597 //-------------------------find_subtree_from_root-----------------------------
   598 // Given a jvms, which determines a call chain from the root method,
   599 // find the corresponding inline tree.
   600 // Note: This method will be removed or replaced as InlineTree goes away.
   601 InlineTree* InlineTree::find_subtree_from_root(InlineTree* root, JVMState* jvms, ciMethod* callee) {
   602   InlineTree* iltp = root;
   603   uint depth = jvms && jvms->has_method() ? jvms->depth() : 0;
   604   for (uint d = 1; d <= depth; d++) {
   605     JVMState* jvmsp  = jvms->of_depth(d);
   606     // Select the corresponding subtree for this bci.
   607     assert(jvmsp->method() == iltp->method(), "tree still in sync");
   608     ciMethod* d_callee = (d == depth) ? callee : jvms->of_depth(d+1)->method();
   609     InlineTree* sub = iltp->callee_at(jvmsp->bci(), d_callee);
   610     if (sub == NULL) {
   611       if (d == depth) {
   612         sub = iltp->build_inline_tree_for_callee(d_callee, jvmsp, jvmsp->bci());
   613       }
   614       guarantee(sub != NULL, "should be a sub-ilt here");
   615       return sub;
   616     }
   617     iltp = sub;
   618   }
   619   return iltp;
   620 }
   624 #ifndef PRODUCT
   625 void InlineTree::print_impl(outputStream* st, int indent) const {
   626   for (int i = 0; i < indent; i++) st->print(" ");
   627   st->print(" @ %d ", caller_bci());
   628   method()->print_short_name(st);
   629   st->cr();
   631   for (int i = 0 ; i < _subtrees.length(); i++) {
   632     _subtrees.at(i)->print_impl(st, indent + 2);
   633   }
   634 }
   636 void InlineTree::print_value_on(outputStream* st) const {
   637   print_impl(st, 2);
   638 }
   639 #endif

mercurial