Searched refs:los (Results 1 – 7 of 7) sorted by relevance
/art/runtime/gc/space/ |
D | large_object_space_test.cc | 40 LargeObjectSpace* los = nullptr; in LargeObjectTest() local 43 los = space::LargeObjectMapSpace::Create("large object space"); in LargeObjectTest() 45 los = space::FreeListSpace::Create("large object space", nullptr, capacity); in LargeObjectTest() 49 CHECK_LT(static_cast<uintptr_t>(los->GetLiveBitmap()->HeapBegin()), in LargeObjectTest() 50 static_cast<uintptr_t>(los->GetLiveBitmap()->HeapLimit())); in LargeObjectTest() 51 CHECK_LE(static_cast<uintptr_t>(los->GetLiveBitmap()->HeapBegin() + capacity), in LargeObjectTest() 52 static_cast<uintptr_t>(los->GetLiveBitmap()->HeapLimit())); in LargeObjectTest() 63 mirror::Object* obj = los->Alloc(self, request_size, &allocation_size, nullptr, in LargeObjectTest() 66 ASSERT_EQ(allocation_size, los->AllocationSize(obj, nullptr)); in LargeObjectTest() 86 ASSERT_FALSE(los->IsZygoteLargeObject(self, obj)); in LargeObjectTest() [all …]
|
/art/runtime/gc/collector/ |
D | semi_space.cc | 398 space::LargeObjectSpace* los = GetHeap()->GetLargeObjectsSpace(); in MarkReachableObjects() local 399 if (is_large_object_space_immune_ && los != nullptr) { in MarkReachableObjects() 405 los->CopyLiveToMarked(); in MarkReachableObjects() 411 accounting::LargeObjectBitmap* large_live_bitmap = los->GetLiveBitmap(); in MarkReachableObjects() 412 std::pair<uint8_t*, uint8_t*> range = los->GetBeginEndAtomic(); in MarkReachableObjects() 672 space::LargeObjectSpace* los = heap_->GetLargeObjectsSpace(); in SweepLargeObjects() local 673 if (los != nullptr) { in SweepLargeObjects() 675 RecordFreeLOS(los->Sweep(swap_bitmaps)); in SweepLargeObjects() 817 space::LargeObjectSpace* los = GetHeap()->GetLargeObjectsSpace(); in FinishPhase() local 829 uint64_t current_los_bytes_allocated = los != nullptr ? los->GetBytesAllocated() : 0U; in FinishPhase() [all …]
|
D | mark_compact.cc | 551 space::LargeObjectSpace* los = heap_->GetLargeObjectsSpace(); in SweepLargeObjects() local 552 if (los != nullptr) { in SweepLargeObjects() 554 RecordFreeLOS(los->Sweep(swap_bitmaps)); in SweepLargeObjects()
|
D | concurrent_copying.cc | 1698 space::LargeObjectSpace* const los = heap_->GetLargeObjectsSpace(); in MarkZygoteLargeObjects() local 1699 if (los != nullptr) { in MarkZygoteLargeObjects() 1701 accounting::LargeObjectBitmap* const live_bitmap = los->GetLiveBitmap(); in MarkZygoteLargeObjects() 1702 accounting::LargeObjectBitmap* const mark_bitmap = los->GetMarkBitmap(); in MarkZygoteLargeObjects() 1704 std::pair<uint8_t*, uint8_t*> range = los->GetBeginEndAtomic(); in MarkZygoteLargeObjects() 1707 [mark_bitmap, los, self](mirror::Object* obj) in MarkZygoteLargeObjects() 1710 if (los->IsZygoteLargeObject(self, obj)) { in MarkZygoteLargeObjects()
|
D | mark_sweep.cc | 1332 space::LargeObjectSpace* los = heap_->GetLargeObjectsSpace(); in SweepLargeObjects() local 1333 if (los != nullptr) { in SweepLargeObjects() 1335 RecordFreeLOS(los->Sweep(swap_bitmaps)); in SweepLargeObjects()
|
/art/runtime/hprof/ |
D | hprof.cc | 1130 const auto* los = heap->GetLargeObjectsSpace(); in DumpHeapObject() local 1131 if (los->Contains(obj) && los->IsZygoteLargeObject(Thread::Current(), obj)) { in DumpHeapObject()
|
/art/openjdkjvmti/ |
D | ti_heap.cc | 1415 const auto* los = heap->GetLargeObjectsSpace(); in GetHeapId() local 1416 if (los->Contains(obj.Ptr()) && los->IsZygoteLargeObject(art::Thread::Current(), obj.Ptr())) { in GetHeapId()
|