author | ccheung |
Thu, 18 Jul 2013 14:57:51 -0700 | |
changeset 18946 | 65a870954fd7 |
parent 17386 | e3b1a1af9968 |
child 20073 | bfc95277d42b |
permissions | -rw-r--r-- |
1 | 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 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
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 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 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 | 27 |
#include "classfile/systemDictionary.hpp" |
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 | 30 |
#include "compiler/compileLog.hpp" |
31 |
#include "interpreter/linkResolver.hpp" |
|
32 |
#include "oops/objArrayKlass.hpp" |
|
33 |
#include "opto/callGenerator.hpp" |
|
34 |
#include "opto/parse.hpp" |
|
35 |
#include "runtime/handles.inline.hpp" |
|
1 | 36 |
|
37 |
//============================================================================= |
|
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 | 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 | 53 |
NOT_PRODUCT(_count_inlines = 0;) |
54 |
if (_caller_jvms != NULL) { |
|
55 |
// Keep a private copy of the caller_jvms: |
|
56 |
_caller_jvms = new (C) JVMState(caller_jvms->method(), caller_tree->caller_jvms()); |
|
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 | 59 |
} |
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 | 62 |
assert(caller_bci == this->caller_bci(), "correct (redundant) bci parameter"); |
63 |
if (UseOldInlining) { |
|
64 |
// Update hierarchical counts, count_inline_bcs() and count_inlines() |
|
65 |
InlineTree *caller = (InlineTree *)caller_tree; |
|
66 |
for( ; caller != NULL; caller = ((InlineTree *)(caller->caller_tree())) ) { |
|
67 |
caller->_count_inline_bcs += count_inline_bcs(); |
|
68 |
NOT_PRODUCT(caller->_count_inlines++;) |
|
69 |
} |
|
70 |
} |
|
71 |
} |
|
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 | 84 |
NOT_PRODUCT(_count_inlines = 0;) |
85 |
assert(!UseOldInlining, "do not use for old stuff"); |
|
86 |
} |
|
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 | 115 |
static bool is_unboxing_method(ciMethod* callee_method, Compile* C) { |
116 |
return C->eliminate_boxing() && callee_method->is_unboxing_method(); |
|
117 |
} |
|
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 | 123 |
// Allows targeted inlining |
124 |
if(callee_method->should_inline()) { |
|
125 |
*wci_result = *(WarmCallInfo::always_hot()); |
|
126 |
if (PrintInlining && 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 | 128 |
tty->print_cr("Inlined method is hot: "); |
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 | 132 |
} |
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 | 135 |
|
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 | 139 |
wci_result->set_profit(wci_result->profit() * 100); |
140 |
if (PrintInlining && 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 | 142 |
tty->print_cr("Inlined method with many throws (throws=%d):", callee_method->interpreter_throwout_count()); |
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 | 146 |
} |
147 |
||
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 | 151 |
} |
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 | 157 |
int call_site_count = method()->scale_count(profile.count()); |
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 | 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 | 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 | 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 | 174 |
callee_method->print(); |
175 |
tty->cr(); |
|
176 |
} |
|
177 |
} else { |
|
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 | 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 | 192 |
} |
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
193 |
return true; |
1 | 194 |
} |
195 |
||
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, |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
200 |
WarmCallInfo* wci_result) { |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
201 |
|
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
202 |
const char* fail_msg = NULL; |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
203 |
|
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
204 |
// First check all inlining restrictions which are required for correctness |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
205 |
if ( callee_method->is_abstract()) { |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
206 |
fail_msg = "abstract method"; // // note: we allow ik->is_abstract() |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
207 |
} else if (!callee_method->holder()->is_initialized()) { |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
208 |
fail_msg = "method holder not initialized"; |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
209 |
} else if ( callee_method->is_native()) { |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
210 |
fail_msg = "native method"; |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
211 |
} else if ( callee_method->dont_inline()) { |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
212 |
fail_msg = "don't inline by annotation"; |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
213 |
} |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
214 |
|
1 | 215 |
if (!UseOldInlining) { |
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
216 |
if (fail_msg != NULL) { |
1 | 217 |
*wci_result = *(WarmCallInfo::always_cold()); |
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
218 |
set_msg(fail_msg); |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
219 |
return true; |
1 | 220 |
} |
221 |
||
222 |
if (callee_method->has_unloaded_classes_in_signature()) { |
|
223 |
wci_result->set_profit(wci_result->profit() * 0.1); |
|
224 |
} |
|
225 |
||
226 |
// don't inline exception code unless the top method belongs to an |
|
227 |
// exception class |
|
228 |
if (callee_method->holder()->is_subclass_of(C->env()->Throwable_klass())) { |
|
229 |
ciMethod* top_method = caller_jvms() ? caller_jvms()->of_depth(1)->method() : method(); |
|
230 |
if (!top_method->holder()->is_subclass_of(C->env()->Throwable_klass())) { |
|
231 |
wci_result->set_profit(wci_result->profit() * 0.1); |
|
232 |
} |
|
233 |
} |
|
234 |
||
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12160
diff
changeset
|
235 |
if (callee_method->has_compiled_code() && |
14477
95e66ea71f71
6830717: replay of compilations would help with debugging
minqi
parents:
13974
diff
changeset
|
236 |
callee_method->instructions_size() > InlineSmallCode) { |
1 | 237 |
wci_result->set_profit(wci_result->profit() * 0.1); |
238 |
// %%% adjust wci_result->size()? |
|
239 |
} |
|
240 |
||
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
241 |
return false; |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
242 |
} |
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 |
// one more inlining restriction |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
245 |
if (fail_msg == NULL && callee_method->has_unloaded_classes_in_signature()) { |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
246 |
fail_msg = "unloaded signature classes"; |
1 | 247 |
} |
248 |
||
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
249 |
if (fail_msg != NULL) { |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
250 |
set_msg(fail_msg); |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
251 |
return true; |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
252 |
} |
4567
7fc02fbe5c7a
6893268: additional dynamic language related optimizations in C2
twisti
parents:
4566
diff
changeset
|
253 |
|
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
254 |
// ignore heuristic controls on inlining |
15113 | 255 |
if (callee_method->should_inline()) { |
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
256 |
set_msg("force inline by CompilerOracle"); |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
257 |
return false; |
1 | 258 |
} |
259 |
||
17383 | 260 |
if (callee_method->should_not_inline()) { |
261 |
set_msg("disallowed by CompilerOracle"); |
|
262 |
return true; |
|
263 |
} |
|
264 |
||
265 |
#ifndef PRODUCT |
|
266 |
if (ciReplay::should_not_inline(callee_method)) { |
|
267 |
set_msg("disallowed by ciReplay"); |
|
268 |
return true; |
|
269 |
} |
|
270 |
#endif |
|
271 |
||
1 | 272 |
// Now perform checks which are heuristic |
273 |
||
17383 | 274 |
if (is_unboxing_method(callee_method, C)) { |
275 |
// Inline unboxing methods. |
|
276 |
return false; |
|
277 |
} |
|
278 |
||
15113 | 279 |
if (!callee_method->force_inline()) { |
280 |
if (callee_method->has_compiled_code() && |
|
281 |
callee_method->instructions_size() > InlineSmallCode) { |
|
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
282 |
set_msg("already compiled into a big method"); |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
283 |
return true; |
15113 | 284 |
} |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12160
diff
changeset
|
285 |
} |
1 | 286 |
|
287 |
// don't inline exception code unless the top method belongs to an |
|
288 |
// exception class |
|
289 |
if (caller_tree() != NULL && |
|
290 |
callee_method->holder()->is_subclass_of(C->env()->Throwable_klass())) { |
|
291 |
const InlineTree *top = this; |
|
292 |
while (top->caller_tree() != NULL) top = top->caller_tree(); |
|
293 |
ciInstanceKlass* k = top->method()->holder(); |
|
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
294 |
if (!k->is_subclass_of(C->env()->Throwable_klass())) { |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
295 |
set_msg("exception method"); |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
296 |
return true; |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
297 |
} |
1 | 298 |
} |
299 |
||
300 |
// use frequency-based objections only for non-trivial methods |
|
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
301 |
if (callee_method->code_size() <= MaxTrivialSize) { |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
302 |
return false; |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
303 |
} |
214
c5d9b4456687
6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents:
1
diff
changeset
|
304 |
|
c5d9b4456687
6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents:
1
diff
changeset
|
305 |
// don't use counts with -Xcomp or CTW |
c5d9b4456687
6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents:
1
diff
changeset
|
306 |
if (UseInterpreter && !CompileTheWorld) { |
c5d9b4456687
6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents:
1
diff
changeset
|
307 |
|
c5d9b4456687
6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents:
1
diff
changeset
|
308 |
if (!callee_method->has_compiled_code() && |
c5d9b4456687
6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents:
1
diff
changeset
|
309 |
!callee_method->was_executed_more_than(0)) { |
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
310 |
set_msg("never executed"); |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
311 |
return true; |
214
c5d9b4456687
6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents:
1
diff
changeset
|
312 |
} |
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 |
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
|
315 |
// Escape Analysis: inline all executed constructors |
17383 | 316 |
return false; |
214
c5d9b4456687
6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents:
1
diff
changeset
|
317 |
} 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
|
318 |
CompileThreshold >> 1))) { |
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
319 |
set_msg("executed < MinInliningThreshold times"); |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
320 |
return true; |
214
c5d9b4456687
6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents:
1
diff
changeset
|
321 |
} |
1 | 322 |
} |
323 |
||
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
324 |
return false; |
1 | 325 |
} |
326 |
||
327 |
//-----------------------------try_to_inline----------------------------------- |
|
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
328 |
// return true if ok |
1 | 329 |
// Relocated from "InliningClosure::try_to_inline" |
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
330 |
bool InlineTree::try_to_inline(ciMethod* callee_method, ciMethod* caller_method, |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
331 |
int caller_bci, ciCallProfile& profile, |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
332 |
WarmCallInfo* wci_result, bool& should_delay) { |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
333 |
|
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
334 |
// Old algorithm had funny accumulating BC-size counters |
1 | 335 |
if (UseOldInlining && ClipInlining |
336 |
&& (int)count_inline_bcs() >= DesiredMethodLimit) { |
|
15113 | 337 |
if (!callee_method->force_inline() || !IncrementalInline) { |
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
338 |
set_msg("size > DesiredMethodLimit"); |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
339 |
return false; |
15113 | 340 |
} else if (!C->inlining_incrementally()) { |
341 |
should_delay = true; |
|
342 |
} |
|
1 | 343 |
} |
344 |
||
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
345 |
if (!should_inline(callee_method, caller_method, caller_bci, profile, |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
346 |
wci_result)) { |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
347 |
return false; |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
348 |
} |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
349 |
if (should_not_inline(callee_method, caller_method, wci_result)) { |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
350 |
return false; |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
351 |
} |
1 | 352 |
|
4586
f1c484fca023
6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents:
4567
diff
changeset
|
353 |
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
|
354 |
// 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
|
355 |
set_msg("accessor"); |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
356 |
return true; |
4586
f1c484fca023
6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents:
4567
diff
changeset
|
357 |
} |
1 | 358 |
|
359 |
// 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
|
360 |
if (callee_method->code_size() > MaxTrivialSize) { |
214
c5d9b4456687
6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents:
1
diff
changeset
|
361 |
|
1 | 362 |
// don't inline into giant methods |
15113 | 363 |
if (C->over_inlining_cutoff()) { |
364 |
if ((!callee_method->force_inline() && !caller_method->is_compiled_lambda_form()) |
|
365 |
|| !IncrementalInline) { |
|
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
366 |
set_msg("NodeCountInliningCutoff"); |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
367 |
return false; |
15113 | 368 |
} else { |
369 |
should_delay = true; |
|
370 |
} |
|
214
c5d9b4456687
6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents:
1
diff
changeset
|
371 |
} |
1 | 372 |
|
214
c5d9b4456687
6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents:
1
diff
changeset
|
373 |
if ((!UseInterpreter || CompileTheWorld) && |
c5d9b4456687
6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents:
1
diff
changeset
|
374 |
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
|
375 |
|
c5d9b4456687
6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents:
1
diff
changeset
|
376 |
// 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
|
377 |
// inline constructors even if they are not reached. |
c5d9b4456687
6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents:
1
diff
changeset
|
378 |
|
c5d9b4456687
6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents:
1
diff
changeset
|
379 |
} else if (profile.count() == 0) { |
c5d9b4456687
6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents:
1
diff
changeset
|
380 |
// don't inline unreached call sites |
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
381 |
set_msg("call site not reached"); |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
382 |
return false; |
214
c5d9b4456687
6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents:
1
diff
changeset
|
383 |
} |
1 | 384 |
} |
385 |
||
4586
f1c484fca023
6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents:
4567
diff
changeset
|
386 |
if (!C->do_inlining() && InlineAccessors) { |
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
387 |
set_msg("not an accessor"); |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
388 |
return false; |
214
c5d9b4456687
6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents:
1
diff
changeset
|
389 |
} |
10007
43d4a6542551
7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents:
9633
diff
changeset
|
390 |
if (inline_level() > _max_inline_level) { |
15113 | 391 |
if (!callee_method->force_inline() || !IncrementalInline) { |
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
392 |
set_msg("inlining too deep"); |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
393 |
return false; |
15113 | 394 |
} else if (!C->inlining_incrementally()) { |
395 |
should_delay = true; |
|
396 |
} |
|
214
c5d9b4456687
6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents:
1
diff
changeset
|
397 |
} |
8872
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8676
diff
changeset
|
398 |
|
9435
b16821523fe3
6552561: MaxRecursiveInlineLevel flag doesn't operate correctly
twisti
parents:
8872
diff
changeset
|
399 |
// detect direct and indirect recursive inlining |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12160
diff
changeset
|
400 |
if (!callee_method->is_compiled_lambda_form()) { |
9435
b16821523fe3
6552561: MaxRecursiveInlineLevel flag doesn't operate correctly
twisti
parents:
8872
diff
changeset
|
401 |
// count the current method and the callee |
b16821523fe3
6552561: MaxRecursiveInlineLevel flag doesn't operate correctly
twisti
parents:
8872
diff
changeset
|
402 |
int inline_level = (method() == callee_method) ? 1 : 0; |
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
403 |
if (inline_level > MaxRecursiveInlineLevel) { |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
404 |
set_msg("recursively inlining too deep"); |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
405 |
return false; |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
406 |
} |
9435
b16821523fe3
6552561: MaxRecursiveInlineLevel flag doesn't operate correctly
twisti
parents:
8872
diff
changeset
|
407 |
// count callers of current method and callee |
8872
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8676
diff
changeset
|
408 |
JVMState* jvms = caller_jvms(); |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8676
diff
changeset
|
409 |
while (jvms != NULL && jvms->has_method()) { |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8676
diff
changeset
|
410 |
if (jvms->method() == callee_method) { |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8676
diff
changeset
|
411 |
inline_level++; |
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
412 |
if (inline_level > MaxRecursiveInlineLevel) { |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
413 |
set_msg("recursively inlining too deep"); |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
414 |
return false; |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
415 |
} |
8872
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8676
diff
changeset
|
416 |
} |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8676
diff
changeset
|
417 |
jvms = jvms->caller(); |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8676
diff
changeset
|
418 |
} |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8676
diff
changeset
|
419 |
} |
36680c58660e
7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents:
8676
diff
changeset
|
420 |
|
10506
575ad9bccff5
7078382: JSR 292: don't count method handle adapters against inlining budgets
twisti
parents:
10007
diff
changeset
|
421 |
int size = callee_method->code_size_for_inlining(); |
1 | 422 |
|
423 |
if (UseOldInlining && ClipInlining |
|
424 |
&& (int)count_inline_bcs() + size >= DesiredMethodLimit) { |
|
15113 | 425 |
if (!callee_method->force_inline() || !IncrementalInline) { |
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
426 |
set_msg("size > DesiredMethodLimit"); |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
427 |
return false; |
15113 | 428 |
} else if (!C->inlining_incrementally()) { |
429 |
should_delay = true; |
|
430 |
} |
|
1 | 431 |
} |
432 |
||
433 |
// ok, inline this method |
|
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
434 |
return true; |
1 | 435 |
} |
436 |
||
437 |
//------------------------------pass_initial_checks---------------------------- |
|
438 |
bool pass_initial_checks(ciMethod* caller_method, int caller_bci, ciMethod* callee_method) { |
|
439 |
ciInstanceKlass *callee_holder = callee_method ? callee_method->holder() : NULL; |
|
440 |
// Check if a callee_method was suggested |
|
441 |
if( callee_method == NULL ) return false; |
|
442 |
// Check if klass of callee_method is loaded |
|
443 |
if( !callee_holder->is_loaded() ) return false; |
|
444 |
if( !callee_holder->is_initialized() ) return false; |
|
445 |
if( !UseInterpreter || CompileTheWorld /* running Xcomp or CTW */ ) { |
|
446 |
// Checks that constant pool's call site has been visited |
|
447 |
// stricter than callee_holder->is_initialized() |
|
448 |
ciBytecodeStream iter(caller_method); |
|
449 |
iter.force_bci(caller_bci); |
|
450 |
Bytecodes::Code call_bc = iter.cur_bc(); |
|
4566
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
3603
diff
changeset
|
451 |
// An invokedynamic instruction does not have a klass. |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
3603
diff
changeset
|
452 |
if (call_bc != Bytecodes::_invokedynamic) { |
5688 | 453 |
int index = iter.get_index_u2_cpcache(); |
4566
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
3603
diff
changeset
|
454 |
if (!caller_method->is_klass_loaded(index, true)) { |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
3603
diff
changeset
|
455 |
return false; |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
3603
diff
changeset
|
456 |
} |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
3603
diff
changeset
|
457 |
// Try to do constant pool resolution if running Xcomp |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
3603
diff
changeset
|
458 |
if( !caller_method->check_call(index, call_bc == Bytecodes::_invokestatic) ) { |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
3603
diff
changeset
|
459 |
return false; |
b363f6ef4068
6829187: compiler optimizations required for JSR 292
twisti
parents:
3603
diff
changeset
|
460 |
} |
1 | 461 |
} |
462 |
} |
|
463 |
// We will attempt to see if a class/field/etc got properly loaded. If it |
|
464 |
// did not, it may attempt to throw an exception during our probing. Catch |
|
465 |
// and ignore such exceptions and do not attempt to compile the method. |
|
466 |
if( callee_method->should_exclude() ) return false; |
|
467 |
||
468 |
return true; |
|
469 |
} |
|
470 |
||
10509
43d670e5701e
7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents:
10506
diff
changeset
|
471 |
//------------------------------check_can_parse-------------------------------- |
43d670e5701e
7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents:
10506
diff
changeset
|
472 |
const char* InlineTree::check_can_parse(ciMethod* callee) { |
43d670e5701e
7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents:
10506
diff
changeset
|
473 |
// Certain methods cannot be parsed at all: |
43d670e5701e
7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents:
10506
diff
changeset
|
474 |
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
|
475 |
if ( callee->is_abstract()) return "abstract method"; |
10509
43d670e5701e
7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents:
10506
diff
changeset
|
476 |
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
|
477 |
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
|
478 |
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
|
479 |
return NULL; |
43d670e5701e
7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents:
10506
diff
changeset
|
480 |
} |
43d670e5701e
7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents:
10506
diff
changeset
|
481 |
|
1 | 482 |
//------------------------------print_inlining--------------------------------- |
15472
ae13b6ad6c25
8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents:
15113
diff
changeset
|
483 |
void InlineTree::print_inlining(ciMethod* callee_method, int caller_bci, |
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
484 |
bool success) const { |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
485 |
const char* inline_msg = msg(); |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
486 |
assert(inline_msg != NULL, "just checking"); |
15472
ae13b6ad6c25
8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents:
15113
diff
changeset
|
487 |
if (C->log() != NULL) { |
ae13b6ad6c25
8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents:
15113
diff
changeset
|
488 |
if (success) { |
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
489 |
C->log()->inline_success(inline_msg); |
15472
ae13b6ad6c25
8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents:
15113
diff
changeset
|
490 |
} else { |
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
491 |
C->log()->inline_fail(inline_msg); |
15472
ae13b6ad6c25
8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents:
15113
diff
changeset
|
492 |
} |
ae13b6ad6c25
8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents:
15113
diff
changeset
|
493 |
} |
ae13b6ad6c25
8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents:
15113
diff
changeset
|
494 |
if (PrintInlining) { |
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
495 |
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
|
496 |
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
|
497 |
if (Verbose && callee_method) { |
ae13b6ad6c25
8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents:
15113
diff
changeset
|
498 |
const InlineTree *top = this; |
ae13b6ad6c25
8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents:
15113
diff
changeset
|
499 |
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
|
500 |
//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
|
501 |
} |
1 | 502 |
} |
503 |
} |
|
504 |
||
505 |
//------------------------------ok_to_inline----------------------------------- |
|
15113 | 506 |
WarmCallInfo* InlineTree::ok_to_inline(ciMethod* callee_method, JVMState* jvms, ciCallProfile& profile, WarmCallInfo* initial_wci, bool& should_delay) { |
1 | 507 |
assert(callee_method != NULL, "caller checks for optimized virtual!"); |
15113 | 508 |
assert(!should_delay, "should be initialized to false"); |
1 | 509 |
#ifdef ASSERT |
510 |
// Make sure the incoming jvms has the same information content as me. |
|
511 |
// This means that we can eventually make this whole class AllStatic. |
|
512 |
if (jvms->caller() == NULL) { |
|
513 |
assert(_caller_jvms == NULL, "redundant instance state"); |
|
514 |
} else { |
|
515 |
assert(_caller_jvms->same_calls_as(jvms->caller()), "redundant instance state"); |
|
516 |
} |
|
517 |
assert(_method == jvms->method(), "redundant instance state"); |
|
518 |
#endif |
|
519 |
int caller_bci = jvms->bci(); |
|
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
520 |
ciMethod* caller_method = jvms->method(); |
1 | 521 |
|
10509
43d670e5701e
7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents:
10506
diff
changeset
|
522 |
// Do some initial checks. |
43d670e5701e
7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents:
10506
diff
changeset
|
523 |
if (!pass_initial_checks(caller_method, caller_bci, callee_method)) { |
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
524 |
set_msg("failed initial checks"); |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
525 |
print_inlining(callee_method, caller_bci, false /* !success */); |
1 | 526 |
return NULL; |
527 |
} |
|
528 |
||
10509
43d670e5701e
7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents:
10506
diff
changeset
|
529 |
// Do some parse checks. |
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
530 |
set_msg(check_can_parse(callee_method)); |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
531 |
if (msg() != NULL) { |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
532 |
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
|
533 |
return NULL; |
43d670e5701e
7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents:
10506
diff
changeset
|
534 |
} |
43d670e5701e
7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents:
10506
diff
changeset
|
535 |
|
1 | 536 |
// Check if inlining policy says no. |
537 |
WarmCallInfo wci = *(initial_wci); |
|
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
538 |
bool success = try_to_inline(callee_method, caller_method, caller_bci, |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
539 |
profile, &wci, should_delay); |
1 | 540 |
|
541 |
#ifndef PRODUCT |
|
542 |
if (UseOldInlining && InlineWarmCalls |
|
543 |
&& (PrintOpto || PrintOptoInlining || PrintInlining)) { |
|
544 |
bool cold = wci.is_cold(); |
|
545 |
bool hot = !cold && wci.is_hot(); |
|
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
546 |
bool old_cold = !success; |
1 | 547 |
if (old_cold != cold || (Verbose || WizardMode)) { |
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
548 |
if (msg() == NULL) { |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
549 |
set_msg("OK"); |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
550 |
} |
1 | 551 |
tty->print(" OldInlining= %4s : %s\n WCI=", |
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
552 |
old_cold ? "cold" : "hot", msg()); |
1 | 553 |
wci.print(); |
554 |
} |
|
555 |
} |
|
556 |
#endif |
|
557 |
if (UseOldInlining) { |
|
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
558 |
if (success) { |
1 | 559 |
wci = *(WarmCallInfo::always_hot()); |
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
560 |
} else { |
1 | 561 |
wci = *(WarmCallInfo::always_cold()); |
15472
ae13b6ad6c25
8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents:
15113
diff
changeset
|
562 |
} |
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
563 |
} |
1 | 564 |
if (!InlineWarmCalls) { |
565 |
if (!wci.is_cold() && !wci.is_hot()) { |
|
566 |
// Do not inline the warm calls. |
|
567 |
wci = *(WarmCallInfo::always_cold()); |
|
568 |
} |
|
569 |
} |
|
570 |
||
571 |
if (!wci.is_cold()) { |
|
572 |
// Inline! |
|
15816
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
573 |
if (msg() == NULL) { |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
574 |
set_msg("inline (hot)"); |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
575 |
} |
33b9a6b4f9df
8007439: C2: adding successful message of inlining
iignatyev
parents:
15472
diff
changeset
|
576 |
print_inlining(callee_method, caller_bci, true /* success */); |
1 | 577 |
if (UseOldInlining) |
578 |
build_inline_tree_for_callee(callee_method, jvms, caller_bci); |
|
579 |
if (InlineWarmCalls && !wci.is_hot()) |
|
580 |
return new (C) WarmCallInfo(wci); // copy to heap |
|
581 |
return WarmCallInfo::always_hot(); |
|
582 |
} |
|
583 |
||
584 |
// Do not 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("too cold to inline"); |
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, false /* !success */ ); |
1 | 589 |
return NULL; |
590 |
} |
|
591 |
||
592 |
//------------------------------compute_callee_frequency----------------------- |
|
593 |
float InlineTree::compute_callee_frequency( int caller_bci ) const { |
|
594 |
int count = method()->interpreter_call_site_count(caller_bci); |
|
595 |
int invcnt = method()->interpreter_invocation_count(); |
|
596 |
float freq = (float)count/(float)invcnt; |
|
597 |
// Call-site count / interpreter invocation count, scaled recursively. |
|
598 |
// Always between 0.0 and 1.0. Represents the percentage of the method's |
|
599 |
// total execution time used at this call site. |
|
600 |
||
601 |
return freq; |
|
602 |
} |
|
603 |
||
604 |
//------------------------------build_inline_tree_for_callee------------------- |
|
605 |
InlineTree *InlineTree::build_inline_tree_for_callee( ciMethod* callee_method, JVMState* caller_jvms, int caller_bci) { |
|
606 |
float recur_frequency = _site_invoke_ratio * compute_callee_frequency(caller_bci); |
|
607 |
// Attempt inlining. |
|
608 |
InlineTree* old_ilt = callee_at(caller_bci, callee_method); |
|
609 |
if (old_ilt != NULL) { |
|
610 |
return old_ilt; |
|
611 |
} |
|
10007
43d4a6542551
7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents:
9633
diff
changeset
|
612 |
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
|
613 |
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
|
614 |
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
|
615 |
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
|
616 |
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
|
617 |
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
|
618 |
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
|
619 |
} |
10007
43d4a6542551
7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents:
9633
diff
changeset
|
620 |
if (max_inline_level_adjust != 0 && PrintInlining && (Verbose || WizardMode)) { |
43d4a6542551
7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents:
9633
diff
changeset
|
621 |
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
|
622 |
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
|
623 |
} |
10007
43d4a6542551
7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents:
9633
diff
changeset
|
624 |
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
|
625 |
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
|
626 |
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
|
627 |
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
|
628 |
} |
f1c484fca023
6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents:
4567
diff
changeset
|
629 |
} |
10007
43d4a6542551
7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents:
9633
diff
changeset
|
630 |
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
|
631 |
_subtrees.append(ilt); |
1 | 632 |
|
633 |
NOT_PRODUCT( _count_inlines += 1; ) |
|
634 |
||
635 |
return ilt; |
|
636 |
} |
|
637 |
||
638 |
||
639 |
//---------------------------------------callee_at----------------------------- |
|
640 |
InlineTree *InlineTree::callee_at(int bci, ciMethod* callee) const { |
|
641 |
for (int i = 0; i < _subtrees.length(); i++) { |
|
642 |
InlineTree* sub = _subtrees.at(i); |
|
643 |
if (sub->caller_bci() == bci && callee == sub->method()) { |
|
644 |
return sub; |
|
645 |
} |
|
646 |
} |
|
647 |
return NULL; |
|
648 |
} |
|
649 |
||
650 |
||
651 |
//------------------------------build_inline_tree_root------------------------- |
|
652 |
InlineTree *InlineTree::build_inline_tree_root() { |
|
653 |
Compile* C = Compile::current(); |
|
654 |
||
655 |
// Root of inline tree |
|
10007
43d4a6542551
7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents:
9633
diff
changeset
|
656 |
InlineTree* ilt = new InlineTree(C, NULL, C->method(), NULL, -1, 1.0F, MaxInlineLevel); |
1 | 657 |
|
658 |
return ilt; |
|
659 |
} |
|
660 |
||
661 |
||
662 |
//-------------------------find_subtree_from_root----------------------------- |
|
663 |
// Given a jvms, which determines a call chain from the root method, |
|
664 |
// find the corresponding inline tree. |
|
665 |
// 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
|
666 |
InlineTree* InlineTree::find_subtree_from_root(InlineTree* root, JVMState* jvms, ciMethod* callee) { |
1 | 667 |
InlineTree* iltp = root; |
668 |
uint depth = jvms && jvms->has_method() ? jvms->depth() : 0; |
|
669 |
for (uint d = 1; d <= depth; d++) { |
|
670 |
JVMState* jvmsp = jvms->of_depth(d); |
|
671 |
// Select the corresponding subtree for this bci. |
|
672 |
assert(jvmsp->method() == iltp->method(), "tree still in sync"); |
|
673 |
ciMethod* d_callee = (d == depth) ? callee : jvms->of_depth(d+1)->method(); |
|
674 |
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
|
675 |
if (sub == NULL) { |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12160
diff
changeset
|
676 |
if (d == depth) { |
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12160
diff
changeset
|
677 |
sub = iltp->build_inline_tree_for_callee(d_callee, jvmsp, jvmsp->bci()); |
1 | 678 |
} |
13391
30245956af37
7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents:
12160
diff
changeset
|
679 |
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
|
680 |
return sub; |
1 | 681 |
} |
682 |
iltp = sub; |
|
683 |
} |
|
684 |
return iltp; |
|
685 |
} |
|
10547 | 686 |
|
687 |
||
688 |
||
689 |
#ifndef PRODUCT |
|
690 |
void InlineTree::print_impl(outputStream* st, int indent) const { |
|
691 |
for (int i = 0; i < indent; i++) st->print(" "); |
|
692 |
st->print(" @ %d ", caller_bci()); |
|
693 |
method()->print_short_name(st); |
|
694 |
st->cr(); |
|
695 |
||
696 |
for (int i = 0 ; i < _subtrees.length(); i++) { |
|
697 |
_subtrees.at(i)->print_impl(st, indent + 2); |
|
698 |
} |
|
699 |
} |
|
700 |
||
701 |
void InlineTree::print_value_on(outputStream* st) const { |
|
702 |
print_impl(st, 2); |
|
703 |
} |
|
704 |
#endif |