hotspot/src/share/vm/oops/methodOop.hpp
changeset 221 ec745a0fe922
parent 1 489c9b5090e2
child 670 ddf3e9583f2f
equal deleted inserted replaced
220:e6ef4818c49d 221:ec745a0fe922
   522   // RedefineClasses() support:
   522   // RedefineClasses() support:
   523   bool is_old() const                               { return access_flags().is_old(); }
   523   bool is_old() const                               { return access_flags().is_old(); }
   524   void set_is_old()                                 { _access_flags.set_is_old(); }
   524   void set_is_old()                                 { _access_flags.set_is_old(); }
   525   bool is_obsolete() const                          { return access_flags().is_obsolete(); }
   525   bool is_obsolete() const                          { return access_flags().is_obsolete(); }
   526   void set_is_obsolete()                            { _access_flags.set_is_obsolete(); }
   526   void set_is_obsolete()                            { _access_flags.set_is_obsolete(); }
       
   527   // see the definition in methodOop.cpp for the gory details
       
   528   bool should_not_be_cached() const;
   527 
   529 
   528   // JVMTI Native method prefixing support:
   530   // JVMTI Native method prefixing support:
   529   bool is_prefixed_native() const                   { return access_flags().is_prefixed_native(); }
   531   bool is_prefixed_native() const                   { return access_flags().is_prefixed_native(); }
   530   void set_is_prefixed_native()                     { _access_flags.set_is_prefixed_native(); }
   532   void set_is_prefixed_native()                     { _access_flags.set_is_prefixed_native(); }
   531 
   533