Home
last modified time | relevance | path

Searched refs:region_space_ (Results 1 – 5 of 5) sorted by relevance

/art/runtime/gc/collector/
Dconcurrent_copying.cc40 region_space_(nullptr), gc_barrier_(new Barrier(0)), mark_queue_(2 * MB), in ConcurrentCopying()
117 } else if (space == region_space_) { in BindBitmaps()
132 LOG(INFO) << "Region-space : " << reinterpret_cast<void*>(region_space_->Begin()) << "-" in InitializePhase()
133 << reinterpret_cast<void*>(region_space_->Limit()); in InitializePhase()
170 concurrent_copying_->region_space_->RevokeThreadLocalBuffers(thread); in Run()
174 concurrent_copying_->region_space_->RevokeThreadLocalBuffers(thread); in Run()
204 cc->region_space_->SetFromSpace(cc->rb_table_, cc->force_evacuate_all_); in Run()
208 cc->from_space_num_objects_at_first_pause_ = cc->region_space_->GetObjectsAllocated(); in Run()
209 cc->from_space_num_bytes_at_first_pause_ = cc->region_space_->GetBytesAllocated(); in Run()
227 LOG(INFO) << "time=" << region_space_->Time(); in FlipThreadRoots()
[all …]
Dconcurrent_copying.h165 region_space_ = region_space; in SetRegionSpace()
168 return region_space_; in RegionSpace()
240 space::RegionSpace* region_space_; // The underlying region space. variable
/art/runtime/gc/
Dheap-inl.h320 DCHECK(region_space_ != nullptr); in TryToAllocate()
322 ret = region_space_->AllocNonvirtual<false>(alloc_size, bytes_allocated, usable_size, in TryToAllocate()
327 DCHECK(region_space_ != nullptr); in TryToAllocate()
334 if (!region_space_->AllocNewTlab(self)) { in TryToAllocate()
336 ret = region_space_->AllocNonvirtual<false>(alloc_size, bytes_allocated, usable_size, in TryToAllocate()
345 ret = region_space_->AllocNonvirtual<false>(alloc_size, bytes_allocated, usable_size, in TryToAllocate()
356 ret = region_space_->AllocNonvirtual<false>(alloc_size, bytes_allocated, usable_size, in TryToAllocate()
Dheap.cc188 region_space_(nullptr), in Heap()
355 region_space_ = space::RegionSpace::Create("Region space", capacity_ * 2, request_begin); in Heap()
356 AddSpace(region_space_); in Heap()
810 DCHECK(region_space_ == nullptr); in VisitObjects()
827 if (region_space_ != nullptr) { in VisitObjectsInternalRegionSpace()
836 region_space_->Walk(callback, arg); in VisitObjectsInternalRegionSpace()
1156 space = region_space_; in ThrowOutOfMemoryError()
1269 if (region_space_ != nullptr) { in TrimSpaces()
1270 total_alloc_space_allocated -= region_space_->GetBytesAllocated(); in TrimSpaces()
1344 if (region_space_ != nullptr && region_space_->HasAddress(obj)) { in IsLiveObjectLocked()
[all …]
Dheap.h1113 space::RegionSpace* region_space_; variable