1 /*
2 * Copyright (c) 1999, 2024, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 *
23 */
24
25 #ifndef SHARE_CI_CIMETHOD_HPP
26 #define SHARE_CI_CIMETHOD_HPP
27
28 #include "ci/ciFlags.hpp"
29 #include "ci/ciInstanceKlass.hpp"
30 #include "ci/ciObject.hpp"
31 #include "ci/ciSignature.hpp"
32 #include "classfile/vmIntrinsics.hpp"
33 #include "compiler/methodLiveness.hpp"
34 #include "oops/method.hpp"
35 #include "runtime/handles.hpp"
36 #include "utilities/bitMap.hpp"
37 #include "utilities/vmEnums.hpp"
38
39 class ciMethodBlocks;
40 class MethodLiveness;
41 class Arena;
42 class BCEscapeAnalyzer;
43 class InlineTree;
44 class SigEntry;
45 class xmlStream;
46
47 // Whether profiling found an oop to be always, never or sometimes
48 // null
49 enum ProfilePtrKind {
50 ProfileUnknownNull,
51 ProfileAlwaysNull,
52 ProfileNeverNull,
53 ProfileMaybeNull
54 };
55
56 // ciMethod
57 //
58 // This class represents a Method* in the HotSpot virtual
59 // machine.
60 class ciMethod : public ciMetadata {
61 friend class CompileBroker;
62 CI_PACKAGE_ACCESS
63 friend class ciEnv;
64 friend class ciExceptionHandlerStream;
65 friend class ciBytecodeStream;
66 friend class ciMethodHandle;
67 friend class ciReplay;
68 friend class InlineTree;
69
70 private:
71 // General method information.
72 ciFlags _flags;
73 ciSymbol* _name;
74 ciInstanceKlass* _holder;
75 ciSignature* _signature;
76 ciMethodData* _method_data;
77 ciMethodBlocks* _method_blocks;
78
79 // Code attributes.
80 int _code_size;
81 int _max_stack;
82 int _max_locals;
83 vmIntrinsicID _intrinsic_id;
84 int _handler_count;
85 int _interpreter_invocation_count;
86 int _interpreter_throwout_count;
87 int _inline_instructions_size;
88 int _size_of_parameters;
89
90 bool _uses_monitors;
91 bool _balanced_monitors;
92 bool _is_c1_compilable;
93 bool _is_c2_compilable;
94 bool _can_be_parsed;
95 bool _can_be_statically_bound;
96 bool _can_omit_stack_trace;
97 bool _has_reserved_stack_access;
98 bool _is_overpass;
99
100 // Lazy fields, filled in on demand
101 address _code;
102 ciExceptionHandler** _exception_handlers;
103
104 // Optional liveness analyzer.
105 MethodLiveness* _liveness;
106 #if defined(COMPILER2)
107 ciTypeFlow* _flow;
108 BCEscapeAnalyzer* _bcea;
109 #endif
110
111 ciMethod(const methodHandle& h_m, ciInstanceKlass* holder);
112 ciMethod(ciInstanceKlass* holder, ciSymbol* name, ciSymbol* signature, ciInstanceKlass* accessor);
113
114 oop loader() const { return _holder->loader(); }
115
116 const char* type_string() { return "ciMethod"; }
117
118 void print_impl(outputStream* st);
119
120 void load_code();
121
122 bool ensure_method_data(const methodHandle& h_m);
123
124 void code_at_put(int bci, Bytecodes::Code code) {
125 Bytecodes::check(code);
126 assert(0 <= bci && bci < code_size(), "valid bci");
127 address bcp = _code + bci;
128 *bcp = code;
129 }
130
131 // Check bytecode and profile data collected are compatible
132 void assert_virtual_call_type_ok(int bci);
133 void assert_call_type_ok(int bci);
134
135 // Check and update the profile counter in case of overflow
136 static int check_overflow(int c, Bytecodes::Code code);
137
138 public:
139 void check_is_loaded() const { assert(is_loaded(), "not loaded"); }
140
141 // Basic method information.
142 ciFlags flags() const { check_is_loaded(); return _flags; }
143 ciSymbol* name() const { return _name; }
144 ciInstanceKlass* holder() const { return _holder; }
145 ciMethodData* method_data();
146 ciMethodData* method_data_or_null();
147
148 // Signature information.
149 ciSignature* signature() const { return _signature; }
150 ciType* return_type() const { return _signature->return_type(); }
151 int arg_size_no_receiver() const { return _signature->size(); }
152 // Can only be used on loaded ciMethods
153 int arg_size() const {
154 check_is_loaded();
155 return _signature->size() + (_flags.is_static() ? 0 : 1);
156 }
157 // Report the number of elements on stack when invoking the current method.
158 // If the method is loaded, arg_size() gives precise information about the
159 // number of stack elements (using the method's signature and its flags).
160 // However, if the method is not loaded, the number of stack elements must
161 // be determined differently, as the method's flags are not yet available.
162 // The invoke_arg_size() method assumes in that case that all bytecodes except
163 // invokestatic and invokedynamic have a receiver that is also pushed onto the
164 // stack by the caller of the current method.
165 int invoke_arg_size(Bytecodes::Code code) const {
166 if (is_loaded()) {
167 return arg_size();
168 } else {
169 int arg_size = _signature->size();
170 if (code != Bytecodes::_invokestatic &&
171 code != Bytecodes::_invokedynamic) {
172 arg_size++;
173 }
174 return arg_size;
175 }
176 }
177
178 Method* get_Method() const {
179 Method* m = (Method*)_metadata;
180 assert(m != nullptr, "illegal use of unloaded method");
181 return m;
182 }
183
184 // Method code and related information.
185 address code() { if (_code == nullptr) load_code(); return _code; }
186 int code_size() const { check_is_loaded(); return _code_size; }
187 int max_stack() const { check_is_loaded(); return _max_stack; }
188 int max_locals() const { check_is_loaded(); return _max_locals; }
189 vmIntrinsicID intrinsic_id() const { check_is_loaded(); return _intrinsic_id; }
190 bool has_exception_handlers() const { check_is_loaded(); return _handler_count > 0; }
191 int exception_table_length() const { check_is_loaded(); return _handler_count; }
192 int interpreter_invocation_count() const { check_is_loaded(); return _interpreter_invocation_count; }
193 int interpreter_throwout_count() const { check_is_loaded(); return _interpreter_throwout_count; }
194 int size_of_parameters() const { check_is_loaded(); return _size_of_parameters; }
195
196 // Code size for inlining decisions.
197 int code_size_for_inlining();
198
199 bool caller_sensitive() const { return get_Method()->caller_sensitive(); }
200 bool force_inline() const { return get_Method()->force_inline(); }
201 bool dont_inline() const { return get_Method()->dont_inline(); }
202 bool intrinsic_candidate() const { return get_Method()->intrinsic_candidate(); }
203 bool is_class_initializer() const { return get_Method()->is_class_initializer(); }
204 bool changes_current_thread() const { return get_Method()->changes_current_thread(); }
205 bool deprecated() const { return is_loaded() && get_Method()->deprecated(); }
206
207 bool check_intrinsic_candidate() const {
208 if (intrinsic_id() == vmIntrinsics::_blackhole) {
209 // This is the intrinsic without an associated method, so no intrinsic_candidate
210 // flag is set. The intrinsic is still correct.
211 return true;
212 }
213 return (CheckIntrinsics ? intrinsic_candidate() : true);
214 }
215
216 int highest_osr_comp_level();
217
218 Bytecodes::Code java_code_at_bci(int bci) {
219 address bcp = code() + bci;
220 return Bytecodes::java_code_at(nullptr, bcp);
221 }
222 Bytecodes::Code raw_code_at_bci(int bci) {
223 address bcp = code() + bci;
224 return Bytecodes::code_at(nullptr, bcp);
225 }
226 BCEscapeAnalyzer *get_bcea();
227 ciMethodBlocks *get_method_blocks();
228
229 bool has_linenumber_table() const; // length unknown until decompression
230
231 int line_number_from_bci(int bci) const;
232
233 // Runtime information.
234 int vtable_index();
235
236 // Analysis and profiling.
237 //
238 // Usage note: liveness_at_bci and init_vars should be wrapped in ResourceMarks.
239 bool has_monitor_bytecodes() const { return _uses_monitors; }
240 bool has_balanced_monitors();
241
242 // Returns a bitmap indicating which locals are required to be
243 // maintained as live for deopt. raw_liveness_at_bci is always the
244 // direct output of the liveness computation while liveness_at_bci
245 // may mark all locals as live to improve support for debugging Java
246 // code by maintaining the state of as many locals as possible.
247 MethodLivenessResult raw_liveness_at_bci(int bci);
248 MethodLivenessResult liveness_at_bci(int bci);
249
250 // Get the interpreters viewpoint on oop liveness. MethodLiveness is
251 // conservative in the sense that it may consider locals to be live which
252 // cannot be live, like in the case where a local could contain an oop or
253 // a primitive along different paths. In that case the local must be
254 // dead when those paths merge. Since the interpreter's viewpoint is
255 // used when gc'ing an interpreter frame we need to use its viewpoint
256 // during OSR when loading the locals.
257
258 ResourceBitMap live_local_oops_at_bci(int bci);
259
260 bool needs_clinit_barrier() const;
261
262 #ifdef COMPILER1
263 const BitMap& bci_block_start();
264 #endif
265
266 ciTypeFlow* get_flow_analysis();
267 ciTypeFlow* get_osr_flow_analysis(int osr_bci); // alternate entry point
268 ciCallProfile call_profile_at_bci(int bci);
269
270 // Does type profiling provide any useful information at this point?
271 bool argument_profiled_type(int bci, int i, ciKlass*& type, ProfilePtrKind& ptr_kind);
272 bool parameter_profiled_type(int i, ciKlass*& type, ProfilePtrKind& ptr_kind);
273 bool return_profiled_type(int bci, ciKlass*& type, ProfilePtrKind& ptr_kind);
274 bool array_access_profiled_type(int bci, ciKlass*& array_type, ciKlass*& element_type, ProfilePtrKind& element_ptr, bool &flat_array, bool &null_free);
275 bool acmp_profiled_type(int bci, ciKlass*& left_type, ciKlass*& right_type,
276 ProfilePtrKind& left_ptr, ProfilePtrKind& right_ptr,
277 bool &left_inline_type, bool &right_inline_type);
278 ciField* get_field_at_bci( int bci, bool &will_link);
279 ciMethod* get_method_at_bci(int bci, bool &will_link, ciSignature* *declared_signature);
280 ciMethod* get_method_at_bci(int bci) {
281 bool ignored_will_link;
282 ciSignature* ignored_declared_signature;
283 return get_method_at_bci(bci, ignored_will_link, &ignored_declared_signature);
284 }
285
286 ciKlass* get_declared_method_holder_at_bci(int bci);
287
288 ciSignature* get_declared_signature_at_bci(int bci) {
289 bool ignored_will_link;
290 ciSignature* declared_signature;
291 get_method_at_bci(bci, ignored_will_link, &declared_signature);
292 assert(declared_signature != nullptr, "cannot be null");
293 return declared_signature;
294 }
295
296 // Given a certain calling environment, find the monomorphic target
297 // for the call. Return null if the call is not monomorphic in
298 // its calling environment.
299 ciMethod* find_monomorphic_target(ciInstanceKlass* caller,
300 ciInstanceKlass* callee_holder,
301 ciInstanceKlass* actual_receiver,
302 bool check_access = true);
303
304 // Given a known receiver klass, find the target for the call.
305 // Return null if the call has no target or is abstract.
306 ciMethod* resolve_invoke(ciKlass* caller, ciKlass* exact_receiver, bool check_access = true, bool allow_abstract = false);
307
308 // Find the proper vtable index to invoke this method.
309 int resolve_vtable_index(ciKlass* caller, ciKlass* receiver);
310
311 bool has_option(CompileCommandEnum option);
312 bool has_option_value(CompileCommandEnum option, double& value);
313 bool can_be_compiled();
314 bool can_be_parsed() const { return _can_be_parsed; }
315 bool has_compiled_code();
316 void log_nmethod_identity(xmlStream* log);
317 bool is_not_reached(int bci);
318 bool was_executed_more_than(int times);
319 bool has_unloaded_classes_in_signature();
320 bool is_klass_loaded(int refinfo_index, Bytecodes::Code bc, bool must_be_resolved) const;
321 bool check_call(int refinfo_index, bool is_static) const;
322 bool ensure_method_data(); // make sure it exists in the VM also
323 MethodCounters* ensure_method_counters();
324
325 int inline_instructions_size();
326 int scale_count(int count, float prof_factor = 1.); // make MDO count commensurate with IIC
327
328 // Stack walking support
329 bool is_ignored_by_security_stack_walk() const;
330
331 // JSR 292 support
332 bool is_method_handle_intrinsic() const;
333 bool is_compiled_lambda_form() const;
334 bool has_member_arg() const;
335
336 // What kind of ciObject is this?
337 bool is_method() const { return true; }
338
339 // Java access flags
340 bool is_public () const { return flags().is_public(); }
341 bool is_private () const { return flags().is_private(); }
342 bool is_protected () const { return flags().is_protected(); }
343 bool is_static () const { return flags().is_static(); }
344 bool is_final () const { return flags().is_final(); }
345 bool is_synchronized() const { return flags().is_synchronized(); }
346 bool is_native () const { return flags().is_native(); }
347 bool is_interface () const { return flags().is_interface(); }
348 bool is_abstract () const { return flags().is_abstract(); }
349 bool has_vararg () const { return flags().has_vararg(); }
350
351 // Other flags
352 bool is_final_method() const { return is_final() || holder()->is_final(); }
353 bool is_default_method() const { return !is_abstract() && !is_private() &&
354 holder()->is_interface(); }
355 bool is_overpass () const { check_is_loaded(); return _is_overpass; }
356 bool has_loops () const;
357 bool has_jsrs () const;
358 bool is_getter () const;
359 bool is_setter () const;
360 bool is_accessor () const;
361 bool is_empty () const;
362 bool can_be_statically_bound() const { return _can_be_statically_bound; }
363 bool has_reserved_stack_access() const { return _has_reserved_stack_access; }
364 bool is_boxing_method() const;
365 bool is_unboxing_method() const;
366 bool is_object_constructor() const;
367 bool is_vector_method() const;
368 bool is_scoped() const;
369 bool is_old() const;
370
371 bool can_be_statically_bound(ciInstanceKlass* context) const;
372
373 bool can_omit_stack_trace() const;
374
375 // Replay data methods
376 static void dump_name_as_ascii(outputStream* st, Method* method);
377 void dump_name_as_ascii(outputStream* st);
378 void dump_replay_data(outputStream* st);
379
380 // Print the bytecodes of this method.
381 void print_codes_on(outputStream* st);
382 void print_codes() {
383 print_codes_on(tty);
384 }
385 void print_codes_on(int from, int to, outputStream* st);
386
387 // Print the name of this method in various incarnations.
388 void print_name(outputStream* st = tty);
389 void print_short_name(outputStream* st = tty);
390
391 static bool is_consistent_info(ciMethod* declared_method, ciMethod* resolved_method);
392
393 // Support for the inline type calling convention
394 bool is_scalarized_arg(int idx) const;
395 bool has_scalarized_args() const;
396 const GrowableArray<SigEntry>* get_sig_cc() const;
397 };
398
399 #endif // SHARE_CI_CIMETHOD_HPP