Lines Matching refs:accounting

80       gc_mark_stack_(accounting::ObjectStack::Create("concurrent copying gc mark stack",  in ConcurrentCopying()
85 rb_mark_bit_stack_(accounting::ObjectStack::Create("rb copying gc mark stack", in ConcurrentCopying()
121 static_assert(space::RegionSpace::kRegionSize == accounting::ReadBarrierTable::kRegionSize, in ConcurrentCopying()
136 accounting::AtomicStack<mirror::Object>* mark_stack = in ConcurrentCopying()
137 accounting::AtomicStack<mirror::Object>::Create( in ConcurrentCopying()
300 region_space_inter_region_bitmap_ = accounting::ContinuousSpaceBitmap::Create( in CreateInterRegionRefBitmaps()
308 non_moving_space_inter_region_bitmap_ = accounting::ContinuousSpaceBitmap::Create( in CreateInterRegionRefBitmaps()
642 accounting::ContinuousSpaceBitmap* live_bitmap = space->GetLiveBitmap(); in VerifyGrayImmuneObjects()
717 if (heap_->GetCardTable()->GetCard(obj) == gc::accounting::CardTable::kCardClean) { in VerifyNoMissingCardMarks()
789 accounting::CardTable* const card_table = heap_->GetCardTable(); in GrayAllDirtyImmuneObjects()
796 accounting::ModUnionTable* table = heap_->FindModUnionTableFromSpace(space); in GrayAllDirtyImmuneObjects()
813 return (card != gc::accounting::CardTable::kCardClean) in GrayAllDirtyImmuneObjects()
814 ? gc::accounting::CardTable::kCardAged in GrayAllDirtyImmuneObjects()
822 gc::accounting::CardTable::kCardAged); in GrayAllDirtyImmuneObjects()
829 accounting::CardTable* const card_table = heap_->GetCardTable(); in GrayAllNewlyDirtyImmuneObjects()
836 accounting::ModUnionTable* table = heap_->FindModUnionTableFromSpace(space); in GrayAllNewlyDirtyImmuneObjects()
844 gc::accounting::CardTable::kCardDirty); in GrayAllNewlyDirtyImmuneObjects()
850 AlignDown(space->End(), accounting::CardTable::kCardSize)); in GrayAllNewlyDirtyImmuneObjects()
965 accounting::AtomicStack<mirror::Object>* tl_mark_stack = thread->GetThreadLocalMarkStack(); in Run()
1155 accounting::ContinuousSpaceBitmap* bitmap = nullptr; in TestAndSetMarkBitForRef()
1156 accounting::LargeObjectBitmap* los_bitmap = nullptr; in TestAndSetMarkBitForRef()
1327 accounting::CardTable* const card_table = heap_->GetCardTable(); in MarkingPhase()
1341 accounting::ContinuousSpaceBitmap* live_bitmap = space->GetLiveBitmap(); in MarkingPhase()
1342 accounting::ModUnionTable* table = heap_->FindModUnionTableFromSpace(space); in MarkingPhase()
1353 accounting::CardTable::kCardDirty - 1); in MarkingPhase()
1401 accounting::CardTable* const card_table = heap_->GetCardTable(); in CopyingPhase()
1479 accounting::CardTable::kCardAged); in CopyingPhase()
1513 accounting::ContinuousSpaceBitmap* live_bitmap = space->GetLiveBitmap(); in CopyingPhase()
1514 accounting::ModUnionTable* table = heap_->FindModUnionTableFromSpace(space); in CopyingPhase()
1525 accounting::CardTable::kCardDirty - 1); in CopyingPhase()
1773 accounting::AtomicStack<mirror::Object>* tl_mark_stack = self->GetThreadLocalMarkStack(); in PushOntoMarkStack()
1777 accounting::AtomicStack<mirror::Object>* new_tl_mark_stack; in PushOntoMarkStack()
1785 accounting::AtomicStack<mirror::Object>::Create( in PushOntoMarkStack()
1824 accounting::ObjectStack* ConcurrentCopying::GetAllocationStack() { in GetAllocationStack()
1828 accounting::ObjectStack* ConcurrentCopying::GetLiveStack() { in GetLiveStack()
2018 accounting::AtomicStack<mirror::Object>* tl_mark_stack = thread->GetThreadLocalMarkStack(); in RevokeThreadLocalMarkStack()
2124 std::vector<accounting::AtomicStack<mirror::Object>*> mark_stacks; in ProcessThreadLocalMarkStacks()
2131 for (accounting::AtomicStack<mirror::Object>* mark_stack : mark_stacks) { in ProcessThreadLocalMarkStacks()
2211 accounting::ContinuousSpaceBitmap* mark_bitmap = in ProcessMarkStackRef()
2229 accounting::LargeObjectBitmap* los_bitmap = in ProcessMarkStackRef()
2374 for (accounting::AtomicStack<mirror::Object>* mark_stack : revoked_mark_stacks_) { in CheckEmptyMarkStack()
2411 accounting::ObjectStack* live_stack = heap_->GetLiveStack(); in Sweep()
2435 void ConcurrentCopying::SweepArray(accounting::ObjectStack* allocations, bool swap_bitmaps) { in SweepArray()
2458 accounting::ContinuousSpaceBitmap* live_bitmap = space->GetLiveBitmap(); in SweepArray()
2459 accounting::ContinuousSpaceBitmap* mark_bitmap = space->GetMarkBitmap(); in SweepArray()
2498 accounting::LargeObjectBitmap* large_live_objects = large_object_space->GetLiveBitmap(); in SweepArray()
2499 accounting::LargeObjectBitmap* large_mark_objects = large_object_space->GetMarkBitmap(); in SweepArray()
2532 accounting::LargeObjectBitmap* const live_bitmap = los->GetLiveBitmap(); in MarkZygoteLargeObjects()
2533 accounting::LargeObjectBitmap* const mark_bitmap = los->GetMarkBitmap(); in MarkZygoteLargeObjects()
2580 accounting::ContinuousSpaceBitmap *bitmap = heap_->non_moving_space_->GetMarkBitmap(); in CaptureRssAtPeak()
2599 accounting::LargeObjectBitmap* bitmap = heap_->GetLargeObjectsSpace()->GetMarkBitmap(); in CaptureRssAtPeak()
2824 accounting::ContinuousSpaceBitmap* mark_bitmap = in AssertToSpaceInvariant()
2829 accounting::LargeObjectBitmap* los_bitmap = in AssertToSpaceInvariant()
2969 accounting::ContinuousSpaceBitmap* mark_bitmap = heap_->GetNonMovingSpace()->GetMarkBitmap(); in LogFromSpaceRefHolder()
2970 accounting::LargeObjectBitmap* los_bitmap = nullptr; in LogFromSpaceRefHolder()
3003 accounting::ContinuousSpaceBitmap* mark_bitmap = heap_->GetNonMovingSpace()->GetMarkBitmap(); in IsMarkedInNonMovingSpace()
3004 accounting::LargeObjectBitmap* los_bitmap = nullptr; in IsMarkedInNonMovingSpace()
3561 accounting::ObjectStack* alloc_stack = GetAllocationStack(); in IsOnAllocStack()
3573 accounting::ContinuousSpaceBitmap* mark_bitmap = heap_->GetNonMovingSpace()->GetMarkBitmap(); in MarkNonMoving()
3574 accounting::LargeObjectBitmap* los_bitmap = nullptr; in MarkNonMoving()
3684 accounting::ModUnionTable* table = heap_->FindModUnionTableFromSpace(space); in FinishPhase()