Searched refs:high_bound (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DobjectStartArray.cpp84 HeapWord* high_bound = mr.end(); local
86 assert((uintptr_t(high_bound) & (block_size - 1)) == 0, "heap must end at block boundary");
119 assert(block_for_addr(high_bound-1) <= &_raw_base[_blocks_region.byte_size()-1], "Checking end of map");
/openjdk7/hotspot/src/share/vm/code/
H A DcodeCache.hpp162 static address high_bound() { return (address) _heap->high_boundary(); } function in class:CodeCache
H A DcodeCache.cpp784 event.set_reservedTopAddress((u8)high_bound());
/openjdk7/hotspot/src/share/vm/memory/
H A DcardTableModRefBS.cpp74 HeapWord* high_bound = _whole_heap.end(); local
76 assert((uintptr_t(high_bound) & (card_size - 1)) == 0, "heap must end at card boundary");
111 assert(byte_for(high_bound-1) <= &_byte_map[_last_valid_index], "Checking end of map");
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dassembler_sparc.inline.hpp606 return d < CodeCache::low_bound() || d > CodeCache::high_bound();
608 return !is_in_wdisp30_range(d, CodeCache::low_bound()) || !is_in_wdisp30_range(d, CodeCache::high_bound());
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dassembler_x86.cpp4425 disp = (int64_t)adr._target - ((int64_t)CodeCache::high_bound() + sizeof(int));
4452 !is_simm32(addr - (intptr_t)CodeCache::high_bound());

Completed in 69 milliseconds