src/hotspot/share/aot/aotCompiledMethod.hpp
changeset 51473 871581ff5ce5
parent 51341 09cc8813ae51
child 51731 8745f8f1b0f8
equal deleted inserted replaced
51472:eb97d1a319f9 51473:871581ff5ce5
   191   virtual void verify() {}
   191   virtual void verify() {}
   192 
   192 
   193   virtual int comp_level() const { return CompLevel_aot; }
   193   virtual int comp_level() const { return CompLevel_aot; }
   194   virtual address verified_entry_point() const { return _code + _meta->verified_entry_offset(); }
   194   virtual address verified_entry_point() const { return _code + _meta->verified_entry_offset(); }
   195   virtual void log_identity(xmlStream* stream) const;
   195   virtual void log_identity(xmlStream* stream) const;
   196   virtual void log_state_change() const;
   196   virtual void log_state_change(oop cause = NULL) const;
   197   virtual bool make_entrant() NOT_TIERED({ ShouldNotReachHere(); return false; });
   197   virtual bool make_entrant() NOT_TIERED({ ShouldNotReachHere(); return false; });
   198   virtual bool make_not_entrant() { return make_not_entrant_helper(not_entrant); }
   198   virtual bool make_not_entrant() { return make_not_entrant_helper(not_entrant); }
   199   virtual bool make_not_used() { return make_not_entrant_helper(not_used); }
   199   virtual bool make_not_used() { return make_not_entrant_helper(not_used); }
   200   virtual address entry_point() const { return _code + _meta->entry_offset(); }
   200   virtual address entry_point() const { return _code + _meta->entry_offset(); }
   201   virtual bool make_zombie() { ShouldNotReachHere(); return false; }
   201   virtual bool make_zombie() { ShouldNotReachHere(); return false; }