Home
last modified time | relevance | path

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

/art/runtime/gc/
Dheap.cc132 : non_moving_space_(nullptr), in Heap()
345 non_moving_space_ = space::DlMallocSpace::CreateFromMemMap( in Heap()
348 non_moving_space_->SetFootprintLimit(non_moving_space_->Capacity()); in Heap()
349 CHECK(non_moving_space_ != nullptr) << "Failed creating non moving space " in Heap()
351 AddSpace(non_moving_space_); in Heap()
376 non_moving_space_ = main_space_; in Heap()
377 CHECK(!non_moving_space_->CanMoveObjects()); in Heap()
400 CHECK(non_moving_space_ != nullptr); in Heap()
401 CHECK(!non_moving_space_->CanMoveObjects()); in Heap()
447 if (collector::SemiSpace::kUseRememberedSet && non_moving_space_ != main_space_) { in Heap()
[all …]
Dheap-inl.h283 ret = non_moving_space_->Alloc(self, alloc_size, bytes_allocated, usable_size, in TryToAllocate()
Dheap.h569 return non_moving_space_; in GetNonMovingSpace()
907 space::MallocSpace* non_moving_space_; variable
/art/runtime/gc/collector/
Dconcurrent_copying.cc1321 to_ref = heap_->non_moving_space_->Alloc(Thread::Current(), obj_size, in Copy()
1363 DCHECK(heap_->non_moving_space_->HasAddress(to_ref)); in Copy()
1370 heap_->non_moving_space_->Free(Thread::Current(), to_ref); in Copy()
1378 CHECK(region_space_->IsInToSpace(to_ref) || heap_->non_moving_space_->HasAddress(to_ref)); in Copy()
1399 DCHECK(heap_->non_moving_space_->HasAddress(to_ref)); in Copy()
1427 heap_->non_moving_space_->HasAddress(to_ref)) in IsMarked()
1524 DCHECK(region_space_->IsInToSpace(to_ref) || heap_->non_moving_space_->HasAddress(to_ref)) in Mark()