comparison src/share/vm/gc_implementation/concurrentMarkSweep/freeChunk.hpp @ 6885:685df3c6f84b

7045397: NPG: Add freelists to class loader arenas. Reviewed-by: coleenp, stefank, jprovino, ohair
author jmasa
date Tue, 18 Sep 2012 23:35:42 -0700
parents b9a9ed0f8eeb
children
comparison
equal deleted inserted replaced
6877:d0e7716b179e 6885:685df3c6f84b
131 #endif 131 #endif
132 assert(!is_free(), "Error"); 132 assert(!is_free(), "Error");
133 } 133 }
134 134
135 // Return the address past the end of this chunk 135 // Return the address past the end of this chunk
136 HeapWord* end() const { return ((HeapWord*) this) + size(); } 136 uintptr_t* end() const { return ((uintptr_t*) this) + size(); }
137 137
138 // debugging 138 // debugging
139 void verify() const PRODUCT_RETURN; 139 void verify() const PRODUCT_RETURN;
140 void verifyList() const PRODUCT_RETURN; 140 void verifyList() const PRODUCT_RETURN;
141 void mangleAllocated(size_t size) PRODUCT_RETURN; 141 void mangleAllocated(size_t size) PRODUCT_RETURN;