Home
last modified time | relevance | path

Searched refs:live_bitmap_ (Results 1 – 13 of 13) sorted by relevance

/art/runtime/gc/space/
Dspace.cc84 live_bitmap_.reset(accounting::LargeObjectBitmap::Create("large live objects", nullptr, in DiscontinuousSpace()
86 CHECK(live_bitmap_.get() != nullptr); in DiscontinuousSpace()
130 CHECK_EQ(mark_bitmap_.release(), live_bitmap_.get()); in UnBindBitmaps()
136 live_bitmap_.swap(mark_bitmap_); in SwapBitmaps()
138 std::string temp_name(live_bitmap_->GetName()); in SwapBitmaps()
139 live_bitmap_->SetName(mark_bitmap_->GetName()); in SwapBitmaps()
Dmalloc_space.cc66 live_bitmap_.reset(accounting::ContinuousSpaceBitmap::Create( in MallocSpace()
69 CHECK(live_bitmap_.get() != nullptr) << "could not create allocspace live bitmap #" in MallocSpace()
232 live_bitmap_->SetHeapLimit(reinterpret_cast<uintptr_t>(End())); in CreateZygoteSpace()
233 CHECK_EQ(live_bitmap_->HeapLimit(), reinterpret_cast<uintptr_t>(End())); in CreateZygoteSpace()
239 live_bitmap_.release(), mark_bitmap_.release()); in CreateZygoteSpace()
Dimage_space.h101 return live_bitmap_.get(); in GetLiveBitmap()
107 return live_bitmap_.get(); in GetMarkBitmap()
194 std::unique_ptr<accounting::ContinuousSpaceBitmap> live_bitmap_; variable
Dspace.h348 return live_bitmap_.get(); in GetLiveBitmap()
364 std::unique_ptr<accounting::LargeObjectBitmap> live_bitmap_; variable
439 return live_bitmap_.get(); in GetLiveBitmap()
454 std::unique_ptr<accounting::ContinuousSpaceBitmap> live_bitmap_;
Dzygote_space.cc56 CHECK(zygote_space->live_bitmap_.get() == nullptr); in Create()
58 zygote_space->live_bitmap_.reset(live_bitmap); in Create()
Dlarge_object_space.cc104 live_bitmap_.swap(mark_bitmap_); in SwapBitmaps()
106 std::string temp_name = live_bitmap_->GetName(); in SwapBitmaps()
107 live_bitmap_->SetName(mark_bitmap_->GetName()); in SwapBitmaps()
121 mark_bitmap_->CopyFrom(live_bitmap_.get()); in CopyLiveToMarked()
Ddlmalloc_space.cc340 live_bitmap_->Clear(); in Clear()
Drosalloc_space.cc430 live_bitmap_->Clear(); in Clear()
Dimage_space.cc80 live_bitmap_(std::move(live_bitmap)), in ImageSpace()
83 DCHECK(live_bitmap_ != nullptr); in ImageSpace()
351 CHECK(live_bitmap_->Test(obj)) << obj->PrettyTypeOf(); in VerifyImageAllocations()
/art/runtime/jit/
Djit_code_cache.h388 return live_bitmap_.get(); in GetLiveBitmap()
440 std::unique_ptr<CodeCacheBitmap> live_bitmap_; variable
Djit_code_cache.cc1535 live_bitmap_.reset(CodeCacheBitmap::Create( in GarbageCollectCache()
1617 live_bitmap_.reset(nullptr); in GarbageCollectCache()
/art/runtime/gc/
Dheap.h637 return live_bitmap_.get(); in GetLiveBitmap()
1407 std::unique_ptr<accounting::HeapBitmap> live_bitmap_ GUARDED_BY(Locks::heap_bitmap_lock_);
Dheap.cc336 live_bitmap_.reset(new accounting::HeapBitmap(this)); in Heap()
1037 live_bitmap_->AddContinuousSpaceBitmap(live_bitmap); in AddSpace()
1049 live_bitmap_->AddLargeObjectBitmap(discontinuous_space->GetLiveBitmap()); in AddSpace()
1078 live_bitmap_->RemoveContinuousSpaceBitmap(live_bitmap); in RemoveSpace()
1087 live_bitmap_->RemoveLargeObjectBitmap(discontinuous_space->GetLiveBitmap()); in RemoveSpace()