src/hotspot/share/aot/aotCompiledMethod.hpp
changeset 55479 80b27dc96ca3
parent 55293 d19dc5b10fbb
child 57490 7826a2a06f87
equal deleted inserted replaced
55478:ae2e53e379cb 55479:80b27dc96ca3
   174   virtual bool is_unloaded() const { return state() == unloaded; }
   174   virtual bool is_unloaded() const { return state() == unloaded; }
   175   virtual bool is_not_entrant() const { return state() == not_entrant ||
   175   virtual bool is_not_entrant() const { return state() == not_entrant ||
   176                                                  state() == not_used; }
   176                                                  state() == not_used; }
   177   virtual bool is_alive() const { return _is_alive(); }
   177   virtual bool is_alive() const { return _is_alive(); }
   178   virtual bool is_in_use() const { return state() == in_use; }
   178   virtual bool is_in_use() const { return state() == in_use; }
   179   virtual bool is_not_installed() const { return state() == not_installed; }
       
   180 
   179 
   181   virtual bool is_unloading() { return false; }
   180   virtual bool is_unloading() { return false; }
   182 
   181 
   183   address exception_begin() const { return (address) _code + _meta->exception_handler_offset(); }
   182   address exception_begin() const { return (address) _code + _meta->exception_handler_offset(); }
   184 
   183