Home
last modified time | relevance | path

Searched refs:LargeObjectBitmap (Results 1 – 11 of 11) sorted by relevance

/art/runtime/gc/accounting/
Dheap_bitmap.h51 LargeObjectBitmap* GetLargeObjectBitmap(const mirror::Object* obj) const;
65 void AddLargeObjectBitmap(LargeObjectBitmap* bitmap);
66 void RemoveLargeObjectBitmap(LargeObjectBitmap* bitmap);
74 std::vector<LargeObjectBitmap*,
75 TrackingAllocator<LargeObjectBitmap*, kAllocatorTagHeapBitmapLOS>>
Dheap_bitmap.cc45 void HeapBitmap::AddLargeObjectBitmap(LargeObjectBitmap* bitmap) { in AddLargeObjectBitmap()
50 void HeapBitmap::RemoveLargeObjectBitmap(LargeObjectBitmap* bitmap) { in RemoveLargeObjectBitmap()
Dheap_bitmap-inl.h108 inline LargeObjectBitmap* HeapBitmap::GetLargeObjectBitmap(const mirror::Object* obj) const { in GetLargeObjectBitmap()
Dspace_bitmap.h273 using LargeObjectBitmap = SpaceBitmap<kLargeObjectAlignment>; variable
/art/runtime/gc/space/
Dspace.cc84 live_bitmap_ = accounting::LargeObjectBitmap::Create("large live objects", nullptr, capacity); in DiscontinuousSpace()
86 mark_bitmap_ = accounting::LargeObjectBitmap::Create("large marked objects", nullptr, capacity); in DiscontinuousSpace()
Dspace.h352 accounting::LargeObjectBitmap* GetLiveBitmap() { in GetLiveBitmap()
356 accounting::LargeObjectBitmap* GetMarkBitmap() { in GetMarkBitmap()
369 accounting::LargeObjectBitmap live_bitmap_;
370 accounting::LargeObjectBitmap mark_bitmap_;
Dlarge_object_space.cc620 accounting::LargeObjectBitmap* bitmap = space->GetLiveBitmap(); in SweepCallback()
633 accounting::LargeObjectBitmap* live_bitmap = GetLiveBitmap(); in Sweep()
634 accounting::LargeObjectBitmap* mark_bitmap = GetMarkBitmap(); in Sweep()
640 accounting::LargeObjectBitmap::SweepWalk(*live_bitmap, *mark_bitmap, in Sweep()
/art/runtime/gc/collector/
Dconcurrent_copying.cc1223 accounting::LargeObjectBitmap* los_bitmap = nullptr; in TestAndSetMarkBitForRef()
2333 accounting::LargeObjectBitmap* los_bitmap = in ProcessMarkStackRef()
2604 accounting::LargeObjectBitmap* large_live_objects = large_object_space->GetLiveBitmap(); in SweepArray()
2605 accounting::LargeObjectBitmap* large_mark_objects = large_object_space->GetMarkBitmap(); in SweepArray()
2638 accounting::LargeObjectBitmap* const live_bitmap = los->GetLiveBitmap(); in MarkZygoteLargeObjects()
2639 accounting::LargeObjectBitmap* const mark_bitmap = los->GetMarkBitmap(); in MarkZygoteLargeObjects()
2705 accounting::LargeObjectBitmap* bitmap = heap_->GetLargeObjectsSpace()->GetMarkBitmap(); in CaptureRssAtPeak()
2941 accounting::LargeObjectBitmap* los_bitmap = in AssertToSpaceInvariant()
3082 accounting::LargeObjectBitmap* los_bitmap = nullptr; in LogFromSpaceRefHolder()
3116 accounting::LargeObjectBitmap* los_bitmap = nullptr; in IsMarkedInNonMovingSpace()
[all …]
Dmark_sweep.cc1283 accounting::LargeObjectBitmap* large_live_objects = large_object_space->GetLiveBitmap(); in SweepArray()
1284 accounting::LargeObjectBitmap* large_mark_objects = large_object_space->GetMarkBitmap(); in SweepArray()
Dmark_compact.cc617 accounting::LargeObjectBitmap* const live_bitmap = los->GetLiveBitmap(); in MarkZygoteLargeObjects()
618 accounting::LargeObjectBitmap* const mark_bitmap = los->GetMarkBitmap(); in MarkZygoteLargeObjects()
4123 accounting::LargeObjectBitmap* los_bitmap = heap_->GetLargeObjectsSpace()->GetMarkBitmap(); in MarkObjectNonNullNoPush()
4205 accounting::LargeObjectBitmap* los_bitmap = heap_->GetLargeObjectsSpace()->GetMarkBitmap(); in IsMarked()
/art/runtime/gc/
Dheap.cc2599 accounting::LargeObjectBitmap* large_objects, in MarkAllocStack()