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_ = accounting::LargeObjectBitmap::Create("large live objects", nullptr, capacity); in DiscontinuousSpace()
85 CHECK(live_bitmap_.IsValid()); in DiscontinuousSpace()
111 mark_bitmap_.CopyView(live_bitmap_); in BindLiveToMarkBitmap()
129 std::swap(live_bitmap_, mark_bitmap_); in SwapBitmaps()
131 std::string temp_name(live_bitmap_.GetName()); in SwapBitmaps()
132 live_bitmap_.SetName(mark_bitmap_.GetName()); in SwapBitmaps()
Dmalloc_space.cc66 live_bitmap_ = accounting::ContinuousSpaceBitmap::Create( in MallocSpace()
69 CHECK(live_bitmap_.IsValid()) << "could not create allocspace live bitmap #" in MallocSpace()
231 live_bitmap_.SetHeapLimit(reinterpret_cast<uintptr_t>(End())); in CreateZygoteSpace()
232 CHECK_EQ(live_bitmap_.HeapLimit(), reinterpret_cast<uintptr_t>(End())); in CreateZygoteSpace()
239 std::move(live_bitmap_), in CreateZygoteSpace()
Dimage_space.h186 return &live_bitmap_; in GetLiveBitmap()
192 return &live_bitmap_; in GetMarkBitmap()
299 accounting::ContinuousSpaceBitmap live_bitmap_; variable
Dspace.h350 return &live_bitmap_; in GetLiveBitmap()
366 accounting::LargeObjectBitmap live_bitmap_; variable
440 return &live_bitmap_; in GetLiveBitmap()
455 accounting::ContinuousSpaceBitmap live_bitmap_;
Dzygote_space.cc57 zygote_space->live_bitmap_ = std::move(live_bitmap); in Create()
Dlarge_object_space.cc105 std::swap(live_bitmap_, mark_bitmap_); in SwapBitmaps()
107 std::string temp_name = live_bitmap_.GetName(); in SwapBitmaps()
108 live_bitmap_.SetName(mark_bitmap_.GetName()); in SwapBitmaps()
122 mark_bitmap_.CopyFrom(&live_bitmap_); in CopyLiveToMarked()
Ddlmalloc_space.cc340 live_bitmap_.Clear(); in Clear()
Drosalloc_space.cc430 live_bitmap_.Clear(); in Clear()
Dimage_space.cc91 live_bitmap_(std::move(live_bitmap)), in ImageSpace()
95 DCHECK(live_bitmap_.IsValid()); in ImageSpace()
346 CHECK(live_bitmap_.Test(obj)) << obj->PrettyTypeOf(); in VerifyImageAllocations()
/art/runtime/jit/
Djit_code_cache.h490 return live_bitmap_.get(); in GetLiveBitmap()
572 std::unique_ptr<CodeCacheBitmap> live_bitmap_; variable
Djit_code_cache.cc1147 live_bitmap_.reset(CodeCacheBitmap::Create( in GarbageCollectCache()
1234 live_bitmap_.reset(nullptr); in GarbageCollectCache()
/art/runtime/gc/
Dheap.h653 return live_bitmap_.get(); in GetLiveBitmap()
1454 std::unique_ptr<accounting::HeapBitmap> live_bitmap_ GUARDED_BY(Locks::heap_bitmap_lock_);
Dheap.cc387 live_bitmap_.reset(new accounting::HeapBitmap(this)); in Heap()
1049 live_bitmap_->AddContinuousSpaceBitmap(live_bitmap); in AddSpace()
1061 live_bitmap_->AddLargeObjectBitmap(discontinuous_space->GetLiveBitmap()); in AddSpace()
1090 live_bitmap_->RemoveContinuousSpaceBitmap(live_bitmap); in RemoveSpace()
1099 live_bitmap_->RemoveLargeObjectBitmap(discontinuous_space->GetLiveBitmap()); in RemoveSpace()