Searched refs:_live_oops (Results 1 - 5 of 5) sorted by relevance

/openjdk7/hotspot/src/share/vm/memory/
H A DgenMarkSweep.cpp131 guarantee(_live_oops->length() == _live_oops_moved_to->length(),
217 _live_oops = new (ResourceObj::C_HEAP, mtGC) GrowableArray<oop>(100, true);
257 delete _live_oops;
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DmarkSweep.cpp51 GrowableArray<oop> * MarkSweep::_live_oops = NULL; member in class:MarkSweep
257 guarantee((size_t)_live_oops->length() == _live_oops_index, "should be at end of live oops");
264 _live_oops->push(p);
272 oop obj = _live_oops->at((int)_live_oops_index);
H A DmarkSweep.hpp149 static GrowableArray<oop> * _live_oops; member in class:MarkSweep
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsParallelCompact.cpp121 GrowableArray<oop> * PSParallelCompact::_live_oops = NULL; member in class:PSParallelCompact
2935 guarantee((size_t)_live_oops->length() == _live_oops_index, "should be at end of live oops");
2943 _live_oops->push(p);
2951 oop obj = _live_oops->at((int)_live_oops_index);
H A DpsParallelCompact.hpp1166 static GrowableArray<oop> * _live_oops;

Completed in 39 milliseconds