comparison src/share/vm/gc_implementation/concurrentMarkSweep/compactibleFreeListSpace.hpp @ 7947:3c327c2b6782

8004895: NPG: JMapPermCore test failure caused by warnings about missing field Reviewed-by: johnc
author jmasa
date Thu, 03 Jan 2013 15:03:27 -0800
parents 685df3c6f84b
children 71180a6e5080
comparison
equal deleted inserted replaced
7634:bf8c2b2c8cfa 7947:3c327c2b6782
129 129
130 // Linear allocation blocks 130 // Linear allocation blocks
131 LinearAllocBlock _smallLinearAllocBlock; 131 LinearAllocBlock _smallLinearAllocBlock;
132 132
133 FreeBlockDictionary<FreeChunk>::DictionaryChoice _dictionaryChoice; 133 FreeBlockDictionary<FreeChunk>::DictionaryChoice _dictionaryChoice;
134 FreeBlockDictionary<FreeChunk>* _dictionary; // ptr to dictionary for large size blocks 134 AFLBinaryTreeDictionary* _dictionary; // ptr to dictionary for large size blocks
135 135
136 AdaptiveFreeList<FreeChunk> _indexedFreeList[IndexSetSize]; 136 AdaptiveFreeList<FreeChunk> _indexedFreeList[IndexSetSize];
137 // indexed array for small size blocks 137 // indexed array for small size blocks
138 // allocation stategy 138 // allocation stategy
139 bool _fitStrategy; // Use best fit strategy. 139 bool _fitStrategy; // Use best fit strategy.