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

/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DmarkSweep.cpp54 size_t MarkSweep::_live_oops_index = 0; member in class:MarkSweep
257 guarantee((size_t)_live_oops->length() == _live_oops_index, "should be at end of live oops");
258 _live_oops_index = at_perm ? _live_oops_index_at_perm : 0;
266 _live_oops_index++;
272 oop obj = _live_oops->at((int)_live_oops_index);
274 guarantee(_live_oops_size->at((int)_live_oops_index) == size, "should be the same size");
275 _live_oops_index++;
H A DmarkSweep.hpp152 static size_t _live_oops_index; member in class:MarkSweep
/openjdk7/hotspot/src/share/vm/memory/
H A DgenMarkSweep.cpp260 _live_oops_index = 0;
350 VALIDATE_MARK_SWEEP_ONLY(_live_oops_index_at_perm = _live_oops_index);
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsParallelCompact.cpp124 size_t PSParallelCompact::_live_oops_index = 0; member in class:PSParallelCompact
2935 guarantee((size_t)_live_oops->length() == _live_oops_index, "should be at end of live oops");
2936 _live_oops_index = at_perm ? _live_oops_index_at_perm : 0;
2945 _live_oops_index++;
2951 oop obj = _live_oops->at((int)_live_oops_index);
2953 guarantee(_live_oops_size->at((int)_live_oops_index) == size, "should be the same size");
2954 _live_oops_index++;
H A DpsParallelCompact.hpp1169 static size_t _live_oops_index;

Completed in 69 milliseconds