hotspot/src/share/vm/ci/ciMethod.hpp
changeset 10506 575ad9bccff5
parent 10014 a5c2141ee857
child 10734 065435337883
equal deleted inserted replaced
10505:df3cc194efc5 10506:575ad9bccff5
   154   vmIntrinsics::ID intrinsic_id() const          { check_is_loaded(); return _intrinsic_id; }
   154   vmIntrinsics::ID intrinsic_id() const          { check_is_loaded(); return _intrinsic_id; }
   155   bool has_exception_handlers() const            { check_is_loaded(); return _handler_count > 0; }
   155   bool has_exception_handlers() const            { check_is_loaded(); return _handler_count > 0; }
   156   int exception_table_length() const             { check_is_loaded(); return _handler_count; }
   156   int exception_table_length() const             { check_is_loaded(); return _handler_count; }
   157   int interpreter_invocation_count() const       { check_is_loaded(); return _interpreter_invocation_count; }
   157   int interpreter_invocation_count() const       { check_is_loaded(); return _interpreter_invocation_count; }
   158   int interpreter_throwout_count() const         { check_is_loaded(); return _interpreter_throwout_count; }
   158   int interpreter_throwout_count() const         { check_is_loaded(); return _interpreter_throwout_count; }
       
   159 
       
   160   // Code size for inlining decisions.
       
   161   int code_size_for_inlining();
   159 
   162 
   160   int comp_level();
   163   int comp_level();
   161   int highest_osr_comp_level();
   164   int highest_osr_comp_level();
   162 
   165 
   163   Bytecodes::Code java_code_at_bci(int bci) {
   166   Bytecodes::Code java_code_at_bci(int bci) {