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