src/hotspot/share/runtime/fieldDescriptor.inline.hpp
changeset 59056 15936b142f86
parent 58928 707825662286
equal deleted inserted replaced
59055:57ad70bcf06c 59056:15936b142f86
    29 
    29 
    30 // All fieldDescriptor inline functions that (directly or indirectly) use "_cp()" or "_cp->"
    30 // All fieldDescriptor inline functions that (directly or indirectly) use "_cp()" or "_cp->"
    31 // must be put in this file, as they require runtime/handles.inline.hpp.
    31 // must be put in this file, as they require runtime/handles.inline.hpp.
    32 
    32 
    33 inline Symbol* fieldDescriptor::name() const {
    33 inline Symbol* fieldDescriptor::name() const {
    34   return field()->name(_cp);
    34   return field()->name(_cp());
    35 }
    35 }
    36 
    36 
    37 inline Symbol* fieldDescriptor::signature() const {
    37 inline Symbol* fieldDescriptor::signature() const {
    38   return field()->signature(_cp);
    38   return field()->signature(_cp());
    39 }
    39 }
    40 
    40 
    41 inline InstanceKlass* fieldDescriptor::field_holder() const {
    41 inline InstanceKlass* fieldDescriptor::field_holder() const {
    42   return _cp->pool_holder();
    42   return _cp->pool_holder();
    43 }
    43 }