hotspot/src/share/vm/opto/bytecodeInfo.cpp
author vlivanov
Fri, 05 Oct 2012 18:57:10 -0700
changeset 13964 01a2b863cc61
parent 13391 30245956af37
child 13974 791cba24758f
permissions -rw-r--r--
7177003: C1: LogCompilation support Summary: add LogCompilation support in C1 - both client and tiered mode. Reviewed-by: twisti, kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
8676
9098d4e927e1 7012648: move JSR 292 to package java.lang.invoke and adjust names
jrose
parents: 7397
diff changeset
     2
 * Copyright (c) 1998, 2011, Oracle and/or its affiliates. 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
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5420
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5420
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5420
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    26
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    27
#include "classfile/vmSymbols.hpp"
8872
36680c58660e 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 8676
diff changeset
    28
#include "compiler/compileBroker.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    29
#include "compiler/compileLog.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    30
#include "interpreter/linkResolver.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    31
#include "oops/objArrayKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    32
#include "opto/callGenerator.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    33
#include "opto/parse.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    34
#include "runtime/handles.inline.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
//------------------------------InlineTree-------------------------------------
10007
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
    38
InlineTree::InlineTree(Compile* c,
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
    39
                       const InlineTree *caller_tree, ciMethod* callee,
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
    40
                       JVMState* caller_jvms, int caller_bci,
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
    41
                       float site_invoke_ratio, int max_inline_level) :
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
    42
  C(c),
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
    43
  _caller_jvms(caller_jvms),
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
    44
  _caller_tree((InlineTree*) caller_tree),
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
    45
  _method(callee),
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
    46
  _site_invoke_ratio(site_invoke_ratio),
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
    47
  _max_inline_level(max_inline_level),
10506
575ad9bccff5 7078382: JSR 292: don't count method handle adapters against inlining budgets
twisti
parents: 10007
diff changeset
    48
  _count_inline_bcs(method()->code_size_for_inlining())
4586
f1c484fca023 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 4567
diff changeset
    49
{
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
  NOT_PRODUCT(_count_inlines = 0;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
  if (_caller_jvms != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    // Keep a private copy of the caller_jvms:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
    _caller_jvms = new (C) JVMState(caller_jvms->method(), caller_tree->caller_jvms());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
    _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
    55
    assert(!caller_jvms->should_reexecute(), "there should be no reexecute bytecode with inlining");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
  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
    58
  assert((caller_tree == NULL ? 0 : caller_tree->stack_depth() + 1) == stack_depth(), "correct (redundant) depth parameter");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  assert(caller_bci == this->caller_bci(), "correct (redundant) bci parameter");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  if (UseOldInlining) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    // Update hierarchical counts, count_inline_bcs() and count_inlines()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
    InlineTree *caller = (InlineTree *)caller_tree;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
    for( ; caller != NULL; caller = ((InlineTree *)(caller->caller_tree())) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
      caller->_count_inline_bcs += count_inline_bcs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
      NOT_PRODUCT(caller->_count_inlines++;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
4586
f1c484fca023 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 4567
diff changeset
    70
InlineTree::InlineTree(Compile* c, ciMethod* callee_method, JVMState* caller_jvms,
10007
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
    71
                       float site_invoke_ratio, int max_inline_level) :
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
    72
  C(c),
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
    73
  _caller_jvms(caller_jvms),
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
    74
  _caller_tree(NULL),
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
    75
  _method(callee_method),
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
    76
  _site_invoke_ratio(site_invoke_ratio),
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
    77
  _max_inline_level(max_inline_level),
4586
f1c484fca023 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 4567
diff changeset
    78
  _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
    79
{
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  NOT_PRODUCT(_count_inlines = 0;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  assert(!UseOldInlining, "do not use for old stuff");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
214
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
    84
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
    85
                            ciMethod* caller_method, Compile* C) {
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
    86
  // 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
    87
  // a super constructor is called from an inlined java constructor.
952
38812d18eec0 6684714: Optimize EA Connection Graph build performance
kvn
parents: 214
diff changeset
    88
  return C->do_escape_analysis() && EliminateAllocations &&
214
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
    89
         ( callee_method->is_initializer() ||
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
    90
           (caller_method->is_initializer() &&
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
    91
            caller_method != C->method() &&
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
    92
            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
    93
         );
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
    94
}
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
    95
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
    96
// positive filter: should callee be inlined?  returns NULL, if yes, or rejection msg
9633
92a7a2841a16 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 9446
diff changeset
    97
const char* InlineTree::should_inline(ciMethod* callee_method, ciMethod* caller_method, int caller_bci, ciCallProfile& profile, WarmCallInfo* wci_result) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  // Allows targeted inlining
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  if(callee_method->should_inline()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
    *wci_result = *(WarmCallInfo::always_hot());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    if (PrintInlining && Verbose) {
10007
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
   102
      CompileTask::print_inline_indent(inline_level());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
      tty->print_cr("Inlined method is hot: ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // positive filter: should send be inlined?  returns NULL (--> yes)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  // or rejection msg
10506
575ad9bccff5 7078382: JSR 292: don't count method handle adapters against inlining budgets
twisti
parents: 10007
diff changeset
   110
  int size = callee_method->code_size_for_inlining();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  // 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
   113
  if(callee_method->interpreter_throwout_count() > InlineThrowCount &&
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   114
     size < InlineThrowMaxSize ) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
    wci_result->set_profit(wci_result->profit() * 100);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
    if (PrintInlining && Verbose) {
10007
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
   117
      CompileTask::print_inline_indent(inline_level());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
      tty->print_cr("Inlined method with many throws (throws=%d):", callee_method->interpreter_throwout_count());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  if (!UseOldInlining) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    return NULL;  // size and frequency are represented in a new way
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
9633
92a7a2841a16 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 9446
diff changeset
   127
  int default_max_inline_size = C->max_inline_size();
92a7a2841a16 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 9446
diff changeset
   128
  int inline_small_code_size  = InlineSmallCode / 4;
92a7a2841a16 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 9446
diff changeset
   129
  int max_inline_size         = default_max_inline_size;
92a7a2841a16 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 9446
diff changeset
   130
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  int call_site_count  = method()->scale_count(profile.count());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  int invoke_count     = method()->interpreter_invocation_count();
9633
92a7a2841a16 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 9446
diff changeset
   133
92a7a2841a16 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 9446
diff changeset
   134
  assert(invoke_count != 0, "require invocation count greater than zero");
92a7a2841a16 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 9446
diff changeset
   135
  int freq = call_site_count / invoke_count;
214
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   136
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  // 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
   138
  if ((freq >= InlineFrequencyRatio) ||
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   139
      (call_site_count >= InlineFrequencyCount) ||
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   140
      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
   141
9633
92a7a2841a16 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 9446
diff changeset
   142
    max_inline_size = C->freq_inline_size();
92a7a2841a16 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 9446
diff changeset
   143
    if (size <= max_inline_size && TraceFrequencyInlining) {
10007
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
   144
      CompileTask::print_inline_indent(inline_level());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
      tty->print_cr("Inlined frequent method (freq=%d count=%d):", freq, call_site_count);
10007
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
   146
      CompileTask::print_inline_indent(inline_level());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
      callee_method->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
      tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
    // 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
   152
    if (callee_method->has_compiled_code() &&
9633
92a7a2841a16 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 9446
diff changeset
   153
        callee_method->instructions_size(CompLevel_full_optimization) > inline_small_code_size)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
      return "already compiled into a medium method";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  }
9633
92a7a2841a16 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 9446
diff changeset
   156
  if (size > max_inline_size) {
92a7a2841a16 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 9446
diff changeset
   157
    if (max_inline_size > default_max_inline_size)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
      return "hot method too big";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
    return "too big";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   165
// negative filter: should callee NOT be inlined?  returns NULL, ok to inline, or rejection msg
9633
92a7a2841a16 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 9446
diff changeset
   166
const char* InlineTree::should_not_inline(ciMethod *callee_method, ciMethod* caller_method, WarmCallInfo* wci_result) const {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
  // negative filter: should send NOT be inlined?  returns NULL (--> inline) or rejection msg
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
  if (!UseOldInlining) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
    const char* fail = NULL;
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   170
    if ( callee_method->is_abstract())               fail = "abstract method";
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
    // note: we allow ik->is_abstract()
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   172
    if (!callee_method->holder()->is_initialized())  fail = "method holder not initialized";
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   173
    if ( callee_method->is_native())                 fail = "native method";
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   174
    if ( callee_method->dont_inline())               fail = "don't inline by annotation";
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    if (fail) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
      *wci_result = *(WarmCallInfo::always_cold());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
      return fail;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
    if (callee_method->has_unloaded_classes_in_signature()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
      wci_result->set_profit(wci_result->profit() * 0.1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    // don't inline exception code unless the top method belongs to an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
    // exception class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
    if (callee_method->holder()->is_subclass_of(C->env()->Throwable_klass())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
      ciMethod* top_method = caller_jvms() ? caller_jvms()->of_depth(1)->method() : method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
      if (!top_method->holder()->is_subclass_of(C->env()->Throwable_klass())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
        wci_result->set_profit(wci_result->profit() * 0.1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   194
    if (callee_method->has_compiled_code() &&
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   195
        callee_method->instructions_size(CompLevel_full_optimization) > InlineSmallCode) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
      wci_result->set_profit(wci_result->profit() * 0.1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
      // %%% adjust wci_result->size()?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   203
  // First check all inlining restrictions which are required for correctness
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   204
  if ( callee_method->is_abstract())                        return "abstract method";
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   205
  // note: we allow ik->is_abstract()
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   206
  if (!callee_method->holder()->is_initialized())           return "method holder not initialized";
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   207
  if ( callee_method->is_native())                          return "native method";
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   208
  if ( callee_method->dont_inline())                        return "don't inline by annotation";
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   209
  if ( callee_method->has_unloaded_classes_in_signature())  return "unloaded signature classes";
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   210
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   211
  if (callee_method->force_inline() || callee_method->should_inline()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
    // ignore heuristic controls on inlining
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  // Now perform checks which are heuristic
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   218
  if (callee_method->has_compiled_code() &&
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   219
      callee_method->instructions_size(CompLevel_full_optimization) > InlineSmallCode) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
    return "already compiled into a big method";
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   221
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
  // don't inline exception code unless the top method belongs to an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  // exception class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  if (caller_tree() != NULL &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
      callee_method->holder()->is_subclass_of(C->env()->Throwable_klass())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
    const InlineTree *top = this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    while (top->caller_tree() != NULL) top = top->caller_tree();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
    ciInstanceKlass* k = top->method()->holder();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    if (!k->is_subclass_of(C->env()->Throwable_klass()))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
      return "exception method";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
12160
c3ce1d6b88e1 7152961: InlineTree::should_not_inline may exit prematurely
never
parents: 10547
diff changeset
   234
  if (callee_method->should_not_inline()) {
c3ce1d6b88e1 7152961: InlineTree::should_not_inline may exit prematurely
never
parents: 10547
diff changeset
   235
    return "disallowed by CompilerOracle";
c3ce1d6b88e1 7152961: InlineTree::should_not_inline may exit prematurely
never
parents: 10547
diff changeset
   236
  }
c3ce1d6b88e1 7152961: InlineTree::should_not_inline may exit prematurely
never
parents: 10547
diff changeset
   237
c3ce1d6b88e1 7152961: InlineTree::should_not_inline may exit prematurely
never
parents: 10547
diff changeset
   238
  if (UseStringCache) {
c3ce1d6b88e1 7152961: InlineTree::should_not_inline may exit prematurely
never
parents: 10547
diff changeset
   239
    // Do not inline StringCache::profile() method used only at the beginning.
c3ce1d6b88e1 7152961: InlineTree::should_not_inline may exit prematurely
never
parents: 10547
diff changeset
   240
    if (callee_method->name() == ciSymbol::profile_name() &&
c3ce1d6b88e1 7152961: InlineTree::should_not_inline may exit prematurely
never
parents: 10547
diff changeset
   241
        callee_method->holder()->name() == ciSymbol::java_lang_StringCache()) {
c3ce1d6b88e1 7152961: InlineTree::should_not_inline may exit prematurely
never
parents: 10547
diff changeset
   242
      return "profiling method";
c3ce1d6b88e1 7152961: InlineTree::should_not_inline may exit prematurely
never
parents: 10547
diff changeset
   243
    }
c3ce1d6b88e1 7152961: InlineTree::should_not_inline may exit prematurely
never
parents: 10547
diff changeset
   244
  }
c3ce1d6b88e1 7152961: InlineTree::should_not_inline may exit prematurely
never
parents: 10547
diff changeset
   245
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  // use frequency-based objections only for non-trivial methods
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   247
  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
   248
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   249
  // don't use counts with -Xcomp or CTW
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   250
  if (UseInterpreter && !CompileTheWorld) {
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   251
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   252
    if (!callee_method->has_compiled_code() &&
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   253
        !callee_method->was_executed_more_than(0)) {
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   254
      return "never executed";
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   255
    }
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   256
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   257
    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
   258
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   259
      // Escape Analysis: inline all executed constructors
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   260
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   261
    } 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
   262
                                                           CompileThreshold >> 1))) {
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   263
      return "executed < MinInliningThreshold times";
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   264
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
//-----------------------------try_to_inline-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
// return NULL if ok, reason for not inlining otherwise
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
// Relocated from "InliningClosure::try_to_inline"
214
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   273
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
   274
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  // Old algorithm had funny accumulating BC-size counters
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
  if (UseOldInlining && ClipInlining
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
      && (int)count_inline_bcs() >= DesiredMethodLimit) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
    return "size > DesiredMethodLimit";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
  const char *msg = NULL;
9633
92a7a2841a16 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 9446
diff changeset
   282
  msg = should_inline(callee_method, caller_method, caller_bci, profile, wci_result);
92a7a2841a16 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 9446
diff changeset
   283
  if (msg != NULL)
214
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   284
    return msg;
9633
92a7a2841a16 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 9446
diff changeset
   285
92a7a2841a16 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 9446
diff changeset
   286
  msg = should_not_inline(callee_method, caller_method, wci_result);
92a7a2841a16 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 9446
diff changeset
   287
  if (msg != NULL)
214
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   288
    return msg;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
4586
f1c484fca023 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 4567
diff changeset
   290
  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
   291
    // 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
   292
    return NULL;
f1c484fca023 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 4567
diff changeset
   293
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
  // suppress a few checks for accessors and trivial methods
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   296
  if (callee_method->code_size() > MaxTrivialSize) {
214
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   297
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
    // don't inline into giant methods
214
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   299
    if (C->unique() > (uint)NodeCountInliningCutoff) {
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   300
      return "NodeCountInliningCutoff";
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   301
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
214
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   303
    if ((!UseInterpreter || CompileTheWorld) &&
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   304
        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
   305
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   306
      // 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
   307
      // inline constructors even if they are not reached.
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   308
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   309
    } else if (profile.count() == 0) {
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   310
      // don't inline unreached call sites
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   311
      return "call site not reached";
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   312
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   313
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   314
4586
f1c484fca023 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 4567
diff changeset
   315
  if (!C->do_inlining() && InlineAccessors) {
214
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   316
    return "not an accessor";
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   317
  }
10007
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
   318
  if (inline_level() > _max_inline_level) {
214
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   319
    return "inlining too deep";
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   320
  }
8872
36680c58660e 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 8676
diff changeset
   321
9435
b16821523fe3 6552561: MaxRecursiveInlineLevel flag doesn't operate correctly
twisti
parents: 8872
diff changeset
   322
  // detect direct and indirect recursive inlining
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   323
  if (!callee_method->is_compiled_lambda_form()) {
9435
b16821523fe3 6552561: MaxRecursiveInlineLevel flag doesn't operate correctly
twisti
parents: 8872
diff changeset
   324
    // count the current method and the callee
b16821523fe3 6552561: MaxRecursiveInlineLevel flag doesn't operate correctly
twisti
parents: 8872
diff changeset
   325
    int inline_level = (method() == callee_method) ? 1 : 0;
b16821523fe3 6552561: MaxRecursiveInlineLevel flag doesn't operate correctly
twisti
parents: 8872
diff changeset
   326
    if (inline_level > MaxRecursiveInlineLevel)
b16821523fe3 6552561: MaxRecursiveInlineLevel flag doesn't operate correctly
twisti
parents: 8872
diff changeset
   327
      return "recursively inlining too deep";
b16821523fe3 6552561: MaxRecursiveInlineLevel flag doesn't operate correctly
twisti
parents: 8872
diff changeset
   328
    // count callers of current method and callee
8872
36680c58660e 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 8676
diff changeset
   329
    JVMState* jvms = caller_jvms();
36680c58660e 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 8676
diff changeset
   330
    while (jvms != NULL && jvms->has_method()) {
36680c58660e 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 8676
diff changeset
   331
      if (jvms->method() == callee_method) {
36680c58660e 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 8676
diff changeset
   332
        inline_level++;
36680c58660e 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 8676
diff changeset
   333
        if (inline_level > MaxRecursiveInlineLevel)
36680c58660e 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 8676
diff changeset
   334
          return "recursively inlining too deep";
36680c58660e 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 8676
diff changeset
   335
      }
36680c58660e 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 8676
diff changeset
   336
      jvms = jvms->caller();
36680c58660e 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 8676
diff changeset
   337
    }
36680c58660e 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 8676
diff changeset
   338
  }
36680c58660e 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 8676
diff changeset
   339
10506
575ad9bccff5 7078382: JSR 292: don't count method handle adapters against inlining budgets
twisti
parents: 10007
diff changeset
   340
  int size = callee_method->code_size_for_inlining();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   341
489c9b5090e2 Initial load
duke
parents:
diff changeset
   342
  if (UseOldInlining && ClipInlining
489c9b5090e2 Initial load
duke
parents:
diff changeset
   343
      && (int)count_inline_bcs() + size >= DesiredMethodLimit) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
    return "size > DesiredMethodLimit";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   346
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
  // ok, inline this method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   348
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   349
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
489c9b5090e2 Initial load
duke
parents:
diff changeset
   351
//------------------------------pass_initial_checks----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   352
bool pass_initial_checks(ciMethod* caller_method, int caller_bci, ciMethod* callee_method) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
  ciInstanceKlass *callee_holder = callee_method ? callee_method->holder() : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   354
  // Check if a callee_method was suggested
489c9b5090e2 Initial load
duke
parents:
diff changeset
   355
  if( callee_method == NULL )            return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   356
  // Check if klass of callee_method is loaded
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  if( !callee_holder->is_loaded() )      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
  if( !callee_holder->is_initialized() ) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
  if( !UseInterpreter || CompileTheWorld /* running Xcomp or CTW */ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
    // Checks that constant pool's call site has been visited
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
    // stricter than callee_holder->is_initialized()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
    ciBytecodeStream iter(caller_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
    iter.force_bci(caller_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
    Bytecodes::Code call_bc = iter.cur_bc();
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 3603
diff changeset
   365
    // An invokedynamic instruction does not have a klass.
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 3603
diff changeset
   366
    if (call_bc != Bytecodes::_invokedynamic) {
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 5687
diff changeset
   367
      int index = iter.get_index_u2_cpcache();
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 3603
diff changeset
   368
      if (!caller_method->is_klass_loaded(index, true)) {
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 3603
diff changeset
   369
        return false;
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 3603
diff changeset
   370
      }
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 3603
diff changeset
   371
      // Try to do constant pool resolution if running Xcomp
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 3603
diff changeset
   372
      if( !caller_method->check_call(index, call_bc == Bytecodes::_invokestatic) ) {
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 3603
diff changeset
   373
        return false;
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 3603
diff changeset
   374
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
  // We will attempt to see if a class/field/etc got properly loaded.  If it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   378
  // did not, it may attempt to throw an exception during our probing.  Catch
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
  // and ignore such exceptions and do not attempt to compile the method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  if( callee_method->should_exclude() )  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
10509
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   385
//------------------------------check_can_parse--------------------------------
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   386
const char* InlineTree::check_can_parse(ciMethod* callee) {
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   387
  // Certain methods cannot be parsed at all:
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   388
  if ( callee->is_native())                     return "native method";
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   389
  if ( callee->is_abstract())                   return "abstract method";
10509
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   390
  if (!callee->can_be_compiled())               return "not compilable (disabled)";
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   391
  if (!callee->has_balanced_monitors())         return "not compilable (unbalanced monitors)";
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   392
  if ( callee->get_flow_analysis()->failing())  return "not compilable (flow analysis failed)";
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   393
  return NULL;
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   394
}
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   395
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   396
//------------------------------print_inlining---------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
// Really, the failure_msg can be a success message also.
8872
36680c58660e 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 8676
diff changeset
   398
void InlineTree::print_inlining(ciMethod* callee_method, int caller_bci, const char* failure_msg) const {
10007
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
   399
  CompileTask::print_inlining(callee_method, inline_level(), caller_bci, failure_msg ? failure_msg : "inline");
8872
36680c58660e 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 8676
diff changeset
   400
  if (callee_method == NULL)  tty->print(" callee not monotonic or profiled");
36680c58660e 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 8676
diff changeset
   401
  if (Verbose && callee_method) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
    const InlineTree *top = this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   403
    while( top->caller_tree() != NULL ) { top = top->caller_tree(); }
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   404
    //tty->print("  bcs: %d+%d  invoked: %d", top->count_inline_bcs(), callee_method->code_size(), callee_method->interpreter_invocation_count());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   405
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   406
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   407
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
//------------------------------ok_to_inline-----------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
WarmCallInfo* InlineTree::ok_to_inline(ciMethod* callee_method, JVMState* jvms, ciCallProfile& profile, WarmCallInfo* initial_wci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
  assert(callee_method != NULL, "caller checks for optimized virtual!");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   412
  // Make sure the incoming jvms has the same information content as me.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
  // This means that we can eventually make this whole class AllStatic.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   414
  if (jvms->caller() == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   415
    assert(_caller_jvms == NULL, "redundant instance state");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   416
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   417
    assert(_caller_jvms->same_calls_as(jvms->caller()), "redundant instance state");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   418
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   419
  assert(_method == jvms->method(), "redundant instance state");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   420
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
  const char *failure_msg   = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
  int         caller_bci    = jvms->bci();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   423
  ciMethod   *caller_method = jvms->method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   424
10509
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   425
  // Do some initial checks.
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   426
  if (!pass_initial_checks(caller_method, caller_bci, callee_method)) {
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   427
    if (PrintInlining)  print_inlining(callee_method, caller_bci, "failed initial checks");
1
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
10509
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   431
  // Do some parse checks.
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   432
  failure_msg = check_can_parse(callee_method);
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   433
  if (failure_msg != NULL) {
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   434
    if (PrintInlining)  print_inlining(callee_method, caller_bci, failure_msg);
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   435
    return NULL;
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   436
  }
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   437
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  // Check if inlining policy says no.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
  WarmCallInfo wci = *(initial_wci);
214
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   440
  failure_msg = try_to_inline(callee_method, caller_method, caller_bci, profile, &wci);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  if (failure_msg != NULL && C->log() != NULL) {
13964
01a2b863cc61 7177003: C1: LogCompilation support
vlivanov
parents: 13391
diff changeset
   442
    C->log()->inline_fail(failure_msg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  if (UseOldInlining && InlineWarmCalls
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
      && (PrintOpto || PrintOptoInlining || PrintInlining)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
    bool cold = wci.is_cold();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
    bool hot  = !cold && wci.is_hot();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
    bool old_cold = (failure_msg != NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
    if (old_cold != cold || (Verbose || WizardMode)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
      tty->print("   OldInlining= %4s : %s\n           WCI=",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
                 old_cold ? "cold" : "hot", failure_msg ? failure_msg : "OK");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
      wci.print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
  if (UseOldInlining) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
    if (failure_msg == NULL)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
      wci = *(WarmCallInfo::always_hot());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
    else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
      wci = *(WarmCallInfo::always_cold());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  if (!InlineWarmCalls) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
    if (!wci.is_cold() && !wci.is_hot()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
      // Do not inline the warm calls.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
      wci = *(WarmCallInfo::always_cold());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
  if (!wci.is_cold()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
    // In -UseOldInlining, the failure_msg may also be a success message.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
    if (failure_msg == NULL)  failure_msg = "inline (hot)";
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
    // Inline!
10509
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   476
    if (PrintInlining)  print_inlining(callee_method, caller_bci, failure_msg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
    if (UseOldInlining)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
      build_inline_tree_for_callee(callee_method, jvms, caller_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
    if (InlineWarmCalls && !wci.is_hot())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
      return new (C) WarmCallInfo(wci);  // copy to heap
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
    return WarmCallInfo::always_hot();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
  // Do not inline
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  if (failure_msg == NULL)  failure_msg = "too cold to inline";
10509
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   486
  if (PrintInlining)  print_inlining(callee_method, caller_bci, failure_msg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
//------------------------------compute_callee_frequency-----------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
float InlineTree::compute_callee_frequency( int caller_bci ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  int count  = method()->interpreter_call_site_count(caller_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
  int invcnt = method()->interpreter_invocation_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
  float freq = (float)count/(float)invcnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
  // Call-site count / interpreter invocation count, scaled recursively.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  // Always between 0.0 and 1.0.  Represents the percentage of the method's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  // total execution time used at this call site.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  return freq;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
//------------------------------build_inline_tree_for_callee-------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
InlineTree *InlineTree::build_inline_tree_for_callee( ciMethod* callee_method, JVMState* caller_jvms, int caller_bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  float recur_frequency = _site_invoke_ratio * compute_callee_frequency(caller_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  // Attempt inlining.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
  InlineTree* old_ilt = callee_at(caller_bci, callee_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
  if (old_ilt != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
    return old_ilt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  }
10007
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
   510
  int max_inline_level_adjust = 0;
4586
f1c484fca023 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 4567
diff changeset
   511
  if (caller_jvms->method() != NULL) {
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   512
    if (caller_jvms->method()->is_compiled_lambda_form())
10007
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
   513
      max_inline_level_adjust += 1;  // don't count actions in MH or indy adapter frames
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   514
    else if (callee_method->is_method_handle_intrinsic() ||
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   515
             callee_method->is_compiled_lambda_form()) {
10007
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
   516
      max_inline_level_adjust += 1;  // don't count method handle calls from java.lang.invoke implem
4586
f1c484fca023 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 4567
diff changeset
   517
    }
10007
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
   518
    if (max_inline_level_adjust != 0 && PrintInlining && (Verbose || WizardMode)) {
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
   519
      CompileTask::print_inline_indent(inline_level());
9633
92a7a2841a16 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 9446
diff changeset
   520
      tty->print_cr(" \\-> discounting inline depth");
4586
f1c484fca023 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 4567
diff changeset
   521
    }
10007
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
   522
    if (max_inline_level_adjust != 0 && C->log()) {
4586
f1c484fca023 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 4567
diff changeset
   523
      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
   524
      int id2 = C->log()->identify(callee_method);
10007
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
   525
      C->log()->elem("inline_level_discount caller='%d' callee='%d'", id1, id2);
4586
f1c484fca023 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 4567
diff changeset
   526
    }
f1c484fca023 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 4567
diff changeset
   527
  }
10007
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
   528
  InlineTree* ilt = new InlineTree(C, this, callee_method, caller_jvms, caller_bci, recur_frequency, _max_inline_level + max_inline_level_adjust);
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
   529
  _subtrees.append(ilt);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  NOT_PRODUCT( _count_inlines += 1; )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  return ilt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
//---------------------------------------callee_at-----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
InlineTree *InlineTree::callee_at(int bci, ciMethod* callee) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  for (int i = 0; i < _subtrees.length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
    InlineTree* sub = _subtrees.at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
    if (sub->caller_bci() == bci && callee == sub->method()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
      return sub;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
//------------------------------build_inline_tree_root-------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
InlineTree *InlineTree::build_inline_tree_root() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
  Compile* C = Compile::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
  // Root of inline tree
10007
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
   554
  InlineTree* ilt = new InlineTree(C, NULL, C->method(), NULL, -1, 1.0F, MaxInlineLevel);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
  return ilt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   558
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
//-------------------------find_subtree_from_root-----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
// Given a jvms, which determines a call chain from the root method,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   562
// find the corresponding inline tree.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
// Note: This method will be removed or replaced as InlineTree goes away.
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   564
InlineTree* InlineTree::find_subtree_from_root(InlineTree* root, JVMState* jvms, ciMethod* callee) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  InlineTree* iltp = root;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
  uint depth = jvms && jvms->has_method() ? jvms->depth() : 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  for (uint d = 1; d <= depth; d++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
    JVMState* jvmsp  = jvms->of_depth(d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
    // Select the corresponding subtree for this bci.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   570
    assert(jvmsp->method() == iltp->method(), "tree still in sync");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
    ciMethod* d_callee = (d == depth) ? callee : jvms->of_depth(d+1)->method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
    InlineTree* sub = iltp->callee_at(jvmsp->bci(), d_callee);
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   573
    if (sub == NULL) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   574
      if (d == depth) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   575
        sub = iltp->build_inline_tree_for_callee(d_callee, jvmsp, jvmsp->bci());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
      }
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   577
      guarantee(sub != NULL, "should be a sub-ilt here");
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   578
      return sub;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
    iltp = sub;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  return iltp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
}
10547
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   584
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   585
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   586
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   587
#ifndef PRODUCT
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   588
void InlineTree::print_impl(outputStream* st, int indent) const {
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   589
  for (int i = 0; i < indent; i++) st->print(" ");
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   590
  st->print(" @ %d ", caller_bci());
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   591
  method()->print_short_name(st);
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   592
  st->cr();
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   593
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   594
  for (int i = 0 ; i < _subtrees.length(); i++) {
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   595
    _subtrees.at(i)->print_impl(st, indent + 2);
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   596
  }
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   597
}
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   598
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   599
void InlineTree::print_value_on(outputStream* st) const {
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   600
  print_impl(st, 2);
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   601
}
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   602
#endif