src/share/vm/opto/bytecodeInfo.cpp

Thu, 21 Jul 2011 11:25:07 -0700

author
kvn
date
Thu, 21 Jul 2011 11:25:07 -0700
changeset 3037
3d42f82cd811
parent 2981
aabf25fa3f05
child 3097
de847cac9235
permissions
-rw-r--r--

7063628: Use cbcond on T4
Summary: Add new short branch instruction to Hotspot sparc assembler.
Reviewed-by: never, twisti, jrose

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

mercurial