comparison src/share/vm/oops/methodOop.hpp @ 52:75b0f3cb1943

Merge
author dcubed
date Thu, 13 Mar 2008 14:17:48 -0700
parents d8b3ef7ee3e5
children d1605aabd0a1
comparison
equal deleted inserted replaced
46:8b6e49187640 52:75b0f3cb1943
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