Home
last modified time | relevance | path

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

/art/runtime/gc/
Dheap.cc158 : non_moving_space_(nullptr), in Heap()
435 non_moving_space_ = space::DlMallocSpace::CreateFromMemMap( in Heap()
438 non_moving_space_->SetFootprintLimit(non_moving_space_->Capacity()); in Heap()
439 CHECK(non_moving_space_ != nullptr) << "Failed creating non moving space " in Heap()
441 AddSpace(non_moving_space_); in Heap()
466 non_moving_space_ = main_space_; in Heap()
467 CHECK(!non_moving_space_->CanMoveObjects()); in Heap()
490 CHECK(non_moving_space_ != nullptr); in Heap()
491 CHECK(!non_moving_space_->CanMoveObjects()); in Heap()
544 if (collector::SemiSpace::kUseRememberedSet && non_moving_space_ != main_space_) { in Heap()
[all …]
Dheap-inl.h300 ret = non_moving_space_->Alloc(self, alloc_size, bytes_allocated, usable_size, in TryToAllocate()
Dheap.h625 return non_moving_space_; in GetNonMovingSpace()
1031 space::MallocSpace* non_moving_space_; variable
/art/runtime/gc/collector/
Dconcurrent_copying-inl.h66 DCHECK(region_space_->IsInToSpace(to_ref) || heap_->non_moving_space_->HasAddress(to_ref)) in Mark()
Dconcurrent_copying.cc1820 to_ref = heap_->non_moving_space_->Alloc(Thread::Current(), obj_size, in Copy()
1862 DCHECK(heap_->non_moving_space_->HasAddress(to_ref)); in Copy()
1869 heap_->non_moving_space_->Free(Thread::Current(), to_ref); in Copy()
1877 CHECK(region_space_->IsInToSpace(to_ref) || heap_->non_moving_space_->HasAddress(to_ref)); in Copy()
1898 DCHECK(heap_->non_moving_space_->HasAddress(to_ref)); in Copy()
1926 heap_->non_moving_space_->HasAddress(to_ref)) in IsMarked()