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;
63 void ReplaceLargeObjectBitmap(LargeObjectBitmap* old_bitmap, LargeObjectBitmap* new_bitmap)
73 void AddLargeObjectBitmap(LargeObjectBitmap* bitmap);
74 void RemoveLargeObjectBitmap(LargeObjectBitmap* bitmap);
82 std::vector<LargeObjectBitmap*,
83 TrackingAllocator<LargeObjectBitmap*, kAllocatorTagHeapBitmapLOS>>
Dheap_bitmap.cc35 void HeapBitmap::ReplaceLargeObjectBitmap(LargeObjectBitmap* old_bitmap, in ReplaceLargeObjectBitmap()
36 LargeObjectBitmap* new_bitmap) { in ReplaceLargeObjectBitmap()
62 void HeapBitmap::AddLargeObjectBitmap(LargeObjectBitmap* bitmap) { in AddLargeObjectBitmap()
67 void HeapBitmap::RemoveLargeObjectBitmap(LargeObjectBitmap* bitmap) { in RemoveLargeObjectBitmap()
Dheap_bitmap-inl.h108 inline LargeObjectBitmap* HeapBitmap::GetLargeObjectBitmap(const mirror::Object* obj) const { in GetLargeObjectBitmap()
Dspace_bitmap.h258 typedef SpaceBitmap<kLargeObjectAlignment> LargeObjectBitmap; typedef
/art/runtime/gc/space/
Dspace.h347 accounting::LargeObjectBitmap* GetLiveBitmap() const { in GetLiveBitmap()
351 accounting::LargeObjectBitmap* GetMarkBitmap() const { in GetMarkBitmap()
364 std::unique_ptr<accounting::LargeObjectBitmap> live_bitmap_;
365 std::unique_ptr<accounting::LargeObjectBitmap> mark_bitmap_;
Dspace.cc84 live_bitmap_.reset(accounting::LargeObjectBitmap::Create("large live objects", nullptr, in DiscontinuousSpace()
87 mark_bitmap_.reset(accounting::LargeObjectBitmap::Create("large marked objects", nullptr, in DiscontinuousSpace()
Dlarge_object_space.cc602 accounting::LargeObjectBitmap* bitmap = space->GetLiveBitmap(); in SweepCallback()
615 accounting::LargeObjectBitmap* live_bitmap = GetLiveBitmap(); in Sweep()
616 accounting::LargeObjectBitmap* mark_bitmap = GetMarkBitmap(); in Sweep()
622 accounting::LargeObjectBitmap::SweepWalk(*live_bitmap, *mark_bitmap, in Sweep()
/art/runtime/gc/collector/
Dgarbage_collector.cc210 accounting::LargeObjectBitmap* live_set = space->GetLiveBitmap(); in SwapBitmaps()
211 accounting::LargeObjectBitmap* mark_set = space->GetMarkBitmap(); in SwapBitmaps()
Dmark_sweep.cc1280 accounting::LargeObjectBitmap* large_live_objects = large_object_space->GetLiveBitmap(); in SweepArray()
1281 accounting::LargeObjectBitmap* large_mark_objects = large_object_space->GetMarkBitmap(); in SweepArray()
Dsemi_space.cc413 accounting::LargeObjectBitmap* large_live_bitmap = los->GetLiveBitmap(); in MarkReachableObjects()
/art/runtime/gc/
Dheap.cc2608 accounting::LargeObjectBitmap* large_objects, in MarkAllocStack()