hotspot/src/share/vm/code/nmethod.hpp
changeset 26912 19021f626ad2
parent 26796 666464578742
child 27247 99db666dbe8e
equal deleted inserted replaced
26911:8f2c7a83220f 26912:19021f626ad2
   575   // note: native wrappers cannot be deoptimized.
   575   // note: native wrappers cannot be deoptimized.
   576   bool can_be_deoptimized() const { return is_java_method(); }
   576   bool can_be_deoptimized() const { return is_java_method(); }
   577 
   577 
   578   // Inline cache support
   578   // Inline cache support
   579   void clear_inline_caches();
   579   void clear_inline_caches();
       
   580   void clear_ic_stubs();
   580   void cleanup_inline_caches();
   581   void cleanup_inline_caches();
   581   bool inlinecache_check_contains(address addr) const {
   582   bool inlinecache_check_contains(address addr) const {
   582     return (addr >= code_begin() && addr < verified_entry_point());
   583     return (addr >= code_begin() && addr < verified_entry_point());
   583   }
   584   }
   584 
   585