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

/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DmarkSweep.cpp64 GrowableArray<HeapWord*>* MarkSweep::_last_gc_live_oops = NULL; member in class:MarkSweep
300 _cur_gc_live_oops = _last_gc_live_oops;
303 _last_gc_live_oops = _tmp_live_oops;
315 if (_last_gc_live_oops == NULL) {
320 for (int i = 0; i < _last_gc_live_oops->length(); i++) {
321 HeapWord* old_oop = _last_gc_live_oops->at(i);
H A DmarkSweep.hpp169 static GrowableArray<HeapWord*> * _last_gc_live_oops; member in class:MarkSweep
/openjdk7/hotspot/src/share/vm/memory/
H A DgenMarkSweep.cpp226 _last_gc_live_oops = new(ResourceObj::C_HEAP, mtGC) GrowableArray<HeapWord*>(100, true);
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsParallelCompact.cpp134 GrowableArray<HeapWord*>* PSParallelCompact::_last_gc_live_oops = NULL; member in class:PSParallelCompact
2980 _cur_gc_live_oops = _last_gc_live_oops;
2983 _last_gc_live_oops = _tmp_live_oops;
2996 if (_last_gc_live_oops == NULL) {
3001 for (int i = 0; i < _last_gc_live_oops->length(); i++) {
3002 HeapWord* old_oop = _last_gc_live_oops->at(i);
H A DpsParallelCompact.hpp1186 static GrowableArray<HeapWord*> * _last_gc_live_oops;

Completed in 50 milliseconds