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