Searched refs:to_space_ (Results 1 – 4 of 4) sorted by relevance
/art/runtime/gc/collector/ |
D | semi_space-inl.h | 63 DCHECK(!to_space_->HasAddress(obj)) << "Tried to mark " << obj << " in to-space"; in MarkObject() 65 CHECK(!to_space_->HasAddress(ref)) << "Marking " << ref << " in to_space_"; in MarkObject() 79 if (!to_space_->HasAddress(obj_ptr->AsMirrorPtr())) { in MarkObjectIfNotInToSpace()
|
D | semi_space.cc | 73 if (space == to_space_ || collect_from_space_only_) { in BindBitmaps() 96 to_space_(nullptr), in SemiSpace() 157 to_space_live_bitmap_ = to_space_->GetLiveBitmap(); in InitializePhase() 443 last_gc_to_space_end_ = to_space_->End(); in ReclaimPhase() 526 forward_address = to_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, nullptr, in MarkNonForwardedObject() 572 forward_address = to_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, nullptr, in MarkNonForwardedObject() 598 DCHECK(to_space_->HasAddress(forward_address) || in MarkNonForwardedObject() 649 return space != from_space_ && space != to_space_; in ShouldSweepSpace() 767 to_space_->HasAddress(obj)) { in IsMarked() 794 to_space_ = to_space; in SetToSpace() [all …]
|
D | semi_space.h | 215 space::ContinuousMemMapAllocSpace* to_space_; variable
|
/art/runtime/gc/ |
D | heap.cc | 2231 forward_address = to_space_->Alloc(self_, alloc_size, &bytes_allocated, nullptr, &dummy); in MarkNonForwardedObject()
|