hotspot/src/share/vm/opto/bytecodeInfo.cpp
author kvn
Tue, 05 Nov 2013 17:38:04 -0800
changeset 22838 82c7497fbad4
parent 20689 bc5805c29150
child 21582 6c76cdd733fe
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
13963
e5b53c306fb5 7197424: update copyright year to match last edit in jdk8 hotspot repository
mikael
parents: 13391
diff changeset
     2
 * Copyright (c) 1998, 2012, 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"
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13974
diff changeset
    26
#include "ci/ciReplay.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    27
#include "classfile/systemDictionary.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    28
#include "classfile/vmSymbols.hpp"
8872
36680c58660e 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 8676
diff changeset
    29
#include "compiler/compileBroker.hpp"
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    30
#include "compiler/compileLog.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    31
#include "interpreter/linkResolver.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    32
#include "oops/objArrayKlass.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    33
#include "opto/callGenerator.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    34
#include "opto/parse.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 6453
diff changeset
    35
#include "runtime/handles.inline.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
//=============================================================================
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
//------------------------------InlineTree-------------------------------------
10007
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
    39
InlineTree::InlineTree(Compile* c,
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
    40
                       const InlineTree *caller_tree, ciMethod* callee,
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
    41
                       JVMState* caller_jvms, int caller_bci,
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
    42
                       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
    43
  C(c),
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
    44
  _caller_jvms(caller_jvms),
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
    45
  _caller_tree((InlineTree*) caller_tree),
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
    46
  _method(callee),
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
    47
  _site_invoke_ratio(site_invoke_ratio),
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
    48
  _max_inline_level(max_inline_level),
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
    49
  _count_inline_bcs(method()->code_size_for_inlining()),
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
    50
  _subtrees(c->comp_arena(), 2, 0, NULL),
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
    51
  _msg(NULL)
4586
f1c484fca023 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 4567
diff changeset
    52
{
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
  NOT_PRODUCT(_count_inlines = 0;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
  if (_caller_jvms != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    // Keep a private copy of the caller_jvms:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
    _caller_jvms = new (C) JVMState(caller_jvms->method(), caller_tree->caller_jvms());
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
    _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
    58
    assert(!caller_jvms->should_reexecute(), "there should be no reexecute bytecode with inlining");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  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
    61
  assert((caller_tree == NULL ? 0 : caller_tree->stack_depth() + 1) == stack_depth(), "correct (redundant) depth parameter");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  assert(caller_bci == this->caller_bci(), "correct (redundant) bci parameter");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  if (UseOldInlining) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
    // Update hierarchical counts, count_inline_bcs() and count_inlines()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
    InlineTree *caller = (InlineTree *)caller_tree;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
    for( ; caller != NULL; caller = ((InlineTree *)(caller->caller_tree())) ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
      caller->_count_inline_bcs += count_inline_bcs();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
      NOT_PRODUCT(caller->_count_inlines++;)
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
4586
f1c484fca023 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 4567
diff changeset
    73
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
    74
                       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
    75
  C(c),
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
    76
  _caller_jvms(caller_jvms),
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
    77
  _caller_tree(NULL),
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
    78
  _method(callee_method),
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
    79
  _site_invoke_ratio(site_invoke_ratio),
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
    80
  _max_inline_level(max_inline_level),
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
    81
  _count_inline_bcs(method()->code_size()),
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
    82
  _msg(NULL)
4586
f1c484fca023 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 4567
diff changeset
    83
{
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  NOT_PRODUCT(_count_inlines = 0;)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  assert(!UseOldInlining, "do not use for old stuff");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
17386
e3b1a1af9968 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 17383
diff changeset
    88
/**
e3b1a1af9968 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 17383
diff changeset
    89
 *  Return true when EA is ON and a java constructor is called or
e3b1a1af9968 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 17383
diff changeset
    90
 *  a super constructor is called from an inlined java constructor.
e3b1a1af9968 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 17383
diff changeset
    91
 *  Also return true for boxing methods.
e3b1a1af9968 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 17383
diff changeset
    92
 */
214
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
    93
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
    94
                            ciMethod* caller_method, Compile* C) {
17386
e3b1a1af9968 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 17383
diff changeset
    95
  if (!C->do_escape_analysis() || !EliminateAllocations) {
e3b1a1af9968 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 17383
diff changeset
    96
    return false; // EA is off
e3b1a1af9968 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 17383
diff changeset
    97
  }
e3b1a1af9968 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 17383
diff changeset
    98
  if (callee_method->is_initializer()) {
e3b1a1af9968 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 17383
diff changeset
    99
    return true; // constuctor
e3b1a1af9968 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 17383
diff changeset
   100
  }
e3b1a1af9968 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 17383
diff changeset
   101
  if (caller_method->is_initializer() &&
e3b1a1af9968 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 17383
diff changeset
   102
      caller_method != C->method() &&
e3b1a1af9968 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 17383
diff changeset
   103
      caller_method->holder()->is_subclass_of(callee_method->holder())) {
e3b1a1af9968 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 17383
diff changeset
   104
    return true; // super constructor is called from inlined constructor
e3b1a1af9968 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 17383
diff changeset
   105
  }
e3b1a1af9968 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 17383
diff changeset
   106
  if (C->eliminate_boxing() && callee_method->is_boxing_method()) {
e3b1a1af9968 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 17383
diff changeset
   107
    return true;
e3b1a1af9968 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 17383
diff changeset
   108
  }
e3b1a1af9968 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 17383
diff changeset
   109
  return false;
214
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   110
}
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   111
17386
e3b1a1af9968 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 17383
diff changeset
   112
/**
e3b1a1af9968 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 17383
diff changeset
   113
 *  Force inlining unboxing accessor.
e3b1a1af9968 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 17383
diff changeset
   114
 */
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 16373
diff changeset
   115
static bool is_unboxing_method(ciMethod* callee_method, Compile* C) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 16373
diff changeset
   116
  return C->eliminate_boxing() && callee_method->is_unboxing_method();
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 16373
diff changeset
   117
}
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 16373
diff changeset
   118
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   119
// positive filter: should callee be inlined?
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   120
bool InlineTree::should_inline(ciMethod* callee_method, ciMethod* caller_method,
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   121
                               int caller_bci, ciCallProfile& profile,
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   122
                               WarmCallInfo* wci_result) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  // Allows targeted inlining
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  if(callee_method->should_inline()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
    *wci_result = *(WarmCallInfo::always_hot());
20073
bfc95277d42b 8022585: VM crashes when ran with -XX:+PrintInlining
kvn
parents: 18946
diff changeset
   126
    if (C->print_inlining() && Verbose) {
10007
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
   127
      CompileTask::print_inline_indent(inline_level());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
      tty->print_cr("Inlined method is hot: ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
    }
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   130
    set_msg("force inline by CompilerOracle");
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   131
    return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
10506
575ad9bccff5 7078382: JSR 292: don't count method handle adapters against inlining budgets
twisti
parents: 10007
diff changeset
   134
  int size = callee_method->code_size_for_inlining();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
  // 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
   137
  if(callee_method->interpreter_throwout_count() > InlineThrowCount &&
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   138
     size < InlineThrowMaxSize ) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
    wci_result->set_profit(wci_result->profit() * 100);
20073
bfc95277d42b 8022585: VM crashes when ran with -XX:+PrintInlining
kvn
parents: 18946
diff changeset
   140
    if (C->print_inlining() && Verbose) {
10007
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
   141
      CompileTask::print_inline_indent(inline_level());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
      tty->print_cr("Inlined method with many throws (throws=%d):", callee_method->interpreter_throwout_count());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
    }
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   144
    set_msg("many throws");
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   145
    return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
  if (!UseOldInlining) {
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   149
    set_msg("!UseOldInlining");
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   150
    return true;  // size and frequency are represented in a new way
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
9633
92a7a2841a16 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 9446
diff changeset
   153
  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
   154
  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
   155
  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
   156
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
  int call_site_count  = method()->scale_count(profile.count());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
  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
   159
92a7a2841a16 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 9446
diff changeset
   160
  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
   161
  int freq = call_site_count / invoke_count;
214
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   162
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
  // 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
   164
  if ((freq >= InlineFrequencyRatio) ||
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   165
      (call_site_count >= InlineFrequencyCount) ||
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 16373
diff changeset
   166
      is_unboxing_method(callee_method, C) ||
214
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   167
      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
   168
9633
92a7a2841a16 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 9446
diff changeset
   169
    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
   170
    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
   171
      CompileTask::print_inline_indent(inline_level());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
      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
   173
      CompileTask::print_inline_indent(inline_level());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
      callee_method->print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
      tty->cr();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
    // 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
   179
    if (callee_method->has_compiled_code() &&
16373
8f8a2a1c5d09 8010222: 8007439 disabled inlining of cold accessor methods
kvn
parents: 15816
diff changeset
   180
        callee_method->instructions_size() > inline_small_code_size) {
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   181
      set_msg("already compiled into a medium method");
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   182
      return false;
16373
8f8a2a1c5d09 8010222: 8007439 disabled inlining of cold accessor methods
kvn
parents: 15816
diff changeset
   183
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
  }
9633
92a7a2841a16 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 9446
diff changeset
   185
  if (size > max_inline_size) {
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   186
    if (max_inline_size > default_max_inline_size) {
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   187
      set_msg("hot method too big");
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   188
    } else {
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   189
      set_msg("too big");
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   190
    }
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   191
    return false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
  }
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   193
  return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   197
// negative filter: should callee NOT be inlined?
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   198
bool InlineTree::should_not_inline(ciMethod *callee_method,
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   199
                                   ciMethod* caller_method,
20689
bc5805c29150 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 20073
diff changeset
   200
                                   JVMState* jvms,
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   201
                                   WarmCallInfo* wci_result) {
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   202
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   203
  const char* fail_msg = NULL;
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   204
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   205
  // First check all inlining restrictions which are required for correctness
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   206
  if ( callee_method->is_abstract()) {
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   207
    fail_msg = "abstract method"; // // note: we allow ik->is_abstract()
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   208
  } else if (!callee_method->holder()->is_initialized()) {
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   209
    fail_msg = "method holder not initialized";
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   210
  } else if ( callee_method->is_native()) {
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   211
    fail_msg = "native method";
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   212
  } else if ( callee_method->dont_inline()) {
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   213
    fail_msg = "don't inline by annotation";
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   214
  }
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   215
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  if (!UseOldInlining) {
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   217
    if (fail_msg != NULL) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
      *wci_result = *(WarmCallInfo::always_cold());
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   219
      set_msg(fail_msg);
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   220
      return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
    if (callee_method->has_unloaded_classes_in_signature()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
      wci_result->set_profit(wci_result->profit() * 0.1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
    // don't inline exception code unless the top method belongs to an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    // exception class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
    if (callee_method->holder()->is_subclass_of(C->env()->Throwable_klass())) {
20689
bc5805c29150 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 20073
diff changeset
   230
      ciMethod* top_method = jvms->caller() != NULL ? jvms->caller()->of_depth(1)->method() : method();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
      if (!top_method->holder()->is_subclass_of(C->env()->Throwable_klass())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
        wci_result->set_profit(wci_result->profit() * 0.1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   236
    if (callee_method->has_compiled_code() &&
14477
95e66ea71f71 6830717: replay of compilations would help with debugging
minqi
parents: 13974
diff changeset
   237
        callee_method->instructions_size() > InlineSmallCode) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
      wci_result->set_profit(wci_result->profit() * 0.1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
      // %%% adjust wci_result->size()?
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   242
    return false;
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   243
  }
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   244
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   245
  // one more inlining restriction
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   246
  if (fail_msg == NULL && callee_method->has_unloaded_classes_in_signature()) {
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   247
    fail_msg = "unloaded signature classes";
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   250
  if (fail_msg != NULL) {
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   251
    set_msg(fail_msg);
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   252
    return true;
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   253
  }
4567
7fc02fbe5c7a 6893268: additional dynamic language related optimizations in C2
twisti
parents: 4566
diff changeset
   254
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   255
  // ignore heuristic controls on inlining
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   256
  if (callee_method->should_inline()) {
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   257
    set_msg("force inline by CompilerOracle");
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   258
    return false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 16373
diff changeset
   261
  if (callee_method->should_not_inline()) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 16373
diff changeset
   262
    set_msg("disallowed by CompilerOracle");
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 16373
diff changeset
   263
    return true;
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 16373
diff changeset
   264
  }
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 16373
diff changeset
   265
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 16373
diff changeset
   266
#ifndef PRODUCT
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 16373
diff changeset
   267
  if (ciReplay::should_not_inline(callee_method)) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 16373
diff changeset
   268
    set_msg("disallowed by ciReplay");
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 16373
diff changeset
   269
    return true;
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 16373
diff changeset
   270
  }
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 16373
diff changeset
   271
#endif
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 16373
diff changeset
   272
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
  // Now perform checks which are heuristic
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 16373
diff changeset
   275
  if (is_unboxing_method(callee_method, C)) {
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 16373
diff changeset
   276
    // Inline unboxing methods.
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 16373
diff changeset
   277
    return false;
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 16373
diff changeset
   278
  }
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 16373
diff changeset
   279
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   280
  if (!callee_method->force_inline()) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   281
    if (callee_method->has_compiled_code() &&
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   282
        callee_method->instructions_size() > InlineSmallCode) {
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   283
      set_msg("already compiled into a big method");
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   284
      return true;
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   285
    }
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   286
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
489c9b5090e2 Initial load
duke
parents:
diff changeset
   288
  // don't inline exception code unless the top method belongs to an
489c9b5090e2 Initial load
duke
parents:
diff changeset
   289
  // exception class
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  if (caller_tree() != NULL &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
      callee_method->holder()->is_subclass_of(C->env()->Throwable_klass())) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   292
    const InlineTree *top = this;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
    while (top->caller_tree() != NULL) top = top->caller_tree();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
    ciInstanceKlass* k = top->method()->holder();
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   295
    if (!k->is_subclass_of(C->env()->Throwable_klass())) {
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   296
      set_msg("exception method");
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   297
      return true;
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   298
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
  // use frequency-based objections only for non-trivial methods
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   302
  if (callee_method->code_size() <= MaxTrivialSize) {
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   303
    return false;
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   304
  }
214
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
  // don't use counts with -Xcomp or CTW
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   307
  if (UseInterpreter && !CompileTheWorld) {
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
    if (!callee_method->has_compiled_code() &&
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   310
        !callee_method->was_executed_more_than(0)) {
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   311
      set_msg("never executed");
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   312
      return true;
214
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   313
    }
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   314
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   315
    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
   316
      // Escape Analysis: inline all executed constructors
17383
3665c0901a0d 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 16373
diff changeset
   317
      return false;
214
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   318
    } 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
   319
                                                           CompileThreshold >> 1))) {
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   320
      set_msg("executed < MinInliningThreshold times");
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   321
      return true;
214
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   322
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   324
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   325
  return false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   326
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
//-----------------------------try_to_inline-----------------------------------
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   329
// return true if ok
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   330
// Relocated from "InliningClosure::try_to_inline"
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   331
bool InlineTree::try_to_inline(ciMethod* callee_method, ciMethod* caller_method,
20689
bc5805c29150 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 20073
diff changeset
   332
                               int caller_bci, JVMState* jvms, ciCallProfile& profile,
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   333
                               WarmCallInfo* wci_result, bool& should_delay) {
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   334
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   335
   // Old algorithm had funny accumulating BC-size counters
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   336
  if (UseOldInlining && ClipInlining
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
      && (int)count_inline_bcs() >= DesiredMethodLimit) {
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   338
    if (!callee_method->force_inline() || !IncrementalInline) {
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   339
      set_msg("size > DesiredMethodLimit");
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   340
      return false;
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   341
    } else if (!C->inlining_incrementally()) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   342
      should_delay = true;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   343
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   344
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   345
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   346
  if (!should_inline(callee_method, caller_method, caller_bci, profile,
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   347
                     wci_result)) {
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   348
    return false;
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   349
  }
20689
bc5805c29150 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 20073
diff changeset
   350
  if (should_not_inline(callee_method, caller_method, jvms, wci_result)) {
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   351
    return false;
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   352
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   353
4586
f1c484fca023 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 4567
diff changeset
   354
  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
   355
    // accessor methods are not subject to any of the following limits.
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   356
    set_msg("accessor");
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   357
    return true;
4586
f1c484fca023 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 4567
diff changeset
   358
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   359
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
  // 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
   361
  if (callee_method->code_size() > MaxTrivialSize) {
214
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   362
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
    // don't inline into giant methods
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   364
    if (C->over_inlining_cutoff()) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   365
      if ((!callee_method->force_inline() && !caller_method->is_compiled_lambda_form())
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   366
          || !IncrementalInline) {
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   367
        set_msg("NodeCountInliningCutoff");
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   368
        return false;
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   369
      } else {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   370
        should_delay = true;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   371
      }
214
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   372
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
214
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   374
    if ((!UseInterpreter || CompileTheWorld) &&
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   375
        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
   376
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   377
      // 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
   378
      // inline constructors even if they are not reached.
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   379
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   380
    } else if (profile.count() == 0) {
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   381
      // don't inline unreached call sites
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   382
       set_msg("call site not reached");
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   383
       return false;
214
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   384
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
4586
f1c484fca023 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 4567
diff changeset
   387
  if (!C->do_inlining() && InlineAccessors) {
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   388
    set_msg("not an accessor");
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   389
    return false;
214
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   390
  }
10007
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
   391
  if (inline_level() > _max_inline_level) {
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   392
    if (!callee_method->force_inline() || !IncrementalInline) {
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   393
      set_msg("inlining too deep");
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   394
      return false;
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   395
    } else if (!C->inlining_incrementally()) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   396
      should_delay = true;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   397
    }
214
c5d9b4456687 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 1
diff changeset
   398
  }
8872
36680c58660e 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 8676
diff changeset
   399
9435
b16821523fe3 6552561: MaxRecursiveInlineLevel flag doesn't operate correctly
twisti
parents: 8872
diff changeset
   400
  // detect direct and indirect recursive inlining
20689
bc5805c29150 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 20073
diff changeset
   401
  {
9435
b16821523fe3 6552561: MaxRecursiveInlineLevel flag doesn't operate correctly
twisti
parents: 8872
diff changeset
   402
    // count the current method and the callee
20689
bc5805c29150 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 20073
diff changeset
   403
    const bool is_compiled_lambda_form = callee_method->is_compiled_lambda_form();
bc5805c29150 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 20073
diff changeset
   404
    int inline_level = 0;
bc5805c29150 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 20073
diff changeset
   405
    if (!is_compiled_lambda_form) {
bc5805c29150 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 20073
diff changeset
   406
      if (method() == callee_method) {
bc5805c29150 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 20073
diff changeset
   407
        inline_level++;
bc5805c29150 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 20073
diff changeset
   408
      }
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   409
    }
9435
b16821523fe3 6552561: MaxRecursiveInlineLevel flag doesn't operate correctly
twisti
parents: 8872
diff changeset
   410
    // count callers of current method and callee
20689
bc5805c29150 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 20073
diff changeset
   411
    Node* callee_argument0 = is_compiled_lambda_form ? jvms->map()->argument(jvms, 0)->uncast() : NULL;
bc5805c29150 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 20073
diff changeset
   412
    for (JVMState* j = jvms->caller(); j != NULL && j->has_method(); j = j->caller()) {
bc5805c29150 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 20073
diff changeset
   413
      if (j->method() == callee_method) {
bc5805c29150 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 20073
diff changeset
   414
        if (is_compiled_lambda_form) {
bc5805c29150 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 20073
diff changeset
   415
          // Since compiled lambda forms are heavily reused we allow recursive inlining.  If it is truly
bc5805c29150 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 20073
diff changeset
   416
          // a recursion (using the same "receiver") we limit inlining otherwise we can easily blow the
bc5805c29150 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 20073
diff changeset
   417
          // compiler stack.
bc5805c29150 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 20073
diff changeset
   418
          Node* caller_argument0 = j->map()->argument(j, 0)->uncast();
bc5805c29150 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 20073
diff changeset
   419
          if (caller_argument0 == callee_argument0) {
bc5805c29150 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 20073
diff changeset
   420
            inline_level++;
bc5805c29150 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 20073
diff changeset
   421
          }
bc5805c29150 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 20073
diff changeset
   422
        } else {
bc5805c29150 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 20073
diff changeset
   423
          inline_level++;
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   424
        }
8872
36680c58660e 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 8676
diff changeset
   425
      }
20689
bc5805c29150 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 20073
diff changeset
   426
    }
bc5805c29150 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 20073
diff changeset
   427
    if (inline_level > MaxRecursiveInlineLevel) {
bc5805c29150 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 20073
diff changeset
   428
      set_msg("recursive inlining is too deep");
bc5805c29150 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 20073
diff changeset
   429
      return false;
8872
36680c58660e 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 8676
diff changeset
   430
    }
36680c58660e 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 8676
diff changeset
   431
  }
36680c58660e 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 8676
diff changeset
   432
10506
575ad9bccff5 7078382: JSR 292: don't count method handle adapters against inlining budgets
twisti
parents: 10007
diff changeset
   433
  int size = callee_method->code_size_for_inlining();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
489c9b5090e2 Initial load
duke
parents:
diff changeset
   435
  if (UseOldInlining && ClipInlining
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
      && (int)count_inline_bcs() + size >= DesiredMethodLimit) {
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   437
    if (!callee_method->force_inline() || !IncrementalInline) {
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   438
      set_msg("size > DesiredMethodLimit");
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   439
      return false;
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   440
    } else if (!C->inlining_incrementally()) {
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   441
      should_delay = true;
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   442
    }
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
  // ok, inline this method
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   446
  return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
//------------------------------pass_initial_checks----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
bool pass_initial_checks(ciMethod* caller_method, int caller_bci, ciMethod* callee_method) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  ciInstanceKlass *callee_holder = callee_method ? callee_method->holder() : NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  // Check if a callee_method was suggested
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
  if( callee_method == NULL )            return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
  // Check if klass of callee_method is loaded
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
  if( !callee_holder->is_loaded() )      return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  if( !callee_holder->is_initialized() ) return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  if( !UseInterpreter || CompileTheWorld /* running Xcomp or CTW */ ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
    // Checks that constant pool's call site has been visited
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
    // stricter than callee_holder->is_initialized()
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
    ciBytecodeStream iter(caller_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
    iter.force_bci(caller_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
    Bytecodes::Code call_bc = iter.cur_bc();
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 3603
diff changeset
   463
    // An invokedynamic instruction does not have a klass.
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 3603
diff changeset
   464
    if (call_bc != Bytecodes::_invokedynamic) {
5688
9052dc91ea67 6939207: refactor constant pool index processing
jrose
parents: 5687
diff changeset
   465
      int index = iter.get_index_u2_cpcache();
4566
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 3603
diff changeset
   466
      if (!caller_method->is_klass_loaded(index, true)) {
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 3603
diff changeset
   467
        return false;
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 3603
diff changeset
   468
      }
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 3603
diff changeset
   469
      // Try to do constant pool resolution if running Xcomp
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 3603
diff changeset
   470
      if( !caller_method->check_call(index, call_bc == Bytecodes::_invokestatic) ) {
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 3603
diff changeset
   471
        return false;
b363f6ef4068 6829187: compiler optimizations required for JSR 292
twisti
parents: 3603
diff changeset
   472
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
  // We will attempt to see if a class/field/etc got properly loaded.  If it
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  // did not, it may attempt to throw an exception during our probing.  Catch
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
  // and ignore such exceptions and do not attempt to compile the method.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
  if( callee_method->should_exclude() )  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  return true;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
10509
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   483
//------------------------------check_can_parse--------------------------------
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   484
const char* InlineTree::check_can_parse(ciMethod* callee) {
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   485
  // Certain methods cannot be parsed at all:
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   486
  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
   487
  if ( callee->is_abstract())                   return "abstract method";
10509
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   488
  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
   489
  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
   490
  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
   491
  return NULL;
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   492
}
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   493
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
//------------------------------print_inlining---------------------------------
15472
ae13b6ad6c25 8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents: 15113
diff changeset
   495
void InlineTree::print_inlining(ciMethod* callee_method, int caller_bci,
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   496
                                bool success) const {
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   497
  const char* inline_msg = msg();
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   498
  assert(inline_msg != NULL, "just checking");
15472
ae13b6ad6c25 8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents: 15113
diff changeset
   499
  if (C->log() != NULL) {
ae13b6ad6c25 8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents: 15113
diff changeset
   500
    if (success) {
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   501
      C->log()->inline_success(inline_msg);
15472
ae13b6ad6c25 8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents: 15113
diff changeset
   502
    } else {
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   503
      C->log()->inline_fail(inline_msg);
15472
ae13b6ad6c25 8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents: 15113
diff changeset
   504
    }
ae13b6ad6c25 8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents: 15113
diff changeset
   505
  }
20073
bfc95277d42b 8022585: VM crashes when ran with -XX:+PrintInlining
kvn
parents: 18946
diff changeset
   506
  if (C->print_inlining()) {
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   507
    C->print_inlining(callee_method, inline_level(), caller_bci, inline_msg);
15472
ae13b6ad6c25 8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents: 15113
diff changeset
   508
    if (callee_method == NULL) tty->print(" callee not monotonic or profiled");
ae13b6ad6c25 8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents: 15113
diff changeset
   509
    if (Verbose && callee_method) {
ae13b6ad6c25 8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents: 15113
diff changeset
   510
      const InlineTree *top = this;
ae13b6ad6c25 8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents: 15113
diff changeset
   511
      while( top->caller_tree() != NULL ) { top = top->caller_tree(); }
ae13b6ad6c25 8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents: 15113
diff changeset
   512
      //tty->print("  bcs: %d+%d  invoked: %d", top->count_inline_bcs(), callee_method->code_size(), callee_method->interpreter_invocation_count());
ae13b6ad6c25 8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents: 15113
diff changeset
   513
    }
1
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
//------------------------------ok_to_inline-----------------------------------
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   518
WarmCallInfo* InlineTree::ok_to_inline(ciMethod* callee_method, JVMState* jvms, ciCallProfile& profile, WarmCallInfo* initial_wci, bool& should_delay) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  assert(callee_method != NULL, "caller checks for optimized virtual!");
15113
823590505eb4 8005071: Incremental inlining for JSR 292
roland
parents: 14828
diff changeset
   520
  assert(!should_delay, "should be initialized to false");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
#ifdef ASSERT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
  // Make sure the incoming jvms has the same information content as me.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  // This means that we can eventually make this whole class AllStatic.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
  if (jvms->caller() == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
    assert(_caller_jvms == NULL, "redundant instance state");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
    assert(_caller_jvms->same_calls_as(jvms->caller()), "redundant instance state");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  assert(_method == jvms->method(), "redundant instance state");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  int         caller_bci    = jvms->bci();
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   532
  ciMethod*   caller_method = jvms->method();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
10509
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   534
  // Do some initial checks.
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   535
  if (!pass_initial_checks(caller_method, caller_bci, callee_method)) {
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   536
    set_msg("failed initial checks");
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   537
    print_inlining(callee_method, caller_bci, false /* !success */);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
10509
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   541
  // Do some parse checks.
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   542
  set_msg(check_can_parse(callee_method));
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   543
  if (msg() != NULL) {
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   544
    print_inlining(callee_method, caller_bci, false /* !success */);
10509
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   545
    return NULL;
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   546
  }
43d670e5701e 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 10506
diff changeset
   547
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
  // Check if inlining policy says no.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  WarmCallInfo wci = *(initial_wci);
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   550
  bool success = try_to_inline(callee_method, caller_method, caller_bci,
20689
bc5805c29150 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 20073
diff changeset
   551
                               jvms, profile, &wci, should_delay);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
#ifndef PRODUCT
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
  if (UseOldInlining && InlineWarmCalls
20073
bfc95277d42b 8022585: VM crashes when ran with -XX:+PrintInlining
kvn
parents: 18946
diff changeset
   555
      && (PrintOpto || C->print_inlining())) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
    bool cold = wci.is_cold();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
    bool hot  = !cold && wci.is_hot();
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   558
    bool old_cold = !success;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
    if (old_cold != cold || (Verbose || WizardMode)) {
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   560
      if (msg() == NULL) {
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   561
        set_msg("OK");
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   562
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
      tty->print("   OldInlining= %4s : %s\n           WCI=",
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   564
                 old_cold ? "cold" : "hot", msg());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
      wci.print();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   566
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   567
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
  if (UseOldInlining) {
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   570
    if (success) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
      wci = *(WarmCallInfo::always_hot());
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   572
    } else {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
      wci = *(WarmCallInfo::always_cold());
15472
ae13b6ad6c25 8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents: 15113
diff changeset
   574
    }
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   575
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  if (!InlineWarmCalls) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
    if (!wci.is_cold() && !wci.is_hot()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
      // Do not inline the warm calls.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
      wci = *(WarmCallInfo::always_cold());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
  if (!wci.is_cold()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
    // Inline!
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   585
    if (msg() == NULL) {
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   586
      set_msg("inline (hot)");
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   587
    }
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   588
    print_inlining(callee_method, caller_bci, true /* success */);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
    if (UseOldInlining)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
      build_inline_tree_for_callee(callee_method, jvms, caller_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
    if (InlineWarmCalls && !wci.is_hot())
489c9b5090e2 Initial load
duke
parents:
diff changeset
   592
      return new (C) WarmCallInfo(wci);  // copy to heap
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
    return WarmCallInfo::always_hot();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  // Do not inline
15816
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   597
  if (msg() == NULL) {
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   598
    set_msg("too cold to inline");
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   599
  }
33b9a6b4f9df 8007439: C2: adding successful message of inlining
iignatyev
parents: 15472
diff changeset
   600
  print_inlining(callee_method, caller_bci, false /* !success */ );
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
//------------------------------compute_callee_frequency-----------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
float InlineTree::compute_callee_frequency( int caller_bci ) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
  int count  = method()->interpreter_call_site_count(caller_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  int invcnt = method()->interpreter_invocation_count();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
  float freq = (float)count/(float)invcnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
  // Call-site count / interpreter invocation count, scaled recursively.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
  // Always between 0.0 and 1.0.  Represents the percentage of the method's
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
  // total execution time used at this call site.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
  return freq;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
//------------------------------build_inline_tree_for_callee-------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
InlineTree *InlineTree::build_inline_tree_for_callee( ciMethod* callee_method, JVMState* caller_jvms, int caller_bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
  float recur_frequency = _site_invoke_ratio * compute_callee_frequency(caller_bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  // Attempt inlining.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
  InlineTree* old_ilt = callee_at(caller_bci, callee_method);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
  if (old_ilt != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   622
    return old_ilt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  }
10007
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
   624
  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
   625
  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
   626
    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
   627
      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
   628
    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
   629
             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
   630
      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
   631
    }
20073
bfc95277d42b 8022585: VM crashes when ran with -XX:+PrintInlining
kvn
parents: 18946
diff changeset
   632
    if (max_inline_level_adjust != 0 && C->print_inlining() && (Verbose || WizardMode)) {
10007
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
   633
      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
   634
      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
   635
    }
10007
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
   636
    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
   637
      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
   638
      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
   639
      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
   640
    }
f1c484fca023 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 4567
diff changeset
   641
  }
10007
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
   642
  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
   643
  _subtrees.append(ilt);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  NOT_PRODUCT( _count_inlines += 1; )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
  return ilt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
//---------------------------------------callee_at-----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
InlineTree *InlineTree::callee_at(int bci, ciMethod* callee) const {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
  for (int i = 0; i < _subtrees.length(); i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
    InlineTree* sub = _subtrees.at(i);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
    if (sub->caller_bci() == bci && callee == sub->method()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
      return sub;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   657
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   658
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
//------------------------------build_inline_tree_root-------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
InlineTree *InlineTree::build_inline_tree_root() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
  Compile* C = Compile::current();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
  // Root of inline tree
10007
43d4a6542551 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 9633
diff changeset
   668
  InlineTree* ilt = new InlineTree(C, NULL, C->method(), NULL, -1, 1.0F, MaxInlineLevel);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
  return ilt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
//-------------------------find_subtree_from_root-----------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
// Given a jvms, which determines a call chain from the root method,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
// find the corresponding inline tree.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
// 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
   678
InlineTree* InlineTree::find_subtree_from_root(InlineTree* root, JVMState* jvms, ciMethod* callee) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
  InlineTree* iltp = root;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  uint depth = jvms && jvms->has_method() ? jvms->depth() : 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  for (uint d = 1; d <= depth; d++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
    JVMState* jvmsp  = jvms->of_depth(d);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
    // Select the corresponding subtree for this bci.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
    assert(jvmsp->method() == iltp->method(), "tree still in sync");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
    ciMethod* d_callee = (d == depth) ? callee : jvms->of_depth(d+1)->method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
    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
   687
    if (sub == NULL) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   688
      if (d == depth) {
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   689
        sub = iltp->build_inline_tree_for_callee(d_callee, jvmsp, jvmsp->bci());
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
      }
13391
30245956af37 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 12160
diff changeset
   691
      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
   692
      return sub;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
    iltp = sub;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
  return iltp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
}
10547
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   698
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   699
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   700
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   701
#ifndef PRODUCT
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   702
void InlineTree::print_impl(outputStream* st, int indent) const {
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   703
  for (int i = 0; i < indent; i++) st->print(" ");
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   704
  st->print(" @ %d ", caller_bci());
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   705
  method()->print_short_name(st);
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   706
  st->cr();
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   707
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   708
  for (int i = 0 ; i < _subtrees.length(); i++) {
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   709
    _subtrees.at(i)->print_impl(st, indent + 2);
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   710
  }
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   711
}
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   712
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   713
void InlineTree::print_value_on(outputStream* st) const {
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   714
  print_impl(st, 2);
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   715
}
ea4a2ec31ae2 7088955: add C2 IR support to the SA
never
parents: 10514
diff changeset
   716
#endif