src/share/vm/opto/bytecodeInfo.cpp

Thu, 03 Jul 2008 18:02:47 -0700

author
kvn
date
Thu, 03 Jul 2008 18:02:47 -0700
changeset 679
524eca34ea76
parent 476
874b2c4f43d1
child 680
4a4c365f777d
permissions
-rw-r--r--

6684714: Optimize EA Connection Graph build performance
Summary: switch on EA by default, optimize Connection Graph construction
Reviewed-by: rasbold, never

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

mercurial