hotspot/src/share/vm/memory/metaspace.hpp
changeset 19979 ebe1dbb6e1aa
parent 19322 e35f9ed4f081
child 19988 2b100c528806
equal deleted inserted replaced
19766:b6d8784a1037 19979:ebe1dbb6e1aa
   211     virtual void doit(address ptr, MetaspaceObj::Type type, int byte_size) = 0;
   211     virtual void doit(address ptr, MetaspaceObj::Type type, int byte_size) = 0;
   212   };
   212   };
   213 
   213 
   214   void iterate(AllocRecordClosure *closure);
   214   void iterate(AllocRecordClosure *closure);
   215 
   215 
   216   // Return TRUE only if UseCompressedKlassPointers is True and DumpSharedSpaces is False.
   216   // Return TRUE only if UseCompressedClassPointers is True and DumpSharedSpaces is False.
   217   static bool using_class_space() {
   217   static bool using_class_space() {
   218     return NOT_LP64(false) LP64_ONLY(UseCompressedKlassPointers && !DumpSharedSpaces);
   218     return NOT_LP64(false) LP64_ONLY(UseCompressedClassPointers && !DumpSharedSpaces);
   219   }
   219   }
   220 
   220 
   221 };
   221 };
   222 
   222 
   223 class MetaspaceAux : AllStatic {
   223 class MetaspaceAux : AllStatic {