Home
last modified time | relevance | path

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

/art/runtime/gc/
Dheap.cc249 : non_moving_space_(nullptr), in Heap()
540 non_moving_space_ = space::DlMallocSpace::CreateFromMemMap(std::move(non_moving_space_mem_map), in Heap()
547 CHECK(non_moving_space_ != nullptr) << "Failed creating non moving space " in Heap()
549 non_moving_space_->SetFootprintLimit(non_moving_space_->Capacity()); in Heap()
550 AddSpace(non_moving_space_); in Heap()
580 non_moving_space_ = main_space_; in Heap()
581 CHECK(!non_moving_space_->CanMoveObjects()); in Heap()
596 CHECK(non_moving_space_ != nullptr); in Heap()
597 CHECK(!non_moving_space_->CanMoveObjects()); in Heap()
649 if (collector::SemiSpace::kUseRememberedSet && non_moving_space_ != main_space_) { in Heap()
[all …]
Dheap-inl.h359 ret = non_moving_space_->Alloc(self, in TryToAllocate()
Dheap.h733 return non_moving_space_; in GetNonMovingSpace()
1237 space::MallocSpace* non_moving_space_; variable
/art/runtime/gc/collector/
Dconcurrent_copying.cc298 DCHECK(heap_->non_moving_space_ != nullptr); in CreateInterRegionRefBitmaps()
310 reinterpret_cast<uint8_t*>(heap_->non_moving_space_->Begin()), in CreateInterRegionRefBitmaps()
311 heap_->non_moving_space_->Limit() - heap_->non_moving_space_->Begin()); in CreateInterRegionRefBitmaps()
328 CHECK(space == region_space_ || space == heap_->non_moving_space_); in BindBitmaps()
1145 DCHECK(heap_->non_moving_space_->HasAddress(ref)); in AddLiveBytesAndScanRef()
1469 DCHECK(space == heap_->non_moving_space_); in CopyingPhase()
1490 DCHECK(space == heap_->non_moving_space_); in CopyingPhase()
2576 DCHECK(IsAligned<kPageSize>(heap_->non_moving_space_->Limit())); in CaptureRssAtPeak()
2577 gc_ranges.emplace_back(range_t(heap_->non_moving_space_->Begin(), in CaptureRssAtPeak()
2578 heap_->non_moving_space_->Limit())); in CaptureRssAtPeak()
[all …]
Dconcurrent_copying-inl.h169 DCHECK(region_space_->IsInToSpace(to_ref) || heap_->non_moving_space_->HasAddress(to_ref)) in Mark()