Searched refs:_survivor_head (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectedHeap.hpp91 HeapRegion* _survivor_head; member in class:YoungList
142 _survivor_head = NULL;
148 HeapRegion* first_survivor_region() { return _survivor_head; }
H A Dg1CollectedHeap.cpp186 _survivor_head(NULL), _survivor_tail(NULL), _survivor_length(0) {
205 hr->set_next_young_region(_survivor_head);
206 if (_survivor_head == NULL) {
209 _survivor_head = hr;
230 empty_list(_survivor_head);
231 _survivor_head = NULL;
335 for (HeapRegion* curr = _survivor_head;
349 _head = _survivor_head;
351 if (_survivor_head != NULL) {
368 HeapRegion* lists[] = {_head, _survivor_head};
[all...]

Completed in 1416 milliseconds