< prev index next >

src/hotspot/share/oops/instanceKlass.hpp

Print this page
rev 49250 : [mq]: JDK-8199739.patch

*** 1068,1078 **** intptr_t* start_of_itable() const { return (intptr_t*)start_of_vtable() + vtable_length(); } intptr_t* end_of_itable() const { return start_of_itable() + itable_length(); } int itable_offset_in_words() const { return start_of_itable() - (intptr_t*)this; } ! address static_field_addr(int offset); OopMapBlock* start_of_nonstatic_oop_maps() const { return (OopMapBlock*)(start_of_itable() + itable_length()); } --- 1068,1078 ---- intptr_t* start_of_itable() const { return (intptr_t*)start_of_vtable() + vtable_length(); } intptr_t* end_of_itable() const { return start_of_itable() + itable_length(); } int itable_offset_in_words() const { return start_of_itable() - (intptr_t*)this; } ! oop static_field_base() { return java_mirror(); } OopMapBlock* start_of_nonstatic_oop_maps() const { return (OopMapBlock*)(start_of_itable() + itable_length()); }
< prev index next >