annotate src/share/vm/opto/bytecodeInfo.cpp @ 6948:e522a00b91aa

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