src/share/vm/oops/instanceKlass.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/src/share/vm/oops/instanceKlass.hpp	Fri Oct 31 13:39:08 2014
--- new/src/share/vm/oops/instanceKlass.hpp	Fri Oct 31 13:39:08 2014

*** 212,222 **** --- 212,221 ---- u2 _major_version; // major version number of class file Thread* _init_thread; // Pointer to current thread doing initialization (to handle recusive initialization) int _vtable_len; // length of Java vtable (in words) int _itable_len; // length of Java itable (in words) OopMapCache* volatile _oop_map_cache; // OopMapCache for all methods in the klass (allocated lazily) MemberNameTable* _member_names; // Member names JNIid* _jni_ids; // First JNI identifier for static fields in this class jmethodID* _methods_jmethod_ids; // jmethodIDs corresponding to method_idnum, or NULL if none nmethodBucket* _dependencies; // list of dependent nmethods nmethod* _osr_nmethods_head; // Head of list of on-stack replacement nmethods for this class BreakpointInfo* _breakpoints; // bpt lists, managed by Method*
*** 916,925 **** --- 915,926 ---- Method* method_at_itable(Klass* holder, int index, TRAPS); #if INCLUDE_JVMTI void adjust_default_methods(Method** old_methods, Method** new_methods, int methods_length, bool* trace_name_printed); + void adjust_member_name_table(Method** old_methods, Method** new_methods, + int methods_length, bool* trace_name_printed); #endif // INCLUDE_JVMTI // Garbage collection void oop_follow_contents(oop obj); int oop_adjust_pointers(oop obj);
*** 1052,1067 **** --- 1053,1062 ---- virtual void restore_unshareable_info(ClassLoaderData* loader_data, Handle protection_domain, TRAPS); // jvm support jint compute_modifier_flags(TRAPS) const; // JSR-292 support MemberNameTable* member_names() { return _member_names; } void set_member_names(MemberNameTable* member_names) { _member_names = member_names; } void add_member_name(int index, Handle member_name); oop get_member_name(int index); public: // JVMTI support jint jvmti_class_status() const; public:

src/share/vm/oops/instanceKlass.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File