comparison src/share/vm/memory/metaspace.hpp @ 12226:7944aba7ba41

8015107: NPG: Use consistent naming for metaspace concepts Reviewed-by: coleenp, mgerdin, hseigel
author ehelin
date Mon, 12 Aug 2013 17:37:02 +0200
parents 1a8fb39bdbc4
children d6c266999345
comparison
equal deleted inserted replaced
12186:313b724f8911 12226:7944aba7ba41
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 {