Searched refs:to_space_ (Results 1 – 4 of 4) sorted by relevance
/art/runtime/gc/collector/ |
D | semi_space-inl.h | 35 CHECK(!semi_space_->to_space_->HasAddress(obj)) << "Marking " << obj << " in to_space_"; in operator() 78 DCHECK(!to_space_->HasAddress(obj)) << "Tried to mark " << obj << " in to-space"; in MarkObject() 90 if (!to_space_->HasAddress(obj_ptr->AsMirrorPtr())) { in MarkObjectIfNotInToSpace()
|
D | semi_space.cc | 72 if (space == to_space_ || collect_from_space_only_) { in BindBitmaps() 95 to_space_(nullptr), in SemiSpace() 156 to_space_live_bitmap_ = to_space_->GetLiveBitmap(); in InitializePhase() 454 last_gc_to_space_end_ = to_space_->End(); in ReclaimPhase() 537 forward_address = to_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, nullptr, in MarkNonForwardedObject() 583 forward_address = to_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, nullptr, in MarkNonForwardedObject() 613 DCHECK(to_space_->HasAddress(forward_address) || in MarkNonForwardedObject() 663 return space != from_space_ && space != to_space_; in ShouldSweepSpace() 779 to_space_->HasAddress(obj)) { in IsMarked() 801 to_space_ = to_space; in SetToSpace() [all …]
|
D | semi_space.h | 214 space::ContinuousMemMapAllocSpace* to_space_; variable
|
/art/runtime/gc/ |
D | heap.cc | 2379 forward_address = to_space_->Alloc(self_, alloc_size, &bytes_allocated, nullptr, &dummy); in MarkNonForwardedObject()
|