8058446: G1 Hot card cache should use ArrayAllocator to allocate the cache array

Allocate large hot card caches using OS functions instead of the C heap to avoid native memory exhaustion.

Reviewed-by: mgerdin, jwilhelm
This commit is contained in:
Thomas Schatzl 2015-02-20 16:07:12 +01:00
parent 12c46a210f
commit cb05b8a496
2 changed files with 5 additions and 2 deletions
hotspot/src/share/vm/gc_implementation/g1

@ -37,7 +37,7 @@ void G1HotCardCache::initialize(G1RegionToSpaceMapper* card_counts_storage) {
_use_cache = true;
_hot_cache_size = (size_t)1 << G1ConcRSLogCacheSize;
_hot_cache = NEW_C_HEAP_ARRAY(jbyte*, _hot_cache_size, mtGC);
_hot_cache = _hot_cache_memory.allocate(_hot_cache_size);
reset_hot_cache_internal();
@ -52,7 +52,8 @@ void G1HotCardCache::initialize(G1RegionToSpaceMapper* card_counts_storage) {
G1HotCardCache::~G1HotCardCache() {
if (default_use_cache()) {
assert(_hot_cache != NULL, "Logic");
FREE_C_HEAP_ARRAY(jbyte*, _hot_cache);
_hot_cache_memory.free();
_hot_cache = NULL;
}
}

@ -61,6 +61,8 @@ class G1HotCardCache: public CHeapObj<mtGC> {
G1CardCounts _card_counts;
ArrayAllocator<jbyte*, mtGC> _hot_cache_memory;
// The card cache table
jbyte** _hot_cache;