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

/openjdk7/hotspot/src/share/vm/asm/
H A DcodeBuffer.hpp176 bool allocates2(address pc) const { return pc >= _start && pc <= _limit; } function in class:VALUE_OBJ_CLASS_SPEC
178 void set_end(address pc) { assert(allocates2(pc), err_msg("not in CodeBuffer memory: " PTR_FORMAT " <= " PTR_FORMAT " <= " PTR_FORMAT, _start, pc, _limit)); _end = pc; }
192 assert(allocates2(pc), "relocation addr must be in this section");
H A DcodeBuffer.cpp282 assert(allocates2(branch_pc), "sanity");
/openjdk7/hotspot/src/share/vm/code/
H A DrelocInfo.cpp545 if (addr0 == NULL || dest->allocates2(addr0)) return;
685 guarantee(_target == NULL || dest->allocates2(_target), "must be within the given code section");
692 guarantee(sect->allocates2(_target), "must be in correct section");

Completed in 38 milliseconds