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

/openjdk7/hotspot/src/share/vm/code/
H A Dstubs.cpp54 // indicated via the _buffer_limit index since the last
58 // last entry of the 2nd block, _buffer_limit is reset
74 _buffer_limit = blob->content_size();
119 assert(_buffer_limit == _buffer_size, "buffer must be fully usable");
129 _buffer_limit = _queue_end;
136 assert(_buffer_limit <= _buffer_size, "queue invariant broken");
169 assert(_queue_begin <= _buffer_limit, "sanity check");
175 _buffer_limit = _buffer_size;
176 } else if (_queue_begin == _buffer_limit) {
179 _buffer_limit
[all...]
H A Dstubs.hpp165 int _buffer_limit; // the (byte) index of the actual buffer limit (_buffer_limit <= _buffer_size) member in class:StubQueue
171 void check_index(int i) const { assert(0 <= i && i < _buffer_limit && i % CodeEntryAlignment == 0, "illegal index"); }
200 bool contains(address pc) const { return _stub_buffer <= pc && pc < _stub_buffer + _buffer_limit; }
203 address code_end() const { return _stub_buffer + _buffer_limit; }
221 if (i == _buffer_limit) i = 0;
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp813 nonstatic_field(StubQueue, _buffer_limit, int) \

Completed in 35 milliseconds