Searched refs:_queue_begin (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/code/
H A Dstubs.cpp36 // are specified by the _queue_begin & _queue_end indices. The queue
76 _queue_begin = 0;
168 _queue_begin += stub_size(s);
169 assert(_queue_begin <= _buffer_limit, "sanity check");
170 if (_queue_begin == _queue_end) {
173 _queue_begin = 0;
176 } else if (_queue_begin == _buffer_limit) {
180 _queue_begin = 0;
236 guarantee(0 <= _queue_begin && _queue_begin < _buffer_limi
[all...]
H A Dstubs.hpp166 int _queue_begin; // the (byte) index of the first queue entry (word-aligned) member in class:StubQueue
172 bool is_contiguous() const { return _queue_begin <= _queue_end; }
195 bool is_empty() const { return _queue_begin == _queue_end; }
197 int available_space() const { int d = _queue_begin - _queue_end - 1; return d < 0 ? d + _buffer_size : d; }
219 Stub* first() const { return number_of_stubs() > 0 ? stub_at(_queue_begin) : NULL; }
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp814 nonstatic_field(StubQueue, _queue_begin, int) \

Completed in 757 milliseconds