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

/openjdk7/hotspot/src/share/vm/asm/
H A Dassembler.cpp213 if (_patch_index < PatchCacheSize) {
214 _patches[_patch_index] = branch_loc;
221 ++_patch_index;
229 while (_patch_index > 0) {
230 --_patch_index;
232 if (_patch_index >= PatchCacheSize) {
235 branch_loc = _patches[_patch_index];
378 for (int i = 0; i < _patch_index; ++i) {
H A Dassembler.hpp83 * an array of unresolved instruction code offsets. _patch_index
85 * overflows (i.e., _patch_index grows larger than the array size), a
110 int _patch_index; member in class:VALUE_OBJ_CLASS_SPEC
144 bool is_unbound() const { return _loc == -1 && _patch_index > 0; }
145 bool is_unused() const { return _loc == -1 && _patch_index == 0; }
164 _patch_index = 0;

Completed in 31 milliseconds