Searched defs:_last_gc_live_oops (Results 1 - 3 of 3) 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/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);

Completed in 35 milliseconds