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

/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DpromotionInfo.cpp77 assert(_spoolHead == _spoolTail, "emptied spooling buffers"); \
94 assert(_spoolHead != _spoolTail || _firstIndex < _nextIndex,
102 assert(_spoolHead != _spoolTail, "Spooling storage mix-up");
109 assert(_spoolTail == NULL && _nextIndex == 1,
154 assert(_spoolHead != NULL && _spoolTail != NULL,
156 assert(_spoolTail->bufferSize > _nextIndex, "Off by one error at tail?");
157 _spoolTail->displacedHdr[_nextIndex] = hdr;
159 if (++_nextIndex == _spoolTail->bufferSize) { // last location in this block
161 assert(_spoolTail->nextSpoolBlock == NULL, "tail should terminate spool list");
162 _splice_point = _spoolTail; // sav
[all...]
H A DpromotionInfo.hpp144 SpoolBlock* _spoolTail; // last non-full spooling block or null member in class:VALUE_OBJ_CLASS_SPEC
145 SpoolBlock* _splice_point; // when _spoolTail is null, holds list tail
150 // spooling block (_spoolTail)
159 _spoolHead(NULL), _spoolTail(NULL),
184 return _spoolTail != NULL && _spoolTail->bufferSize > _nextIndex;
202 _spoolTail = NULL;

Completed in 32 milliseconds