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

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DconcurrentMark.inline.hpp274 HeapWord* objAddr = (HeapWord*) obj; local
275 assert(_g1h->is_in_g1_reserved(objAddr), "invariant");
277 _g1h->heap_region_containing((HeapWord*) objAddr)), "invariant");
279 assert(_nextMarkBitMap->isMarked(objAddr), "invariant");
327 HeapWord* objAddr = (HeapWord*) obj; local
329 if (_g1h->is_in_g1_reserved(objAddr)) {
331 if (!_nextMarkBitMap->isMarked(objAddr)) {
351 if (_finger != NULL && objAddr < _finger) {
357 } else if (_curr_region != NULL && objAddr < _region_limit) {
359 } else if (objAddr < global_finge
[all...]

Completed in 31 milliseconds