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

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DcollectionSetChooser.hpp33 GrowableArray<HeapRegion*> _regions; member in class:CollectionSetChooser
39 uint regions_length() { return (uint) _regions.length(); }
40 HeapRegion* regions_at(uint i) { return _regions.at((int) i); }
42 _regions.at_put((int) i, hr);
45 _regions.at_put_grow((int) i, hr);
47 void regions_trunc_to(uint i) { _regions.trunc_to((uint) i); }
79 err_msg("Unexpected NULL hr in _regions at index %u",
148 // Returns true if the used portion of "_regions" is properly
H A DheapRegionSeq.cpp89 _regions = NEW_C_HEAP_ARRAY(HeapRegion*, max_length, mtGC);
90 memset(_regions, 0, (size_t) max_length * sizeof(HeapRegion*));
91 _regions_biased = _regions - ((uintx) bottom >> _region_shift);
93 assert(&_regions[0] == &_regions_biased[addr_to_index_biased(bottom)],
125 assert(_regions[index] == NULL, "invariant");
126 _regions[index] = new_hr;
259 HeapRegion* hr = _regions[i];
285 guarantee(_regions[i] == NULL, err_msg("invariant i: %u", i));
H A DcollectionSetChooser.cpp70 // "_regions(100, true)": initialize the growable array and inform it
82 _regions((ResourceObj::set_allocation_type((address) &_regions,
107 guarantee(curr != NULL, "Regions in _regions array cannot be NULL");
132 _regions.sort(order_regions);
154 _regions.append(hr);
212 _regions.clear();
H A DheapRegionSeq.hpp33 // instances). They are kept in the _regions array in address
60 HeapRegion** _regions; member in class:HeapRegionSeq
62 // Version of _regions biased to address 0
H A DheapRegionSeq.inline.hpp60 HeapRegion* hr = _regions[index];
H A DvmStructs_g1.hpp36 nonstatic_field(HeapRegionSeq, _regions, HeapRegion**) \

Completed in 1099 milliseconds