Searched defs:relocation_begin (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/code/
H A DcodeBlob.hpp117 relocInfo* relocation_begin() const { return (relocInfo*) header_end(); }; function in class:VALUE_OBJ_CLASS_SPEC
135 int relocation_size() const { return (address) relocation_end() - (address) relocation_begin(); }
142 bool relocation_contains(relocInfo* addr) const{ return relocation_begin() <= addr && addr < relocation_end(); }
H A DrelocInfo.cpp154 _current = nm->relocation_begin() - 1;
222 // relocation_begin: relocInfo ...
230 address relocation_begin = (address)dest_begin; local
232 int total_size = relocation_end - relocation_begin;
235 Copy::fill_to_bytes(relocation_begin + locs_size, total_size-locs_size, 0);
250 RelocIndexEntry* index = (RelocIndexEntry *)(relocation_begin + locs_size);

Completed in 35 milliseconds