src/share/vm/opto/bytecodeInfo.cpp

Mon, 28 Mar 2011 03:58:07 -0700

author
twisti
date
Mon, 28 Mar 2011 03:58:07 -0700
changeset 2687
3d58a4983660
parent 2639
8033953d67ff
child 2866
b21ecca7ccc4
permissions
-rw-r--r--

7022998: JSR 292 recursive method handle calls inline themselves infinitely
Reviewed-by: never, kvn

duke@435 1 /*
jrose@2639 2 * Copyright (c) 1998, 2011, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #include "precompiled.hpp"
stefank@2314 26 #include "classfile/systemDictionary.hpp"
stefank@2314 27 #include "classfile/vmSymbols.hpp"
twisti@2687 28 #include "compiler/compileBroker.hpp"
stefank@2314 29 #include "compiler/compileLog.hpp"
stefank@2314 30 #include "interpreter/linkResolver.hpp"
stefank@2314 31 #include "oops/objArrayKlass.hpp"
stefank@2314 32 #include "opto/callGenerator.hpp"
stefank@2314 33 #include "opto/parse.hpp"
stefank@2314 34 #include "runtime/handles.inline.hpp"
duke@435 35
duke@435 36 //=============================================================================
duke@435 37 //------------------------------InlineTree-------------------------------------
jrose@1592 38 InlineTree::InlineTree( Compile* c,
jrose@1592 39 const InlineTree *caller_tree, ciMethod* callee,
jrose@1592 40 JVMState* caller_jvms, int caller_bci,
jrose@1592 41 float site_invoke_ratio, int site_depth_adjust)
duke@435 42 : C(c), _caller_jvms(caller_jvms),
duke@435 43 _caller_tree((InlineTree*)caller_tree),
duke@435 44 _method(callee), _site_invoke_ratio(site_invoke_ratio),
jrose@1592 45 _site_depth_adjust(site_depth_adjust),
jrose@1592 46 _count_inline_bcs(method()->code_size())
jrose@1592 47 {
duke@435 48 NOT_PRODUCT(_count_inlines = 0;)
duke@435 49 if (_caller_jvms != NULL) {
duke@435 50 // Keep a private copy of the caller_jvms:
duke@435 51 _caller_jvms = new (C) JVMState(caller_jvms->method(), caller_tree->caller_jvms());
duke@435 52 _caller_jvms->set_bci(caller_jvms->bci());
cfang@1335 53 assert(!caller_jvms->should_reexecute(), "there should be no reexecute bytecode with inlining");
duke@435 54 }
duke@435 55 assert(_caller_jvms->same_calls_as(caller_jvms), "consistent JVMS");
jrose@1592 56 assert((caller_tree == NULL ? 0 : caller_tree->stack_depth() + 1) == stack_depth(), "correct (redundant) depth parameter");
duke@435 57 assert(caller_bci == this->caller_bci(), "correct (redundant) bci parameter");
duke@435 58 if (UseOldInlining) {
duke@435 59 // Update hierarchical counts, count_inline_bcs() and count_inlines()
duke@435 60 InlineTree *caller = (InlineTree *)caller_tree;
duke@435 61 for( ; caller != NULL; caller = ((InlineTree *)(caller->caller_tree())) ) {
duke@435 62 caller->_count_inline_bcs += count_inline_bcs();
duke@435 63 NOT_PRODUCT(caller->_count_inlines++;)
duke@435 64 }
duke@435 65 }
duke@435 66 }
duke@435 67
jrose@1592 68 InlineTree::InlineTree(Compile* c, ciMethod* callee_method, JVMState* caller_jvms,
jrose@1592 69 float site_invoke_ratio, int site_depth_adjust)
duke@435 70 : C(c), _caller_jvms(caller_jvms), _caller_tree(NULL),
duke@435 71 _method(callee_method), _site_invoke_ratio(site_invoke_ratio),
jrose@1592 72 _site_depth_adjust(site_depth_adjust),
jrose@1592 73 _count_inline_bcs(method()->code_size())
jrose@1592 74 {
duke@435 75 NOT_PRODUCT(_count_inlines = 0;)
duke@435 76 assert(!UseOldInlining, "do not use for old stuff");
duke@435 77 }
duke@435 78
kvn@476 79 static bool is_init_with_ea(ciMethod* callee_method,
kvn@476 80 ciMethod* caller_method, Compile* C) {
kvn@476 81 // True when EA is ON and a java constructor is called or
kvn@476 82 // a super constructor is called from an inlined java constructor.
kvn@679 83 return C->do_escape_analysis() && EliminateAllocations &&
kvn@476 84 ( callee_method->is_initializer() ||
kvn@476 85 (caller_method->is_initializer() &&
kvn@476 86 caller_method != C->method() &&
kvn@476 87 caller_method->holder()->is_subclass_of(callee_method->holder()))
kvn@476 88 );
kvn@476 89 }
kvn@476 90
duke@435 91 // positive filter: should send be inlined? returns NULL, if yes, or rejection msg
kvn@476 92 const char* InlineTree::shouldInline(ciMethod* callee_method, ciMethod* caller_method, int caller_bci, ciCallProfile& profile, WarmCallInfo* wci_result) const {
duke@435 93 // Allows targeted inlining
duke@435 94 if(callee_method->should_inline()) {
duke@435 95 *wci_result = *(WarmCallInfo::always_hot());
duke@435 96 if (PrintInlining && Verbose) {
twisti@2687 97 CompileTask::print_inline_indent(inline_depth());
duke@435 98 tty->print_cr("Inlined method is hot: ");
duke@435 99 }
duke@435 100 return NULL;
duke@435 101 }
duke@435 102
duke@435 103 // positive filter: should send be inlined? returns NULL (--> yes)
duke@435 104 // or rejection msg
duke@435 105 int max_size = C->max_inline_size();
duke@435 106 int size = callee_method->code_size();
duke@435 107
duke@435 108 // Check for too many throws (and not too huge)
kvn@476 109 if(callee_method->interpreter_throwout_count() > InlineThrowCount &&
kvn@476 110 size < InlineThrowMaxSize ) {
duke@435 111 wci_result->set_profit(wci_result->profit() * 100);
duke@435 112 if (PrintInlining && Verbose) {
twisti@2687 113 CompileTask::print_inline_indent(inline_depth());
duke@435 114 tty->print_cr("Inlined method with many throws (throws=%d):", callee_method->interpreter_throwout_count());
duke@435 115 }
duke@435 116 return NULL;
duke@435 117 }
duke@435 118
duke@435 119 if (!UseOldInlining) {
duke@435 120 return NULL; // size and frequency are represented in a new way
duke@435 121 }
duke@435 122
duke@435 123 int call_site_count = method()->scale_count(profile.count());
duke@435 124 int invoke_count = method()->interpreter_invocation_count();
duke@435 125 assert( invoke_count != 0, "Require invokation count greater than zero");
duke@435 126 int freq = call_site_count/invoke_count;
kvn@476 127
duke@435 128 // bump the max size if the call is frequent
kvn@476 129 if ((freq >= InlineFrequencyRatio) ||
kvn@476 130 (call_site_count >= InlineFrequencyCount) ||
kvn@476 131 is_init_with_ea(callee_method, caller_method, C)) {
kvn@476 132
duke@435 133 max_size = C->freq_inline_size();
duke@435 134 if (size <= max_size && TraceFrequencyInlining) {
twisti@2687 135 CompileTask::print_inline_indent(inline_depth());
duke@435 136 tty->print_cr("Inlined frequent method (freq=%d count=%d):", freq, call_site_count);
twisti@2687 137 CompileTask::print_inline_indent(inline_depth());
duke@435 138 callee_method->print();
duke@435 139 tty->cr();
duke@435 140 }
duke@435 141 } else {
duke@435 142 // Not hot. Check for medium-sized pre-existing nmethod at cold sites.
kvn@476 143 if (callee_method->has_compiled_code() &&
iveresov@2138 144 callee_method->instructions_size(CompLevel_full_optimization) > InlineSmallCode/4)
duke@435 145 return "already compiled into a medium method";
duke@435 146 }
duke@435 147 if (size > max_size) {
duke@435 148 if (max_size > C->max_inline_size())
duke@435 149 return "hot method too big";
duke@435 150 return "too big";
duke@435 151 }
duke@435 152 return NULL;
duke@435 153 }
duke@435 154
duke@435 155
duke@435 156 // negative filter: should send NOT be inlined? returns NULL, ok to inline, or rejection msg
kvn@476 157 const char* InlineTree::shouldNotInline(ciMethod *callee_method, ciMethod* caller_method, WarmCallInfo* wci_result) const {
duke@435 158 // negative filter: should send NOT be inlined? returns NULL (--> inline) or rejection msg
duke@435 159 if (!UseOldInlining) {
duke@435 160 const char* fail = NULL;
duke@435 161 if (callee_method->is_abstract()) fail = "abstract method";
duke@435 162 // note: we allow ik->is_abstract()
duke@435 163 if (!callee_method->holder()->is_initialized()) fail = "method holder not initialized";
duke@435 164 if (callee_method->is_native()) fail = "native method";
duke@435 165
duke@435 166 if (fail) {
duke@435 167 *wci_result = *(WarmCallInfo::always_cold());
duke@435 168 return fail;
duke@435 169 }
duke@435 170
duke@435 171 if (callee_method->has_unloaded_classes_in_signature()) {
duke@435 172 wci_result->set_profit(wci_result->profit() * 0.1);
duke@435 173 }
duke@435 174
duke@435 175 // don't inline exception code unless the top method belongs to an
duke@435 176 // exception class
duke@435 177 if (callee_method->holder()->is_subclass_of(C->env()->Throwable_klass())) {
duke@435 178 ciMethod* top_method = caller_jvms() ? caller_jvms()->of_depth(1)->method() : method();
duke@435 179 if (!top_method->holder()->is_subclass_of(C->env()->Throwable_klass())) {
duke@435 180 wci_result->set_profit(wci_result->profit() * 0.1);
duke@435 181 }
duke@435 182 }
duke@435 183
iveresov@2138 184 if (callee_method->has_compiled_code() && callee_method->instructions_size(CompLevel_full_optimization) > InlineSmallCode) {
duke@435 185 wci_result->set_profit(wci_result->profit() * 0.1);
duke@435 186 // %%% adjust wci_result->size()?
duke@435 187 }
duke@435 188
duke@435 189 return NULL;
duke@435 190 }
duke@435 191
twisti@1919 192 // Always inline MethodHandle methods and generated MethodHandle adapters.
twisti@1919 193 if (callee_method->is_method_handle_invoke() || callee_method->is_method_handle_adapter())
twisti@1573 194 return NULL;
twisti@1573 195
duke@435 196 // First check all inlining restrictions which are required for correctness
duke@435 197 if (callee_method->is_abstract()) return "abstract method";
duke@435 198 // note: we allow ik->is_abstract()
duke@435 199 if (!callee_method->holder()->is_initialized()) return "method holder not initialized";
duke@435 200 if (callee_method->is_native()) return "native method";
duke@435 201 if (callee_method->has_unloaded_classes_in_signature()) return "unloaded signature classes";
duke@435 202
duke@435 203 if (callee_method->should_inline()) {
duke@435 204 // ignore heuristic controls on inlining
duke@435 205 return NULL;
duke@435 206 }
duke@435 207
duke@435 208 // Now perform checks which are heuristic
duke@435 209
iveresov@2138 210 if( callee_method->has_compiled_code() && callee_method->instructions_size(CompLevel_full_optimization) > InlineSmallCode )
duke@435 211 return "already compiled into a big method";
duke@435 212
duke@435 213 // don't inline exception code unless the top method belongs to an
duke@435 214 // exception class
duke@435 215 if (caller_tree() != NULL &&
duke@435 216 callee_method->holder()->is_subclass_of(C->env()->Throwable_klass())) {
duke@435 217 const InlineTree *top = this;
duke@435 218 while (top->caller_tree() != NULL) top = top->caller_tree();
duke@435 219 ciInstanceKlass* k = top->method()->holder();
duke@435 220 if (!k->is_subclass_of(C->env()->Throwable_klass()))
duke@435 221 return "exception method";
duke@435 222 }
duke@435 223
duke@435 224 // use frequency-based objections only for non-trivial methods
duke@435 225 if (callee_method->code_size() <= MaxTrivialSize) return NULL;
kvn@476 226
kvn@476 227 // don't use counts with -Xcomp or CTW
kvn@476 228 if (UseInterpreter && !CompileTheWorld) {
kvn@476 229
kvn@476 230 if (!callee_method->has_compiled_code() &&
kvn@476 231 !callee_method->was_executed_more_than(0)) {
kvn@476 232 return "never executed";
kvn@476 233 }
kvn@476 234
kvn@476 235 if (is_init_with_ea(callee_method, caller_method, C)) {
kvn@476 236
kvn@476 237 // Escape Analysis: inline all executed constructors
kvn@476 238
kvn@476 239 } else if (!callee_method->was_executed_more_than(MIN2(MinInliningThreshold,
kvn@476 240 CompileThreshold >> 1))) {
kvn@476 241 return "executed < MinInliningThreshold times";
kvn@476 242 }
duke@435 243 }
duke@435 244
duke@435 245 if (callee_method->should_not_inline()) {
duke@435 246 return "disallowed by CompilerOracle";
duke@435 247 }
duke@435 248
kvn@1110 249 if (UseStringCache) {
kvn@1110 250 // Do not inline StringCache::profile() method used only at the beginning.
kvn@1110 251 if (callee_method->name() == ciSymbol::profile_name() &&
kvn@1110 252 callee_method->holder()->name() == ciSymbol::java_lang_StringCache()) {
kvn@1110 253 return "profiling method";
kvn@1110 254 }
kvn@1110 255 }
kvn@1110 256
duke@435 257 return NULL;
duke@435 258 }
duke@435 259
duke@435 260 //-----------------------------try_to_inline-----------------------------------
duke@435 261 // return NULL if ok, reason for not inlining otherwise
duke@435 262 // Relocated from "InliningClosure::try_to_inline"
kvn@476 263 const char* InlineTree::try_to_inline(ciMethod* callee_method, ciMethod* caller_method, int caller_bci, ciCallProfile& profile, WarmCallInfo* wci_result) {
duke@435 264
duke@435 265 // Old algorithm had funny accumulating BC-size counters
duke@435 266 if (UseOldInlining && ClipInlining
duke@435 267 && (int)count_inline_bcs() >= DesiredMethodLimit) {
duke@435 268 return "size > DesiredMethodLimit";
duke@435 269 }
duke@435 270
duke@435 271 const char *msg = NULL;
kvn@476 272 if ((msg = shouldInline(callee_method, caller_method, caller_bci,
kvn@476 273 profile, wci_result)) != NULL) {
kvn@476 274 return msg;
kvn@476 275 }
kvn@476 276 if ((msg = shouldNotInline(callee_method, caller_method,
kvn@476 277 wci_result)) != NULL) {
kvn@476 278 return msg;
kvn@476 279 }
duke@435 280
jrose@1592 281 if (InlineAccessors && callee_method->is_accessor()) {
jrose@1592 282 // accessor methods are not subject to any of the following limits.
jrose@1592 283 return NULL;
jrose@1592 284 }
duke@435 285
duke@435 286 // suppress a few checks for accessors and trivial methods
jrose@1592 287 if (callee_method->code_size() > MaxTrivialSize) {
kvn@476 288
duke@435 289 // don't inline into giant methods
kvn@476 290 if (C->unique() > (uint)NodeCountInliningCutoff) {
kvn@476 291 return "NodeCountInliningCutoff";
kvn@476 292 }
duke@435 293
kvn@476 294 if ((!UseInterpreter || CompileTheWorld) &&
kvn@476 295 is_init_with_ea(callee_method, caller_method, C)) {
kvn@476 296
kvn@476 297 // Escape Analysis stress testing when running Xcomp or CTW:
kvn@476 298 // inline constructors even if they are not reached.
kvn@476 299
kvn@476 300 } else if (profile.count() == 0) {
kvn@476 301 // don't inline unreached call sites
kvn@476 302 return "call site not reached";
kvn@476 303 }
duke@435 304 }
duke@435 305
jrose@1592 306 if (!C->do_inlining() && InlineAccessors) {
kvn@476 307 return "not an accessor";
kvn@476 308 }
kvn@476 309 if( inline_depth() > MaxInlineLevel ) {
kvn@476 310 return "inlining too deep";
kvn@476 311 }
twisti@2687 312
twisti@2687 313 // We need to detect recursive inlining of method handle targets: if
twisti@2687 314 // the current method is a method handle adapter and one of the
twisti@2687 315 // callers is the same method as the callee, we bail out if
twisti@2687 316 // MaxRecursiveInlineLevel is hit.
twisti@2687 317 if (method()->is_method_handle_adapter()) {
twisti@2687 318 JVMState* jvms = caller_jvms();
twisti@2687 319 int inline_level = 0;
twisti@2687 320 while (jvms != NULL && jvms->has_method()) {
twisti@2687 321 if (jvms->method() == callee_method) {
twisti@2687 322 inline_level++;
twisti@2687 323 if (inline_level > MaxRecursiveInlineLevel)
twisti@2687 324 return "recursively inlining too deep";
twisti@2687 325 }
twisti@2687 326 jvms = jvms->caller();
twisti@2687 327 }
twisti@2687 328 }
twisti@2687 329
twisti@2687 330 if (method() == callee_method && inline_depth() > MaxRecursiveInlineLevel) {
kvn@476 331 return "recursively inlining too deep";
kvn@476 332 }
duke@435 333
duke@435 334 int size = callee_method->code_size();
duke@435 335
duke@435 336 if (UseOldInlining && ClipInlining
duke@435 337 && (int)count_inline_bcs() + size >= DesiredMethodLimit) {
duke@435 338 return "size > DesiredMethodLimit";
duke@435 339 }
duke@435 340
duke@435 341 // ok, inline this method
duke@435 342 return NULL;
duke@435 343 }
duke@435 344
duke@435 345 //------------------------------pass_initial_checks----------------------------
duke@435 346 bool pass_initial_checks(ciMethod* caller_method, int caller_bci, ciMethod* callee_method) {
duke@435 347 ciInstanceKlass *callee_holder = callee_method ? callee_method->holder() : NULL;
duke@435 348 // Check if a callee_method was suggested
duke@435 349 if( callee_method == NULL ) return false;
duke@435 350 // Check if klass of callee_method is loaded
duke@435 351 if( !callee_holder->is_loaded() ) return false;
duke@435 352 if( !callee_holder->is_initialized() ) return false;
duke@435 353 if( !UseInterpreter || CompileTheWorld /* running Xcomp or CTW */ ) {
duke@435 354 // Checks that constant pool's call site has been visited
duke@435 355 // stricter than callee_holder->is_initialized()
duke@435 356 ciBytecodeStream iter(caller_method);
duke@435 357 iter.force_bci(caller_bci);
duke@435 358 Bytecodes::Code call_bc = iter.cur_bc();
twisti@1572 359 // An invokedynamic instruction does not have a klass.
twisti@1572 360 if (call_bc != Bytecodes::_invokedynamic) {
jrose@1920 361 int index = iter.get_index_u2_cpcache();
twisti@1572 362 if (!caller_method->is_klass_loaded(index, true)) {
twisti@1572 363 return false;
twisti@1572 364 }
twisti@1572 365 // Try to do constant pool resolution if running Xcomp
twisti@1572 366 if( !caller_method->check_call(index, call_bc == Bytecodes::_invokestatic) ) {
twisti@1572 367 return false;
twisti@1572 368 }
duke@435 369 }
duke@435 370 }
duke@435 371 // We will attempt to see if a class/field/etc got properly loaded. If it
duke@435 372 // did not, it may attempt to throw an exception during our probing. Catch
duke@435 373 // and ignore such exceptions and do not attempt to compile the method.
duke@435 374 if( callee_method->should_exclude() ) return false;
duke@435 375
duke@435 376 return true;
duke@435 377 }
duke@435 378
duke@435 379 #ifndef PRODUCT
duke@435 380 //------------------------------print_inlining---------------------------------
duke@435 381 // Really, the failure_msg can be a success message also.
twisti@2687 382 void InlineTree::print_inlining(ciMethod* callee_method, int caller_bci, const char* failure_msg) const {
twisti@2687 383 CompileTask::print_inlining(callee_method, inline_depth(), caller_bci, failure_msg ? failure_msg : "inline");
twisti@2687 384 if (callee_method == NULL) tty->print(" callee not monotonic or profiled");
twisti@2687 385 if (Verbose && callee_method) {
duke@435 386 const InlineTree *top = this;
duke@435 387 while( top->caller_tree() != NULL ) { top = top->caller_tree(); }
duke@435 388 tty->print(" bcs: %d+%d invoked: %d", top->count_inline_bcs(), callee_method->code_size(), callee_method->interpreter_invocation_count());
duke@435 389 }
duke@435 390 }
duke@435 391 #endif
duke@435 392
duke@435 393 //------------------------------ok_to_inline-----------------------------------
duke@435 394 WarmCallInfo* InlineTree::ok_to_inline(ciMethod* callee_method, JVMState* jvms, ciCallProfile& profile, WarmCallInfo* initial_wci) {
duke@435 395 assert(callee_method != NULL, "caller checks for optimized virtual!");
duke@435 396 #ifdef ASSERT
duke@435 397 // Make sure the incoming jvms has the same information content as me.
duke@435 398 // This means that we can eventually make this whole class AllStatic.
duke@435 399 if (jvms->caller() == NULL) {
duke@435 400 assert(_caller_jvms == NULL, "redundant instance state");
duke@435 401 } else {
duke@435 402 assert(_caller_jvms->same_calls_as(jvms->caller()), "redundant instance state");
duke@435 403 }
duke@435 404 assert(_method == jvms->method(), "redundant instance state");
duke@435 405 #endif
duke@435 406 const char *failure_msg = NULL;
duke@435 407 int caller_bci = jvms->bci();
duke@435 408 ciMethod *caller_method = jvms->method();
duke@435 409
duke@435 410 if( !pass_initial_checks(caller_method, caller_bci, callee_method)) {
duke@435 411 if( PrintInlining ) {
duke@435 412 failure_msg = "failed_initial_checks";
duke@435 413 print_inlining( callee_method, caller_bci, failure_msg);
duke@435 414 }
duke@435 415 return NULL;
duke@435 416 }
duke@435 417
duke@435 418 // Check if inlining policy says no.
duke@435 419 WarmCallInfo wci = *(initial_wci);
kvn@476 420 failure_msg = try_to_inline(callee_method, caller_method, caller_bci, profile, &wci);
duke@435 421 if (failure_msg != NULL && C->log() != NULL) {
duke@435 422 C->log()->begin_elem("inline_fail reason='");
duke@435 423 C->log()->text("%s", failure_msg);
duke@435 424 C->log()->end_elem("'");
duke@435 425 }
duke@435 426
duke@435 427 #ifndef PRODUCT
duke@435 428 if (UseOldInlining && InlineWarmCalls
duke@435 429 && (PrintOpto || PrintOptoInlining || PrintInlining)) {
duke@435 430 bool cold = wci.is_cold();
duke@435 431 bool hot = !cold && wci.is_hot();
duke@435 432 bool old_cold = (failure_msg != NULL);
duke@435 433 if (old_cold != cold || (Verbose || WizardMode)) {
duke@435 434 tty->print(" OldInlining= %4s : %s\n WCI=",
duke@435 435 old_cold ? "cold" : "hot", failure_msg ? failure_msg : "OK");
duke@435 436 wci.print();
duke@435 437 }
duke@435 438 }
duke@435 439 #endif
duke@435 440 if (UseOldInlining) {
duke@435 441 if (failure_msg == NULL)
duke@435 442 wci = *(WarmCallInfo::always_hot());
duke@435 443 else
duke@435 444 wci = *(WarmCallInfo::always_cold());
duke@435 445 }
duke@435 446 if (!InlineWarmCalls) {
duke@435 447 if (!wci.is_cold() && !wci.is_hot()) {
duke@435 448 // Do not inline the warm calls.
duke@435 449 wci = *(WarmCallInfo::always_cold());
duke@435 450 }
duke@435 451 }
duke@435 452
duke@435 453 if (!wci.is_cold()) {
duke@435 454 // In -UseOldInlining, the failure_msg may also be a success message.
duke@435 455 if (failure_msg == NULL) failure_msg = "inline (hot)";
duke@435 456
duke@435 457 // Inline!
duke@435 458 if( PrintInlining ) print_inlining( callee_method, caller_bci, failure_msg);
duke@435 459 if (UseOldInlining)
duke@435 460 build_inline_tree_for_callee(callee_method, jvms, caller_bci);
duke@435 461 if (InlineWarmCalls && !wci.is_hot())
duke@435 462 return new (C) WarmCallInfo(wci); // copy to heap
duke@435 463 return WarmCallInfo::always_hot();
duke@435 464 }
duke@435 465
duke@435 466 // Do not inline
duke@435 467 if (failure_msg == NULL) failure_msg = "too cold to inline";
duke@435 468 if( PrintInlining ) print_inlining( callee_method, caller_bci, failure_msg);
duke@435 469 return NULL;
duke@435 470 }
duke@435 471
duke@435 472 //------------------------------compute_callee_frequency-----------------------
duke@435 473 float InlineTree::compute_callee_frequency( int caller_bci ) const {
duke@435 474 int count = method()->interpreter_call_site_count(caller_bci);
duke@435 475 int invcnt = method()->interpreter_invocation_count();
duke@435 476 float freq = (float)count/(float)invcnt;
duke@435 477 // Call-site count / interpreter invocation count, scaled recursively.
duke@435 478 // Always between 0.0 and 1.0. Represents the percentage of the method's
duke@435 479 // total execution time used at this call site.
duke@435 480
duke@435 481 return freq;
duke@435 482 }
duke@435 483
duke@435 484 //------------------------------build_inline_tree_for_callee-------------------
duke@435 485 InlineTree *InlineTree::build_inline_tree_for_callee( ciMethod* callee_method, JVMState* caller_jvms, int caller_bci) {
duke@435 486 float recur_frequency = _site_invoke_ratio * compute_callee_frequency(caller_bci);
duke@435 487 // Attempt inlining.
duke@435 488 InlineTree* old_ilt = callee_at(caller_bci, callee_method);
duke@435 489 if (old_ilt != NULL) {
duke@435 490 return old_ilt;
duke@435 491 }
jrose@1592 492 int new_depth_adjust = 0;
jrose@1592 493 if (caller_jvms->method() != NULL) {
jrose@1592 494 if (caller_jvms->method()->is_method_handle_adapter())
jrose@1592 495 new_depth_adjust -= 1; // don't count actions in MH or indy adapter frames
jrose@1592 496 else if (callee_method->is_method_handle_invoke()) {
jrose@2639 497 new_depth_adjust -= 1; // don't count method handle calls from java.lang.invoke implem
jrose@1592 498 }
jrose@1592 499 if (new_depth_adjust != 0 && PrintInlining) {
jrose@1592 500 stringStream nm1; caller_jvms->method()->print_name(&nm1);
jrose@1592 501 stringStream nm2; callee_method->print_name(&nm2);
jrose@1592 502 tty->print_cr("discounting inlining depth from %s to %s", nm1.base(), nm2.base());
jrose@1592 503 }
jrose@1592 504 if (new_depth_adjust != 0 && C->log()) {
jrose@1592 505 int id1 = C->log()->identify(caller_jvms->method());
jrose@1592 506 int id2 = C->log()->identify(callee_method);
jrose@1592 507 C->log()->elem("inline_depth_discount caller='%d' callee='%d'", id1, id2);
jrose@1592 508 }
jrose@1592 509 }
jrose@1592 510 InlineTree *ilt = new InlineTree(C, this, callee_method, caller_jvms, caller_bci, recur_frequency, _site_depth_adjust + new_depth_adjust);
duke@435 511 _subtrees.append( ilt );
duke@435 512
duke@435 513 NOT_PRODUCT( _count_inlines += 1; )
duke@435 514
duke@435 515 return ilt;
duke@435 516 }
duke@435 517
duke@435 518
duke@435 519 //---------------------------------------callee_at-----------------------------
duke@435 520 InlineTree *InlineTree::callee_at(int bci, ciMethod* callee) const {
duke@435 521 for (int i = 0; i < _subtrees.length(); i++) {
duke@435 522 InlineTree* sub = _subtrees.at(i);
duke@435 523 if (sub->caller_bci() == bci && callee == sub->method()) {
duke@435 524 return sub;
duke@435 525 }
duke@435 526 }
duke@435 527 return NULL;
duke@435 528 }
duke@435 529
duke@435 530
duke@435 531 //------------------------------build_inline_tree_root-------------------------
duke@435 532 InlineTree *InlineTree::build_inline_tree_root() {
duke@435 533 Compile* C = Compile::current();
duke@435 534
duke@435 535 // Root of inline tree
jrose@1592 536 InlineTree *ilt = new InlineTree(C, NULL, C->method(), NULL, -1, 1.0F, 0);
duke@435 537
duke@435 538 return ilt;
duke@435 539 }
duke@435 540
duke@435 541
duke@435 542 //-------------------------find_subtree_from_root-----------------------------
duke@435 543 // Given a jvms, which determines a call chain from the root method,
duke@435 544 // find the corresponding inline tree.
duke@435 545 // Note: This method will be removed or replaced as InlineTree goes away.
duke@435 546 InlineTree* InlineTree::find_subtree_from_root(InlineTree* root, JVMState* jvms, ciMethod* callee, bool create_if_not_found) {
duke@435 547 InlineTree* iltp = root;
duke@435 548 uint depth = jvms && jvms->has_method() ? jvms->depth() : 0;
duke@435 549 for (uint d = 1; d <= depth; d++) {
duke@435 550 JVMState* jvmsp = jvms->of_depth(d);
duke@435 551 // Select the corresponding subtree for this bci.
duke@435 552 assert(jvmsp->method() == iltp->method(), "tree still in sync");
duke@435 553 ciMethod* d_callee = (d == depth) ? callee : jvms->of_depth(d+1)->method();
duke@435 554 InlineTree* sub = iltp->callee_at(jvmsp->bci(), d_callee);
duke@435 555 if (!sub) {
duke@435 556 if (create_if_not_found && d == depth) {
duke@435 557 return iltp->build_inline_tree_for_callee(d_callee, jvmsp, jvmsp->bci());
duke@435 558 }
duke@435 559 assert(sub != NULL, "should be a sub-ilt here");
duke@435 560 return NULL;
duke@435 561 }
duke@435 562 iltp = sub;
duke@435 563 }
duke@435 564 return iltp;
duke@435 565 }

mercurial