src/share/vm/gc_implementation/shared/spaceDecorator.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/gc_implementation/shared/spaceDecorator.hpp

src/share/vm/gc_implementation/shared/spaceDecorator.hpp

Print this page
rev 5732 : [mq]: comments2

*** 73,83 **** class SpaceMangler: public CHeapObj<mtGC> { friend class VMStructs; // High water mark for allocations. Typically, the space above // this point have been mangle previously and don't need to be ! // touched again. Space belows this point has been allocated // and remangling is needed between the current top and this // high water mark. HeapWord* _top_for_allocations; HeapWord* top_for_allocations() { return _top_for_allocations; } --- 73,83 ---- class SpaceMangler: public CHeapObj<mtGC> { friend class VMStructs; // High water mark for allocations. Typically, the space above // this point have been mangle previously and don't need to be ! // touched again. Space below this point has been allocated // and remangling is needed between the current top and this // high water mark. HeapWord* _top_for_allocations; HeapWord* top_for_allocations() { return _top_for_allocations; }
src/share/vm/gc_implementation/shared/spaceDecorator.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File