blob: 8071d76b95cc40d754e49a8a868bfc54d6875112 [file] [log] [blame]
J. Duke81537792007-12-01 00:00:00 +00001/*
Mikael Vidstedta0da47f2013-12-24 11:48:39 -08002 * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
J. Duke81537792007-12-01 00:00:00 +00003 * 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 *
Erik Trimbleba7c1732010-05-27 19:08:38 -070019 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
J. Duke81537792007-12-01 00:00:00 +000022 *
23 */
24
Stefan Karlsson8006fe82010-11-23 13:22:55 -080025#include "precompiled.hpp"
Yumin Qif712e122012-11-12 14:03:53 -080026#include "ci/ciReplay.hpp"
Stefan Karlsson8006fe82010-11-23 13:22:55 -080027#include "classfile/systemDictionary.hpp"
28#include "classfile/vmSymbols.hpp"
Christian Thalingerf51036e2011-03-28 03:58:07 -070029#include "compiler/compileBroker.hpp"
Stefan Karlsson8006fe82010-11-23 13:22:55 -080030#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"
Igor Ignatyev140bf2b2015-03-13 21:53:13 +030036#include "utilities/events.hpp"
J. Duke81537792007-12-01 00:00:00 +000037
J. Duke81537792007-12-01 00:00:00 +000038//=============================================================================
39//------------------------------InlineTree-------------------------------------
Tom Rodriguez15161b82011-06-22 14:45:37 -070040InlineTree::InlineTree(Compile* c,
41 const InlineTree *caller_tree, ciMethod* callee,
42 JVMState* caller_jvms, int caller_bci,
43 float site_invoke_ratio, int max_inline_level) :
44 C(c),
45 _caller_jvms(caller_jvms),
46 _caller_tree((InlineTree*) caller_tree),
47 _method(callee),
48 _site_invoke_ratio(site_invoke_ratio),
49 _max_inline_level(max_inline_level),
Roland Westrelin73d6d412012-12-23 17:08:22 +010050 _count_inline_bcs(method()->code_size_for_inlining()),
Igor Ignatyev50efb852013-02-27 05:58:48 -080051 _subtrees(c->comp_arena(), 2, 0, NULL),
52 _msg(NULL)
John R Rose6fbdf202010-01-08 13:58:49 -080053{
Vladimir Kozlovba7149b2014-01-08 10:25:50 -080054#ifndef PRODUCT
55 _count_inlines = 0;
56 _forced_inline = false;
57#endif
J. Duke81537792007-12-01 00:00:00 +000058 if (_caller_jvms != NULL) {
59 // Keep a private copy of the caller_jvms:
60 _caller_jvms = new (C) JVMState(caller_jvms->method(), caller_tree->caller_jvms());
61 _caller_jvms->set_bci(caller_jvms->bci());
Changpeng Fangae007532009-07-31 17:12:33 -070062 assert(!caller_jvms->should_reexecute(), "there should be no reexecute bytecode with inlining");
J. Duke81537792007-12-01 00:00:00 +000063 }
64 assert(_caller_jvms->same_calls_as(caller_jvms), "consistent JVMS");
John R Rose6fbdf202010-01-08 13:58:49 -080065 assert((caller_tree == NULL ? 0 : caller_tree->stack_depth() + 1) == stack_depth(), "correct (redundant) depth parameter");
J. Duke81537792007-12-01 00:00:00 +000066 assert(caller_bci == this->caller_bci(), "correct (redundant) bci parameter");
Aleksey Shipilevfbff3b72014-01-24 15:26:56 +040067 // Update hierarchical counts, count_inline_bcs() and count_inlines()
68 InlineTree *caller = (InlineTree *)caller_tree;
69 for( ; caller != NULL; caller = ((InlineTree *)(caller->caller_tree())) ) {
70 caller->_count_inline_bcs += count_inline_bcs();
71 NOT_PRODUCT(caller->_count_inlines++;)
J. Duke81537792007-12-01 00:00:00 +000072 }
73}
74
Vladimir Kozlov2ed62e82013-05-13 14:36:39 -070075/**
76 * Return true when EA is ON and a java constructor is called or
77 * a super constructor is called from an inlined java constructor.
78 * Also return true for boxing methods.
79 */
Vladimir Kozlov9ec574b2008-03-07 11:09:13 -080080static bool is_init_with_ea(ciMethod* callee_method,
81 ciMethod* caller_method, Compile* C) {
Vladimir Kozlov2ed62e82013-05-13 14:36:39 -070082 if (!C->do_escape_analysis() || !EliminateAllocations) {
83 return false; // EA is off
84 }
85 if (callee_method->is_initializer()) {
86 return true; // constuctor
87 }
88 if (caller_method->is_initializer() &&
89 caller_method != C->method() &&
90 caller_method->holder()->is_subclass_of(callee_method->holder())) {
91 return true; // super constructor is called from inlined constructor
92 }
93 if (C->eliminate_boxing() && callee_method->is_boxing_method()) {
94 return true;
95 }
96 return false;
Vladimir Kozlov9ec574b2008-03-07 11:09:13 -080097}
98
Vladimir Kozlov2ed62e82013-05-13 14:36:39 -070099/**
100 * Force inlining unboxing accessor.
101 */
Vladimir Kozlovb4977e82013-05-08 15:08:01 -0700102static bool is_unboxing_method(ciMethod* callee_method, Compile* C) {
Vladimir Kozlovb4977e82013-05-08 15:08:01 -0700103 return C->eliminate_boxing() && callee_method->is_unboxing_method();
104}
105
Igor Ignatyev50efb852013-02-27 05:58:48 -0800106// positive filter: should callee be inlined?
107bool InlineTree::should_inline(ciMethod* callee_method, ciMethod* caller_method,
108 int caller_bci, ciCallProfile& profile,
109 WarmCallInfo* wci_result) {
J. Duke81537792007-12-01 00:00:00 +0000110 // Allows targeted inlining
Nils Eliasson5a5faf92015-10-20 18:07:28 +0200111 if (C->directive()->should_inline(callee_method)) {
J. Duke81537792007-12-01 00:00:00 +0000112 *wci_result = *(WarmCallInfo::always_hot());
Vladimir Kozlov0ccb2842013-09-24 16:08:00 -0700113 if (C->print_inlining() && Verbose) {
Tom Rodriguez15161b82011-06-22 14:45:37 -0700114 CompileTask::print_inline_indent(inline_level());
J. Duke81537792007-12-01 00:00:00 +0000115 tty->print_cr("Inlined method is hot: ");
116 }
Nils Eliasson5ca89832015-09-18 10:11:11 +0200117 set_msg("force inline by CompileCommand");
Vladimir Kozlovba7149b2014-01-08 10:25:50 -0800118 _forced_inline = true;
Igor Ignatyev50efb852013-02-27 05:58:48 -0800119 return true;
J. Duke81537792007-12-01 00:00:00 +0000120 }
121
Vladimir Ivanov34bf4292014-07-14 03:24:35 -0700122 if (callee_method->force_inline()) {
123 set_msg("force inline by annotation");
124 _forced_inline = true;
125 return true;
126 }
127
Vladimir Kozlovba7149b2014-01-08 10:25:50 -0800128#ifndef PRODUCT
129 int inline_depth = inline_level()+1;
130 if (ciReplay::should_inline(C->replay_inline_data(), callee_method, caller_bci, inline_depth)) {
131 set_msg("force inline by ciReplay");
132 _forced_inline = true;
133 return true;
134 }
135#endif
136
Christian Thalinger05b60b32011-08-31 01:40:45 -0700137 int size = callee_method->code_size_for_inlining();
J. Duke81537792007-12-01 00:00:00 +0000138
139 // Check for too many throws (and not too huge)
Vladimir Kozlov9ec574b2008-03-07 11:09:13 -0800140 if(callee_method->interpreter_throwout_count() > InlineThrowCount &&
141 size < InlineThrowMaxSize ) {
J. Duke81537792007-12-01 00:00:00 +0000142 wci_result->set_profit(wci_result->profit() * 100);
Vladimir Kozlov0ccb2842013-09-24 16:08:00 -0700143 if (C->print_inlining() && Verbose) {
Tom Rodriguez15161b82011-06-22 14:45:37 -0700144 CompileTask::print_inline_indent(inline_level());
J. Duke81537792007-12-01 00:00:00 +0000145 tty->print_cr("Inlined method with many throws (throws=%d):", callee_method->interpreter_throwout_count());
146 }
Igor Ignatyev50efb852013-02-27 05:58:48 -0800147 set_msg("many throws");
148 return true;
J. Duke81537792007-12-01 00:00:00 +0000149 }
150
Christian Thalingerfee8d7f2011-05-10 00:45:03 -0700151 int default_max_inline_size = C->max_inline_size();
152 int inline_small_code_size = InlineSmallCode / 4;
153 int max_inline_size = default_max_inline_size;
154
J. Duke81537792007-12-01 00:00:00 +0000155 int call_site_count = method()->scale_count(profile.count());
156 int invoke_count = method()->interpreter_invocation_count();
Christian Thalingerfee8d7f2011-05-10 00:45:03 -0700157
Christian Thalingerfee8d7f2011-05-10 00:45:03 -0700158 assert(invoke_count != 0, "require invocation count greater than zero");
159 int freq = call_site_count / invoke_count;
Vladimir Kozlov9ec574b2008-03-07 11:09:13 -0800160
J. Duke81537792007-12-01 00:00:00 +0000161 // bump the max size if the call is frequent
Vladimir Kozlov9ec574b2008-03-07 11:09:13 -0800162 if ((freq >= InlineFrequencyRatio) ||
163 (call_site_count >= InlineFrequencyCount) ||
Vladimir Kozlovb4977e82013-05-08 15:08:01 -0700164 is_unboxing_method(callee_method, C) ||
Vladimir Kozlov9ec574b2008-03-07 11:09:13 -0800165 is_init_with_ea(callee_method, caller_method, C)) {
166
Christian Thalingerfee8d7f2011-05-10 00:45:03 -0700167 max_inline_size = C->freq_inline_size();
168 if (size <= max_inline_size && TraceFrequencyInlining) {
Tom Rodriguez15161b82011-06-22 14:45:37 -0700169 CompileTask::print_inline_indent(inline_level());
J. Duke81537792007-12-01 00:00:00 +0000170 tty->print_cr("Inlined frequent method (freq=%d count=%d):", freq, call_site_count);
Tom Rodriguez15161b82011-06-22 14:45:37 -0700171 CompileTask::print_inline_indent(inline_level());
J. Duke81537792007-12-01 00:00:00 +0000172 callee_method->print();
173 tty->cr();
174 }
175 } else {
176 // Not hot. Check for medium-sized pre-existing nmethod at cold sites.
Vladimir Kozlov9ec574b2008-03-07 11:09:13 -0800177 if (callee_method->has_compiled_code() &&
Vladimir Kozlov3679ebd2013-03-19 10:56:33 -0700178 callee_method->instructions_size() > inline_small_code_size) {
Igor Ignatyev50efb852013-02-27 05:58:48 -0800179 set_msg("already compiled into a medium method");
180 return false;
Vladimir Kozlov3679ebd2013-03-19 10:56:33 -0700181 }
J. Duke81537792007-12-01 00:00:00 +0000182 }
Christian Thalingerfee8d7f2011-05-10 00:45:03 -0700183 if (size > max_inline_size) {
Igor Ignatyev50efb852013-02-27 05:58:48 -0800184 if (max_inline_size > default_max_inline_size) {
185 set_msg("hot method too big");
186 } else {
187 set_msg("too big");
188 }
189 return false;
J. Duke81537792007-12-01 00:00:00 +0000190 }
Igor Ignatyev50efb852013-02-27 05:58:48 -0800191 return true;
J. Duke81537792007-12-01 00:00:00 +0000192}
193
194
Igor Ignatyev50efb852013-02-27 05:58:48 -0800195// negative filter: should callee NOT be inlined?
196bool InlineTree::should_not_inline(ciMethod *callee_method,
197 ciMethod* caller_method,
Christian Thalingerbfc53b62013-10-04 10:11:48 -0700198 JVMState* jvms,
Igor Ignatyev50efb852013-02-27 05:58:48 -0800199 WarmCallInfo* wci_result) {
J. Duke81537792007-12-01 00:00:00 +0000200
Igor Ignatyev50efb852013-02-27 05:58:48 -0800201 const char* fail_msg = NULL;
202
203 // First check all inlining restrictions which are required for correctness
204 if ( callee_method->is_abstract()) {
205 fail_msg = "abstract method"; // // note: we allow ik->is_abstract()
206 } else if (!callee_method->holder()->is_initialized()) {
207 fail_msg = "method holder not initialized";
208 } else if ( callee_method->is_native()) {
209 fail_msg = "native method";
210 } else if ( callee_method->dont_inline()) {
211 fail_msg = "don't inline by annotation";
212 }
213
Igor Ignatyev50efb852013-02-27 05:58:48 -0800214 // one more inlining restriction
215 if (fail_msg == NULL && callee_method->has_unloaded_classes_in_signature()) {
216 fail_msg = "unloaded signature classes";
217 }
J. Duke81537792007-12-01 00:00:00 +0000218
Igor Ignatyev50efb852013-02-27 05:58:48 -0800219 if (fail_msg != NULL) {
220 set_msg(fail_msg);
221 return true;
222 }
223
224 // ignore heuristic controls on inlining
Nils Eliasson5a5faf92015-10-20 18:07:28 +0200225 if (C->directive()->should_inline(callee_method)) {
Nils Eliasson5ca89832015-09-18 10:11:11 +0200226 set_msg("force inline by CompileCommand");
Igor Ignatyev50efb852013-02-27 05:58:48 -0800227 return false;
J. Duke81537792007-12-01 00:00:00 +0000228 }
229
Nils Eliasson5a5faf92015-10-20 18:07:28 +0200230 if (C->directive()->should_not_inline(callee_method)) {
Nils Eliasson5ca89832015-09-18 10:11:11 +0200231 set_msg("disallowed by CompileCommand");
Vladimir Kozlovb4977e82013-05-08 15:08:01 -0700232 return true;
233 }
234
235#ifndef PRODUCT
Vladimir Kozlovba7149b2014-01-08 10:25:50 -0800236 int caller_bci = jvms->bci();
237 int inline_depth = inline_level()+1;
238 if (ciReplay::should_inline(C->replay_inline_data(), callee_method, caller_bci, inline_depth)) {
239 set_msg("force inline by ciReplay");
240 return false;
241 }
242
243 if (ciReplay::should_not_inline(C->replay_inline_data(), callee_method, caller_bci, inline_depth)) {
244 set_msg("disallowed by ciReplay");
245 return true;
246 }
247
Vladimir Kozlovb4977e82013-05-08 15:08:01 -0700248 if (ciReplay::should_not_inline(callee_method)) {
249 set_msg("disallowed by ciReplay");
250 return true;
251 }
252#endif
253
Vladimir Ivanov34bf4292014-07-14 03:24:35 -0700254 if (callee_method->force_inline()) {
255 set_msg("force inline by annotation");
256 return false;
257 }
258
J. Duke81537792007-12-01 00:00:00 +0000259 // Now perform checks which are heuristic
260
Vladimir Kozlovb4977e82013-05-08 15:08:01 -0700261 if (is_unboxing_method(callee_method, C)) {
262 // Inline unboxing methods.
263 return false;
264 }
265
Vladimir Ivanov34bf4292014-07-14 03:24:35 -0700266 if (callee_method->has_compiled_code() &&
267 callee_method->instructions_size() > InlineSmallCode) {
268 set_msg("already compiled into a big method");
269 return true;
Christian Thalinger12901d02012-07-24 10:51:00 -0700270 }
J. Duke81537792007-12-01 00:00:00 +0000271
272 // don't inline exception code unless the top method belongs to an
273 // exception class
274 if (caller_tree() != NULL &&
275 callee_method->holder()->is_subclass_of(C->env()->Throwable_klass())) {
276 const InlineTree *top = this;
277 while (top->caller_tree() != NULL) top = top->caller_tree();
278 ciInstanceKlass* k = top->method()->holder();
Igor Ignatyev50efb852013-02-27 05:58:48 -0800279 if (!k->is_subclass_of(C->env()->Throwable_klass())) {
280 set_msg("exception method");
281 return true;
282 }
J. Duke81537792007-12-01 00:00:00 +0000283 }
284
285 // use frequency-based objections only for non-trivial methods
Igor Ignatyev50efb852013-02-27 05:58:48 -0800286 if (callee_method->code_size() <= MaxTrivialSize) {
287 return false;
288 }
Vladimir Kozlov9ec574b2008-03-07 11:09:13 -0800289
290 // don't use counts with -Xcomp or CTW
291 if (UseInterpreter && !CompileTheWorld) {
292
293 if (!callee_method->has_compiled_code() &&
294 !callee_method->was_executed_more_than(0)) {
Igor Ignatyev50efb852013-02-27 05:58:48 -0800295 set_msg("never executed");
296 return true;
Vladimir Kozlov9ec574b2008-03-07 11:09:13 -0800297 }
298
299 if (is_init_with_ea(callee_method, caller_method, C)) {
Vladimir Kozlov9ec574b2008-03-07 11:09:13 -0800300 // Escape Analysis: inline all executed constructors
Vladimir Kozlovb4977e82013-05-08 15:08:01 -0700301 return false;
Zoltan Majoed26c7e2014-10-15 14:00:41 +0200302 } else {
303 intx counter_high_value;
304 // Tiered compilation uses a different "high value" than non-tiered compilation.
305 // Determine the right value to use.
306 if (TieredCompilation) {
307 counter_high_value = InvocationCounter::count_limit / 2;
308 } else {
309 counter_high_value = CompileThreshold / 2;
310 }
311 if (!callee_method->was_executed_more_than(MIN2(MinInliningThreshold, counter_high_value))) {
312 set_msg("executed < MinInliningThreshold times");
313 return true;
314 }
Vladimir Kozlov9ec574b2008-03-07 11:09:13 -0800315 }
J. Duke81537792007-12-01 00:00:00 +0000316 }
317
Igor Ignatyev50efb852013-02-27 05:58:48 -0800318 return false;
J. Duke81537792007-12-01 00:00:00 +0000319}
320
321//-----------------------------try_to_inline-----------------------------------
Igor Ignatyev50efb852013-02-27 05:58:48 -0800322// return true if ok
J. Duke81537792007-12-01 00:00:00 +0000323// Relocated from "InliningClosure::try_to_inline"
Igor Ignatyev50efb852013-02-27 05:58:48 -0800324bool InlineTree::try_to_inline(ciMethod* callee_method, ciMethod* caller_method,
Christian Thalingerbfc53b62013-10-04 10:11:48 -0700325 int caller_bci, JVMState* jvms, ciCallProfile& profile,
Igor Ignatyev50efb852013-02-27 05:58:48 -0800326 WarmCallInfo* wci_result, bool& should_delay) {
327
Aleksey Shipilevfbff3b72014-01-24 15:26:56 +0400328 if (ClipInlining && (int)count_inline_bcs() >= DesiredMethodLimit) {
Roland Westrelin73d6d412012-12-23 17:08:22 +0100329 if (!callee_method->force_inline() || !IncrementalInline) {
Igor Ignatyev50efb852013-02-27 05:58:48 -0800330 set_msg("size > DesiredMethodLimit");
331 return false;
Roland Westrelin73d6d412012-12-23 17:08:22 +0100332 } else if (!C->inlining_incrementally()) {
333 should_delay = true;
334 }
J. Duke81537792007-12-01 00:00:00 +0000335 }
336
Vladimir Kozlovba7149b2014-01-08 10:25:50 -0800337 _forced_inline = false; // Reset
Igor Ignatyev50efb852013-02-27 05:58:48 -0800338 if (!should_inline(callee_method, caller_method, caller_bci, profile,
339 wci_result)) {
340 return false;
341 }
Christian Thalingerbfc53b62013-10-04 10:11:48 -0700342 if (should_not_inline(callee_method, caller_method, jvms, wci_result)) {
Igor Ignatyev50efb852013-02-27 05:58:48 -0800343 return false;
344 }
J. Duke81537792007-12-01 00:00:00 +0000345
John R Rose6fbdf202010-01-08 13:58:49 -0800346 if (InlineAccessors && callee_method->is_accessor()) {
347 // accessor methods are not subject to any of the following limits.
Igor Ignatyev50efb852013-02-27 05:58:48 -0800348 set_msg("accessor");
349 return true;
John R Rose6fbdf202010-01-08 13:58:49 -0800350 }
J. Duke81537792007-12-01 00:00:00 +0000351
352 // suppress a few checks for accessors and trivial methods
Christian Thalinger12901d02012-07-24 10:51:00 -0700353 if (callee_method->code_size() > MaxTrivialSize) {
J. Duke81537792007-12-01 00:00:00 +0000354
Vladimir Kozlov9ec574b2008-03-07 11:09:13 -0800355 // don't inline into giant methods
Roland Westrelin73d6d412012-12-23 17:08:22 +0100356 if (C->over_inlining_cutoff()) {
357 if ((!callee_method->force_inline() && !caller_method->is_compiled_lambda_form())
358 || !IncrementalInline) {
Igor Ignatyev50efb852013-02-27 05:58:48 -0800359 set_msg("NodeCountInliningCutoff");
360 return false;
Roland Westrelin73d6d412012-12-23 17:08:22 +0100361 } else {
362 should_delay = true;
363 }
Vladimir Kozlov9ec574b2008-03-07 11:09:13 -0800364 }
365
366 if ((!UseInterpreter || CompileTheWorld) &&
367 is_init_with_ea(callee_method, caller_method, C)) {
Vladimir Kozlov9ec574b2008-03-07 11:09:13 -0800368 // Escape Analysis stress testing when running Xcomp or CTW:
369 // inline constructors even if they are not reached.
Vladimir Kozlovba7149b2014-01-08 10:25:50 -0800370 } else if (forced_inline()) {
Vladimir Ivanov34bf4292014-07-14 03:24:35 -0700371 // Inlining was forced by CompilerOracle, ciReplay or annotation
Vladimir Kozlov9ec574b2008-03-07 11:09:13 -0800372 } else if (profile.count() == 0) {
373 // don't inline unreached call sites
Igor Ignatyev50efb852013-02-27 05:58:48 -0800374 set_msg("call site not reached");
375 return false;
Vladimir Kozlov9ec574b2008-03-07 11:09:13 -0800376 }
J. Duke81537792007-12-01 00:00:00 +0000377 }
378
John R Rose6fbdf202010-01-08 13:58:49 -0800379 if (!C->do_inlining() && InlineAccessors) {
Igor Ignatyev50efb852013-02-27 05:58:48 -0800380 set_msg("not an accessor");
381 return false;
Vladimir Kozlov9ec574b2008-03-07 11:09:13 -0800382 }
Roland Westrelinbdb80502014-06-02 10:01:15 +0200383
384 // Limit inlining depth in case inlining is forced or
385 // _max_inline_level was increased to compensate for lambda forms.
386 if (inline_level() > MaxForceInlineLevel) {
387 set_msg("MaxForceInlineLevel");
388 return false;
389 }
Tom Rodriguez15161b82011-06-22 14:45:37 -0700390 if (inline_level() > _max_inline_level) {
Roland Westrelin73d6d412012-12-23 17:08:22 +0100391 if (!callee_method->force_inline() || !IncrementalInline) {
Igor Ignatyev50efb852013-02-27 05:58:48 -0800392 set_msg("inlining too deep");
393 return false;
Roland Westrelin73d6d412012-12-23 17:08:22 +0100394 } else if (!C->inlining_incrementally()) {
395 should_delay = true;
396 }
Vladimir Kozlov9ec574b2008-03-07 11:09:13 -0800397 }
Christian Thalingerf51036e2011-03-28 03:58:07 -0700398
Christian Thalinger6bfb3062011-05-02 00:55:09 -0700399 // detect direct and indirect recursive inlining
Christian Thalingerbfc53b62013-10-04 10:11:48 -0700400 {
Christian Thalinger6bfb3062011-05-02 00:55:09 -0700401 // count the current method and the callee
Christian Thalingerbfc53b62013-10-04 10:11:48 -0700402 const bool is_compiled_lambda_form = callee_method->is_compiled_lambda_form();
403 int inline_level = 0;
404 if (!is_compiled_lambda_form) {
405 if (method() == callee_method) {
406 inline_level++;
407 }
Igor Ignatyev50efb852013-02-27 05:58:48 -0800408 }
Christian Thalinger6bfb3062011-05-02 00:55:09 -0700409 // count callers of current method and callee
Christian Thalingerbfc53b62013-10-04 10:11:48 -0700410 Node* callee_argument0 = is_compiled_lambda_form ? jvms->map()->argument(jvms, 0)->uncast() : NULL;
411 for (JVMState* j = jvms->caller(); j != NULL && j->has_method(); j = j->caller()) {
412 if (j->method() == callee_method) {
413 if (is_compiled_lambda_form) {
414 // Since compiled lambda forms are heavily reused we allow recursive inlining. If it is truly
415 // a recursion (using the same "receiver") we limit inlining otherwise we can easily blow the
416 // compiler stack.
417 Node* caller_argument0 = j->map()->argument(j, 0)->uncast();
418 if (caller_argument0 == callee_argument0) {
419 inline_level++;
420 }
421 } else {
422 inline_level++;
Igor Ignatyev50efb852013-02-27 05:58:48 -0800423 }
Christian Thalingerf51036e2011-03-28 03:58:07 -0700424 }
Christian Thalingerbfc53b62013-10-04 10:11:48 -0700425 }
426 if (inline_level > MaxRecursiveInlineLevel) {
427 set_msg("recursive inlining is too deep");
428 return false;
Christian Thalingerf51036e2011-03-28 03:58:07 -0700429 }
430 }
431
Christian Thalinger05b60b32011-08-31 01:40:45 -0700432 int size = callee_method->code_size_for_inlining();
J. Duke81537792007-12-01 00:00:00 +0000433
Aleksey Shipilevfbff3b72014-01-24 15:26:56 +0400434 if (ClipInlining && (int)count_inline_bcs() + size >= DesiredMethodLimit) {
Roland Westrelin73d6d412012-12-23 17:08:22 +0100435 if (!callee_method->force_inline() || !IncrementalInline) {
Igor Ignatyev50efb852013-02-27 05:58:48 -0800436 set_msg("size > DesiredMethodLimit");
437 return false;
Roland Westrelin73d6d412012-12-23 17:08:22 +0100438 } else if (!C->inlining_incrementally()) {
439 should_delay = true;
440 }
J. Duke81537792007-12-01 00:00:00 +0000441 }
442
443 // ok, inline this method
Igor Ignatyev50efb852013-02-27 05:58:48 -0800444 return true;
J. Duke81537792007-12-01 00:00:00 +0000445}
446
447//------------------------------pass_initial_checks----------------------------
448bool pass_initial_checks(ciMethod* caller_method, int caller_bci, ciMethod* callee_method) {
449 ciInstanceKlass *callee_holder = callee_method ? callee_method->holder() : NULL;
450 // Check if a callee_method was suggested
451 if( callee_method == NULL ) return false;
452 // Check if klass of callee_method is loaded
453 if( !callee_holder->is_loaded() ) return false;
454 if( !callee_holder->is_initialized() ) return false;
455 if( !UseInterpreter || CompileTheWorld /* running Xcomp or CTW */ ) {
456 // Checks that constant pool's call site has been visited
457 // stricter than callee_holder->is_initialized()
458 ciBytecodeStream iter(caller_method);
459 iter.force_bci(caller_bci);
J. Duke81537792007-12-01 00:00:00 +0000460 Bytecodes::Code call_bc = iter.cur_bc();
Christian Thalinger375527d2010-01-05 13:05:58 +0100461 // An invokedynamic instruction does not have a klass.
462 if (call_bc != Bytecodes::_invokedynamic) {
John R Rose581521b2010-05-23 01:38:26 -0700463 int index = iter.get_index_u2_cpcache();
Christian Thalinger375527d2010-01-05 13:05:58 +0100464 if (!caller_method->is_klass_loaded(index, true)) {
465 return false;
466 }
467 // Try to do constant pool resolution if running Xcomp
468 if( !caller_method->check_call(index, call_bc == Bytecodes::_invokestatic) ) {
469 return false;
470 }
J. Duke81537792007-12-01 00:00:00 +0000471 }
472 }
J. Duke81537792007-12-01 00:00:00 +0000473 return true;
474}
475
Christian Thalingerfcc2a862011-09-01 01:31:25 -0700476//------------------------------check_can_parse--------------------------------
477const char* InlineTree::check_can_parse(ciMethod* callee) {
478 // Certain methods cannot be parsed at all:
479 if ( callee->is_native()) return "native method";
Christian Thalinger12901d02012-07-24 10:51:00 -0700480 if ( callee->is_abstract()) return "abstract method";
Christian Thalingerfcc2a862011-09-01 01:31:25 -0700481 if (!callee->can_be_compiled()) return "not compilable (disabled)";
482 if (!callee->has_balanced_monitors()) return "not compilable (unbalanced monitors)";
483 if ( callee->get_flow_analysis()->failing()) return "not compilable (flow analysis failed)";
484 return NULL;
485}
486
J. Duke81537792007-12-01 00:00:00 +0000487//------------------------------print_inlining---------------------------------
Igor Ignatyev1a9e6be2013-02-01 03:02:01 -0800488void InlineTree::print_inlining(ciMethod* callee_method, int caller_bci,
Igor Ignatyev140bf2b2015-03-13 21:53:13 +0300489 ciMethod* caller_method, bool success) const {
Igor Ignatyev50efb852013-02-27 05:58:48 -0800490 const char* inline_msg = msg();
491 assert(inline_msg != NULL, "just checking");
Igor Ignatyev1a9e6be2013-02-01 03:02:01 -0800492 if (C->log() != NULL) {
493 if (success) {
Igor Ignatyev50efb852013-02-27 05:58:48 -0800494 C->log()->inline_success(inline_msg);
Igor Ignatyev1a9e6be2013-02-01 03:02:01 -0800495 } else {
Igor Ignatyev50efb852013-02-27 05:58:48 -0800496 C->log()->inline_fail(inline_msg);
Igor Ignatyev1a9e6be2013-02-01 03:02:01 -0800497 }
498 }
Yasumasa Suenagab1171ce2017-02-14 20:00:28 -0800499 CompileTask::print_inlining_ul(callee_method, inline_level(),
500 caller_bci, inline_msg);
Vladimir Kozlov0ccb2842013-09-24 16:08:00 -0700501 if (C->print_inlining()) {
Igor Ignatyev50efb852013-02-27 05:58:48 -0800502 C->print_inlining(callee_method, inline_level(), caller_bci, inline_msg);
Igor Ignatyev1a9e6be2013-02-01 03:02:01 -0800503 if (callee_method == NULL) tty->print(" callee not monotonic or profiled");
504 if (Verbose && callee_method) {
505 const InlineTree *top = this;
506 while( top->caller_tree() != NULL ) { top = top->caller_tree(); }
507 //tty->print(" bcs: %d+%d invoked: %d", top->count_inline_bcs(), callee_method->code_size(), callee_method->interpreter_invocation_count());
508 }
J. Duke81537792007-12-01 00:00:00 +0000509 }
Igor Ignatyev140bf2b2015-03-13 21:53:13 +0300510#if INCLUDE_TRACE
511 EventCompilerInlining event;
512 if (event.should_commit()) {
Erik Gahlinc98e5992016-08-23 19:21:48 +0200513 event.set_compileId(C->compile_id());
Igor Ignatyev140bf2b2015-03-13 21:53:13 +0300514 event.set_message(inline_msg);
515 event.set_succeeded(success);
516 event.set_bci(caller_bci);
517 event.set_caller(caller_method->get_Method());
518 event.set_callee(callee_method->to_trace_struct());
519 event.commit();
520 }
521#endif // INCLUDE_TRACE
J. Duke81537792007-12-01 00:00:00 +0000522}
J. Duke81537792007-12-01 00:00:00 +0000523
524//------------------------------ok_to_inline-----------------------------------
Roland Westrelin73d6d412012-12-23 17:08:22 +0100525WarmCallInfo* InlineTree::ok_to_inline(ciMethod* callee_method, JVMState* jvms, ciCallProfile& profile, WarmCallInfo* initial_wci, bool& should_delay) {
J. Duke81537792007-12-01 00:00:00 +0000526 assert(callee_method != NULL, "caller checks for optimized virtual!");
Roland Westrelin73d6d412012-12-23 17:08:22 +0100527 assert(!should_delay, "should be initialized to false");
J. Duke81537792007-12-01 00:00:00 +0000528#ifdef ASSERT
529 // Make sure the incoming jvms has the same information content as me.
530 // This means that we can eventually make this whole class AllStatic.
531 if (jvms->caller() == NULL) {
532 assert(_caller_jvms == NULL, "redundant instance state");
533 } else {
534 assert(_caller_jvms->same_calls_as(jvms->caller()), "redundant instance state");
535 }
536 assert(_method == jvms->method(), "redundant instance state");
537#endif
J. Duke81537792007-12-01 00:00:00 +0000538 int caller_bci = jvms->bci();
Igor Ignatyev50efb852013-02-27 05:58:48 -0800539 ciMethod* caller_method = jvms->method();
J. Duke81537792007-12-01 00:00:00 +0000540
Christian Thalingerfcc2a862011-09-01 01:31:25 -0700541 // Do some initial checks.
542 if (!pass_initial_checks(caller_method, caller_bci, callee_method)) {
Igor Ignatyev50efb852013-02-27 05:58:48 -0800543 set_msg("failed initial checks");
Igor Ignatyev140bf2b2015-03-13 21:53:13 +0300544 print_inlining(callee_method, caller_bci, caller_method, false /* !success */);
J. Duke81537792007-12-01 00:00:00 +0000545 return NULL;
546 }
547
Christian Thalingerfcc2a862011-09-01 01:31:25 -0700548 // Do some parse checks.
Igor Ignatyev50efb852013-02-27 05:58:48 -0800549 set_msg(check_can_parse(callee_method));
550 if (msg() != NULL) {
Igor Ignatyev140bf2b2015-03-13 21:53:13 +0300551 print_inlining(callee_method, caller_bci, caller_method, false /* !success */);
Christian Thalingerfcc2a862011-09-01 01:31:25 -0700552 return NULL;
553 }
554
J. Duke81537792007-12-01 00:00:00 +0000555 // Check if inlining policy says no.
556 WarmCallInfo wci = *(initial_wci);
Igor Ignatyev50efb852013-02-27 05:58:48 -0800557 bool success = try_to_inline(callee_method, caller_method, caller_bci,
Christian Thalingerbfc53b62013-10-04 10:11:48 -0700558 jvms, profile, &wci, should_delay);
J. Duke81537792007-12-01 00:00:00 +0000559
560#ifndef PRODUCT
Aleksey Shipilevfbff3b72014-01-24 15:26:56 +0400561 if (InlineWarmCalls && (PrintOpto || C->print_inlining())) {
J. Duke81537792007-12-01 00:00:00 +0000562 bool cold = wci.is_cold();
563 bool hot = !cold && wci.is_hot();
Igor Ignatyev50efb852013-02-27 05:58:48 -0800564 bool old_cold = !success;
J. Duke81537792007-12-01 00:00:00 +0000565 if (old_cold != cold || (Verbose || WizardMode)) {
Igor Ignatyev50efb852013-02-27 05:58:48 -0800566 if (msg() == NULL) {
567 set_msg("OK");
568 }
J. Duke81537792007-12-01 00:00:00 +0000569 tty->print(" OldInlining= %4s : %s\n WCI=",
Igor Ignatyev50efb852013-02-27 05:58:48 -0800570 old_cold ? "cold" : "hot", msg());
J. Duke81537792007-12-01 00:00:00 +0000571 wci.print();
572 }
573 }
574#endif
Aleksey Shipilevfbff3b72014-01-24 15:26:56 +0400575 if (success) {
576 wci = *(WarmCallInfo::always_hot());
577 } else {
578 wci = *(WarmCallInfo::always_cold());
Igor Ignatyev50efb852013-02-27 05:58:48 -0800579 }
Aleksey Shipilevfbff3b72014-01-24 15:26:56 +0400580
J. Duke81537792007-12-01 00:00:00 +0000581 if (!InlineWarmCalls) {
582 if (!wci.is_cold() && !wci.is_hot()) {
583 // Do not inline the warm calls.
584 wci = *(WarmCallInfo::always_cold());
585 }
586 }
587
588 if (!wci.is_cold()) {
J. Duke81537792007-12-01 00:00:00 +0000589 // Inline!
Igor Ignatyev50efb852013-02-27 05:58:48 -0800590 if (msg() == NULL) {
591 set_msg("inline (hot)");
592 }
Igor Ignatyev140bf2b2015-03-13 21:53:13 +0300593 print_inlining(callee_method, caller_bci, caller_method, true /* success */);
Aleksey Shipilevfbff3b72014-01-24 15:26:56 +0400594 build_inline_tree_for_callee(callee_method, jvms, caller_bci);
Igor Ignatyev140bf2b2015-03-13 21:53:13 +0300595 if (InlineWarmCalls && !wci.is_hot()) {
J. Duke81537792007-12-01 00:00:00 +0000596 return new (C) WarmCallInfo(wci); // copy to heap
Igor Ignatyev140bf2b2015-03-13 21:53:13 +0300597 }
J. Duke81537792007-12-01 00:00:00 +0000598 return WarmCallInfo::always_hot();
599 }
600
601 // Do not inline
Igor Ignatyev50efb852013-02-27 05:58:48 -0800602 if (msg() == NULL) {
603 set_msg("too cold to inline");
604 }
Igor Ignatyev140bf2b2015-03-13 21:53:13 +0300605 print_inlining(callee_method, caller_bci, caller_method, false /* !success */ );
J. Duke81537792007-12-01 00:00:00 +0000606 return NULL;
607}
608
609//------------------------------compute_callee_frequency-----------------------
610float InlineTree::compute_callee_frequency( int caller_bci ) const {
611 int count = method()->interpreter_call_site_count(caller_bci);
612 int invcnt = method()->interpreter_invocation_count();
613 float freq = (float)count/(float)invcnt;
614 // Call-site count / interpreter invocation count, scaled recursively.
615 // Always between 0.0 and 1.0. Represents the percentage of the method's
616 // total execution time used at this call site.
617
618 return freq;
619}
620
621//------------------------------build_inline_tree_for_callee-------------------
622InlineTree *InlineTree::build_inline_tree_for_callee( ciMethod* callee_method, JVMState* caller_jvms, int caller_bci) {
623 float recur_frequency = _site_invoke_ratio * compute_callee_frequency(caller_bci);
624 // Attempt inlining.
625 InlineTree* old_ilt = callee_at(caller_bci, callee_method);
626 if (old_ilt != NULL) {
627 return old_ilt;
628 }
Tom Rodriguez15161b82011-06-22 14:45:37 -0700629 int max_inline_level_adjust = 0;
John R Rose6fbdf202010-01-08 13:58:49 -0800630 if (caller_jvms->method() != NULL) {
Zoltan Majoa452b032015-04-27 10:49:43 +0200631 if (caller_jvms->method()->is_compiled_lambda_form()) {
Tom Rodriguez15161b82011-06-22 14:45:37 -0700632 max_inline_level_adjust += 1; // don't count actions in MH or indy adapter frames
Zoltan Majoa452b032015-04-27 10:49:43 +0200633 } else if (callee_method->is_method_handle_intrinsic() ||
634 callee_method->is_compiled_lambda_form()) {
635 max_inline_level_adjust += 1; // don't count method handle calls from java.lang.invoke implementation
John R Rose6fbdf202010-01-08 13:58:49 -0800636 }
Vladimir Kozlov0ccb2842013-09-24 16:08:00 -0700637 if (max_inline_level_adjust != 0 && C->print_inlining() && (Verbose || WizardMode)) {
Tom Rodriguez15161b82011-06-22 14:45:37 -0700638 CompileTask::print_inline_indent(inline_level());
Christian Thalingerfee8d7f2011-05-10 00:45:03 -0700639 tty->print_cr(" \\-> discounting inline depth");
John R Rose6fbdf202010-01-08 13:58:49 -0800640 }
Tom Rodriguez15161b82011-06-22 14:45:37 -0700641 if (max_inline_level_adjust != 0 && C->log()) {
John R Rose6fbdf202010-01-08 13:58:49 -0800642 int id1 = C->log()->identify(caller_jvms->method());
643 int id2 = C->log()->identify(callee_method);
Tom Rodriguez15161b82011-06-22 14:45:37 -0700644 C->log()->elem("inline_level_discount caller='%d' callee='%d'", id1, id2);
John R Rose6fbdf202010-01-08 13:58:49 -0800645 }
646 }
Tom Rodriguez15161b82011-06-22 14:45:37 -0700647 InlineTree* ilt = new InlineTree(C, this, callee_method, caller_jvms, caller_bci, recur_frequency, _max_inline_level + max_inline_level_adjust);
648 _subtrees.append(ilt);
J. Duke81537792007-12-01 00:00:00 +0000649
650 NOT_PRODUCT( _count_inlines += 1; )
651
652 return ilt;
653}
654
655
656//---------------------------------------callee_at-----------------------------
657InlineTree *InlineTree::callee_at(int bci, ciMethod* callee) const {
658 for (int i = 0; i < _subtrees.length(); i++) {
659 InlineTree* sub = _subtrees.at(i);
660 if (sub->caller_bci() == bci && callee == sub->method()) {
661 return sub;
662 }
663 }
664 return NULL;
665}
666
667
668//------------------------------build_inline_tree_root-------------------------
669InlineTree *InlineTree::build_inline_tree_root() {
670 Compile* C = Compile::current();
671
672 // Root of inline tree
Tom Rodriguez15161b82011-06-22 14:45:37 -0700673 InlineTree* ilt = new InlineTree(C, NULL, C->method(), NULL, -1, 1.0F, MaxInlineLevel);
J. Duke81537792007-12-01 00:00:00 +0000674
675 return ilt;
676}
677
678
679//-------------------------find_subtree_from_root-----------------------------
680// Given a jvms, which determines a call chain from the root method,
681// find the corresponding inline tree.
682// Note: This method will be removed or replaced as InlineTree goes away.
Christian Thalinger12901d02012-07-24 10:51:00 -0700683InlineTree* InlineTree::find_subtree_from_root(InlineTree* root, JVMState* jvms, ciMethod* callee) {
J. Duke81537792007-12-01 00:00:00 +0000684 InlineTree* iltp = root;
685 uint depth = jvms && jvms->has_method() ? jvms->depth() : 0;
686 for (uint d = 1; d <= depth; d++) {
687 JVMState* jvmsp = jvms->of_depth(d);
688 // Select the corresponding subtree for this bci.
689 assert(jvmsp->method() == iltp->method(), "tree still in sync");
690 ciMethod* d_callee = (d == depth) ? callee : jvms->of_depth(d+1)->method();
691 InlineTree* sub = iltp->callee_at(jvmsp->bci(), d_callee);
Christian Thalinger12901d02012-07-24 10:51:00 -0700692 if (sub == NULL) {
693 if (d == depth) {
694 sub = iltp->build_inline_tree_for_callee(d_callee, jvmsp, jvmsp->bci());
J. Duke81537792007-12-01 00:00:00 +0000695 }
Christian Thalinger12901d02012-07-24 10:51:00 -0700696 guarantee(sub != NULL, "should be a sub-ilt here");
697 return sub;
J. Duke81537792007-12-01 00:00:00 +0000698 }
699 iltp = sub;
700 }
701 return iltp;
702}
Tom Rodrigueze3afdf12011-09-11 14:48:24 -0700703
Vladimir Kozlovba7149b2014-01-08 10:25:50 -0800704// Count number of nodes in this subtree
705int InlineTree::count() const {
706 int result = 1;
707 for (int i = 0 ; i < _subtrees.length(); i++) {
708 result += _subtrees.at(i)->count();
709 }
710 return result;
711}
712
713void InlineTree::dump_replay_data(outputStream* out) {
714 out->print(" %d %d ", inline_level(), caller_bci());
715 method()->dump_name_as_ascii(out);
716 for (int i = 0 ; i < _subtrees.length(); i++) {
717 _subtrees.at(i)->dump_replay_data(out);
718 }
719}
Tom Rodrigueze3afdf12011-09-11 14:48:24 -0700720
721
722#ifndef PRODUCT
723void InlineTree::print_impl(outputStream* st, int indent) const {
724 for (int i = 0; i < indent; i++) st->print(" ");
Vladimir Kozlovba7149b2014-01-08 10:25:50 -0800725 st->print(" @ %d", caller_bci());
Tom Rodrigueze3afdf12011-09-11 14:48:24 -0700726 method()->print_short_name(st);
727 st->cr();
728
729 for (int i = 0 ; i < _subtrees.length(); i++) {
730 _subtrees.at(i)->print_impl(st, indent + 2);
731 }
732}
733
734void InlineTree::print_value_on(outputStream* st) const {
735 print_impl(st, 2);
736}
737#endif