annotate src/share/vm/ci/ciMethod.cpp @ 780:c96bf21b756f

6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits Summary: Cache Jvmti and DTrace flags used by Compiler. Reviewed-by: never
author kvn
date Fri, 08 May 2009 10:44:20 -0700
parents e5b0439ef4ae
children 3a2aa26bdc58
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
2 * Copyright 1999-2009 Sun Microsystems, Inc. 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 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 #include "incls/_precompiled.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
26 #include "incls/_ciMethod.cpp.incl"
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 // ciMethod
a61af66fc99e Initial load
duke
parents:
diff changeset
29 //
a61af66fc99e Initial load
duke
parents:
diff changeset
30 // This class represents a methodOop in the HotSpot virtual
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // machine.
a61af66fc99e Initial load
duke
parents:
diff changeset
32
a61af66fc99e Initial load
duke
parents:
diff changeset
33
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // ciMethod::ciMethod
a61af66fc99e Initial load
duke
parents:
diff changeset
36 //
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // Loaded method.
a61af66fc99e Initial load
duke
parents:
diff changeset
38 ciMethod::ciMethod(methodHandle h_m) : ciObject(h_m) {
a61af66fc99e Initial load
duke
parents:
diff changeset
39 assert(h_m() != NULL, "no null method");
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // These fields are always filled in in loaded methods.
a61af66fc99e Initial load
duke
parents:
diff changeset
42 _flags = ciFlags(h_m()->access_flags());
a61af66fc99e Initial load
duke
parents:
diff changeset
43
a61af66fc99e Initial load
duke
parents:
diff changeset
44 // Easy to compute, so fill them in now.
a61af66fc99e Initial load
duke
parents:
diff changeset
45 _max_stack = h_m()->max_stack();
a61af66fc99e Initial load
duke
parents:
diff changeset
46 _max_locals = h_m()->max_locals();
a61af66fc99e Initial load
duke
parents:
diff changeset
47 _code_size = h_m()->code_size();
a61af66fc99e Initial load
duke
parents:
diff changeset
48 _intrinsic_id = h_m()->intrinsic_id();
a61af66fc99e Initial load
duke
parents:
diff changeset
49 _handler_count = h_m()->exception_table()->length() / 4;
a61af66fc99e Initial load
duke
parents:
diff changeset
50 _uses_monitors = h_m()->access_flags().has_monitor_bytecodes();
a61af66fc99e Initial load
duke
parents:
diff changeset
51 _balanced_monitors = !_uses_monitors || h_m()->access_flags().is_monitor_matching();
a61af66fc99e Initial load
duke
parents:
diff changeset
52 _is_compilable = !h_m()->is_not_compilable();
a61af66fc99e Initial load
duke
parents:
diff changeset
53 // Lazy fields, filled in on demand. Require allocation.
a61af66fc99e Initial load
duke
parents:
diff changeset
54 _code = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
55 _exception_handlers = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
56 _liveness = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
57 _bcea = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
58 _method_blocks = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
59 #ifdef COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
60 _flow = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
61 #endif // COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
62
780
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 710
diff changeset
63 ciEnv *env = CURRENT_ENV;
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 710
diff changeset
64 if (env->jvmti_can_hotswap_or_post_breakpoint() && _is_compilable) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
65 // 6328518 check hotswap conditions under the right lock.
a61af66fc99e Initial load
duke
parents:
diff changeset
66 MutexLocker locker(Compile_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
67 if (Dependencies::check_evol_method(h_m()) != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
68 _is_compilable = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
69 }
a61af66fc99e Initial load
duke
parents:
diff changeset
70 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
71 CHECK_UNHANDLED_OOPS_ONLY(Thread::current()->clear_unhandled_oops());
a61af66fc99e Initial load
duke
parents:
diff changeset
72 }
a61af66fc99e Initial load
duke
parents:
diff changeset
73
a61af66fc99e Initial load
duke
parents:
diff changeset
74 if (instanceKlass::cast(h_m()->method_holder())->is_linked()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
75 _can_be_statically_bound = h_m()->can_be_statically_bound();
a61af66fc99e Initial load
duke
parents:
diff changeset
76 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
77 // Have to use a conservative value in this case.
a61af66fc99e Initial load
duke
parents:
diff changeset
78 _can_be_statically_bound = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
79 }
a61af66fc99e Initial load
duke
parents:
diff changeset
80
a61af66fc99e Initial load
duke
parents:
diff changeset
81 // Adjust the definition of this condition to be more useful:
a61af66fc99e Initial load
duke
parents:
diff changeset
82 // %%% take these conditions into account in vtable generation
a61af66fc99e Initial load
duke
parents:
diff changeset
83 if (!_can_be_statically_bound && h_m()->is_private())
a61af66fc99e Initial load
duke
parents:
diff changeset
84 _can_be_statically_bound = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
85 if (_can_be_statically_bound && h_m()->is_abstract())
a61af66fc99e Initial load
duke
parents:
diff changeset
86 _can_be_statically_bound = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 // generating _signature may allow GC and therefore move m.
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // These fields are always filled in.
a61af66fc99e Initial load
duke
parents:
diff changeset
90 _name = env->get_object(h_m()->name())->as_symbol();
a61af66fc99e Initial load
duke
parents:
diff changeset
91 _holder = env->get_object(h_m()->method_holder())->as_instance_klass();
a61af66fc99e Initial load
duke
parents:
diff changeset
92 ciSymbol* sig_symbol = env->get_object(h_m()->signature())->as_symbol();
a61af66fc99e Initial load
duke
parents:
diff changeset
93 _signature = new (env->arena()) ciSignature(_holder, sig_symbol);
a61af66fc99e Initial load
duke
parents:
diff changeset
94 _method_data = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
95 // Take a snapshot of these values, so they will be commensurate with the MDO.
a61af66fc99e Initial load
duke
parents:
diff changeset
96 if (ProfileInterpreter) {
a61af66fc99e Initial load
duke
parents:
diff changeset
97 int invcnt = h_m()->interpreter_invocation_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
98 // if the value overflowed report it as max int
a61af66fc99e Initial load
duke
parents:
diff changeset
99 _interpreter_invocation_count = invcnt < 0 ? max_jint : invcnt ;
a61af66fc99e Initial load
duke
parents:
diff changeset
100 _interpreter_throwout_count = h_m()->interpreter_throwout_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
101 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
102 _interpreter_invocation_count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
103 _interpreter_throwout_count = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
104 }
a61af66fc99e Initial load
duke
parents:
diff changeset
105 if (_interpreter_invocation_count == 0)
a61af66fc99e Initial load
duke
parents:
diff changeset
106 _interpreter_invocation_count = 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
107 }
a61af66fc99e Initial load
duke
parents:
diff changeset
108
a61af66fc99e Initial load
duke
parents:
diff changeset
109
a61af66fc99e Initial load
duke
parents:
diff changeset
110 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
111 // ciMethod::ciMethod
a61af66fc99e Initial load
duke
parents:
diff changeset
112 //
a61af66fc99e Initial load
duke
parents:
diff changeset
113 // Unloaded method.
a61af66fc99e Initial load
duke
parents:
diff changeset
114 ciMethod::ciMethod(ciInstanceKlass* holder,
a61af66fc99e Initial load
duke
parents:
diff changeset
115 ciSymbol* name,
a61af66fc99e Initial load
duke
parents:
diff changeset
116 ciSymbol* signature) : ciObject(ciMethodKlass::make()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
117 // These fields are always filled in.
a61af66fc99e Initial load
duke
parents:
diff changeset
118 _name = name;
a61af66fc99e Initial load
duke
parents:
diff changeset
119 _holder = holder;
a61af66fc99e Initial load
duke
parents:
diff changeset
120 _signature = new (CURRENT_ENV->arena()) ciSignature(_holder, signature);
a61af66fc99e Initial load
duke
parents:
diff changeset
121 _intrinsic_id = vmIntrinsics::_none;
a61af66fc99e Initial load
duke
parents:
diff changeset
122 _liveness = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
123 _can_be_statically_bound = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
124 _bcea = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
125 _method_blocks = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
126 _method_data = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
127 #ifdef COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
128 _flow = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
129 #endif // COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
130 }
a61af66fc99e Initial load
duke
parents:
diff changeset
131
a61af66fc99e Initial load
duke
parents:
diff changeset
132
a61af66fc99e Initial load
duke
parents:
diff changeset
133 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
134 // ciMethod::load_code
a61af66fc99e Initial load
duke
parents:
diff changeset
135 //
a61af66fc99e Initial load
duke
parents:
diff changeset
136 // Load the bytecodes and exception handler table for this method.
a61af66fc99e Initial load
duke
parents:
diff changeset
137 void ciMethod::load_code() {
a61af66fc99e Initial load
duke
parents:
diff changeset
138 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
139 assert(is_loaded(), "only loaded methods have code");
a61af66fc99e Initial load
duke
parents:
diff changeset
140
a61af66fc99e Initial load
duke
parents:
diff changeset
141 methodOop me = get_methodOop();
a61af66fc99e Initial load
duke
parents:
diff changeset
142 Arena* arena = CURRENT_THREAD_ENV->arena();
a61af66fc99e Initial load
duke
parents:
diff changeset
143
a61af66fc99e Initial load
duke
parents:
diff changeset
144 // Load the bytecodes.
a61af66fc99e Initial load
duke
parents:
diff changeset
145 _code = (address)arena->Amalloc(code_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
146 memcpy(_code, me->code_base(), code_size());
a61af66fc99e Initial load
duke
parents:
diff changeset
147
a61af66fc99e Initial load
duke
parents:
diff changeset
148 // Revert any breakpoint bytecodes in ci's copy
27
1f530c629c7d 6498878: client compiler crashes on windows when dealing with breakpoint instructions
kvn
parents: 0
diff changeset
149 if (me->number_of_breakpoints() > 0) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
150 BreakpointInfo* bp = instanceKlass::cast(me->method_holder())->breakpoints();
a61af66fc99e Initial load
duke
parents:
diff changeset
151 for (; bp != NULL; bp = bp->next()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
152 if (bp->match(me)) {
a61af66fc99e Initial load
duke
parents:
diff changeset
153 code_at_put(bp->bci(), bp->orig_bytecode());
a61af66fc99e Initial load
duke
parents:
diff changeset
154 }
a61af66fc99e Initial load
duke
parents:
diff changeset
155 }
a61af66fc99e Initial load
duke
parents:
diff changeset
156 }
a61af66fc99e Initial load
duke
parents:
diff changeset
157
a61af66fc99e Initial load
duke
parents:
diff changeset
158 // And load the exception table.
a61af66fc99e Initial load
duke
parents:
diff changeset
159 typeArrayOop exc_table = me->exception_table();
a61af66fc99e Initial load
duke
parents:
diff changeset
160
a61af66fc99e Initial load
duke
parents:
diff changeset
161 // Allocate one extra spot in our list of exceptions. This
a61af66fc99e Initial load
duke
parents:
diff changeset
162 // last entry will be used to represent the possibility that
a61af66fc99e Initial load
duke
parents:
diff changeset
163 // an exception escapes the method. See ciExceptionHandlerStream
a61af66fc99e Initial load
duke
parents:
diff changeset
164 // for details.
a61af66fc99e Initial load
duke
parents:
diff changeset
165 _exception_handlers =
a61af66fc99e Initial load
duke
parents:
diff changeset
166 (ciExceptionHandler**)arena->Amalloc(sizeof(ciExceptionHandler*)
a61af66fc99e Initial load
duke
parents:
diff changeset
167 * (_handler_count + 1));
a61af66fc99e Initial load
duke
parents:
diff changeset
168 if (_handler_count > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
169 for (int i=0; i<_handler_count; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
170 int base = i*4;
a61af66fc99e Initial load
duke
parents:
diff changeset
171 _exception_handlers[i] = new (arena) ciExceptionHandler(
a61af66fc99e Initial load
duke
parents:
diff changeset
172 holder(),
a61af66fc99e Initial load
duke
parents:
diff changeset
173 /* start */ exc_table->int_at(base),
a61af66fc99e Initial load
duke
parents:
diff changeset
174 /* limit */ exc_table->int_at(base+1),
a61af66fc99e Initial load
duke
parents:
diff changeset
175 /* goto pc */ exc_table->int_at(base+2),
a61af66fc99e Initial load
duke
parents:
diff changeset
176 /* cp index */ exc_table->int_at(base+3));
a61af66fc99e Initial load
duke
parents:
diff changeset
177 }
a61af66fc99e Initial load
duke
parents:
diff changeset
178 }
a61af66fc99e Initial load
duke
parents:
diff changeset
179
a61af66fc99e Initial load
duke
parents:
diff changeset
180 // Put an entry at the end of our list to represent the possibility
a61af66fc99e Initial load
duke
parents:
diff changeset
181 // of exceptional exit.
a61af66fc99e Initial load
duke
parents:
diff changeset
182 _exception_handlers[_handler_count] =
a61af66fc99e Initial load
duke
parents:
diff changeset
183 new (arena) ciExceptionHandler(holder(), 0, code_size(), -1, 0);
a61af66fc99e Initial load
duke
parents:
diff changeset
184
a61af66fc99e Initial load
duke
parents:
diff changeset
185 if (CIPrintMethodCodes) {
a61af66fc99e Initial load
duke
parents:
diff changeset
186 print_codes();
a61af66fc99e Initial load
duke
parents:
diff changeset
187 }
a61af66fc99e Initial load
duke
parents:
diff changeset
188 }
a61af66fc99e Initial load
duke
parents:
diff changeset
189
a61af66fc99e Initial load
duke
parents:
diff changeset
190
a61af66fc99e Initial load
duke
parents:
diff changeset
191 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
192 // ciMethod::has_linenumber_table
a61af66fc99e Initial load
duke
parents:
diff changeset
193 //
a61af66fc99e Initial load
duke
parents:
diff changeset
194 // length unknown until decompression
a61af66fc99e Initial load
duke
parents:
diff changeset
195 bool ciMethod::has_linenumber_table() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
196 check_is_loaded();
a61af66fc99e Initial load
duke
parents:
diff changeset
197 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
198 return get_methodOop()->has_linenumber_table();
a61af66fc99e Initial load
duke
parents:
diff changeset
199 }
a61af66fc99e Initial load
duke
parents:
diff changeset
200
a61af66fc99e Initial load
duke
parents:
diff changeset
201
a61af66fc99e Initial load
duke
parents:
diff changeset
202 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
203 // ciMethod::compressed_linenumber_table
a61af66fc99e Initial load
duke
parents:
diff changeset
204 u_char* ciMethod::compressed_linenumber_table() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
205 check_is_loaded();
a61af66fc99e Initial load
duke
parents:
diff changeset
206 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
207 return get_methodOop()->compressed_linenumber_table();
a61af66fc99e Initial load
duke
parents:
diff changeset
208 }
a61af66fc99e Initial load
duke
parents:
diff changeset
209
a61af66fc99e Initial load
duke
parents:
diff changeset
210
a61af66fc99e Initial load
duke
parents:
diff changeset
211 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
212 // ciMethod::line_number_from_bci
a61af66fc99e Initial load
duke
parents:
diff changeset
213 int ciMethod::line_number_from_bci(int bci) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
214 check_is_loaded();
a61af66fc99e Initial load
duke
parents:
diff changeset
215 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
216 return get_methodOop()->line_number_from_bci(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
217 }
a61af66fc99e Initial load
duke
parents:
diff changeset
218
a61af66fc99e Initial load
duke
parents:
diff changeset
219
a61af66fc99e Initial load
duke
parents:
diff changeset
220 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
221 // ciMethod::vtable_index
a61af66fc99e Initial load
duke
parents:
diff changeset
222 //
a61af66fc99e Initial load
duke
parents:
diff changeset
223 // Get the position of this method's entry in the vtable, if any.
a61af66fc99e Initial load
duke
parents:
diff changeset
224 int ciMethod::vtable_index() {
a61af66fc99e Initial load
duke
parents:
diff changeset
225 check_is_loaded();
a61af66fc99e Initial load
duke
parents:
diff changeset
226 assert(holder()->is_linked(), "must be linked");
a61af66fc99e Initial load
duke
parents:
diff changeset
227 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
228 return get_methodOop()->vtable_index();
a61af66fc99e Initial load
duke
parents:
diff changeset
229 }
a61af66fc99e Initial load
duke
parents:
diff changeset
230
a61af66fc99e Initial load
duke
parents:
diff changeset
231
a61af66fc99e Initial load
duke
parents:
diff changeset
232 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
233 // ciMethod::native_entry
a61af66fc99e Initial load
duke
parents:
diff changeset
234 //
a61af66fc99e Initial load
duke
parents:
diff changeset
235 // Get the address of this method's native code, if any.
a61af66fc99e Initial load
duke
parents:
diff changeset
236 address ciMethod::native_entry() {
a61af66fc99e Initial load
duke
parents:
diff changeset
237 check_is_loaded();
a61af66fc99e Initial load
duke
parents:
diff changeset
238 assert(flags().is_native(), "must be native method");
a61af66fc99e Initial load
duke
parents:
diff changeset
239 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
240 methodOop method = get_methodOop();
a61af66fc99e Initial load
duke
parents:
diff changeset
241 address entry = method->native_function();
a61af66fc99e Initial load
duke
parents:
diff changeset
242 assert(entry != NULL, "must be valid entry point");
a61af66fc99e Initial load
duke
parents:
diff changeset
243 return entry;
a61af66fc99e Initial load
duke
parents:
diff changeset
244 }
a61af66fc99e Initial load
duke
parents:
diff changeset
245
a61af66fc99e Initial load
duke
parents:
diff changeset
246
a61af66fc99e Initial load
duke
parents:
diff changeset
247 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
248 // ciMethod::interpreter_entry
a61af66fc99e Initial load
duke
parents:
diff changeset
249 //
a61af66fc99e Initial load
duke
parents:
diff changeset
250 // Get the entry point for running this method in the interpreter.
a61af66fc99e Initial load
duke
parents:
diff changeset
251 address ciMethod::interpreter_entry() {
a61af66fc99e Initial load
duke
parents:
diff changeset
252 check_is_loaded();
a61af66fc99e Initial load
duke
parents:
diff changeset
253 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
254 methodHandle mh(THREAD, get_methodOop());
a61af66fc99e Initial load
duke
parents:
diff changeset
255 return Interpreter::entry_for_method(mh);
a61af66fc99e Initial load
duke
parents:
diff changeset
256 }
a61af66fc99e Initial load
duke
parents:
diff changeset
257
a61af66fc99e Initial load
duke
parents:
diff changeset
258
a61af66fc99e Initial load
duke
parents:
diff changeset
259 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
260 // ciMethod::uses_balanced_monitors
a61af66fc99e Initial load
duke
parents:
diff changeset
261 //
a61af66fc99e Initial load
duke
parents:
diff changeset
262 // Does this method use monitors in a strict stack-disciplined manner?
a61af66fc99e Initial load
duke
parents:
diff changeset
263 bool ciMethod::has_balanced_monitors() {
a61af66fc99e Initial load
duke
parents:
diff changeset
264 check_is_loaded();
a61af66fc99e Initial load
duke
parents:
diff changeset
265 if (_balanced_monitors) return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
266
a61af66fc99e Initial load
duke
parents:
diff changeset
267 // Analyze the method to see if monitors are used properly.
a61af66fc99e Initial load
duke
parents:
diff changeset
268 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
269 methodHandle method(THREAD, get_methodOop());
a61af66fc99e Initial load
duke
parents:
diff changeset
270 assert(method->has_monitor_bytecodes(), "should have checked this");
a61af66fc99e Initial load
duke
parents:
diff changeset
271
a61af66fc99e Initial load
duke
parents:
diff changeset
272 // Check to see if a previous compilation computed the
a61af66fc99e Initial load
duke
parents:
diff changeset
273 // monitor-matching analysis.
a61af66fc99e Initial load
duke
parents:
diff changeset
274 if (method->guaranteed_monitor_matching()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
275 _balanced_monitors = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
276 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
277 }
a61af66fc99e Initial load
duke
parents:
diff changeset
278
a61af66fc99e Initial load
duke
parents:
diff changeset
279 {
a61af66fc99e Initial load
duke
parents:
diff changeset
280 EXCEPTION_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
281 ResourceMark rm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
282 GeneratePairingInfo gpi(method);
a61af66fc99e Initial load
duke
parents:
diff changeset
283 gpi.compute_map(CATCH);
a61af66fc99e Initial load
duke
parents:
diff changeset
284 if (!gpi.monitor_safe()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
285 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
286 }
a61af66fc99e Initial load
duke
parents:
diff changeset
287 method->set_guaranteed_monitor_matching();
a61af66fc99e Initial load
duke
parents:
diff changeset
288 _balanced_monitors = true;
a61af66fc99e Initial load
duke
parents:
diff changeset
289 }
a61af66fc99e Initial load
duke
parents:
diff changeset
290 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
291 }
a61af66fc99e Initial load
duke
parents:
diff changeset
292
a61af66fc99e Initial load
duke
parents:
diff changeset
293
a61af66fc99e Initial load
duke
parents:
diff changeset
294 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
295 // ciMethod::get_flow_analysis
a61af66fc99e Initial load
duke
parents:
diff changeset
296 ciTypeFlow* ciMethod::get_flow_analysis() {
a61af66fc99e Initial load
duke
parents:
diff changeset
297 #ifdef COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
298 if (_flow == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
299 ciEnv* env = CURRENT_ENV;
a61af66fc99e Initial load
duke
parents:
diff changeset
300 _flow = new (env->arena()) ciTypeFlow(env, this);
a61af66fc99e Initial load
duke
parents:
diff changeset
301 _flow->do_flow();
a61af66fc99e Initial load
duke
parents:
diff changeset
302 }
a61af66fc99e Initial load
duke
parents:
diff changeset
303 return _flow;
a61af66fc99e Initial load
duke
parents:
diff changeset
304 #else // COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
305 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
306 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
307 #endif // COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
308 }
a61af66fc99e Initial load
duke
parents:
diff changeset
309
a61af66fc99e Initial load
duke
parents:
diff changeset
310
a61af66fc99e Initial load
duke
parents:
diff changeset
311 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
312 // ciMethod::get_osr_flow_analysis
a61af66fc99e Initial load
duke
parents:
diff changeset
313 ciTypeFlow* ciMethod::get_osr_flow_analysis(int osr_bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
314 #ifdef COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
315 // OSR entry points are always place after a call bytecode of some sort
a61af66fc99e Initial load
duke
parents:
diff changeset
316 assert(osr_bci >= 0, "must supply valid OSR entry point");
a61af66fc99e Initial load
duke
parents:
diff changeset
317 ciEnv* env = CURRENT_ENV;
a61af66fc99e Initial load
duke
parents:
diff changeset
318 ciTypeFlow* flow = new (env->arena()) ciTypeFlow(env, this, osr_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
319 flow->do_flow();
a61af66fc99e Initial load
duke
parents:
diff changeset
320 return flow;
a61af66fc99e Initial load
duke
parents:
diff changeset
321 #else // COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
322 ShouldNotReachHere();
a61af66fc99e Initial load
duke
parents:
diff changeset
323 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
324 #endif // COMPILER2
a61af66fc99e Initial load
duke
parents:
diff changeset
325 }
a61af66fc99e Initial load
duke
parents:
diff changeset
326
a61af66fc99e Initial load
duke
parents:
diff changeset
327 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
328 // ciMethod::liveness_at_bci
a61af66fc99e Initial load
duke
parents:
diff changeset
329 //
a61af66fc99e Initial load
duke
parents:
diff changeset
330 // Which local variables are live at a specific bci?
a61af66fc99e Initial load
duke
parents:
diff changeset
331 MethodLivenessResult ciMethod::liveness_at_bci(int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
332 check_is_loaded();
a61af66fc99e Initial load
duke
parents:
diff changeset
333 if (_liveness == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
334 // Create the liveness analyzer.
a61af66fc99e Initial load
duke
parents:
diff changeset
335 Arena* arena = CURRENT_ENV->arena();
a61af66fc99e Initial load
duke
parents:
diff changeset
336 _liveness = new (arena) MethodLiveness(arena, this);
a61af66fc99e Initial load
duke
parents:
diff changeset
337 _liveness->compute_liveness();
a61af66fc99e Initial load
duke
parents:
diff changeset
338 }
a61af66fc99e Initial load
duke
parents:
diff changeset
339 MethodLivenessResult result = _liveness->get_liveness_at(bci);
780
c96bf21b756f 6788527: Server vm intermittently fails with assertion "live value must not be garbage" with fastdebug bits
kvn
parents: 710
diff changeset
340 if (CURRENT_ENV->jvmti_can_access_local_variables() || DeoptimizeALot || CompileTheWorld) {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
341 // Keep all locals live for the user's edification and amusement.
a61af66fc99e Initial load
duke
parents:
diff changeset
342 result.at_put_range(0, result.size(), true);
a61af66fc99e Initial load
duke
parents:
diff changeset
343 }
a61af66fc99e Initial load
duke
parents:
diff changeset
344 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
345 }
a61af66fc99e Initial load
duke
parents:
diff changeset
346
a61af66fc99e Initial load
duke
parents:
diff changeset
347 // ciMethod::live_local_oops_at_bci
a61af66fc99e Initial load
duke
parents:
diff changeset
348 //
a61af66fc99e Initial load
duke
parents:
diff changeset
349 // find all the live oops in the locals array for a particular bci
a61af66fc99e Initial load
duke
parents:
diff changeset
350 // Compute what the interpreter believes by using the interpreter
a61af66fc99e Initial load
duke
parents:
diff changeset
351 // oopmap generator. This is used as a double check during osr to
a61af66fc99e Initial load
duke
parents:
diff changeset
352 // guard against conservative result from MethodLiveness making us
a61af66fc99e Initial load
duke
parents:
diff changeset
353 // think a dead oop is live. MethodLiveness is conservative in the
a61af66fc99e Initial load
duke
parents:
diff changeset
354 // sense that it may consider locals to be live which cannot be live,
a61af66fc99e Initial load
duke
parents:
diff changeset
355 // like in the case where a local could contain an oop or a primitive
a61af66fc99e Initial load
duke
parents:
diff changeset
356 // along different paths. In that case the local must be dead when
a61af66fc99e Initial load
duke
parents:
diff changeset
357 // those paths merge. Since the interpreter's viewpoint is used when
a61af66fc99e Initial load
duke
parents:
diff changeset
358 // gc'ing an interpreter frame we need to use its viewpoint during
a61af66fc99e Initial load
duke
parents:
diff changeset
359 // OSR when loading the locals.
a61af66fc99e Initial load
duke
parents:
diff changeset
360
a61af66fc99e Initial load
duke
parents:
diff changeset
361 BitMap ciMethod::live_local_oops_at_bci(int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
362 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
363 InterpreterOopMap mask;
a61af66fc99e Initial load
duke
parents:
diff changeset
364 OopMapCache::compute_one_oop_map(get_methodOop(), bci, &mask);
a61af66fc99e Initial load
duke
parents:
diff changeset
365 int mask_size = max_locals();
a61af66fc99e Initial load
duke
parents:
diff changeset
366 BitMap result(mask_size);
a61af66fc99e Initial load
duke
parents:
diff changeset
367 result.clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
368 int i;
a61af66fc99e Initial load
duke
parents:
diff changeset
369 for (i = 0; i < mask_size ; i++ ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
370 if (mask.is_oop(i)) result.set_bit(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
371 }
a61af66fc99e Initial load
duke
parents:
diff changeset
372 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
373 }
a61af66fc99e Initial load
duke
parents:
diff changeset
374
a61af66fc99e Initial load
duke
parents:
diff changeset
375
a61af66fc99e Initial load
duke
parents:
diff changeset
376 #ifdef COMPILER1
a61af66fc99e Initial load
duke
parents:
diff changeset
377 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
378 // ciMethod::bci_block_start
a61af66fc99e Initial load
duke
parents:
diff changeset
379 //
a61af66fc99e Initial load
duke
parents:
diff changeset
380 // Marks all bcis where a new basic block starts
a61af66fc99e Initial load
duke
parents:
diff changeset
381 const BitMap ciMethod::bci_block_start() {
a61af66fc99e Initial load
duke
parents:
diff changeset
382 check_is_loaded();
a61af66fc99e Initial load
duke
parents:
diff changeset
383 if (_liveness == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
384 // Create the liveness analyzer.
a61af66fc99e Initial load
duke
parents:
diff changeset
385 Arena* arena = CURRENT_ENV->arena();
a61af66fc99e Initial load
duke
parents:
diff changeset
386 _liveness = new (arena) MethodLiveness(arena, this);
a61af66fc99e Initial load
duke
parents:
diff changeset
387 _liveness->compute_liveness();
a61af66fc99e Initial load
duke
parents:
diff changeset
388 }
a61af66fc99e Initial load
duke
parents:
diff changeset
389
a61af66fc99e Initial load
duke
parents:
diff changeset
390 return _liveness->get_bci_block_start();
a61af66fc99e Initial load
duke
parents:
diff changeset
391 }
a61af66fc99e Initial load
duke
parents:
diff changeset
392 #endif // COMPILER1
a61af66fc99e Initial load
duke
parents:
diff changeset
393
a61af66fc99e Initial load
duke
parents:
diff changeset
394
a61af66fc99e Initial load
duke
parents:
diff changeset
395 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
396 // ciMethod::call_profile_at_bci
a61af66fc99e Initial load
duke
parents:
diff changeset
397 //
a61af66fc99e Initial load
duke
parents:
diff changeset
398 // Get the ciCallProfile for the invocation of this method.
a61af66fc99e Initial load
duke
parents:
diff changeset
399 // Also reports receiver types for non-call type checks (if TypeProfileCasts).
a61af66fc99e Initial load
duke
parents:
diff changeset
400 ciCallProfile ciMethod::call_profile_at_bci(int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
401 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
402 ciCallProfile result;
a61af66fc99e Initial load
duke
parents:
diff changeset
403 if (method_data() != NULL && method_data()->is_mature()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
404 ciProfileData* data = method_data()->bci_to_data(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
405 if (data != NULL && data->is_CounterData()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
406 // Every profiled call site has a counter.
a61af66fc99e Initial load
duke
parents:
diff changeset
407 int count = data->as_CounterData()->count();
a61af66fc99e Initial load
duke
parents:
diff changeset
408
a61af66fc99e Initial load
duke
parents:
diff changeset
409 if (!data->is_ReceiverTypeData()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
410 result._receiver_count[0] = 0; // that's a definite zero
a61af66fc99e Initial load
duke
parents:
diff changeset
411 } else { // ReceiverTypeData is a subclass of CounterData
a61af66fc99e Initial load
duke
parents:
diff changeset
412 ciReceiverTypeData* call = (ciReceiverTypeData*)data->as_ReceiverTypeData();
a61af66fc99e Initial load
duke
parents:
diff changeset
413 // In addition, virtual call sites have receiver type information
a61af66fc99e Initial load
duke
parents:
diff changeset
414 int receivers_count_total = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
415 int morphism = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
416 for (uint i = 0; i < call->row_limit(); i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
417 ciKlass* receiver = call->receiver(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
418 if (receiver == NULL) continue;
a61af66fc99e Initial load
duke
parents:
diff changeset
419 morphism += 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
420 int rcount = call->receiver_count(i);
a61af66fc99e Initial load
duke
parents:
diff changeset
421 if (rcount == 0) rcount = 1; // Should be valid value
a61af66fc99e Initial load
duke
parents:
diff changeset
422 receivers_count_total += rcount;
a61af66fc99e Initial load
duke
parents:
diff changeset
423 // Add the receiver to result data.
a61af66fc99e Initial load
duke
parents:
diff changeset
424 result.add_receiver(receiver, rcount);
a61af66fc99e Initial load
duke
parents:
diff changeset
425 // If we extend profiling to record methods,
a61af66fc99e Initial load
duke
parents:
diff changeset
426 // we will set result._method also.
a61af66fc99e Initial load
duke
parents:
diff changeset
427 }
a61af66fc99e Initial load
duke
parents:
diff changeset
428 // Determine call site's morphism.
a61af66fc99e Initial load
duke
parents:
diff changeset
429 // The call site count could be == (receivers_count_total + 1)
a61af66fc99e Initial load
duke
parents:
diff changeset
430 // not only in the case of a polymorphic call but also in the case
a61af66fc99e Initial load
duke
parents:
diff changeset
431 // when a method data snapshot is taken after the site count was updated
a61af66fc99e Initial load
duke
parents:
diff changeset
432 // but before receivers counters were updated.
a61af66fc99e Initial load
duke
parents:
diff changeset
433 if (morphism == result._limit) {
a61af66fc99e Initial load
duke
parents:
diff changeset
434 // There were no array klasses and morphism <= MorphismLimit.
a61af66fc99e Initial load
duke
parents:
diff changeset
435 if (morphism < ciCallProfile::MorphismLimit ||
a61af66fc99e Initial load
duke
parents:
diff changeset
436 morphism == ciCallProfile::MorphismLimit &&
a61af66fc99e Initial load
duke
parents:
diff changeset
437 (receivers_count_total+1) >= count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
438 result._morphism = morphism;
a61af66fc99e Initial load
duke
parents:
diff changeset
439 }
a61af66fc99e Initial load
duke
parents:
diff changeset
440 }
a61af66fc99e Initial load
duke
parents:
diff changeset
441 // Make the count consistent if this is a call profile. If count is
a61af66fc99e Initial load
duke
parents:
diff changeset
442 // zero or less, presume that this is a typecheck profile and
a61af66fc99e Initial load
duke
parents:
diff changeset
443 // do nothing. Otherwise, increase count to be the sum of all
a61af66fc99e Initial load
duke
parents:
diff changeset
444 // receiver's counts.
a61af66fc99e Initial load
duke
parents:
diff changeset
445 if (count > 0) {
a61af66fc99e Initial load
duke
parents:
diff changeset
446 if (count < receivers_count_total) {
a61af66fc99e Initial load
duke
parents:
diff changeset
447 count = receivers_count_total;
a61af66fc99e Initial load
duke
parents:
diff changeset
448 }
a61af66fc99e Initial load
duke
parents:
diff changeset
449 }
a61af66fc99e Initial load
duke
parents:
diff changeset
450 }
a61af66fc99e Initial load
duke
parents:
diff changeset
451 result._count = count;
a61af66fc99e Initial load
duke
parents:
diff changeset
452 }
a61af66fc99e Initial load
duke
parents:
diff changeset
453 }
a61af66fc99e Initial load
duke
parents:
diff changeset
454 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
455 }
a61af66fc99e Initial load
duke
parents:
diff changeset
456
a61af66fc99e Initial load
duke
parents:
diff changeset
457 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
458 // Add new receiver and sort data by receiver's profile count.
a61af66fc99e Initial load
duke
parents:
diff changeset
459 void ciCallProfile::add_receiver(ciKlass* receiver, int receiver_count) {
a61af66fc99e Initial load
duke
parents:
diff changeset
460 // Add new receiver and sort data by receiver's counts when we have space
a61af66fc99e Initial load
duke
parents:
diff changeset
461 // for it otherwise replace the less called receiver (less called receiver
a61af66fc99e Initial load
duke
parents:
diff changeset
462 // is placed to the last array element which is not used).
a61af66fc99e Initial load
duke
parents:
diff changeset
463 // First array's element contains most called receiver.
a61af66fc99e Initial load
duke
parents:
diff changeset
464 int i = _limit;
a61af66fc99e Initial load
duke
parents:
diff changeset
465 for (; i > 0 && receiver_count > _receiver_count[i-1]; i--) {
a61af66fc99e Initial load
duke
parents:
diff changeset
466 _receiver[i] = _receiver[i-1];
a61af66fc99e Initial load
duke
parents:
diff changeset
467 _receiver_count[i] = _receiver_count[i-1];
a61af66fc99e Initial load
duke
parents:
diff changeset
468 }
a61af66fc99e Initial load
duke
parents:
diff changeset
469 _receiver[i] = receiver;
a61af66fc99e Initial load
duke
parents:
diff changeset
470 _receiver_count[i] = receiver_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
471 if (_limit < MorphismLimit) _limit++;
a61af66fc99e Initial load
duke
parents:
diff changeset
472 }
a61af66fc99e Initial load
duke
parents:
diff changeset
473
a61af66fc99e Initial load
duke
parents:
diff changeset
474 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
475 // ciMethod::find_monomorphic_target
a61af66fc99e Initial load
duke
parents:
diff changeset
476 //
a61af66fc99e Initial load
duke
parents:
diff changeset
477 // Given a certain calling environment, find the monomorphic target
a61af66fc99e Initial load
duke
parents:
diff changeset
478 // for the call. Return NULL if the call is not monomorphic in
a61af66fc99e Initial load
duke
parents:
diff changeset
479 // its calling environment, or if there are only abstract methods.
a61af66fc99e Initial load
duke
parents:
diff changeset
480 // The returned method is never abstract.
a61af66fc99e Initial load
duke
parents:
diff changeset
481 // Note: If caller uses a non-null result, it must inform dependencies
a61af66fc99e Initial load
duke
parents:
diff changeset
482 // via assert_unique_concrete_method or assert_leaf_type.
a61af66fc99e Initial load
duke
parents:
diff changeset
483 ciMethod* ciMethod::find_monomorphic_target(ciInstanceKlass* caller,
a61af66fc99e Initial load
duke
parents:
diff changeset
484 ciInstanceKlass* callee_holder,
a61af66fc99e Initial load
duke
parents:
diff changeset
485 ciInstanceKlass* actual_recv) {
a61af66fc99e Initial load
duke
parents:
diff changeset
486 check_is_loaded();
a61af66fc99e Initial load
duke
parents:
diff changeset
487
a61af66fc99e Initial load
duke
parents:
diff changeset
488 if (actual_recv->is_interface()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
489 // %%% We cannot trust interface types, yet. See bug 6312651.
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 ciMethod* root_m = resolve_invoke(caller, actual_recv);
a61af66fc99e Initial load
duke
parents:
diff changeset
494 if (root_m == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
495 // Something went wrong looking up the actual receiver method.
a61af66fc99e Initial load
duke
parents:
diff changeset
496 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
497 }
a61af66fc99e Initial load
duke
parents:
diff changeset
498 assert(!root_m->is_abstract(), "resolve_invoke promise");
a61af66fc99e Initial load
duke
parents:
diff changeset
499
a61af66fc99e Initial load
duke
parents:
diff changeset
500 // Make certain quick checks even if UseCHA is false.
a61af66fc99e Initial load
duke
parents:
diff changeset
501
a61af66fc99e Initial load
duke
parents:
diff changeset
502 // Is it private or final?
a61af66fc99e Initial load
duke
parents:
diff changeset
503 if (root_m->can_be_statically_bound()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
504 return root_m;
a61af66fc99e Initial load
duke
parents:
diff changeset
505 }
a61af66fc99e Initial load
duke
parents:
diff changeset
506
a61af66fc99e Initial load
duke
parents:
diff changeset
507 if (actual_recv->is_leaf_type() && actual_recv == root_m->holder()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
508 // Easy case. There is no other place to put a method, so don't bother
a61af66fc99e Initial load
duke
parents:
diff changeset
509 // to go through the VM_ENTRY_MARK and all the rest.
a61af66fc99e Initial load
duke
parents:
diff changeset
510 return root_m;
a61af66fc99e Initial load
duke
parents:
diff changeset
511 }
a61af66fc99e Initial load
duke
parents:
diff changeset
512
a61af66fc99e Initial load
duke
parents:
diff changeset
513 // Array methods (clone, hashCode, etc.) are always statically bound.
a61af66fc99e Initial load
duke
parents:
diff changeset
514 // If we were to see an array type here, we'd return root_m.
a61af66fc99e Initial load
duke
parents:
diff changeset
515 // However, this method processes only ciInstanceKlasses. (See 4962591.)
a61af66fc99e Initial load
duke
parents:
diff changeset
516 // The inline_native_clone intrinsic narrows Object to T[] properly,
a61af66fc99e Initial load
duke
parents:
diff changeset
517 // so there is no need to do the same job here.
a61af66fc99e Initial load
duke
parents:
diff changeset
518
a61af66fc99e Initial load
duke
parents:
diff changeset
519 if (!UseCHA) return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
520
a61af66fc99e Initial load
duke
parents:
diff changeset
521 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
522
a61af66fc99e Initial load
duke
parents:
diff changeset
523 methodHandle target;
a61af66fc99e Initial load
duke
parents:
diff changeset
524 {
a61af66fc99e Initial load
duke
parents:
diff changeset
525 MutexLocker locker(Compile_lock);
a61af66fc99e Initial load
duke
parents:
diff changeset
526 klassOop context = actual_recv->get_klassOop();
a61af66fc99e Initial load
duke
parents:
diff changeset
527 target = Dependencies::find_unique_concrete_method(context,
a61af66fc99e Initial load
duke
parents:
diff changeset
528 root_m->get_methodOop());
a61af66fc99e Initial load
duke
parents:
diff changeset
529 // %%% Should upgrade this ciMethod API to look for 1 or 2 concrete methods.
a61af66fc99e Initial load
duke
parents:
diff changeset
530 }
a61af66fc99e Initial load
duke
parents:
diff changeset
531
a61af66fc99e Initial load
duke
parents:
diff changeset
532 #ifndef PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
533 if (TraceDependencies && target() != NULL && target() != root_m->get_methodOop()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
534 tty->print("found a non-root unique target method");
a61af66fc99e Initial load
duke
parents:
diff changeset
535 tty->print_cr(" context = %s", instanceKlass::cast(actual_recv->get_klassOop())->external_name());
a61af66fc99e Initial load
duke
parents:
diff changeset
536 tty->print(" method = ");
a61af66fc99e Initial load
duke
parents:
diff changeset
537 target->print_short_name(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
538 tty->cr();
a61af66fc99e Initial load
duke
parents:
diff changeset
539 }
a61af66fc99e Initial load
duke
parents:
diff changeset
540 #endif //PRODUCT
a61af66fc99e Initial load
duke
parents:
diff changeset
541
a61af66fc99e Initial load
duke
parents:
diff changeset
542 if (target() == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
543 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
544 }
a61af66fc99e Initial load
duke
parents:
diff changeset
545 if (target() == root_m->get_methodOop()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
546 return root_m;
a61af66fc99e Initial load
duke
parents:
diff changeset
547 }
a61af66fc99e Initial load
duke
parents:
diff changeset
548 if (!root_m->is_public() &&
a61af66fc99e Initial load
duke
parents:
diff changeset
549 !root_m->is_protected()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
550 // If we are going to reason about inheritance, it's easiest
a61af66fc99e Initial load
duke
parents:
diff changeset
551 // if the method in question is public, protected, or private.
a61af66fc99e Initial load
duke
parents:
diff changeset
552 // If the answer is not root_m, it is conservatively correct
a61af66fc99e Initial load
duke
parents:
diff changeset
553 // to return NULL, even if the CHA encountered irrelevant
a61af66fc99e Initial load
duke
parents:
diff changeset
554 // methods in other packages.
a61af66fc99e Initial load
duke
parents:
diff changeset
555 // %%% TO DO: Work out logic for package-private methods
a61af66fc99e Initial load
duke
parents:
diff changeset
556 // with the same name but different vtable indexes.
a61af66fc99e Initial load
duke
parents:
diff changeset
557 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
558 }
a61af66fc99e Initial load
duke
parents:
diff changeset
559 return CURRENT_THREAD_ENV->get_object(target())->as_method();
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 // ciMethod::resolve_invoke
a61af66fc99e Initial load
duke
parents:
diff changeset
564 //
a61af66fc99e Initial load
duke
parents:
diff changeset
565 // Given a known receiver klass, find the target for the call.
a61af66fc99e Initial load
duke
parents:
diff changeset
566 // Return NULL if the call has no target or the target is abstract.
a61af66fc99e Initial load
duke
parents:
diff changeset
567 ciMethod* ciMethod::resolve_invoke(ciKlass* caller, ciKlass* exact_receiver) {
a61af66fc99e Initial load
duke
parents:
diff changeset
568 check_is_loaded();
a61af66fc99e Initial load
duke
parents:
diff changeset
569 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
570
a61af66fc99e Initial load
duke
parents:
diff changeset
571 KlassHandle caller_klass (THREAD, caller->get_klassOop());
a61af66fc99e Initial load
duke
parents:
diff changeset
572 KlassHandle h_recv (THREAD, exact_receiver->get_klassOop());
a61af66fc99e Initial load
duke
parents:
diff changeset
573 KlassHandle h_resolved (THREAD, holder()->get_klassOop());
a61af66fc99e Initial load
duke
parents:
diff changeset
574 symbolHandle h_name (THREAD, name()->get_symbolOop());
a61af66fc99e Initial load
duke
parents:
diff changeset
575 symbolHandle h_signature (THREAD, signature()->get_symbolOop());
a61af66fc99e Initial load
duke
parents:
diff changeset
576
a61af66fc99e Initial load
duke
parents:
diff changeset
577 methodHandle m;
a61af66fc99e Initial load
duke
parents:
diff changeset
578 // Only do exact lookup if receiver klass has been linked. Otherwise,
a61af66fc99e Initial load
duke
parents:
diff changeset
579 // the vtable has not been setup, and the LinkResolver will fail.
a61af66fc99e Initial load
duke
parents:
diff changeset
580 if (h_recv->oop_is_javaArray()
a61af66fc99e Initial load
duke
parents:
diff changeset
581 ||
a61af66fc99e Initial load
duke
parents:
diff changeset
582 instanceKlass::cast(h_recv())->is_linked() && !exact_receiver->is_interface()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
583 if (holder()->is_interface()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
584 m = LinkResolver::resolve_interface_call_or_null(h_recv, h_resolved, h_name, h_signature, caller_klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
585 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
586 m = LinkResolver::resolve_virtual_call_or_null(h_recv, h_resolved, h_name, h_signature, caller_klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
587 }
a61af66fc99e Initial load
duke
parents:
diff changeset
588 }
a61af66fc99e Initial load
duke
parents:
diff changeset
589
a61af66fc99e Initial load
duke
parents:
diff changeset
590 if (m.is_null()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
591 // Return NULL only if there was a problem with lookup (uninitialized class, etc.)
a61af66fc99e Initial load
duke
parents:
diff changeset
592 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
593 }
a61af66fc99e Initial load
duke
parents:
diff changeset
594
a61af66fc99e Initial load
duke
parents:
diff changeset
595 ciMethod* result = this;
a61af66fc99e Initial load
duke
parents:
diff changeset
596 if (m() != get_methodOop()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
597 result = CURRENT_THREAD_ENV->get_object(m())->as_method();
a61af66fc99e Initial load
duke
parents:
diff changeset
598 }
a61af66fc99e Initial load
duke
parents:
diff changeset
599
a61af66fc99e Initial load
duke
parents:
diff changeset
600 // Don't return abstract methods because they aren't
a61af66fc99e Initial load
duke
parents:
diff changeset
601 // optimizable or interesting.
a61af66fc99e Initial load
duke
parents:
diff changeset
602 if (result->is_abstract()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
603 return NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
604 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
605 return result;
a61af66fc99e Initial load
duke
parents:
diff changeset
606 }
a61af66fc99e Initial load
duke
parents:
diff changeset
607 }
a61af66fc99e Initial load
duke
parents:
diff changeset
608
a61af66fc99e Initial load
duke
parents:
diff changeset
609 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
610 // ciMethod::resolve_vtable_index
a61af66fc99e Initial load
duke
parents:
diff changeset
611 //
a61af66fc99e Initial load
duke
parents:
diff changeset
612 // Given a known receiver klass, find the vtable index for the call.
a61af66fc99e Initial load
duke
parents:
diff changeset
613 // Return methodOopDesc::invalid_vtable_index if the vtable_index is unknown.
a61af66fc99e Initial load
duke
parents:
diff changeset
614 int ciMethod::resolve_vtable_index(ciKlass* caller, ciKlass* receiver) {
a61af66fc99e Initial load
duke
parents:
diff changeset
615 check_is_loaded();
a61af66fc99e Initial load
duke
parents:
diff changeset
616
a61af66fc99e Initial load
duke
parents:
diff changeset
617 int vtable_index = methodOopDesc::invalid_vtable_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
618 // Only do lookup if receiver klass has been linked. Otherwise,
a61af66fc99e Initial load
duke
parents:
diff changeset
619 // the vtable has not been setup, and the LinkResolver will fail.
a61af66fc99e Initial load
duke
parents:
diff changeset
620 if (!receiver->is_interface()
a61af66fc99e Initial load
duke
parents:
diff changeset
621 && (!receiver->is_instance_klass() ||
a61af66fc99e Initial load
duke
parents:
diff changeset
622 receiver->as_instance_klass()->is_linked())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
623 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
624
a61af66fc99e Initial load
duke
parents:
diff changeset
625 KlassHandle caller_klass (THREAD, caller->get_klassOop());
a61af66fc99e Initial load
duke
parents:
diff changeset
626 KlassHandle h_recv (THREAD, receiver->get_klassOop());
a61af66fc99e Initial load
duke
parents:
diff changeset
627 symbolHandle h_name (THREAD, name()->get_symbolOop());
a61af66fc99e Initial load
duke
parents:
diff changeset
628 symbolHandle h_signature (THREAD, signature()->get_symbolOop());
a61af66fc99e Initial load
duke
parents:
diff changeset
629
a61af66fc99e Initial load
duke
parents:
diff changeset
630 vtable_index = LinkResolver::resolve_virtual_vtable_index(h_recv, h_recv, h_name, h_signature, caller_klass);
a61af66fc99e Initial load
duke
parents:
diff changeset
631 if (vtable_index == methodOopDesc::nonvirtual_vtable_index) {
a61af66fc99e Initial load
duke
parents:
diff changeset
632 // A statically bound method. Return "no such index".
a61af66fc99e Initial load
duke
parents:
diff changeset
633 vtable_index = methodOopDesc::invalid_vtable_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
634 }
a61af66fc99e Initial load
duke
parents:
diff changeset
635 }
a61af66fc99e Initial load
duke
parents:
diff changeset
636
a61af66fc99e Initial load
duke
parents:
diff changeset
637 return vtable_index;
a61af66fc99e Initial load
duke
parents:
diff changeset
638 }
a61af66fc99e Initial load
duke
parents:
diff changeset
639
a61af66fc99e Initial load
duke
parents:
diff changeset
640 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
641 // ciMethod::interpreter_call_site_count
a61af66fc99e Initial load
duke
parents:
diff changeset
642 int ciMethod::interpreter_call_site_count(int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
643 if (method_data() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
644 ResourceMark rm;
a61af66fc99e Initial load
duke
parents:
diff changeset
645 ciProfileData* data = method_data()->bci_to_data(bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
646 if (data != NULL && data->is_CounterData()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
647 return scale_count(data->as_CounterData()->count());
a61af66fc99e Initial load
duke
parents:
diff changeset
648 }
a61af66fc99e Initial load
duke
parents:
diff changeset
649 }
a61af66fc99e Initial load
duke
parents:
diff changeset
650 return -1; // unknown
a61af66fc99e Initial load
duke
parents:
diff changeset
651 }
a61af66fc99e Initial load
duke
parents:
diff changeset
652
a61af66fc99e Initial load
duke
parents:
diff changeset
653 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
654 // Adjust a CounterData count to be commensurate with
a61af66fc99e Initial load
duke
parents:
diff changeset
655 // interpreter_invocation_count. If the MDO exists for
a61af66fc99e Initial load
duke
parents:
diff changeset
656 // only 25% of the time the method exists, then the
a61af66fc99e Initial load
duke
parents:
diff changeset
657 // counts in the MDO should be scaled by 4X, so that
a61af66fc99e Initial load
duke
parents:
diff changeset
658 // they can be usefully and stably compared against the
a61af66fc99e Initial load
duke
parents:
diff changeset
659 // invocation counts in methods.
a61af66fc99e Initial load
duke
parents:
diff changeset
660 int ciMethod::scale_count(int count, float prof_factor) {
a61af66fc99e Initial load
duke
parents:
diff changeset
661 if (count > 0 && method_data() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
662 int current_mileage = method_data()->current_mileage();
a61af66fc99e Initial load
duke
parents:
diff changeset
663 int creation_mileage = method_data()->creation_mileage();
a61af66fc99e Initial load
duke
parents:
diff changeset
664 int counter_life = current_mileage - creation_mileage;
a61af66fc99e Initial load
duke
parents:
diff changeset
665 int method_life = interpreter_invocation_count();
a61af66fc99e Initial load
duke
parents:
diff changeset
666 // counter_life due to backedge_counter could be > method_life
a61af66fc99e Initial load
duke
parents:
diff changeset
667 if (counter_life > method_life)
a61af66fc99e Initial load
duke
parents:
diff changeset
668 counter_life = method_life;
a61af66fc99e Initial load
duke
parents:
diff changeset
669 if (0 < counter_life && counter_life <= method_life) {
a61af66fc99e Initial load
duke
parents:
diff changeset
670 count = (int)((double)count * prof_factor * method_life / counter_life + 0.5);
a61af66fc99e Initial load
duke
parents:
diff changeset
671 count = (count > 0) ? count : 1;
a61af66fc99e Initial load
duke
parents:
diff changeset
672 }
a61af66fc99e Initial load
duke
parents:
diff changeset
673 }
a61af66fc99e Initial load
duke
parents:
diff changeset
674 return count;
a61af66fc99e Initial load
duke
parents:
diff changeset
675 }
a61af66fc99e Initial load
duke
parents:
diff changeset
676
a61af66fc99e Initial load
duke
parents:
diff changeset
677 // ------------------------------------------------------------------
710
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
678 // invokedynamic support
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
679 //
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
680 bool ciMethod::is_method_handle_invoke() {
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
681 check_is_loaded();
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
682 bool flag = ((flags().as_int() & JVM_MH_INVOKE_BITS) == JVM_MH_INVOKE_BITS);
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
683 #ifdef ASSERT
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
684 {
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
685 VM_ENTRY_MARK;
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
686 bool flag2 = get_methodOop()->is_method_handle_invoke();
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
687 assert(flag == flag2, "consistent");
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
688 }
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
689 #endif //ASSERT
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
690 return flag;
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
691 }
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
692
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
693 ciInstance* ciMethod::method_handle_type() {
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
694 check_is_loaded();
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
695 VM_ENTRY_MARK;
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
696 oop mtype = get_methodOop()->method_handle_type();
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
697 return CURRENT_THREAD_ENV->get_object(mtype)->as_instance();
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
698 }
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
699
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
700
e5b0439ef4ae 6655638: dynamic languages need method handles
jrose
parents: 196
diff changeset
701 // ------------------------------------------------------------------
0
a61af66fc99e Initial load
duke
parents:
diff changeset
702 // ciMethod::build_method_data
a61af66fc99e Initial load
duke
parents:
diff changeset
703 //
a61af66fc99e Initial load
duke
parents:
diff changeset
704 // Generate new methodDataOop objects at compile time.
a61af66fc99e Initial load
duke
parents:
diff changeset
705 void ciMethod::build_method_data(methodHandle h_m) {
a61af66fc99e Initial load
duke
parents:
diff changeset
706 EXCEPTION_CONTEXT;
a61af66fc99e Initial load
duke
parents:
diff changeset
707 if (is_native() || is_abstract() || h_m()->is_accessor()) return;
a61af66fc99e Initial load
duke
parents:
diff changeset
708 if (h_m()->method_data() == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
709 methodOopDesc::build_interpreter_method_data(h_m, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
710 if (HAS_PENDING_EXCEPTION) {
a61af66fc99e Initial load
duke
parents:
diff changeset
711 CLEAR_PENDING_EXCEPTION;
a61af66fc99e Initial load
duke
parents:
diff changeset
712 }
a61af66fc99e Initial load
duke
parents:
diff changeset
713 }
a61af66fc99e Initial load
duke
parents:
diff changeset
714 if (h_m()->method_data() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
715 _method_data = CURRENT_ENV->get_object(h_m()->method_data())->as_method_data();
a61af66fc99e Initial load
duke
parents:
diff changeset
716 _method_data->load_data();
a61af66fc99e Initial load
duke
parents:
diff changeset
717 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
718 _method_data = CURRENT_ENV->get_empty_methodData();
a61af66fc99e Initial load
duke
parents:
diff changeset
719 }
a61af66fc99e Initial load
duke
parents:
diff changeset
720 }
a61af66fc99e Initial load
duke
parents:
diff changeset
721
a61af66fc99e Initial load
duke
parents:
diff changeset
722 // public, retroactive version
a61af66fc99e Initial load
duke
parents:
diff changeset
723 void ciMethod::build_method_data() {
a61af66fc99e Initial load
duke
parents:
diff changeset
724 if (_method_data == NULL || _method_data->is_empty()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
725 GUARDED_VM_ENTRY({
a61af66fc99e Initial load
duke
parents:
diff changeset
726 build_method_data(get_methodOop());
a61af66fc99e Initial load
duke
parents:
diff changeset
727 });
a61af66fc99e Initial load
duke
parents:
diff changeset
728 }
a61af66fc99e Initial load
duke
parents:
diff changeset
729 }
a61af66fc99e Initial load
duke
parents:
diff changeset
730
a61af66fc99e Initial load
duke
parents:
diff changeset
731
a61af66fc99e Initial load
duke
parents:
diff changeset
732 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
733 // ciMethod::method_data
a61af66fc99e Initial load
duke
parents:
diff changeset
734 //
a61af66fc99e Initial load
duke
parents:
diff changeset
735 ciMethodData* ciMethod::method_data() {
a61af66fc99e Initial load
duke
parents:
diff changeset
736 if (_method_data != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
737 return _method_data;
a61af66fc99e Initial load
duke
parents:
diff changeset
738 }
a61af66fc99e Initial load
duke
parents:
diff changeset
739 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
740 ciEnv* env = CURRENT_ENV;
a61af66fc99e Initial load
duke
parents:
diff changeset
741 Thread* my_thread = JavaThread::current();
a61af66fc99e Initial load
duke
parents:
diff changeset
742 methodHandle h_m(my_thread, get_methodOop());
a61af66fc99e Initial load
duke
parents:
diff changeset
743
a61af66fc99e Initial load
duke
parents:
diff changeset
744 if (Tier1UpdateMethodData && is_tier1_compile(env->comp_level())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
745 build_method_data(h_m);
a61af66fc99e Initial load
duke
parents:
diff changeset
746 }
a61af66fc99e Initial load
duke
parents:
diff changeset
747
a61af66fc99e Initial load
duke
parents:
diff changeset
748 if (h_m()->method_data() != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
749 _method_data = CURRENT_ENV->get_object(h_m()->method_data())->as_method_data();
a61af66fc99e Initial load
duke
parents:
diff changeset
750 _method_data->load_data();
a61af66fc99e Initial load
duke
parents:
diff changeset
751 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
752 _method_data = CURRENT_ENV->get_empty_methodData();
a61af66fc99e Initial load
duke
parents:
diff changeset
753 }
a61af66fc99e Initial load
duke
parents:
diff changeset
754 return _method_data;
a61af66fc99e Initial load
duke
parents:
diff changeset
755
a61af66fc99e Initial load
duke
parents:
diff changeset
756 }
a61af66fc99e Initial load
duke
parents:
diff changeset
757
a61af66fc99e Initial load
duke
parents:
diff changeset
758
a61af66fc99e Initial load
duke
parents:
diff changeset
759 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
760 // ciMethod::will_link
a61af66fc99e Initial load
duke
parents:
diff changeset
761 //
a61af66fc99e Initial load
duke
parents:
diff changeset
762 // Will this method link in a specific calling context?
a61af66fc99e Initial load
duke
parents:
diff changeset
763 bool ciMethod::will_link(ciKlass* accessing_klass,
a61af66fc99e Initial load
duke
parents:
diff changeset
764 ciKlass* declared_method_holder,
a61af66fc99e Initial load
duke
parents:
diff changeset
765 Bytecodes::Code bc) {
a61af66fc99e Initial load
duke
parents:
diff changeset
766 if (!is_loaded()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
767 // Method lookup failed.
a61af66fc99e Initial load
duke
parents:
diff changeset
768 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
769 }
a61af66fc99e Initial load
duke
parents:
diff changeset
770
a61af66fc99e Initial load
duke
parents:
diff changeset
771 // The link checks have been front-loaded into the get_method
a61af66fc99e Initial load
duke
parents:
diff changeset
772 // call. This method (ciMethod::will_link()) will be removed
a61af66fc99e Initial load
duke
parents:
diff changeset
773 // in the future.
a61af66fc99e Initial load
duke
parents:
diff changeset
774
a61af66fc99e Initial load
duke
parents:
diff changeset
775 return true;
a61af66fc99e Initial load
duke
parents:
diff changeset
776 }
a61af66fc99e Initial load
duke
parents:
diff changeset
777
a61af66fc99e Initial load
duke
parents:
diff changeset
778 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
779 // ciMethod::should_exclude
a61af66fc99e Initial load
duke
parents:
diff changeset
780 //
a61af66fc99e Initial load
duke
parents:
diff changeset
781 // Should this method be excluded from compilation?
a61af66fc99e Initial load
duke
parents:
diff changeset
782 bool ciMethod::should_exclude() {
a61af66fc99e Initial load
duke
parents:
diff changeset
783 check_is_loaded();
a61af66fc99e Initial load
duke
parents:
diff changeset
784 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
785 methodHandle mh(THREAD, get_methodOop());
a61af66fc99e Initial load
duke
parents:
diff changeset
786 bool ignore;
a61af66fc99e Initial load
duke
parents:
diff changeset
787 return CompilerOracle::should_exclude(mh, ignore);
a61af66fc99e Initial load
duke
parents:
diff changeset
788 }
a61af66fc99e Initial load
duke
parents:
diff changeset
789
a61af66fc99e Initial load
duke
parents:
diff changeset
790 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
791 // ciMethod::should_inline
a61af66fc99e Initial load
duke
parents:
diff changeset
792 //
a61af66fc99e Initial load
duke
parents:
diff changeset
793 // Should this method be inlined during compilation?
a61af66fc99e Initial load
duke
parents:
diff changeset
794 bool ciMethod::should_inline() {
a61af66fc99e Initial load
duke
parents:
diff changeset
795 check_is_loaded();
a61af66fc99e Initial load
duke
parents:
diff changeset
796 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
797 methodHandle mh(THREAD, get_methodOop());
a61af66fc99e Initial load
duke
parents:
diff changeset
798 return CompilerOracle::should_inline(mh);
a61af66fc99e Initial load
duke
parents:
diff changeset
799 }
a61af66fc99e Initial load
duke
parents:
diff changeset
800
a61af66fc99e Initial load
duke
parents:
diff changeset
801 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
802 // ciMethod::should_not_inline
a61af66fc99e Initial load
duke
parents:
diff changeset
803 //
a61af66fc99e Initial load
duke
parents:
diff changeset
804 // Should this method be disallowed from inlining during compilation?
a61af66fc99e Initial load
duke
parents:
diff changeset
805 bool ciMethod::should_not_inline() {
a61af66fc99e Initial load
duke
parents:
diff changeset
806 check_is_loaded();
a61af66fc99e Initial load
duke
parents:
diff changeset
807 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
808 methodHandle mh(THREAD, get_methodOop());
a61af66fc99e Initial load
duke
parents:
diff changeset
809 return CompilerOracle::should_not_inline(mh);
a61af66fc99e Initial load
duke
parents:
diff changeset
810 }
a61af66fc99e Initial load
duke
parents:
diff changeset
811
a61af66fc99e Initial load
duke
parents:
diff changeset
812 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
813 // ciMethod::should_print_assembly
a61af66fc99e Initial load
duke
parents:
diff changeset
814 //
a61af66fc99e Initial load
duke
parents:
diff changeset
815 // Should the compiler print the generated code for this method?
a61af66fc99e Initial load
duke
parents:
diff changeset
816 bool ciMethod::should_print_assembly() {
a61af66fc99e Initial load
duke
parents:
diff changeset
817 check_is_loaded();
a61af66fc99e Initial load
duke
parents:
diff changeset
818 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
819 methodHandle mh(THREAD, get_methodOop());
a61af66fc99e Initial load
duke
parents:
diff changeset
820 return CompilerOracle::should_print(mh);
a61af66fc99e Initial load
duke
parents:
diff changeset
821 }
a61af66fc99e Initial load
duke
parents:
diff changeset
822
a61af66fc99e Initial load
duke
parents:
diff changeset
823 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
824 // ciMethod::break_at_execute
a61af66fc99e Initial load
duke
parents:
diff changeset
825 //
a61af66fc99e Initial load
duke
parents:
diff changeset
826 // Should the compiler insert a breakpoint into the generated code
a61af66fc99e Initial load
duke
parents:
diff changeset
827 // method?
a61af66fc99e Initial load
duke
parents:
diff changeset
828 bool ciMethod::break_at_execute() {
a61af66fc99e Initial load
duke
parents:
diff changeset
829 check_is_loaded();
a61af66fc99e Initial load
duke
parents:
diff changeset
830 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
831 methodHandle mh(THREAD, get_methodOop());
a61af66fc99e Initial load
duke
parents:
diff changeset
832 return CompilerOracle::should_break_at(mh);
a61af66fc99e Initial load
duke
parents:
diff changeset
833 }
a61af66fc99e Initial load
duke
parents:
diff changeset
834
a61af66fc99e Initial load
duke
parents:
diff changeset
835 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
836 // ciMethod::has_option
a61af66fc99e Initial load
duke
parents:
diff changeset
837 //
a61af66fc99e Initial load
duke
parents:
diff changeset
838 bool ciMethod::has_option(const char* option) {
a61af66fc99e Initial load
duke
parents:
diff changeset
839 check_is_loaded();
a61af66fc99e Initial load
duke
parents:
diff changeset
840 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
841 methodHandle mh(THREAD, get_methodOop());
a61af66fc99e Initial load
duke
parents:
diff changeset
842 return CompilerOracle::has_option_string(mh, option);
a61af66fc99e Initial load
duke
parents:
diff changeset
843 }
a61af66fc99e Initial load
duke
parents:
diff changeset
844
a61af66fc99e Initial load
duke
parents:
diff changeset
845 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
846 // ciMethod::can_be_compiled
a61af66fc99e Initial load
duke
parents:
diff changeset
847 //
a61af66fc99e Initial load
duke
parents:
diff changeset
848 // Have previous compilations of this method succeeded?
a61af66fc99e Initial load
duke
parents:
diff changeset
849 bool ciMethod::can_be_compiled() {
a61af66fc99e Initial load
duke
parents:
diff changeset
850 check_is_loaded();
a61af66fc99e Initial load
duke
parents:
diff changeset
851 return _is_compilable;
a61af66fc99e Initial load
duke
parents:
diff changeset
852 }
a61af66fc99e Initial load
duke
parents:
diff changeset
853
a61af66fc99e Initial load
duke
parents:
diff changeset
854 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
855 // ciMethod::set_not_compilable
a61af66fc99e Initial load
duke
parents:
diff changeset
856 //
a61af66fc99e Initial load
duke
parents:
diff changeset
857 // Tell the VM that this method cannot be compiled at all.
a61af66fc99e Initial load
duke
parents:
diff changeset
858 void ciMethod::set_not_compilable() {
a61af66fc99e Initial load
duke
parents:
diff changeset
859 check_is_loaded();
a61af66fc99e Initial load
duke
parents:
diff changeset
860 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
861 _is_compilable = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
862 get_methodOop()->set_not_compilable();
a61af66fc99e Initial load
duke
parents:
diff changeset
863 }
a61af66fc99e Initial load
duke
parents:
diff changeset
864
a61af66fc99e Initial load
duke
parents:
diff changeset
865 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
866 // ciMethod::can_be_osr_compiled
a61af66fc99e Initial load
duke
parents:
diff changeset
867 //
a61af66fc99e Initial load
duke
parents:
diff changeset
868 // Have previous compilations of this method succeeded?
a61af66fc99e Initial load
duke
parents:
diff changeset
869 //
a61af66fc99e Initial load
duke
parents:
diff changeset
870 // Implementation note: the VM does not currently keep track
a61af66fc99e Initial load
duke
parents:
diff changeset
871 // of failed OSR compilations per bci. The entry_bci parameter
a61af66fc99e Initial load
duke
parents:
diff changeset
872 // is currently unused.
a61af66fc99e Initial load
duke
parents:
diff changeset
873 bool ciMethod::can_be_osr_compiled(int entry_bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
874 check_is_loaded();
a61af66fc99e Initial load
duke
parents:
diff changeset
875 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
876 return !get_methodOop()->access_flags().is_not_osr_compilable();
a61af66fc99e Initial load
duke
parents:
diff changeset
877 }
a61af66fc99e Initial load
duke
parents:
diff changeset
878
a61af66fc99e Initial load
duke
parents:
diff changeset
879 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
880 // ciMethod::has_compiled_code
a61af66fc99e Initial load
duke
parents:
diff changeset
881 bool ciMethod::has_compiled_code() {
a61af66fc99e Initial load
duke
parents:
diff changeset
882 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
883 return get_methodOop()->code() != NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
884 }
a61af66fc99e Initial load
duke
parents:
diff changeset
885
a61af66fc99e Initial load
duke
parents:
diff changeset
886 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
887 // ciMethod::instructions_size
a61af66fc99e Initial load
duke
parents:
diff changeset
888 // This is a rough metric for "fat" methods, compared
a61af66fc99e Initial load
duke
parents:
diff changeset
889 // before inlining with InlineSmallCode.
a61af66fc99e Initial load
duke
parents:
diff changeset
890 // The CodeBlob::instructions_size accessor includes
a61af66fc99e Initial load
duke
parents:
diff changeset
891 // junk like exception handler, stubs, and constant table,
a61af66fc99e Initial load
duke
parents:
diff changeset
892 // which are not highly relevant to an inlined method.
a61af66fc99e Initial load
duke
parents:
diff changeset
893 // So we use the more specific accessor nmethod::code_size.
a61af66fc99e Initial load
duke
parents:
diff changeset
894 int ciMethod::instructions_size() {
a61af66fc99e Initial load
duke
parents:
diff changeset
895 GUARDED_VM_ENTRY(
a61af66fc99e Initial load
duke
parents:
diff changeset
896 nmethod* code = get_methodOop()->code();
a61af66fc99e Initial load
duke
parents:
diff changeset
897 // if there's no compiled code or the code was produced by the
a61af66fc99e Initial load
duke
parents:
diff changeset
898 // tier1 profiler return 0 for the code size. This should
a61af66fc99e Initial load
duke
parents:
diff changeset
899 // probably be based on the compilation level of the nmethod but
a61af66fc99e Initial load
duke
parents:
diff changeset
900 // that currently isn't properly recorded.
a61af66fc99e Initial load
duke
parents:
diff changeset
901 if (code == NULL ||
a61af66fc99e Initial load
duke
parents:
diff changeset
902 (TieredCompilation && code->compiler() != NULL && code->compiler()->is_c1())) {
a61af66fc99e Initial load
duke
parents:
diff changeset
903 return 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
904 }
182
44abbb0d4c18 6709093: Compressed Oops: reduce size of compiled methods
kvn
parents: 27
diff changeset
905 return code->code_end() - code->verified_entry_point();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
906 )
a61af66fc99e Initial load
duke
parents:
diff changeset
907 }
a61af66fc99e Initial load
duke
parents:
diff changeset
908
a61af66fc99e Initial load
duke
parents:
diff changeset
909 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
910 // ciMethod::log_nmethod_identity
a61af66fc99e Initial load
duke
parents:
diff changeset
911 void ciMethod::log_nmethod_identity(xmlStream* log) {
a61af66fc99e Initial load
duke
parents:
diff changeset
912 GUARDED_VM_ENTRY(
a61af66fc99e Initial load
duke
parents:
diff changeset
913 nmethod* code = get_methodOop()->code();
a61af66fc99e Initial load
duke
parents:
diff changeset
914 if (code != NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
915 code->log_identity(log);
a61af66fc99e Initial load
duke
parents:
diff changeset
916 }
a61af66fc99e Initial load
duke
parents:
diff changeset
917 )
a61af66fc99e Initial load
duke
parents:
diff changeset
918 }
a61af66fc99e Initial load
duke
parents:
diff changeset
919
a61af66fc99e Initial load
duke
parents:
diff changeset
920 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
921 // ciMethod::is_not_reached
a61af66fc99e Initial load
duke
parents:
diff changeset
922 bool ciMethod::is_not_reached(int bci) {
a61af66fc99e Initial load
duke
parents:
diff changeset
923 check_is_loaded();
a61af66fc99e Initial load
duke
parents:
diff changeset
924 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
925 return Interpreter::is_not_reached(
a61af66fc99e Initial load
duke
parents:
diff changeset
926 methodHandle(THREAD, get_methodOop()), bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
927 }
a61af66fc99e Initial load
duke
parents:
diff changeset
928
a61af66fc99e Initial load
duke
parents:
diff changeset
929 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
930 // ciMethod::was_never_executed
a61af66fc99e Initial load
duke
parents:
diff changeset
931 bool ciMethod::was_executed_more_than(int times) {
a61af66fc99e Initial load
duke
parents:
diff changeset
932 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
933 return get_methodOop()->was_executed_more_than(times);
a61af66fc99e Initial load
duke
parents:
diff changeset
934 }
a61af66fc99e Initial load
duke
parents:
diff changeset
935
a61af66fc99e Initial load
duke
parents:
diff changeset
936 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
937 // ciMethod::has_unloaded_classes_in_signature
a61af66fc99e Initial load
duke
parents:
diff changeset
938 bool ciMethod::has_unloaded_classes_in_signature() {
a61af66fc99e Initial load
duke
parents:
diff changeset
939 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
940 {
a61af66fc99e Initial load
duke
parents:
diff changeset
941 EXCEPTION_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
942 methodHandle m(THREAD, get_methodOop());
a61af66fc99e Initial load
duke
parents:
diff changeset
943 bool has_unloaded = methodOopDesc::has_unloaded_classes_in_signature(m, (JavaThread *)THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
944 if( HAS_PENDING_EXCEPTION ) {
a61af66fc99e Initial load
duke
parents:
diff changeset
945 CLEAR_PENDING_EXCEPTION;
a61af66fc99e Initial load
duke
parents:
diff changeset
946 return true; // Declare that we may have unloaded classes
a61af66fc99e Initial load
duke
parents:
diff changeset
947 }
a61af66fc99e Initial load
duke
parents:
diff changeset
948 return has_unloaded;
a61af66fc99e Initial load
duke
parents:
diff changeset
949 }
a61af66fc99e Initial load
duke
parents:
diff changeset
950 }
a61af66fc99e Initial load
duke
parents:
diff changeset
951
a61af66fc99e Initial load
duke
parents:
diff changeset
952 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
953 // ciMethod::is_klass_loaded
a61af66fc99e Initial load
duke
parents:
diff changeset
954 bool ciMethod::is_klass_loaded(int refinfo_index, bool must_be_resolved) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
955 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
956 return get_methodOop()->is_klass_loaded(refinfo_index, must_be_resolved);
a61af66fc99e Initial load
duke
parents:
diff changeset
957 }
a61af66fc99e Initial load
duke
parents:
diff changeset
958
a61af66fc99e Initial load
duke
parents:
diff changeset
959 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
960 // ciMethod::check_call
a61af66fc99e Initial load
duke
parents:
diff changeset
961 bool ciMethod::check_call(int refinfo_index, bool is_static) const {
a61af66fc99e Initial load
duke
parents:
diff changeset
962 VM_ENTRY_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
963 {
a61af66fc99e Initial load
duke
parents:
diff changeset
964 EXCEPTION_MARK;
a61af66fc99e Initial load
duke
parents:
diff changeset
965 HandleMark hm(THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
966 constantPoolHandle pool (THREAD, get_methodOop()->constants());
a61af66fc99e Initial load
duke
parents:
diff changeset
967 methodHandle spec_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
968 KlassHandle spec_klass;
a61af66fc99e Initial load
duke
parents:
diff changeset
969 LinkResolver::resolve_method(spec_method, spec_klass, pool, refinfo_index, THREAD);
a61af66fc99e Initial load
duke
parents:
diff changeset
970 if (HAS_PENDING_EXCEPTION) {
a61af66fc99e Initial load
duke
parents:
diff changeset
971 CLEAR_PENDING_EXCEPTION;
a61af66fc99e Initial load
duke
parents:
diff changeset
972 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
973 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
974 return (spec_method->is_static() == is_static);
a61af66fc99e Initial load
duke
parents:
diff changeset
975 }
a61af66fc99e Initial load
duke
parents:
diff changeset
976 }
a61af66fc99e Initial load
duke
parents:
diff changeset
977 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
978 }
a61af66fc99e Initial load
duke
parents:
diff changeset
979
a61af66fc99e Initial load
duke
parents:
diff changeset
980 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
981 // ciMethod::print_codes
a61af66fc99e Initial load
duke
parents:
diff changeset
982 //
a61af66fc99e Initial load
duke
parents:
diff changeset
983 // Print the bytecodes for this method.
a61af66fc99e Initial load
duke
parents:
diff changeset
984 void ciMethod::print_codes_on(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
985 check_is_loaded();
a61af66fc99e Initial load
duke
parents:
diff changeset
986 GUARDED_VM_ENTRY(get_methodOop()->print_codes_on(st);)
a61af66fc99e Initial load
duke
parents:
diff changeset
987 }
a61af66fc99e Initial load
duke
parents:
diff changeset
988
a61af66fc99e Initial load
duke
parents:
diff changeset
989
a61af66fc99e Initial load
duke
parents:
diff changeset
990 #define FETCH_FLAG_FROM_VM(flag_accessor) { \
a61af66fc99e Initial load
duke
parents:
diff changeset
991 check_is_loaded(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
992 VM_ENTRY_MARK; \
a61af66fc99e Initial load
duke
parents:
diff changeset
993 return get_methodOop()->flag_accessor(); \
a61af66fc99e Initial load
duke
parents:
diff changeset
994 }
a61af66fc99e Initial load
duke
parents:
diff changeset
995
a61af66fc99e Initial load
duke
parents:
diff changeset
996 bool ciMethod::is_empty_method() const { FETCH_FLAG_FROM_VM(is_empty_method); }
a61af66fc99e Initial load
duke
parents:
diff changeset
997 bool ciMethod::is_vanilla_constructor() const { FETCH_FLAG_FROM_VM(is_vanilla_constructor); }
a61af66fc99e Initial load
duke
parents:
diff changeset
998 bool ciMethod::has_loops () const { FETCH_FLAG_FROM_VM(has_loops); }
a61af66fc99e Initial load
duke
parents:
diff changeset
999 bool ciMethod::has_jsrs () const { FETCH_FLAG_FROM_VM(has_jsrs); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1000 bool ciMethod::is_accessor () const { FETCH_FLAG_FROM_VM(is_accessor); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1001 bool ciMethod::is_initializer () const { FETCH_FLAG_FROM_VM(is_initializer); }
a61af66fc99e Initial load
duke
parents:
diff changeset
1002
a61af66fc99e Initial load
duke
parents:
diff changeset
1003 BCEscapeAnalyzer *ciMethod::get_bcea() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1004 if (_bcea == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1005 _bcea = new (CURRENT_ENV->arena()) BCEscapeAnalyzer(this, NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
1006 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1007 return _bcea;
a61af66fc99e Initial load
duke
parents:
diff changeset
1008 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1009
a61af66fc99e Initial load
duke
parents:
diff changeset
1010 ciMethodBlocks *ciMethod::get_method_blocks() {
a61af66fc99e Initial load
duke
parents:
diff changeset
1011 Arena *arena = CURRENT_ENV->arena();
a61af66fc99e Initial load
duke
parents:
diff changeset
1012 if (_method_blocks == NULL) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1013 _method_blocks = new (arena) ciMethodBlocks(arena, this);
a61af66fc99e Initial load
duke
parents:
diff changeset
1014 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1015 return _method_blocks;
a61af66fc99e Initial load
duke
parents:
diff changeset
1016 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1017
a61af66fc99e Initial load
duke
parents:
diff changeset
1018 #undef FETCH_FLAG_FROM_VM
a61af66fc99e Initial load
duke
parents:
diff changeset
1019
a61af66fc99e Initial load
duke
parents:
diff changeset
1020
a61af66fc99e Initial load
duke
parents:
diff changeset
1021 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1022 // ciMethod::print_codes
a61af66fc99e Initial load
duke
parents:
diff changeset
1023 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1024 // Print a range of the bytecodes for this method.
a61af66fc99e Initial load
duke
parents:
diff changeset
1025 void ciMethod::print_codes_on(int from, int to, outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1026 check_is_loaded();
a61af66fc99e Initial load
duke
parents:
diff changeset
1027 GUARDED_VM_ENTRY(get_methodOop()->print_codes_on(from, to, st);)
a61af66fc99e Initial load
duke
parents:
diff changeset
1028 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1029
a61af66fc99e Initial load
duke
parents:
diff changeset
1030 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1031 // ciMethod::print_name
a61af66fc99e Initial load
duke
parents:
diff changeset
1032 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1033 // Print the name of this method, including signature and some flags.
a61af66fc99e Initial load
duke
parents:
diff changeset
1034 void ciMethod::print_name(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1035 check_is_loaded();
a61af66fc99e Initial load
duke
parents:
diff changeset
1036 GUARDED_VM_ENTRY(get_methodOop()->print_name(st);)
a61af66fc99e Initial load
duke
parents:
diff changeset
1037 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1038
a61af66fc99e Initial load
duke
parents:
diff changeset
1039 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1040 // ciMethod::print_short_name
a61af66fc99e Initial load
duke
parents:
diff changeset
1041 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1042 // Print the name of this method, without signature.
a61af66fc99e Initial load
duke
parents:
diff changeset
1043 void ciMethod::print_short_name(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1044 check_is_loaded();
a61af66fc99e Initial load
duke
parents:
diff changeset
1045 GUARDED_VM_ENTRY(get_methodOop()->print_short_name(st);)
a61af66fc99e Initial load
duke
parents:
diff changeset
1046 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1047
a61af66fc99e Initial load
duke
parents:
diff changeset
1048 // ------------------------------------------------------------------
a61af66fc99e Initial load
duke
parents:
diff changeset
1049 // ciMethod::print_impl
a61af66fc99e Initial load
duke
parents:
diff changeset
1050 //
a61af66fc99e Initial load
duke
parents:
diff changeset
1051 // Implementation of the print method.
a61af66fc99e Initial load
duke
parents:
diff changeset
1052 void ciMethod::print_impl(outputStream* st) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1053 ciObject::print_impl(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1054 st->print(" name=");
a61af66fc99e Initial load
duke
parents:
diff changeset
1055 name()->print_symbol_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1056 st->print(" holder=");
a61af66fc99e Initial load
duke
parents:
diff changeset
1057 holder()->print_name_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1058 st->print(" signature=");
a61af66fc99e Initial load
duke
parents:
diff changeset
1059 signature()->as_symbol()->print_symbol_on(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1060 if (is_loaded()) {
a61af66fc99e Initial load
duke
parents:
diff changeset
1061 st->print(" loaded=true flags=");
a61af66fc99e Initial load
duke
parents:
diff changeset
1062 flags().print_member_flags(st);
a61af66fc99e Initial load
duke
parents:
diff changeset
1063 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
1064 st->print(" loaded=false");
a61af66fc99e Initial load
duke
parents:
diff changeset
1065 }
a61af66fc99e Initial load
duke
parents:
diff changeset
1066 }