Home
last modified time | relevance | path

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

/art/runtime/gc/
Dheap.cc118 : non_moving_space_(nullptr), in Heap()
288 non_moving_space_ = space::DlMallocSpace::CreateFromMemMap( in Heap()
291 non_moving_space_->SetFootprintLimit(non_moving_space_->Capacity()); in Heap()
292 CHECK(non_moving_space_ != nullptr) << "Failed creating non moving space " in Heap()
294 AddSpace(non_moving_space_); in Heap()
315 non_moving_space_ = main_space_; in Heap()
316 CHECK(!non_moving_space_->CanMoveObjects()); in Heap()
339 CHECK(non_moving_space_ != nullptr); in Heap()
340 CHECK(!non_moving_space_->CanMoveObjects()); in Heap()
369 if (collector::SemiSpace::kUseRememberedSet && non_moving_space_ != main_space_) { in Heap()
[all …]
Dheap-inl.h223 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