hotspot/src/share/vm/aot/aotCompiledMethod.hpp
changeset 46364 00a21c0ff97e
parent 46329 53ccc37bda19
equal deleted inserted replaced
46363:b53de34a044c 46364:00a21c0ff97e
   174   virtual bool is_not_entrant() const { return state() == not_entrant ||
   174   virtual bool is_not_entrant() const { return state() == not_entrant ||
   175                                                  state() == not_used; }
   175                                                  state() == not_used; }
   176   virtual bool is_alive() const { return _is_alive(); }
   176   virtual bool is_alive() const { return _is_alive(); }
   177   virtual bool is_in_use() const { return state() == in_use; }
   177   virtual bool is_in_use() const { return state() == in_use; }
   178 
   178 
   179   address exception_begin() { return (address) _code + _meta->exception_handler_offset(); }
   179   address exception_begin() const { return (address) _code + _meta->exception_handler_offset(); }
   180 
   180 
   181   virtual const char* name() const { return _name; }
   181   virtual const char* name() const { return _name; }
   182 
   182 
   183   virtual int compile_id() const { return _aot_id; }
   183   virtual int compile_id() const { return _aot_id; }
   184 
   184