Home
last modified time | relevance | path

Searched refs:GetLiveBitmap (Results 1 – 25 of 26) sorted by relevance

12

/art/runtime/gc/collector/
Dgarbage_collector.cc121 accounting::ContinuousSpaceBitmap* live_bitmap = space->GetLiveBitmap(); in SwapBitmaps()
124 heap_->GetLiveBitmap()->ReplaceBitmap(live_bitmap, mark_bitmap); in SwapBitmaps()
133 accounting::LargeObjectBitmap* live_set = space->GetLiveBitmap(); in SwapBitmaps()
135 heap_->GetLiveBitmap()->ReplaceLargeObjectBitmap(live_set, mark_set); in SwapBitmaps()
Dsemi_space.cc70 } else if (space->GetLiveBitmap() != nullptr) { in BindBitmaps()
156 to_space_live_bitmap_ = to_space_->GetLiveBitmap(); in InitializePhase()
371 space->GetLiveBitmap() != nullptr) { in MarkReachableObjects()
392 accounting::ContinuousSpaceBitmap* live_bitmap = space->GetLiveBitmap(); in MarkReachableObjects()
403 accounting::ContinuousSpaceBitmap* live_bitmap = space->GetLiveBitmap(); in MarkReachableObjects()
426 accounting::LargeObjectBitmap* large_live_bitmap = los->GetLiveBitmap(); in MarkReachableObjects()
548 accounting::ContinuousSpaceBitmap* live_bitmap = promo_dest_space_->GetLiveBitmap(); in MarkNonForwardedObject()
594 accounting::ContinuousSpaceBitmap* bitmap = fallback_space_->GetLiveBitmap(); in MarkNonForwardedObject()
754 live_bitmap = promo_dest_space_->GetLiveBitmap(); in ProcessMarkStack()
Dimmune_spaces.cc109 if (space->GetLiveBitmap() != space->GetMarkBitmap()) { in AddSpace()
Dmark_sweep.cc301 space->GetLiveBitmap()->VisitMarkedRange(reinterpret_cast<uintptr_t>(space->Begin()), in UpdateAndMarkModUnion()
591 if (heap->GetLiveBitmap()->GetContinuousSpaceBitmap(root) == nullptr) { in VisitRoot()
1098 if (!heap_->GetLiveBitmap()->Test(obj)) { in VerifyIsLive()
1201 space->GetLiveBitmap() != nullptr) { in SweepArray()
1217 accounting::ContinuousSpaceBitmap* live_bitmap = space->GetLiveBitmap(); in SweepArray()
1257 accounting::LargeObjectBitmap* large_live_objects = large_object_space->GetLiveBitmap(); in SweepArray()
Dimmune_spaces_test.cc179 accounting::ContinuousSpaceBitmap* GetLiveBitmap() const OVERRIDE { in GetLiveBitmap() function in art::gc::collector::DummySpace
Dmark_compact.cc369 accounting::ContinuousSpaceBitmap* bitmap = space->GetLiveBitmap(); in UpdateReferences()
Dconcurrent_copying.cc393 accounting::ContinuousSpaceBitmap* live_bitmap = space->GetLiveBitmap(); in MarkingPhase()
/art/runtime/gc/space/
Dspace.cc90 accounting::ContinuousSpaceBitmap* live_bitmap = GetLiveBitmap(); in Sweep()
110 accounting::ContinuousSpaceBitmap* live_bitmap = GetLiveBitmap(); in BindLiveToMarkBitmap()
Dspace.h299 virtual accounting::ContinuousSpaceBitmap* GetLiveBitmap() const = 0;
348 accounting::LargeObjectBitmap* GetLiveBitmap() const { in GetLiveBitmap() function
432 accounting::ContinuousSpaceBitmap* GetLiveBitmap() const OVERRIDE { in GetLiveBitmap() function
Dimage_space.h96 accounting::ContinuousSpaceBitmap* GetLiveBitmap() const OVERRIDE { in GetLiveBitmap() function
Dmalloc_space.cc239 accounting::ContinuousSpaceBitmap* bitmap = space->GetLiveBitmap(); in SweepCallback()
254 GetLiveBitmap()->SetHeapSize(new_capacity); in ClampGrowthLimit()
Dzygote_space.cc113 accounting::ContinuousSpaceBitmap* bitmap = zygote_space->GetLiveBitmap(); in SweepCallback()
Dbump_pointer_space.h93 accounting::ContinuousSpaceBitmap* GetLiveBitmap() const OVERRIDE { in GetLiveBitmap() function
Dlarge_object_space.cc147 auto* live_bitmap = heap->GetLiveBitmap(); in Alloc()
589 accounting::LargeObjectBitmap* bitmap = space->GetLiveBitmap(); in SweepCallback()
602 accounting::LargeObjectBitmap* live_bitmap = GetLiveBitmap(); in Sweep()
Dregion_space.h79 accounting::ContinuousSpaceBitmap* GetLiveBitmap() const OVERRIDE { in GetLiveBitmap() function
/art/runtime/jit/
Djit_code_cache.cc364 GetLiveBitmap()->AtomicTestAndSet(FromCodeToAllocation(code_ptr)); in CommitCodeInternal()
445 bitmap_(code_cache_->GetLiveBitmap()) {} in MarkCodeVisitor()
488 CHECK(code_cache_->GetLiveBitmap()->Test(FromCodeToAllocation(code))); in Run()
667 if (GetLiveBitmap()->Test(allocation)) { in RemoveUnmarkedCode()
712 GetLiveBitmap()->AtomicTestAndSet(FromCodeToAllocation(code_ptr)); in DoCollection()
Djit_code_cache.h121 CodeCacheBitmap* GetLiveBitmap() const { in GetLiveBitmap() function
/art/runtime/gc/
Dheap.cc1044 GetLiveBitmap()->Walk(callback, arg); in VisitObjectsInternal()
1054 MarkAllocStack(space1->GetLiveBitmap(), space2->GetLiveBitmap(), in MarkAllocStackAsLive()
1055 (large_object_space_ != nullptr ? large_object_space_->GetLiveBitmap() : nullptr), in MarkAllocStackAsLive()
1070 accounting::ContinuousSpaceBitmap* live_bitmap = continuous_space->GetLiveBitmap(); in AddSpace()
1086 live_bitmap_->AddLargeObjectBitmap(discontinuous_space->GetLiveBitmap()); in AddSpace()
1111 accounting::ContinuousSpaceBitmap* live_bitmap = continuous_space->GetLiveBitmap(); in RemoveSpace()
1124 live_bitmap_->RemoveLargeObjectBitmap(discontinuous_space->GetLiveBitmap()); in RemoveSpace()
1529 if (c_space->GetLiveBitmap()->Test(obj)) { in IsLiveObjectLocked()
1535 if (d_space->GetLiveBitmap()->Test(obj)) { in IsLiveObjectLocked()
1568 if (c_space->GetLiveBitmap()->Test(obj)) { in IsLiveObjectLocked()
[all …]
Dheap.h551 accounting::HeapBitmap* GetLiveBitmap() SHARED_REQUIRES(Locks::heap_bitmap_lock_) { in GetLiveBitmap() function
/art/runtime/gc/accounting/
Dmod_union_table.cc331 ContinuousSpaceBitmap* live_bitmap = space_->GetLiveBitmap(); in Verify()
386 ContinuousSpaceBitmap* live_bitmap = space->GetLiveBitmap(); in UpdateAndMarkReferences()
458 bitmap_(space->GetLiveBitmap()), in CardBitVisitor()
Dremembered_set.cc137 ContinuousSpaceBitmap* bitmap = space_->GetLiveBitmap(); in UpdateAndMarkReferences()
Dmod_union_table_test.cc59 space->GetLiveBitmap()->Set(obj); in AllocObjectArray()
/art/oatdump/
Doatdump.cc1433 image_space_.GetLiveBitmap()->Walk(ImageDumper::Callback, this); in Dump()
1442 heap->GetLargeObjectsSpace()->GetLiveBitmap()->Walk(ImageDumper::Callback, this); in Dump()
/art/patchoat/
Dpatchoat.cc284 space->GetLiveBitmap(), in Patch()
/art/runtime/
Dthread.cc2735 if (!space->GetLiveBitmap()->Test(klass)) { in VisitDeclaringClass()
2738 } else if (!heap->GetLiveBitmap()->Test(klass)) { in VisitDeclaringClass()

12