Home
last modified time | relevance | path

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

/art/runtime/gc/
Dheap.cc128 : non_moving_space_(nullptr), in Heap()
307 non_moving_space_ = space::DlMallocSpace::CreateFromMemMap( in Heap()
310 non_moving_space_->SetFootprintLimit(non_moving_space_->Capacity()); in Heap()
311 CHECK(non_moving_space_ != nullptr) << "Failed creating non moving space " in Heap()
313 AddSpace(non_moving_space_); in Heap()
334 non_moving_space_ = main_space_; in Heap()
335 CHECK(!non_moving_space_->CanMoveObjects()); in Heap()
358 CHECK(non_moving_space_ != nullptr); in Heap()
359 CHECK(!non_moving_space_->CanMoveObjects()); in Heap()
389 if (collector::SemiSpace::kUseRememberedSet && non_moving_space_ != main_space_) { in Heap()
[all …]
Dheap-inl.h235 ret = non_moving_space_->Alloc(self, alloc_size, bytes_allocated, usable_size); in TryToAllocate()
Dheap.h533 return non_moving_space_; in GetNonMovingSpace()
787 space::MallocSpace* non_moving_space_; variable