Home
last modified time | relevance | path

Searched refs:swap_bitmaps (Results 1 – 16 of 16) sorted by relevance

/art/runtime/gc/space/
Dspace.cc90 collector::ObjectBytePair ContinuousMemMapAllocSpace::Sweep(bool swap_bitmaps) { in Sweep() argument
97 SweepCallbackContext scc(swap_bitmaps, this); in Sweep()
98 if (swap_bitmaps) { in Sweep()
143 : swap_bitmaps(swap_bitmaps_in), space(space_in), self(Thread::Current()) { in SweepCallbackContext()
Dspace.h250 SweepCallbackContext(bool swap_bitmaps, space::Space* space);
251 const bool swap_bitmaps; member
439 collector::ObjectBytePair Sweep(bool swap_bitmaps);
Dzygote_space.cc114 if (!context->swap_bitmaps) { in SweepCallback()
Dlarge_object_space.cc581 if (!context->swap_bitmaps) { in SweepCallback()
591 collector::ObjectBytePair LargeObjectSpace::Sweep(bool swap_bitmaps) { in Sweep() argument
597 if (swap_bitmaps) { in Sweep()
600 AllocSpace::SweepCallbackContext scc(swap_bitmaps, this); in Sweep()
Dlarge_object_space.h77 collector::ObjectBytePair Sweep(bool swap_bitmaps);
Dmalloc_space.cc242 if (!context->swap_bitmaps) { in SweepCallback()
/art/runtime/gc/collector/
Dsticky_mark_sweep.h52 void Sweep(bool swap_bitmaps)
Dsticky_mark_sweep.cc76 void StickyMarkSweep::Sweep(bool swap_bitmaps ATTRIBUTE_UNUSED) { in Sweep()
Dmark_sweep.h149 virtual void Sweep(bool swap_bitmaps)
154 void SweepLargeObjects(bool swap_bitmaps) REQUIRES(Locks::heap_bitmap_lock_);
157 void SweepArray(accounting::ObjectStack* allocation_stack_, bool swap_bitmaps)
Dmark_compact.cc531 void MarkCompact::Sweep(bool swap_bitmaps) { in Sweep() argument
542 RecordFree(alloc_space->Sweep(swap_bitmaps)); in Sweep()
545 SweepLargeObjects(swap_bitmaps); in Sweep()
548 void MarkCompact::SweepLargeObjects(bool swap_bitmaps) { in SweepLargeObjects() argument
552 RecordFreeLOS(los->Sweep(swap_bitmaps)); in SweepLargeObjects()
Dmark_compact.h108 void Sweep(bool swap_bitmaps) REQUIRES(Locks::heap_bitmap_lock_, Locks::mutator_lock_);
111 void SweepLargeObjects(bool swap_bitmaps) REQUIRES(Locks::heap_bitmap_lock_);
Dsemi_space.h138 virtual void Sweep(bool swap_bitmaps)
143 void SweepLargeObjects(bool swap_bitmaps) REQUIRES(Locks::heap_bitmap_lock_);
Dsemi_space.cc652 void SemiSpace::Sweep(bool swap_bitmaps) { in Sweep() argument
663 RecordFree(alloc_space->Sweep(swap_bitmaps)); in Sweep()
667 SweepLargeObjects(swap_bitmaps); in Sweep()
671 void SemiSpace::SweepLargeObjects(bool swap_bitmaps) { in SweepLargeObjects() argument
676 RecordFreeLOS(los->Sweep(swap_bitmaps)); in SweepLargeObjects()
Dmark_sweep.cc1183 void MarkSweep::SweepArray(accounting::ObjectStack* allocations, bool swap_bitmaps) { in SweepArray() argument
1218 if (swap_bitmaps) { in SweepArray()
1258 if (swap_bitmaps) { in SweepArray()
1283 void MarkSweep::Sweep(bool swap_bitmaps) { in Sweep() argument
1302 RecordFree(alloc_space->Sweep(swap_bitmaps)); in Sweep()
1305 SweepLargeObjects(swap_bitmaps); in Sweep()
1308 void MarkSweep::SweepLargeObjects(bool swap_bitmaps) { in SweepLargeObjects() argument
1312 RecordFreeLOS(los->Sweep(swap_bitmaps)); in SweepLargeObjects()
Dconcurrent_copying.h212 void Sweep(bool swap_bitmaps)
214 void SweepLargeObjects(bool swap_bitmaps)
Dconcurrent_copying.cc1663 void ConcurrentCopying::Sweep(bool swap_bitmaps) { in Sweep() argument
1683 RecordFree(alloc_space->Sweep(swap_bitmaps)); in Sweep()
1686 SweepLargeObjects(swap_bitmaps); in Sweep()
1712 void ConcurrentCopying::SweepLargeObjects(bool swap_bitmaps) { in SweepLargeObjects() argument
1715 RecordFreeLOS(heap_->GetLargeObjectsSpace()->Sweep(swap_bitmaps)); in SweepLargeObjects()