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