Home
last modified time | relevance | path

Searched refs:Region (Results 1 – 6 of 6) sorted by relevance

/art/runtime/arch/
Dquick_alloc_entrypoints.S49 GENERATE_ALLOC_ENTRYPOINTS _region, Region
207 GENERATE_ALLOC_ENTRYPOINTS_ALLOC_OBJECT_RESOLVED(_region, Region)
208 GENERATE_ALLOC_ENTRYPOINTS_ALLOC_OBJECT_INITIALIZED(_region, Region)
209 GENERATE_ALLOC_ENTRYPOINTS_ALLOC_OBJECT_WITH_ACCESS_CHECK(_region, Region)
210 GENERATE_ALLOC_ENTRYPOINTS_ALLOC_ARRAY_RESOLVED(_region, Region)
211 GENERATE_ALLOC_ENTRYPOINTS_ALLOC_ARRAY_RESOLVED8(_region, Region)
212 GENERATE_ALLOC_ENTRYPOINTS_ALLOC_ARRAY_RESOLVED16(_region, Region)
213 GENERATE_ALLOC_ENTRYPOINTS_ALLOC_ARRAY_RESOLVED32(_region, Region)
214 GENERATE_ALLOC_ENTRYPOINTS_ALLOC_ARRAY_RESOLVED64(_region, Region)
215 GENERATE_ALLOC_ENTRYPOINTS_ALLOC_STRING_FROM_BYTES(_region, Region)
[all …]
/art/runtime/gc/space/
Dregion_space.cc90 regions_.reset(new Region[num_regions_]); in RegionSpace()
120 Region* r = &regions_[i]; in FromSpaceSize()
132 Region* r = &regions_[i]; in UnevacFromSpaceSize()
144 Region* r = &regions_[i]; in ToSpaceSize()
152 inline bool RegionSpace::Region::ShouldBeEvacuated() { in ShouldBeEvacuated()
201 Region* r = &regions_[i]; in SetFromSpace()
264 auto clear_region = [&clear_block_begin, &clear_block_end](Region* r) { in ClearFromSpace()
273 Region* r = &regions_[i]; in ClearFromSpace()
305 Region* const cur = &regions_[i + full_count]; in ClearFromSpace()
328 Region* last_checked_region = &regions_[i]; in ClearFromSpace()
[all …]
Dregion_space.h174 Region* r = RefToRegionUnlocked(ref); in IsInFromSpace()
182 Region* r = RefToRegionUnlocked(ref); in IsInNewlyAllocatedRegion()
190 Region* r = RefToRegionUnlocked(ref); in IsInUnevacFromSpace()
198 Region* r = RefToRegionUnlocked(ref); in IsInToSpace()
206 Region* r = RefToRegionUnlocked(ref); in GetRegionType()
221 Region* reg = RefToRegionUnlocked(ref); in AddLiveBytes()
229 Region* r = &regions_[i]; in AssertAllRegionLiveBytesZeroOrCleared()
249 class Region {
251 Region() in Region() function
487 Region* RefToRegion(mirror::Object* ref) REQUIRES(!region_lock_) { in RefToRegion()
[all …]
Dregion_space-inl.h80 Region* r = &regions_[i]; in AllocNonvirtual()
93 Region* r = &regions_[i]; in AllocNonvirtual()
115 inline mirror::Object* RegionSpace::Region::Alloc(size_t num_bytes, size_t* bytes_allocated, in Alloc()
160 Region* r = &regions_[i]; in GetBytesAllocatedInternal()
195 Region* r = &regions_[i]; in GetObjectsAllocatedInternal()
232 Region* r = &regions_[i]; in WalkInternal()
314 Region* first_reg = &regions_[left]; in AllocLarge()
339 inline size_t RegionSpace::Region::BytesAllocated() const { in BytesAllocated()
/art/runtime/entrypoints/quick/
Dquick_alloc_entrypoints.cc127 GENERATE_ENTRYPOINTS_FOR_ALLOCATOR(Region, gc::kAllocatorTypeRegion)
/art/runtime/
Dstack_map.h671 template <typename Region>
672 ALWAYS_INLINE int32_t Load(const Region& region) const { in Load()
677 template <typename Region>
678 ALWAYS_INLINE void Store(Region region, int32_t value) const { in Store()