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