< prev index next >

src/hotspot/share/ci/ciMethod.hpp

Print this page

 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 xmlStream;
 45 
 46 // Whether profiling found an oop to be always, never or sometimes
 47 // null
 48 enum ProfilePtrKind {

 49   ProfileAlwaysNull,
 50   ProfileNeverNull,
 51   ProfileMaybeNull
 52 };
 53 
 54 // ciMethod
 55 //
 56 // This class represents a Method* in the HotSpot virtual
 57 // machine.
 58 class ciMethod : public ciMetadata {
 59   friend class CompileBroker;
 60   CI_PACKAGE_ACCESS
 61   friend class ciEnv;
 62   friend class ciExceptionHandlerStream;
 63   friend class ciBytecodeStream;
 64   friend class ciMethodHandle;
 65   friend class ciReplay;
 66   friend class InlineTree;
 67 
 68  private:

181 
182   // Method code and related information.
183   address code()                                 { if (_code == nullptr) load_code(); return _code; }
184   int code_size() const                          { check_is_loaded(); return _code_size; }
185   int max_stack() const                          { check_is_loaded(); return _max_stack; }
186   int max_locals() const                         { check_is_loaded(); return _max_locals; }
187   vmIntrinsicID intrinsic_id() const             { check_is_loaded(); return _intrinsic_id; }
188   bool has_exception_handlers() const            { check_is_loaded(); return _handler_count > 0; }
189   int exception_table_length() const             { check_is_loaded(); return _handler_count; }
190   int interpreter_invocation_count() const       { check_is_loaded(); return _interpreter_invocation_count; }
191   int interpreter_throwout_count() const         { check_is_loaded(); return _interpreter_throwout_count; }
192   int size_of_parameters() const                 { check_is_loaded(); return _size_of_parameters; }
193 
194   // Code size for inlining decisions.
195   int code_size_for_inlining();
196 
197   bool caller_sensitive()       const { return get_Method()->caller_sensitive();       }
198   bool force_inline()           const { return get_Method()->force_inline();           }
199   bool dont_inline()            const { return get_Method()->dont_inline();            }
200   bool intrinsic_candidate()    const { return get_Method()->intrinsic_candidate();    }
201   bool is_static_initializer()  const { return get_Method()->is_static_initializer();  }
202   bool changes_current_thread() const { return get_Method()->changes_current_thread(); }
203   bool deprecated()             const { return is_loaded() && get_Method()->deprecated(); }
204 
205   bool check_intrinsic_candidate() const {
206     if (intrinsic_id() == vmIntrinsics::_blackhole) {
207       // This is the intrinsic without an associated method, so no intrinsic_candidate
208       // flag is set. The intrinsic is still correct.
209       return true;
210     }
211     return (CheckIntrinsics ? intrinsic_candidate() : true);
212   }
213 
214   int highest_osr_comp_level();
215 
216   Bytecodes::Code java_code_at_bci(int bci) {
217     address bcp = code() + bci;
218     return Bytecodes::java_code_at(nullptr, bcp);
219   }
220   Bytecodes::Code raw_code_at_bci(int bci) {
221     address bcp = code() + bci;

252   // dead when those paths merge. Since the interpreter's viewpoint is
253   // used when gc'ing an interpreter frame we need to use its viewpoint
254   // during OSR when loading the locals.
255 
256   ResourceBitMap live_local_oops_at_bci(int bci);
257 
258   bool needs_clinit_barrier() const;
259 
260 #ifdef COMPILER1
261   const BitMap& bci_block_start();
262 #endif
263 
264   ciTypeFlow*   get_flow_analysis();
265   ciTypeFlow*   get_osr_flow_analysis(int osr_bci);  // alternate entry point
266   ciCallProfile call_profile_at_bci(int bci);
267 
268   // Does type profiling provide any useful information at this point?
269   bool          argument_profiled_type(int bci, int i, ciKlass*& type, ProfilePtrKind& ptr_kind);
270   bool          parameter_profiled_type(int i, ciKlass*& type, ProfilePtrKind& ptr_kind);
271   bool          return_profiled_type(int bci, ciKlass*& type, ProfilePtrKind& ptr_kind);
272 




273   ciField*      get_field_at_bci( int bci, bool &will_link);
274   ciMethod*     get_method_at_bci(int bci, bool &will_link, ciSignature* *declared_signature);
275   ciMethod*     get_method_at_bci(int bci) {
276     bool ignored_will_link;
277     ciSignature* ignored_declared_signature;
278     return get_method_at_bci(bci, ignored_will_link, &ignored_declared_signature);
279   }
280 
281   ciKlass*      get_declared_method_holder_at_bci(int bci);
282 
283   ciSignature*  get_declared_signature_at_bci(int bci) {
284     bool ignored_will_link;
285     ciSignature* declared_signature;
286     get_method_at_bci(bci, ignored_will_link, &declared_signature);
287     assert(declared_signature != nullptr, "cannot be null");
288     return declared_signature;
289   }
290 
291   // Given a certain calling environment, find the monomorphic target
292   // for the call.  Return null if the call is not monomorphic in

324   bool is_ignored_by_security_stack_walk() const;
325 
326   // JSR 292 support
327   bool is_method_handle_intrinsic()  const;
328   bool is_compiled_lambda_form() const;
329   bool has_member_arg() const;
330 
331   // What kind of ciObject is this?
332   bool is_method() const                         { return true; }
333 
334   // Java access flags
335   bool is_public      () const                   { return flags().is_public(); }
336   bool is_private     () const                   { return flags().is_private(); }
337   bool is_protected   () const                   { return flags().is_protected(); }
338   bool is_static      () const                   { return flags().is_static(); }
339   bool is_final       () const                   { return flags().is_final(); }
340   bool is_synchronized() const                   { return flags().is_synchronized(); }
341   bool is_native      () const                   { return flags().is_native(); }
342   bool is_interface   () const                   { return flags().is_interface(); }
343   bool is_abstract    () const                   { return flags().is_abstract(); }

344 
345   // Other flags
346   bool is_final_method() const                   { return is_final() || holder()->is_final(); }
347   bool is_default_method() const                 { return !is_abstract() && !is_private() &&
348                                                           holder()->is_interface(); }
349   bool is_overpass    () const                   { check_is_loaded(); return _is_overpass; }
350   bool has_loops      () const;
351   bool has_jsrs       () const;
352   bool is_getter      () const;
353   bool is_setter      () const;
354   bool is_accessor    () const;
355   bool is_empty       () const;
356   bool can_be_statically_bound() const           { return _can_be_statically_bound; }
357   bool has_reserved_stack_access() const         { return _has_reserved_stack_access; }
358   bool is_boxing_method() const;
359   bool is_unboxing_method() const;

360   bool is_vector_method() const;
361   bool is_object_initializer() const;
362   bool is_scoped() const;
363   bool is_old() const;
364 
365   bool can_be_statically_bound(ciInstanceKlass* context) const;
366 
367   bool can_omit_stack_trace() const;
368 
369   // Replay data methods
370   static void dump_name_as_ascii(outputStream* st, Method* method);
371   void dump_name_as_ascii(outputStream* st);
372   void dump_replay_data(outputStream* st);
373 
374   // Print the bytecodes of this method.
375   void print_codes_on(outputStream* st);
376   void print_codes() {
377     print_codes_on(tty);
378   }
379   void print_codes_on(int from, int to, outputStream* st);
380 
381   // Print the name of this method in various incarnations.
382   void print_name(outputStream* st = tty);
383   void print_short_name(outputStream* st = tty);
384 
385   static bool is_consistent_info(ciMethod* declared_method, ciMethod* resolved_method);














386 };
387 
388 #endif // SHARE_CI_CIMETHOD_HPP

 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:

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;

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,
275                                            bool& flat_array, bool& null_free);
276   bool          acmp_profiled_type(int bci, ciKlass*& left_type, ciKlass*& right_type,
277                                    ProfilePtrKind& left_ptr, ProfilePtrKind& right_ptr,
278                                    bool& left_inline_type, bool& right_inline_type);
279   ciField*      get_field_at_bci( int bci, bool &will_link);
280   ciMethod*     get_method_at_bci(int bci, bool &will_link, ciSignature* *declared_signature);
281   ciMethod*     get_method_at_bci(int bci) {
282     bool ignored_will_link;
283     ciSignature* ignored_declared_signature;
284     return get_method_at_bci(bci, ignored_will_link, &ignored_declared_signature);
285   }
286 
287   ciKlass*      get_declared_method_holder_at_bci(int bci);
288 
289   ciSignature*  get_declared_signature_at_bci(int bci) {
290     bool ignored_will_link;
291     ciSignature* declared_signature;
292     get_method_at_bci(bci, ignored_will_link, &declared_signature);
293     assert(declared_signature != nullptr, "cannot be null");
294     return declared_signature;
295   }
296 
297   // Given a certain calling environment, find the monomorphic target
298   // for the call.  Return null if the call is not monomorphic in

330   bool is_ignored_by_security_stack_walk() const;
331 
332   // JSR 292 support
333   bool is_method_handle_intrinsic()  const;
334   bool is_compiled_lambda_form() const;
335   bool has_member_arg() const;
336 
337   // What kind of ciObject is this?
338   bool is_method() const                         { return true; }
339 
340   // Java access flags
341   bool is_public      () const                   { return flags().is_public(); }
342   bool is_private     () const                   { return flags().is_private(); }
343   bool is_protected   () const                   { return flags().is_protected(); }
344   bool is_static      () const                   { return flags().is_static(); }
345   bool is_final       () const                   { return flags().is_final(); }
346   bool is_synchronized() const                   { return flags().is_synchronized(); }
347   bool is_native      () const                   { return flags().is_native(); }
348   bool is_interface   () const                   { return flags().is_interface(); }
349   bool is_abstract    () const                   { return flags().is_abstract(); }
350   bool has_vararg     () const                   { return flags().has_vararg(); }
351 
352   // Other flags
353   bool is_final_method() const                   { return is_final() || holder()->is_final(); }
354   bool is_default_method() const                 { return !is_abstract() && !is_private() &&
355                                                           holder()->is_interface(); }
356   bool is_overpass    () const                   { check_is_loaded(); return _is_overpass; }
357   bool has_loops      () const;
358   bool has_jsrs       () const;
359   bool is_getter      () const;
360   bool is_setter      () const;
361   bool is_accessor    () const;
362   bool is_empty       () const;
363   bool can_be_statically_bound() const           { return _can_be_statically_bound; }
364   bool has_reserved_stack_access() const         { return _has_reserved_stack_access; }
365   bool is_boxing_method() const;
366   bool is_unboxing_method() const;
367   bool is_object_constructor() const;
368   bool is_vector_method() const;

369   bool is_scoped() const;
370   bool is_old() const;
371 
372   bool can_be_statically_bound(ciInstanceKlass* context) const;
373 
374   bool can_omit_stack_trace() const;
375 
376   // Replay data methods
377   static void dump_name_as_ascii(outputStream* st, Method* method);
378   void dump_name_as_ascii(outputStream* st);
379   void dump_replay_data(outputStream* st);
380 
381   // Print the bytecodes of this method.
382   void print_codes_on(outputStream* st);
383   void print_codes() {
384     print_codes_on(tty);
385   }
386   void print_codes_on(int from, int to, outputStream* st);
387 
388   // Print the name of this method in various incarnations.
389   void print_name(outputStream* st = tty);
390   void print_short_name(outputStream* st = tty);
391 
392   static bool is_consistent_info(ciMethod* declared_method, ciMethod* resolved_method);
393 
394   // Support for the inline type calling convention
395   bool is_scalarized_arg(int idx) const;
396   bool is_scalarized_buffer_arg(int idx) const;
397   bool has_scalarized_args() const;
398   const GrowableArray<SigEntry>* get_sig_cc() const;
399   bool mismatch() const;
400   bool c1_needs_stack_repair() const;
401   bool c2_needs_stack_repair() const;
402 
403   // Generally, a method cannot return a larval object or receive a larval argument. There are some
404   // exceptions.
405   bool receiver_maybe_larval() const;
406   bool return_value_is_larval() const;
407 };
408 
409 #endif // SHARE_CI_CIMETHOD_HPP
< prev index next >