annotate src/share/vm/opto/bytecodeInfo.cpp @ 20468:1de115720e74

8049528: Method marked w/ @ForceInline isn't inlined with "executed < MinInliningThreshold times" message Reviewed-by: roland, jrose
author vlivanov
date Mon, 14 Jul 2014 03:24:35 -0700
parents 73c839dda17e
children 7848fc12602b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
17467
55fb97c4c58d 8029233: Update copyright year to match last edit in jdk8 hotspot repository for 2013
mikael
parents: 13081
diff changeset
2 * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1507
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1507
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1507
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
25 #include "precompiled.hpp"
6972
bd7a7ce2e264 6830717: replay of compilations would help with debugging
minqi
parents: 6853
diff changeset
26 #include "ci/ciReplay.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
27 #include "classfile/systemDictionary.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
28 #include "classfile/vmSymbols.hpp"
2405
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 2357
diff changeset
29 #include "compiler/compileBroker.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
30 #include "compiler/compileLog.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
31 #include "interpreter/linkResolver.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
32 #include "oops/objArrayKlass.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
33 #include "opto/callGenerator.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
34 #include "opto/parse.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
35 #include "runtime/handles.inline.hpp"
0
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 //=============================================================================
a61af66fc99e Initial load
duke
parents:
diff changeset
38 //------------------------------InlineTree-------------------------------------
3784
aabf25fa3f05 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 3366
diff changeset
39 InlineTree::InlineTree(Compile* c,
aabf25fa3f05 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 3366
diff changeset
40 const InlineTree *caller_tree, ciMethod* callee,
aabf25fa3f05 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 3366
diff changeset
41 JVMState* caller_jvms, int caller_bci,
aabf25fa3f05 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 3366
diff changeset
42 float site_invoke_ratio, int max_inline_level) :
aabf25fa3f05 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 3366
diff changeset
43 C(c),
aabf25fa3f05 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 3366
diff changeset
44 _caller_jvms(caller_jvms),
aabf25fa3f05 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 3366
diff changeset
45 _caller_tree((InlineTree*) caller_tree),
aabf25fa3f05 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 3366
diff changeset
46 _method(callee),
aabf25fa3f05 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 3366
diff changeset
47 _site_invoke_ratio(site_invoke_ratio),
aabf25fa3f05 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 3366
diff changeset
48 _max_inline_level(max_inline_level),
7473
d092d1b31229 8005071: Incremental inlining for JSR 292
roland
parents: 7421
diff changeset
49 _count_inline_bcs(method()->code_size_for_inlining()),
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
50 _subtrees(c->comp_arena(), 2, 0, NULL),
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
51 _msg(NULL)
1157
c3b315a0d58a 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 1138
diff changeset
52 {
17622
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
53 #ifndef PRODUCT
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
54 _count_inlines = 0;
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
55 _forced_inline = false;
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
56 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
57 if (_caller_jvms != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
58 // Keep a private copy of the caller_jvms:
a61af66fc99e Initial load
duke
parents:
diff changeset
59 _caller_jvms = new (C) JVMState(caller_jvms->method(), caller_tree->caller_jvms());
a61af66fc99e Initial load
duke
parents:
diff changeset
60 _caller_jvms->set_bci(caller_jvms->bci());
900
9987d9d5eb0e 6833129: specjvm98 fails with NullPointerException in the compiler with -XX:DeoptimizeALot
cfang
parents: 726
diff changeset
61 assert(!caller_jvms->should_reexecute(), "there should be no reexecute bytecode with inlining");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
62 }
a61af66fc99e Initial load
duke
parents:
diff changeset
63 assert(_caller_jvms->same_calls_as(caller_jvms), "consistent JVMS");
1157
c3b315a0d58a 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 1138
diff changeset
64 assert((caller_tree == NULL ? 0 : caller_tree->stack_depth() + 1) == stack_depth(), "correct (redundant) depth parameter");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
65 assert(caller_bci == this->caller_bci(), "correct (redundant) bci parameter");
17672
1419657ed891 8032490: Remove -XX:+-UseOldInlining
shade
parents: 17622
diff changeset
66 // Update hierarchical counts, count_inline_bcs() and count_inlines()
1419657ed891 8032490: Remove -XX:+-UseOldInlining
shade
parents: 17622
diff changeset
67 InlineTree *caller = (InlineTree *)caller_tree;
1419657ed891 8032490: Remove -XX:+-UseOldInlining
shade
parents: 17622
diff changeset
68 for( ; caller != NULL; caller = ((InlineTree *)(caller->caller_tree())) ) {
1419657ed891 8032490: Remove -XX:+-UseOldInlining
shade
parents: 17622
diff changeset
69 caller->_count_inline_bcs += count_inline_bcs();
1419657ed891 8032490: Remove -XX:+-UseOldInlining
shade
parents: 17622
diff changeset
70 NOT_PRODUCT(caller->_count_inlines++;)
0
a61af66fc99e Initial load
duke
parents:
diff changeset
71 }
a61af66fc99e Initial load
duke
parents:
diff changeset
72 }
a61af66fc99e Initial load
duke
parents:
diff changeset
73
10281
1da5d70655e9 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 10278
diff changeset
74 /**
1da5d70655e9 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 10278
diff changeset
75 * Return true when EA is ON and a java constructor is called or
1da5d70655e9 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 10278
diff changeset
76 * a super constructor is called from an inlined java constructor.
1da5d70655e9 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 10278
diff changeset
77 * Also return true for boxing methods.
1da5d70655e9 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 10278
diff changeset
78 */
41
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
79 static bool is_init_with_ea(ciMethod* callee_method,
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
80 ciMethod* caller_method, Compile* C) {
10281
1da5d70655e9 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 10278
diff changeset
81 if (!C->do_escape_analysis() || !EliminateAllocations) {
1da5d70655e9 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 10278
diff changeset
82 return false; // EA is off
1da5d70655e9 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 10278
diff changeset
83 }
1da5d70655e9 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 10278
diff changeset
84 if (callee_method->is_initializer()) {
1da5d70655e9 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 10278
diff changeset
85 return true; // constuctor
1da5d70655e9 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 10278
diff changeset
86 }
1da5d70655e9 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 10278
diff changeset
87 if (caller_method->is_initializer() &&
1da5d70655e9 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 10278
diff changeset
88 caller_method != C->method() &&
1da5d70655e9 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 10278
diff changeset
89 caller_method->holder()->is_subclass_of(callee_method->holder())) {
1da5d70655e9 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 10278
diff changeset
90 return true; // super constructor is called from inlined constructor
1da5d70655e9 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 10278
diff changeset
91 }
1da5d70655e9 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 10278
diff changeset
92 if (C->eliminate_boxing() && callee_method->is_boxing_method()) {
1da5d70655e9 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 10278
diff changeset
93 return true;
1da5d70655e9 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 10278
diff changeset
94 }
1da5d70655e9 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 10278
diff changeset
95 return false;
41
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
96 }
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
97
10281
1da5d70655e9 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 10278
diff changeset
98 /**
1da5d70655e9 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 10278
diff changeset
99 * Force inlining unboxing accessor.
1da5d70655e9 8014286: failed java/lang/Math/DivModTests.java after 6934604 changes
kvn
parents: 10278
diff changeset
100 */
10278
6f3fd5150b67 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 8772
diff changeset
101 static bool is_unboxing_method(ciMethod* callee_method, Compile* C) {
6f3fd5150b67 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 8772
diff changeset
102 return C->eliminate_boxing() && callee_method->is_unboxing_method();
6f3fd5150b67 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 8772
diff changeset
103 }
6f3fd5150b67 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 8772
diff changeset
104
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
105 // positive filter: should callee be inlined?
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
106 bool InlineTree::should_inline(ciMethod* callee_method, ciMethod* caller_method,
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
107 int caller_bci, ciCallProfile& profile,
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
108 WarmCallInfo* wci_result) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
109 // Allows targeted inlining
20468
1de115720e74 8049528: Method marked w/ @ForceInline isn't inlined with "executed < MinInliningThreshold times" message
vlivanov
parents: 17966
diff changeset
110 if (callee_method->should_inline()) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
111 *wci_result = *(WarmCallInfo::always_hot());
12295
1b64d46620a3 8022585: VM crashes when ran with -XX:+PrintInlining
kvn
parents: 11154
diff changeset
112 if (C->print_inlining() && Verbose) {
3784
aabf25fa3f05 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 3366
diff changeset
113 CompileTask::print_inline_indent(inline_level());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
114 tty->print_cr("Inlined method is hot: ");
a61af66fc99e Initial load
duke
parents:
diff changeset
115 }
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
116 set_msg("force inline by CompilerOracle");
17622
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
117 _forced_inline = true;
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
118 return true;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
119 }
a61af66fc99e Initial load
duke
parents:
diff changeset
120
20468
1de115720e74 8049528: Method marked w/ @ForceInline isn't inlined with "executed < MinInliningThreshold times" message
vlivanov
parents: 17966
diff changeset
121 if (callee_method->force_inline()) {
1de115720e74 8049528: Method marked w/ @ForceInline isn't inlined with "executed < MinInliningThreshold times" message
vlivanov
parents: 17966
diff changeset
122 set_msg("force inline by annotation");
1de115720e74 8049528: Method marked w/ @ForceInline isn't inlined with "executed < MinInliningThreshold times" message
vlivanov
parents: 17966
diff changeset
123 _forced_inline = true;
1de115720e74 8049528: Method marked w/ @ForceInline isn't inlined with "executed < MinInliningThreshold times" message
vlivanov
parents: 17966
diff changeset
124 return true;
1de115720e74 8049528: Method marked w/ @ForceInline isn't inlined with "executed < MinInliningThreshold times" message
vlivanov
parents: 17966
diff changeset
125 }
1de115720e74 8049528: Method marked w/ @ForceInline isn't inlined with "executed < MinInliningThreshold times" message
vlivanov
parents: 17966
diff changeset
126
17622
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
127 #ifndef PRODUCT
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
128 int inline_depth = inline_level()+1;
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
129 if (ciReplay::should_inline(C->replay_inline_data(), callee_method, caller_bci, inline_depth)) {
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
130 set_msg("force inline by ciReplay");
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
131 _forced_inline = true;
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
132 return true;
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
133 }
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
134 #endif
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
135
3897
de847cac9235 7078382: JSR 292: don't count method handle adapters against inlining budgets
twisti
parents: 3784
diff changeset
136 int size = callee_method->code_size_for_inlining();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
137
a61af66fc99e Initial load
duke
parents:
diff changeset
138 // Check for too many throws (and not too huge)
41
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
139 if(callee_method->interpreter_throwout_count() > InlineThrowCount &&
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
140 size < InlineThrowMaxSize ) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
141 wci_result->set_profit(wci_result->profit() * 100);
12295
1b64d46620a3 8022585: VM crashes when ran with -XX:+PrintInlining
kvn
parents: 11154
diff changeset
142 if (C->print_inlining() && Verbose) {
3784
aabf25fa3f05 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 3366
diff changeset
143 CompileTask::print_inline_indent(inline_level());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
144 tty->print_cr("Inlined method with many throws (throws=%d):", callee_method->interpreter_throwout_count());
a61af66fc99e Initial load
duke
parents:
diff changeset
145 }
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
146 set_msg("many throws");
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
147 return true;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
148 }
a61af66fc99e Initial load
duke
parents:
diff changeset
149
3366
e2a92dd0d3d2 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 3345
diff changeset
150 int default_max_inline_size = C->max_inline_size();
e2a92dd0d3d2 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 3345
diff changeset
151 int inline_small_code_size = InlineSmallCode / 4;
e2a92dd0d3d2 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 3345
diff changeset
152 int max_inline_size = default_max_inline_size;
e2a92dd0d3d2 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 3345
diff changeset
153
0
a61af66fc99e Initial load
duke
parents:
diff changeset
154 int call_site_count = method()->scale_count(profile.count());
a61af66fc99e Initial load
duke
parents:
diff changeset
155 int invoke_count = method()->interpreter_invocation_count();
3366
e2a92dd0d3d2 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 3345
diff changeset
156
e2a92dd0d3d2 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 3345
diff changeset
157 assert(invoke_count != 0, "require invocation count greater than zero");
e2a92dd0d3d2 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 3345
diff changeset
158 int freq = call_site_count / invoke_count;
41
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
159
0
a61af66fc99e Initial load
duke
parents:
diff changeset
160 // bump the max size if the call is frequent
41
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
161 if ((freq >= InlineFrequencyRatio) ||
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
162 (call_site_count >= InlineFrequencyCount) ||
10278
6f3fd5150b67 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 8772
diff changeset
163 is_unboxing_method(callee_method, C) ||
41
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
164 is_init_with_ea(callee_method, caller_method, C)) {
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
165
3366
e2a92dd0d3d2 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 3345
diff changeset
166 max_inline_size = C->freq_inline_size();
e2a92dd0d3d2 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 3345
diff changeset
167 if (size <= max_inline_size && TraceFrequencyInlining) {
3784
aabf25fa3f05 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 3366
diff changeset
168 CompileTask::print_inline_indent(inline_level());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
169 tty->print_cr("Inlined frequent method (freq=%d count=%d):", freq, call_site_count);
3784
aabf25fa3f05 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 3366
diff changeset
170 CompileTask::print_inline_indent(inline_level());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
171 callee_method->print();
a61af66fc99e Initial load
duke
parents:
diff changeset
172 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
173 }
a61af66fc99e Initial load
duke
parents:
diff changeset
174 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
175 // Not hot. Check for medium-sized pre-existing nmethod at cold sites.
41
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
176 if (callee_method->has_compiled_code() &&
8772
80208f353616 8010222: 8007439 disabled inlining of cold accessor methods
kvn
parents: 8119
diff changeset
177 callee_method->instructions_size() > inline_small_code_size) {
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
178 set_msg("already compiled into a medium method");
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
179 return false;
8772
80208f353616 8010222: 8007439 disabled inlining of cold accessor methods
kvn
parents: 8119
diff changeset
180 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
181 }
3366
e2a92dd0d3d2 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 3345
diff changeset
182 if (size > max_inline_size) {
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
183 if (max_inline_size > default_max_inline_size) {
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
184 set_msg("hot method too big");
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
185 } else {
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
186 set_msg("too big");
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
187 }
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
188 return false;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
189 }
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
190 return true;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
191 }
a61af66fc99e Initial load
duke
parents:
diff changeset
192
a61af66fc99e Initial load
duke
parents:
diff changeset
193
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
194 // negative filter: should callee NOT be inlined?
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
195 bool InlineTree::should_not_inline(ciMethod *callee_method,
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
196 ciMethod* caller_method,
12862
0c4c40f5c399 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 12295
diff changeset
197 JVMState* jvms,
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
198 WarmCallInfo* wci_result) {
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
199
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
200 const char* fail_msg = NULL;
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
201
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
202 // First check all inlining restrictions which are required for correctness
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
203 if ( callee_method->is_abstract()) {
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
204 fail_msg = "abstract method"; // // note: we allow ik->is_abstract()
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
205 } else if (!callee_method->holder()->is_initialized()) {
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
206 fail_msg = "method holder not initialized";
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
207 } else if ( callee_method->is_native()) {
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
208 fail_msg = "native method";
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
209 } else if ( callee_method->dont_inline()) {
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
210 fail_msg = "don't inline by annotation";
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
211 }
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
212
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
213 // one more inlining restriction
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
214 if (fail_msg == NULL && callee_method->has_unloaded_classes_in_signature()) {
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
215 fail_msg = "unloaded signature classes";
0
a61af66fc99e Initial load
duke
parents:
diff changeset
216 }
a61af66fc99e Initial load
duke
parents:
diff changeset
217
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
218 if (fail_msg != NULL) {
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
219 set_msg(fail_msg);
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
220 return true;
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
221 }
1138
dd57230ba8fe 6893268: additional dynamic language related optimizations in C2
twisti
parents: 1137
diff changeset
222
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
223 // ignore heuristic controls on inlining
7473
d092d1b31229 8005071: Incremental inlining for JSR 292
roland
parents: 7421
diff changeset
224 if (callee_method->should_inline()) {
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
225 set_msg("force inline by CompilerOracle");
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
226 return false;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
227 }
a61af66fc99e Initial load
duke
parents:
diff changeset
228
10278
6f3fd5150b67 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 8772
diff changeset
229 if (callee_method->should_not_inline()) {
6f3fd5150b67 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 8772
diff changeset
230 set_msg("disallowed by CompilerOracle");
6f3fd5150b67 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 8772
diff changeset
231 return true;
6f3fd5150b67 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 8772
diff changeset
232 }
6f3fd5150b67 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 8772
diff changeset
233
6f3fd5150b67 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 8772
diff changeset
234 #ifndef PRODUCT
17622
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
235 int caller_bci = jvms->bci();
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
236 int inline_depth = inline_level()+1;
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
237 if (ciReplay::should_inline(C->replay_inline_data(), callee_method, caller_bci, inline_depth)) {
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
238 set_msg("force inline by ciReplay");
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
239 return false;
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
240 }
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
241
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
242 if (ciReplay::should_not_inline(C->replay_inline_data(), callee_method, caller_bci, inline_depth)) {
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
243 set_msg("disallowed by ciReplay");
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
244 return true;
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
245 }
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
246
10278
6f3fd5150b67 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 8772
diff changeset
247 if (ciReplay::should_not_inline(callee_method)) {
6f3fd5150b67 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 8772
diff changeset
248 set_msg("disallowed by ciReplay");
6f3fd5150b67 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 8772
diff changeset
249 return true;
6f3fd5150b67 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 8772
diff changeset
250 }
6f3fd5150b67 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 8772
diff changeset
251 #endif
6f3fd5150b67 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 8772
diff changeset
252
20468
1de115720e74 8049528: Method marked w/ @ForceInline isn't inlined with "executed < MinInliningThreshold times" message
vlivanov
parents: 17966
diff changeset
253 if (callee_method->force_inline()) {
1de115720e74 8049528: Method marked w/ @ForceInline isn't inlined with "executed < MinInliningThreshold times" message
vlivanov
parents: 17966
diff changeset
254 set_msg("force inline by annotation");
1de115720e74 8049528: Method marked w/ @ForceInline isn't inlined with "executed < MinInliningThreshold times" message
vlivanov
parents: 17966
diff changeset
255 return false;
1de115720e74 8049528: Method marked w/ @ForceInline isn't inlined with "executed < MinInliningThreshold times" message
vlivanov
parents: 17966
diff changeset
256 }
1de115720e74 8049528: Method marked w/ @ForceInline isn't inlined with "executed < MinInliningThreshold times" message
vlivanov
parents: 17966
diff changeset
257
0
a61af66fc99e Initial load
duke
parents:
diff changeset
258 // Now perform checks which are heuristic
a61af66fc99e Initial load
duke
parents:
diff changeset
259
10278
6f3fd5150b67 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 8772
diff changeset
260 if (is_unboxing_method(callee_method, C)) {
6f3fd5150b67 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 8772
diff changeset
261 // Inline unboxing methods.
6f3fd5150b67 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 8772
diff changeset
262 return false;
6f3fd5150b67 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 8772
diff changeset
263 }
6f3fd5150b67 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 8772
diff changeset
264
20468
1de115720e74 8049528: Method marked w/ @ForceInline isn't inlined with "executed < MinInliningThreshold times" message
vlivanov
parents: 17966
diff changeset
265 if (callee_method->has_compiled_code() &&
1de115720e74 8049528: Method marked w/ @ForceInline isn't inlined with "executed < MinInliningThreshold times" message
vlivanov
parents: 17966
diff changeset
266 callee_method->instructions_size() > InlineSmallCode) {
1de115720e74 8049528: Method marked w/ @ForceInline isn't inlined with "executed < MinInliningThreshold times" message
vlivanov
parents: 17966
diff changeset
267 set_msg("already compiled into a big method");
1de115720e74 8049528: Method marked w/ @ForceInline isn't inlined with "executed < MinInliningThreshold times" message
vlivanov
parents: 17966
diff changeset
268 return true;
6266
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 5950
diff changeset
269 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
270
a61af66fc99e Initial load
duke
parents:
diff changeset
271 // don't inline exception code unless the top method belongs to an
a61af66fc99e Initial load
duke
parents:
diff changeset
272 // exception class
a61af66fc99e Initial load
duke
parents:
diff changeset
273 if (caller_tree() != NULL &&
a61af66fc99e Initial load
duke
parents:
diff changeset
274 callee_method->holder()->is_subclass_of(C->env()->Throwable_klass())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
275 const InlineTree *top = this;
a61af66fc99e Initial load
duke
parents:
diff changeset
276 while (top->caller_tree() != NULL) top = top->caller_tree();
a61af66fc99e Initial load
duke
parents:
diff changeset
277 ciInstanceKlass* k = top->method()->holder();
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
278 if (!k->is_subclass_of(C->env()->Throwable_klass())) {
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
279 set_msg("exception method");
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
280 return true;
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
281 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
282 }
a61af66fc99e Initial load
duke
parents:
diff changeset
283
a61af66fc99e Initial load
duke
parents:
diff changeset
284 // use frequency-based objections only for non-trivial methods
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
285 if (callee_method->code_size() <= MaxTrivialSize) {
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
286 return false;
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
287 }
41
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
288
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
289 // don't use counts with -Xcomp or CTW
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
290 if (UseInterpreter && !CompileTheWorld) {
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
291
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
292 if (!callee_method->has_compiled_code() &&
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
293 !callee_method->was_executed_more_than(0)) {
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
294 set_msg("never executed");
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
295 return true;
41
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
296 }
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
297
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
298 if (is_init_with_ea(callee_method, caller_method, C)) {
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
299 // Escape Analysis: inline all executed constructors
10278
6f3fd5150b67 6934604: enable parts of EliminateAutoBox by default
kvn
parents: 8772
diff changeset
300 return false;
41
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
301 } else if (!callee_method->was_executed_more_than(MIN2(MinInliningThreshold,
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
302 CompileThreshold >> 1))) {
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
303 set_msg("executed < MinInliningThreshold times");
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
304 return true;
41
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
305 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
306 }
a61af66fc99e Initial load
duke
parents:
diff changeset
307
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
308 return false;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
309 }
a61af66fc99e Initial load
duke
parents:
diff changeset
310
a61af66fc99e Initial load
duke
parents:
diff changeset
311 //-----------------------------try_to_inline-----------------------------------
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
312 // return true if ok
0
a61af66fc99e Initial load
duke
parents:
diff changeset
313 // Relocated from "InliningClosure::try_to_inline"
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
314 bool InlineTree::try_to_inline(ciMethod* callee_method, ciMethod* caller_method,
12862
0c4c40f5c399 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 12295
diff changeset
315 int caller_bci, JVMState* jvms, ciCallProfile& profile,
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
316 WarmCallInfo* wci_result, bool& should_delay) {
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
317
17672
1419657ed891 8032490: Remove -XX:+-UseOldInlining
shade
parents: 17622
diff changeset
318 if (ClipInlining && (int)count_inline_bcs() >= DesiredMethodLimit) {
7473
d092d1b31229 8005071: Incremental inlining for JSR 292
roland
parents: 7421
diff changeset
319 if (!callee_method->force_inline() || !IncrementalInline) {
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
320 set_msg("size > DesiredMethodLimit");
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
321 return false;
7473
d092d1b31229 8005071: Incremental inlining for JSR 292
roland
parents: 7421
diff changeset
322 } else if (!C->inlining_incrementally()) {
d092d1b31229 8005071: Incremental inlining for JSR 292
roland
parents: 7421
diff changeset
323 should_delay = true;
d092d1b31229 8005071: Incremental inlining for JSR 292
roland
parents: 7421
diff changeset
324 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
325 }
a61af66fc99e Initial load
duke
parents:
diff changeset
326
17622
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
327 _forced_inline = false; // Reset
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
328 if (!should_inline(callee_method, caller_method, caller_bci, profile,
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
329 wci_result)) {
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
330 return false;
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
331 }
12862
0c4c40f5c399 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 12295
diff changeset
332 if (should_not_inline(callee_method, caller_method, jvms, wci_result)) {
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
333 return false;
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
334 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
335
1157
c3b315a0d58a 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 1138
diff changeset
336 if (InlineAccessors && callee_method->is_accessor()) {
c3b315a0d58a 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 1138
diff changeset
337 // accessor methods are not subject to any of the following limits.
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
338 set_msg("accessor");
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
339 return true;
1157
c3b315a0d58a 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 1138
diff changeset
340 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
341
a61af66fc99e Initial load
duke
parents:
diff changeset
342 // suppress a few checks for accessors and trivial methods
6266
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 5950
diff changeset
343 if (callee_method->code_size() > MaxTrivialSize) {
41
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
344
0
a61af66fc99e Initial load
duke
parents:
diff changeset
345 // don't inline into giant methods
7473
d092d1b31229 8005071: Incremental inlining for JSR 292
roland
parents: 7421
diff changeset
346 if (C->over_inlining_cutoff()) {
d092d1b31229 8005071: Incremental inlining for JSR 292
roland
parents: 7421
diff changeset
347 if ((!callee_method->force_inline() && !caller_method->is_compiled_lambda_form())
d092d1b31229 8005071: Incremental inlining for JSR 292
roland
parents: 7421
diff changeset
348 || !IncrementalInline) {
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
349 set_msg("NodeCountInliningCutoff");
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
350 return false;
7473
d092d1b31229 8005071: Incremental inlining for JSR 292
roland
parents: 7421
diff changeset
351 } else {
d092d1b31229 8005071: Incremental inlining for JSR 292
roland
parents: 7421
diff changeset
352 should_delay = true;
d092d1b31229 8005071: Incremental inlining for JSR 292
roland
parents: 7421
diff changeset
353 }
41
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
354 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
355
41
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
356 if ((!UseInterpreter || CompileTheWorld) &&
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
357 is_init_with_ea(callee_method, caller_method, C)) {
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
358 // Escape Analysis stress testing when running Xcomp or CTW:
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
359 // inline constructors even if they are not reached.
17622
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
360 } else if (forced_inline()) {
20468
1de115720e74 8049528: Method marked w/ @ForceInline isn't inlined with "executed < MinInliningThreshold times" message
vlivanov
parents: 17966
diff changeset
361 // Inlining was forced by CompilerOracle, ciReplay or annotation
41
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
362 } else if (profile.count() == 0) {
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
363 // don't inline unreached call sites
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
364 set_msg("call site not reached");
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
365 return false;
41
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
366 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
367 }
a61af66fc99e Initial load
duke
parents:
diff changeset
368
1157
c3b315a0d58a 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 1138
diff changeset
369 if (!C->do_inlining() && InlineAccessors) {
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
370 set_msg("not an accessor");
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
371 return false;
41
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
372 }
17966
73c839dda17e 8043413: REGRESSION: Hotspot causes segmentation fault in jdk8ux, but not in jdk7ux
roland
parents: 17672
diff changeset
373
73c839dda17e 8043413: REGRESSION: Hotspot causes segmentation fault in jdk8ux, but not in jdk7ux
roland
parents: 17672
diff changeset
374 // Limit inlining depth in case inlining is forced or
73c839dda17e 8043413: REGRESSION: Hotspot causes segmentation fault in jdk8ux, but not in jdk7ux
roland
parents: 17672
diff changeset
375 // _max_inline_level was increased to compensate for lambda forms.
73c839dda17e 8043413: REGRESSION: Hotspot causes segmentation fault in jdk8ux, but not in jdk7ux
roland
parents: 17672
diff changeset
376 if (inline_level() > MaxForceInlineLevel) {
73c839dda17e 8043413: REGRESSION: Hotspot causes segmentation fault in jdk8ux, but not in jdk7ux
roland
parents: 17672
diff changeset
377 set_msg("MaxForceInlineLevel");
73c839dda17e 8043413: REGRESSION: Hotspot causes segmentation fault in jdk8ux, but not in jdk7ux
roland
parents: 17672
diff changeset
378 return false;
73c839dda17e 8043413: REGRESSION: Hotspot causes segmentation fault in jdk8ux, but not in jdk7ux
roland
parents: 17672
diff changeset
379 }
3784
aabf25fa3f05 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 3366
diff changeset
380 if (inline_level() > _max_inline_level) {
7473
d092d1b31229 8005071: Incremental inlining for JSR 292
roland
parents: 7421
diff changeset
381 if (!callee_method->force_inline() || !IncrementalInline) {
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
382 set_msg("inlining too deep");
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
383 return false;
7473
d092d1b31229 8005071: Incremental inlining for JSR 292
roland
parents: 7421
diff changeset
384 } else if (!C->inlining_incrementally()) {
d092d1b31229 8005071: Incremental inlining for JSR 292
roland
parents: 7421
diff changeset
385 should_delay = true;
d092d1b31229 8005071: Incremental inlining for JSR 292
roland
parents: 7421
diff changeset
386 }
41
874b2c4f43d1 6667605: (Escape Analysis) inline java constructors when EA is on
kvn
parents: 0
diff changeset
387 }
2405
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 2357
diff changeset
388
3334
b21ecca7ccc4 6552561: MaxRecursiveInlineLevel flag doesn't operate correctly
twisti
parents: 2405
diff changeset
389 // detect direct and indirect recursive inlining
12862
0c4c40f5c399 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 12295
diff changeset
390 {
3334
b21ecca7ccc4 6552561: MaxRecursiveInlineLevel flag doesn't operate correctly
twisti
parents: 2405
diff changeset
391 // count the current method and the callee
12862
0c4c40f5c399 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 12295
diff changeset
392 const bool is_compiled_lambda_form = callee_method->is_compiled_lambda_form();
0c4c40f5c399 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 12295
diff changeset
393 int inline_level = 0;
0c4c40f5c399 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 12295
diff changeset
394 if (!is_compiled_lambda_form) {
0c4c40f5c399 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 12295
diff changeset
395 if (method() == callee_method) {
0c4c40f5c399 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 12295
diff changeset
396 inline_level++;
0c4c40f5c399 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 12295
diff changeset
397 }
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
398 }
3334
b21ecca7ccc4 6552561: MaxRecursiveInlineLevel flag doesn't operate correctly
twisti
parents: 2405
diff changeset
399 // count callers of current method and callee
12862
0c4c40f5c399 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 12295
diff changeset
400 Node* callee_argument0 = is_compiled_lambda_form ? jvms->map()->argument(jvms, 0)->uncast() : NULL;
0c4c40f5c399 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 12295
diff changeset
401 for (JVMState* j = jvms->caller(); j != NULL && j->has_method(); j = j->caller()) {
0c4c40f5c399 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 12295
diff changeset
402 if (j->method() == callee_method) {
0c4c40f5c399 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 12295
diff changeset
403 if (is_compiled_lambda_form) {
0c4c40f5c399 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 12295
diff changeset
404 // Since compiled lambda forms are heavily reused we allow recursive inlining. If it is truly
0c4c40f5c399 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 12295
diff changeset
405 // a recursion (using the same "receiver") we limit inlining otherwise we can easily blow the
0c4c40f5c399 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 12295
diff changeset
406 // compiler stack.
0c4c40f5c399 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 12295
diff changeset
407 Node* caller_argument0 = j->map()->argument(j, 0)->uncast();
0c4c40f5c399 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 12295
diff changeset
408 if (caller_argument0 == callee_argument0) {
0c4c40f5c399 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 12295
diff changeset
409 inline_level++;
0c4c40f5c399 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 12295
diff changeset
410 }
0c4c40f5c399 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 12295
diff changeset
411 } else {
0c4c40f5c399 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 12295
diff changeset
412 inline_level++;
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
413 }
2405
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 2357
diff changeset
414 }
12862
0c4c40f5c399 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 12295
diff changeset
415 }
0c4c40f5c399 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 12295
diff changeset
416 if (inline_level > MaxRecursiveInlineLevel) {
0c4c40f5c399 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 12295
diff changeset
417 set_msg("recursive inlining is too deep");
0c4c40f5c399 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 12295
diff changeset
418 return false;
2405
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 2357
diff changeset
419 }
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 2357
diff changeset
420 }
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 2357
diff changeset
421
3897
de847cac9235 7078382: JSR 292: don't count method handle adapters against inlining budgets
twisti
parents: 3784
diff changeset
422 int size = callee_method->code_size_for_inlining();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
423
17672
1419657ed891 8032490: Remove -XX:+-UseOldInlining
shade
parents: 17622
diff changeset
424 if (ClipInlining && (int)count_inline_bcs() + size >= DesiredMethodLimit) {
7473
d092d1b31229 8005071: Incremental inlining for JSR 292
roland
parents: 7421
diff changeset
425 if (!callee_method->force_inline() || !IncrementalInline) {
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
426 set_msg("size > DesiredMethodLimit");
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
427 return false;
7473
d092d1b31229 8005071: Incremental inlining for JSR 292
roland
parents: 7421
diff changeset
428 } else if (!C->inlining_incrementally()) {
d092d1b31229 8005071: Incremental inlining for JSR 292
roland
parents: 7421
diff changeset
429 should_delay = true;
d092d1b31229 8005071: Incremental inlining for JSR 292
roland
parents: 7421
diff changeset
430 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
431 }
a61af66fc99e Initial load
duke
parents:
diff changeset
432
a61af66fc99e Initial load
duke
parents:
diff changeset
433 // ok, inline this method
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
434 return true;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
435 }
a61af66fc99e Initial load
duke
parents:
diff changeset
436
a61af66fc99e Initial load
duke
parents:
diff changeset
437 //------------------------------pass_initial_checks----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
438 bool pass_initial_checks(ciMethod* caller_method, int caller_bci, ciMethod* callee_method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
439 ciInstanceKlass *callee_holder = callee_method ? callee_method->holder() : NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
440 // Check if a callee_method was suggested
a61af66fc99e Initial load
duke
parents:
diff changeset
441 if( callee_method == NULL ) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
442 // Check if klass of callee_method is loaded
a61af66fc99e Initial load
duke
parents:
diff changeset
443 if( !callee_holder->is_loaded() ) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
444 if( !callee_holder->is_initialized() ) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
445 if( !UseInterpreter || CompileTheWorld /* running Xcomp or CTW */ ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
446 // Checks that constant pool's call site has been visited
a61af66fc99e Initial load
duke
parents:
diff changeset
447 // stricter than callee_holder->is_initialized()
a61af66fc99e Initial load
duke
parents:
diff changeset
448 ciBytecodeStream iter(caller_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
449 iter.force_bci(caller_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
450 Bytecodes::Code call_bc = iter.cur_bc();
1137
97125851f396 6829187: compiler optimizations required for JSR 292
twisti
parents: 903
diff changeset
451 // An invokedynamic instruction does not have a klass.
97125851f396 6829187: compiler optimizations required for JSR 292
twisti
parents: 903
diff changeset
452 if (call_bc != Bytecodes::_invokedynamic) {
1565
ab102d5d923e 6939207: refactor constant pool index processing
jrose
parents: 1564
diff changeset
453 int index = iter.get_index_u2_cpcache();
1137
97125851f396 6829187: compiler optimizations required for JSR 292
twisti
parents: 903
diff changeset
454 if (!caller_method->is_klass_loaded(index, true)) {
97125851f396 6829187: compiler optimizations required for JSR 292
twisti
parents: 903
diff changeset
455 return false;
97125851f396 6829187: compiler optimizations required for JSR 292
twisti
parents: 903
diff changeset
456 }
97125851f396 6829187: compiler optimizations required for JSR 292
twisti
parents: 903
diff changeset
457 // Try to do constant pool resolution if running Xcomp
97125851f396 6829187: compiler optimizations required for JSR 292
twisti
parents: 903
diff changeset
458 if( !caller_method->check_call(index, call_bc == Bytecodes::_invokestatic) ) {
97125851f396 6829187: compiler optimizations required for JSR 292
twisti
parents: 903
diff changeset
459 return false;
97125851f396 6829187: compiler optimizations required for JSR 292
twisti
parents: 903
diff changeset
460 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
461 }
a61af66fc99e Initial load
duke
parents:
diff changeset
462 }
a61af66fc99e Initial load
duke
parents:
diff changeset
463 // We will attempt to see if a class/field/etc got properly loaded. If it
a61af66fc99e Initial load
duke
parents:
diff changeset
464 // did not, it may attempt to throw an exception during our probing. Catch
a61af66fc99e Initial load
duke
parents:
diff changeset
465 // and ignore such exceptions and do not attempt to compile the method.
a61af66fc99e Initial load
duke
parents:
diff changeset
466 if( callee_method->should_exclude() ) return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
467
a61af66fc99e Initial load
duke
parents:
diff changeset
468 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
469 }
a61af66fc99e Initial load
duke
parents:
diff changeset
470
3900
a32de5085326 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 3897
diff changeset
471 //------------------------------check_can_parse--------------------------------
a32de5085326 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 3897
diff changeset
472 const char* InlineTree::check_can_parse(ciMethod* callee) {
a32de5085326 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 3897
diff changeset
473 // Certain methods cannot be parsed at all:
a32de5085326 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 3897
diff changeset
474 if ( callee->is_native()) return "native method";
6266
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 5950
diff changeset
475 if ( callee->is_abstract()) return "abstract method";
3900
a32de5085326 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 3897
diff changeset
476 if (!callee->can_be_compiled()) return "not compilable (disabled)";
a32de5085326 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 3897
diff changeset
477 if (!callee->has_balanced_monitors()) return "not compilable (unbalanced monitors)";
a32de5085326 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 3897
diff changeset
478 if ( callee->get_flow_analysis()->failing()) return "not compilable (flow analysis failed)";
a32de5085326 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 3897
diff changeset
479 return NULL;
a32de5085326 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 3897
diff changeset
480 }
a32de5085326 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 3897
diff changeset
481
0
a61af66fc99e Initial load
duke
parents:
diff changeset
482 //------------------------------print_inlining---------------------------------
7991
60bba1398c51 8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents: 7473
diff changeset
483 void InlineTree::print_inlining(ciMethod* callee_method, int caller_bci,
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
484 bool success) const {
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
485 const char* inline_msg = msg();
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
486 assert(inline_msg != NULL, "just checking");
7991
60bba1398c51 8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents: 7473
diff changeset
487 if (C->log() != NULL) {
60bba1398c51 8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents: 7473
diff changeset
488 if (success) {
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
489 C->log()->inline_success(inline_msg);
7991
60bba1398c51 8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents: 7473
diff changeset
490 } else {
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
491 C->log()->inline_fail(inline_msg);
7991
60bba1398c51 8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents: 7473
diff changeset
492 }
60bba1398c51 8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents: 7473
diff changeset
493 }
12295
1b64d46620a3 8022585: VM crashes when ran with -XX:+PrintInlining
kvn
parents: 11154
diff changeset
494 if (C->print_inlining()) {
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
495 C->print_inlining(callee_method, inline_level(), caller_bci, inline_msg);
7991
60bba1398c51 8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents: 7473
diff changeset
496 if (callee_method == NULL) tty->print(" callee not monotonic or profiled");
60bba1398c51 8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents: 7473
diff changeset
497 if (Verbose && callee_method) {
60bba1398c51 8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents: 7473
diff changeset
498 const InlineTree *top = this;
60bba1398c51 8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents: 7473
diff changeset
499 while( top->caller_tree() != NULL ) { top = top->caller_tree(); }
60bba1398c51 8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents: 7473
diff changeset
500 //tty->print(" bcs: %d+%d invoked: %d", top->count_inline_bcs(), callee_method->code_size(), callee_method->interpreter_invocation_count());
60bba1398c51 8005439: no message about inline method if it specifed by CompileCommand
vlivanov
parents: 7473
diff changeset
501 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
502 }
a61af66fc99e Initial load
duke
parents:
diff changeset
503 }
a61af66fc99e Initial load
duke
parents:
diff changeset
504
a61af66fc99e Initial load
duke
parents:
diff changeset
505 //------------------------------ok_to_inline-----------------------------------
7473
d092d1b31229 8005071: Incremental inlining for JSR 292
roland
parents: 7421
diff changeset
506 WarmCallInfo* InlineTree::ok_to_inline(ciMethod* callee_method, JVMState* jvms, ciCallProfile& profile, WarmCallInfo* initial_wci, bool& should_delay) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
507 assert(callee_method != NULL, "caller checks for optimized virtual!");
7473
d092d1b31229 8005071: Incremental inlining for JSR 292
roland
parents: 7421
diff changeset
508 assert(!should_delay, "should be initialized to false");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
509 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
510 // Make sure the incoming jvms has the same information content as me.
a61af66fc99e Initial load
duke
parents:
diff changeset
511 // This means that we can eventually make this whole class AllStatic.
a61af66fc99e Initial load
duke
parents:
diff changeset
512 if (jvms->caller() == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
513 assert(_caller_jvms == NULL, "redundant instance state");
a61af66fc99e Initial load
duke
parents:
diff changeset
514 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
515 assert(_caller_jvms->same_calls_as(jvms->caller()), "redundant instance state");
a61af66fc99e Initial load
duke
parents:
diff changeset
516 }
a61af66fc99e Initial load
duke
parents:
diff changeset
517 assert(_method == jvms->method(), "redundant instance state");
a61af66fc99e Initial load
duke
parents:
diff changeset
518 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
519 int caller_bci = jvms->bci();
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
520 ciMethod* caller_method = jvms->method();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
521
3900
a32de5085326 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 3897
diff changeset
522 // Do some initial checks.
a32de5085326 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 3897
diff changeset
523 if (!pass_initial_checks(caller_method, caller_bci, callee_method)) {
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
524 set_msg("failed initial checks");
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
525 print_inlining(callee_method, caller_bci, false /* !success */);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
526 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
527 }
a61af66fc99e Initial load
duke
parents:
diff changeset
528
3900
a32de5085326 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 3897
diff changeset
529 // Do some parse checks.
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
530 set_msg(check_can_parse(callee_method));
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
531 if (msg() != NULL) {
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
532 print_inlining(callee_method, caller_bci, false /* !success */);
3900
a32de5085326 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 3897
diff changeset
533 return NULL;
a32de5085326 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 3897
diff changeset
534 }
a32de5085326 7079673: JSR 292: C1 should inline bytecoded method handle adapters
twisti
parents: 3897
diff changeset
535
0
a61af66fc99e Initial load
duke
parents:
diff changeset
536 // Check if inlining policy says no.
a61af66fc99e Initial load
duke
parents:
diff changeset
537 WarmCallInfo wci = *(initial_wci);
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
538 bool success = try_to_inline(callee_method, caller_method, caller_bci,
12862
0c4c40f5c399 8011138: C2: stack overflow in compiler thread because of recursive inlining of lambda form methods
twisti
parents: 12295
diff changeset
539 jvms, profile, &wci, should_delay);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
540
a61af66fc99e Initial load
duke
parents:
diff changeset
541 #ifndef PRODUCT
17672
1419657ed891 8032490: Remove -XX:+-UseOldInlining
shade
parents: 17622
diff changeset
542 if (InlineWarmCalls && (PrintOpto || C->print_inlining())) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
543 bool cold = wci.is_cold();
a61af66fc99e Initial load
duke
parents:
diff changeset
544 bool hot = !cold && wci.is_hot();
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
545 bool old_cold = !success;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
546 if (old_cold != cold || (Verbose || WizardMode)) {
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
547 if (msg() == NULL) {
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
548 set_msg("OK");
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
549 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
550 tty->print(" OldInlining= %4s : %s\n WCI=",
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
551 old_cold ? "cold" : "hot", msg());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
552 wci.print();
a61af66fc99e Initial load
duke
parents:
diff changeset
553 }
a61af66fc99e Initial load
duke
parents:
diff changeset
554 }
a61af66fc99e Initial load
duke
parents:
diff changeset
555 #endif
17672
1419657ed891 8032490: Remove -XX:+-UseOldInlining
shade
parents: 17622
diff changeset
556 if (success) {
1419657ed891 8032490: Remove -XX:+-UseOldInlining
shade
parents: 17622
diff changeset
557 wci = *(WarmCallInfo::always_hot());
1419657ed891 8032490: Remove -XX:+-UseOldInlining
shade
parents: 17622
diff changeset
558 } else {
1419657ed891 8032490: Remove -XX:+-UseOldInlining
shade
parents: 17622
diff changeset
559 wci = *(WarmCallInfo::always_cold());
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
560 }
17672
1419657ed891 8032490: Remove -XX:+-UseOldInlining
shade
parents: 17622
diff changeset
561
0
a61af66fc99e Initial load
duke
parents:
diff changeset
562 if (!InlineWarmCalls) {
a61af66fc99e Initial load
duke
parents:
diff changeset
563 if (!wci.is_cold() && !wci.is_hot()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
564 // Do not inline the warm calls.
a61af66fc99e Initial load
duke
parents:
diff changeset
565 wci = *(WarmCallInfo::always_cold());
a61af66fc99e Initial load
duke
parents:
diff changeset
566 }
a61af66fc99e Initial load
duke
parents:
diff changeset
567 }
a61af66fc99e Initial load
duke
parents:
diff changeset
568
a61af66fc99e Initial load
duke
parents:
diff changeset
569 if (!wci.is_cold()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
570 // Inline!
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
571 if (msg() == NULL) {
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
572 set_msg("inline (hot)");
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
573 }
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
574 print_inlining(callee_method, caller_bci, true /* success */);
17672
1419657ed891 8032490: Remove -XX:+-UseOldInlining
shade
parents: 17622
diff changeset
575 build_inline_tree_for_callee(callee_method, jvms, caller_bci);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
576 if (InlineWarmCalls && !wci.is_hot())
a61af66fc99e Initial load
duke
parents:
diff changeset
577 return new (C) WarmCallInfo(wci); // copy to heap
a61af66fc99e Initial load
duke
parents:
diff changeset
578 return WarmCallInfo::always_hot();
a61af66fc99e Initial load
duke
parents:
diff changeset
579 }
a61af66fc99e Initial load
duke
parents:
diff changeset
580
a61af66fc99e Initial load
duke
parents:
diff changeset
581 // Do not inline
8119
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
582 if (msg() == NULL) {
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
583 set_msg("too cold to inline");
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
584 }
133bf557ef77 8007439: C2: adding successful message of inlining
iignatyev
parents: 7991
diff changeset
585 print_inlining(callee_method, caller_bci, false /* !success */ );
0
a61af66fc99e Initial load
duke
parents:
diff changeset
586 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
587 }
a61af66fc99e Initial load
duke
parents:
diff changeset
588
a61af66fc99e Initial load
duke
parents:
diff changeset
589 //------------------------------compute_callee_frequency-----------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
590 float InlineTree::compute_callee_frequency( int caller_bci ) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
591 int count = method()->interpreter_call_site_count(caller_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
592 int invcnt = method()->interpreter_invocation_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
593 float freq = (float)count/(float)invcnt;
a61af66fc99e Initial load
duke
parents:
diff changeset
594 // Call-site count / interpreter invocation count, scaled recursively.
a61af66fc99e Initial load
duke
parents:
diff changeset
595 // Always between 0.0 and 1.0. Represents the percentage of the method's
a61af66fc99e Initial load
duke
parents:
diff changeset
596 // total execution time used at this call site.
a61af66fc99e Initial load
duke
parents:
diff changeset
597
a61af66fc99e Initial load
duke
parents:
diff changeset
598 return freq;
a61af66fc99e Initial load
duke
parents:
diff changeset
599 }
a61af66fc99e Initial load
duke
parents:
diff changeset
600
a61af66fc99e Initial load
duke
parents:
diff changeset
601 //------------------------------build_inline_tree_for_callee-------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
602 InlineTree *InlineTree::build_inline_tree_for_callee( ciMethod* callee_method, JVMState* caller_jvms, int caller_bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
603 float recur_frequency = _site_invoke_ratio * compute_callee_frequency(caller_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
604 // Attempt inlining.
a61af66fc99e Initial load
duke
parents:
diff changeset
605 InlineTree* old_ilt = callee_at(caller_bci, callee_method);
a61af66fc99e Initial load
duke
parents:
diff changeset
606 if (old_ilt != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
607 return old_ilt;
a61af66fc99e Initial load
duke
parents:
diff changeset
608 }
3784
aabf25fa3f05 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 3366
diff changeset
609 int max_inline_level_adjust = 0;
1157
c3b315a0d58a 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 1138
diff changeset
610 if (caller_jvms->method() != NULL) {
6266
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 5950
diff changeset
611 if (caller_jvms->method()->is_compiled_lambda_form())
3784
aabf25fa3f05 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 3366
diff changeset
612 max_inline_level_adjust += 1; // don't count actions in MH or indy adapter frames
6266
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 5950
diff changeset
613 else if (callee_method->is_method_handle_intrinsic() ||
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 5950
diff changeset
614 callee_method->is_compiled_lambda_form()) {
3784
aabf25fa3f05 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 3366
diff changeset
615 max_inline_level_adjust += 1; // don't count method handle calls from java.lang.invoke implem
1157
c3b315a0d58a 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 1138
diff changeset
616 }
12295
1b64d46620a3 8022585: VM crashes when ran with -XX:+PrintInlining
kvn
parents: 11154
diff changeset
617 if (max_inline_level_adjust != 0 && C->print_inlining() && (Verbose || WizardMode)) {
3784
aabf25fa3f05 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 3366
diff changeset
618 CompileTask::print_inline_indent(inline_level());
3366
e2a92dd0d3d2 7042122: JSR 292: adjust various inline thresholds for JSR 292 API methods and method handle adapters
twisti
parents: 3345
diff changeset
619 tty->print_cr(" \\-> discounting inline depth");
1157
c3b315a0d58a 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 1138
diff changeset
620 }
3784
aabf25fa3f05 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 3366
diff changeset
621 if (max_inline_level_adjust != 0 && C->log()) {
1157
c3b315a0d58a 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 1138
diff changeset
622 int id1 = C->log()->identify(caller_jvms->method());
c3b315a0d58a 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 1138
diff changeset
623 int id2 = C->log()->identify(callee_method);
3784
aabf25fa3f05 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 3366
diff changeset
624 C->log()->elem("inline_level_discount caller='%d' callee='%d'", id1, id2);
1157
c3b315a0d58a 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 1138
diff changeset
625 }
c3b315a0d58a 6912063: inlining parameters need to be adjusted for some uses of the JVM
jrose
parents: 1138
diff changeset
626 }
3784
aabf25fa3f05 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 3366
diff changeset
627 InlineTree* ilt = new InlineTree(C, this, callee_method, caller_jvms, caller_bci, recur_frequency, _max_inline_level + max_inline_level_adjust);
aabf25fa3f05 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 3366
diff changeset
628 _subtrees.append(ilt);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
629
a61af66fc99e Initial load
duke
parents:
diff changeset
630 NOT_PRODUCT( _count_inlines += 1; )
a61af66fc99e Initial load
duke
parents:
diff changeset
631
a61af66fc99e Initial load
duke
parents:
diff changeset
632 return ilt;
a61af66fc99e Initial load
duke
parents:
diff changeset
633 }
a61af66fc99e Initial load
duke
parents:
diff changeset
634
a61af66fc99e Initial load
duke
parents:
diff changeset
635
a61af66fc99e Initial load
duke
parents:
diff changeset
636 //---------------------------------------callee_at-----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
637 InlineTree *InlineTree::callee_at(int bci, ciMethod* callee) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
638 for (int i = 0; i < _subtrees.length(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
639 InlineTree* sub = _subtrees.at(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
640 if (sub->caller_bci() == bci && callee == sub->method()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
641 return sub;
a61af66fc99e Initial load
duke
parents:
diff changeset
642 }
a61af66fc99e Initial load
duke
parents:
diff changeset
643 }
a61af66fc99e Initial load
duke
parents:
diff changeset
644 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
645 }
a61af66fc99e Initial load
duke
parents:
diff changeset
646
a61af66fc99e Initial load
duke
parents:
diff changeset
647
a61af66fc99e Initial load
duke
parents:
diff changeset
648 //------------------------------build_inline_tree_root-------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
649 InlineTree *InlineTree::build_inline_tree_root() {
a61af66fc99e Initial load
duke
parents:
diff changeset
650 Compile* C = Compile::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
651
a61af66fc99e Initial load
duke
parents:
diff changeset
652 // Root of inline tree
3784
aabf25fa3f05 7057587: JSR 292 - crash with jruby in test/test_respond_to.rb
never
parents: 3366
diff changeset
653 InlineTree* ilt = new InlineTree(C, NULL, C->method(), NULL, -1, 1.0F, MaxInlineLevel);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
654
a61af66fc99e Initial load
duke
parents:
diff changeset
655 return ilt;
a61af66fc99e Initial load
duke
parents:
diff changeset
656 }
a61af66fc99e Initial load
duke
parents:
diff changeset
657
a61af66fc99e Initial load
duke
parents:
diff changeset
658
a61af66fc99e Initial load
duke
parents:
diff changeset
659 //-------------------------find_subtree_from_root-----------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
660 // Given a jvms, which determines a call chain from the root method,
a61af66fc99e Initial load
duke
parents:
diff changeset
661 // find the corresponding inline tree.
a61af66fc99e Initial load
duke
parents:
diff changeset
662 // Note: This method will be removed or replaced as InlineTree goes away.
6266
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 5950
diff changeset
663 InlineTree* InlineTree::find_subtree_from_root(InlineTree* root, JVMState* jvms, ciMethod* callee) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
664 InlineTree* iltp = root;
a61af66fc99e Initial load
duke
parents:
diff changeset
665 uint depth = jvms && jvms->has_method() ? jvms->depth() : 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
666 for (uint d = 1; d <= depth; d++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
667 JVMState* jvmsp = jvms->of_depth(d);
a61af66fc99e Initial load
duke
parents:
diff changeset
668 // Select the corresponding subtree for this bci.
a61af66fc99e Initial load
duke
parents:
diff changeset
669 assert(jvmsp->method() == iltp->method(), "tree still in sync");
a61af66fc99e Initial load
duke
parents:
diff changeset
670 ciMethod* d_callee = (d == depth) ? callee : jvms->of_depth(d+1)->method();
a61af66fc99e Initial load
duke
parents:
diff changeset
671 InlineTree* sub = iltp->callee_at(jvmsp->bci(), d_callee);
6266
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 5950
diff changeset
672 if (sub == NULL) {
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 5950
diff changeset
673 if (d == depth) {
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 5950
diff changeset
674 sub = iltp->build_inline_tree_for_callee(d_callee, jvmsp, jvmsp->bci());
0
a61af66fc99e Initial load
duke
parents:
diff changeset
675 }
6266
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 5950
diff changeset
676 guarantee(sub != NULL, "should be a sub-ilt here");
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 5950
diff changeset
677 return sub;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
678 }
a61af66fc99e Initial load
duke
parents:
diff changeset
679 iltp = sub;
a61af66fc99e Initial load
duke
parents:
diff changeset
680 }
a61af66fc99e Initial load
duke
parents:
diff changeset
681 return iltp;
a61af66fc99e Initial load
duke
parents:
diff changeset
682 }
3939
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 3905
diff changeset
683
17622
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
684 // Count number of nodes in this subtree
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
685 int InlineTree::count() const {
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
686 int result = 1;
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
687 for (int i = 0 ; i < _subtrees.length(); i++) {
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
688 result += _subtrees.at(i)->count();
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
689 }
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
690 return result;
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
691 }
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
692
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
693 void InlineTree::dump_replay_data(outputStream* out) {
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
694 out->print(" %d %d ", inline_level(), caller_bci());
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
695 method()->dump_name_as_ascii(out);
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
696 for (int i = 0 ; i < _subtrees.length(); i++) {
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
697 _subtrees.at(i)->dump_replay_data(out);
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
698 }
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
699 }
3939
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 3905
diff changeset
700
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 3905
diff changeset
701
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 3905
diff changeset
702 #ifndef PRODUCT
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 3905
diff changeset
703 void InlineTree::print_impl(outputStream* st, int indent) const {
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 3905
diff changeset
704 for (int i = 0; i < indent; i++) st->print(" ");
17622
849eb7bfceac 8028468: Add inlining information into ciReplay
kvn
parents: 17467
diff changeset
705 st->print(" @ %d", caller_bci());
3939
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 3905
diff changeset
706 method()->print_short_name(st);
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 3905
diff changeset
707 st->cr();
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 3905
diff changeset
708
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 3905
diff changeset
709 for (int i = 0 ; i < _subtrees.length(); i++) {
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 3905
diff changeset
710 _subtrees.at(i)->print_impl(st, indent + 2);
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 3905
diff changeset
711 }
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 3905
diff changeset
712 }
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 3905
diff changeset
713
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 3905
diff changeset
714 void InlineTree::print_value_on(outputStream* st) const {
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 3905
diff changeset
715 print_impl(st, 2);
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 3905
diff changeset
716 }
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 3905
diff changeset
717 #endif