comparison src/share/vm/gc_implementation/concurrentMarkSweep/compactibleFreeListSpace.hpp @ 6197:d2a62e0f25eb

6995781: Native Memory Tracking (Phase 1) 7151532: DCmd for hotspot native memory tracking Summary: Implementation of native memory tracking phase 1, which tracks VM native memory usage, and related DCmd Reviewed-by: acorn, coleenp, fparain
author zgu
date Thu, 28 Jun 2012 17:03:16 -0400
parents f69a5d43dc19
children da91efe96a93
comparison
equal deleted inserted replaced
6174:74533f63b116 6197:d2a62e0f25eb
615 double flsFrag() const; 615 double flsFrag() const;
616 }; 616 };
617 617
618 // A parallel-GC-thread-local allocation buffer for allocation into a 618 // A parallel-GC-thread-local allocation buffer for allocation into a
619 // CompactibleFreeListSpace. 619 // CompactibleFreeListSpace.
620 class CFLS_LAB : public CHeapObj { 620 class CFLS_LAB : public CHeapObj<mtGC> {
621 // The space that this buffer allocates into. 621 // The space that this buffer allocates into.
622 CompactibleFreeListSpace* _cfls; 622 CompactibleFreeListSpace* _cfls;
623 623
624 // Our local free lists. 624 // Our local free lists.
625 FreeList<FreeChunk> _indexedFreeList[CompactibleFreeListSpace::IndexSetSize]; 625 FreeList<FreeChunk> _indexedFreeList[CompactibleFreeListSpace::IndexSetSize];