comparison src/share/vm/oops/method.hpp @ 17891:b6a2ba7d3ea7 hs25.20-b11

Merge
author amurillo
date Thu, 17 Apr 2014 16:09:07 -0700
parents 9428a0b94204
children 7384f6a12fc1
comparison
equal deleted inserted replaced
17862:70dc2c030c69 17891:b6a2ba7d3ea7
154 // all the gory details. SA, dtrace and pstack helpers distinguish metadata 154 // all the gory details. SA, dtrace and pstack helpers distinguish metadata
155 // by their vtable. 155 // by their vtable.
156 void restore_vtable() { guarantee(is_method(), "vtable restored by this call"); } 156 void restore_vtable() { guarantee(is_method(), "vtable restored by this call"); }
157 bool is_method() const volatile { return true; } 157 bool is_method() const volatile { return true; }
158 158
159 void restore_unshareable_info(TRAPS);
160
159 // accessors for instance variables 161 // accessors for instance variables
160 162
161 ConstMethod* constMethod() const { return _constMethod; } 163 ConstMethod* constMethod() const { return _constMethod; }
162 void set_constMethod(ConstMethod* xconst) { _constMethod = xconst; } 164 void set_constMethod(ConstMethod* xconst) { _constMethod = xconst; }
163 165