Home
last modified time | relevance | path

Searched refs:to_space_ (Results 1 – 4 of 4) sorted by relevance

/art/runtime/gc/collector/
Dsemi_space-inl.h62 DCHECK(!to_space_->HasAddress(obj)) << "Tried to mark " << obj << " in to-space"; in MarkObject()
64 CHECK(!to_space_->HasAddress(ref)) << "Marking " << ref << " in to_space_"; in MarkObject()
77 if (!to_space_->HasAddress(obj_ptr->AsMirrorPtr())) { in MarkObjectIfNotInToSpace()
Dsemi_space.cc74 if (space == to_space_ || collect_from_space_only_) { in BindBitmaps()
97 to_space_(nullptr), in SemiSpace()
158 to_space_live_bitmap_ = to_space_->GetLiveBitmap(); in InitializePhase()
444 last_gc_to_space_end_ = to_space_->End(); in ReclaimPhase()
527 forward_address = to_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, nullptr, in MarkNonForwardedObject()
573 forward_address = to_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, nullptr, in MarkNonForwardedObject()
599 DCHECK(to_space_->HasAddress(forward_address) || in MarkNonForwardedObject()
650 return space != from_space_ && space != to_space_; in ShouldSweepSpace()
769 to_space_->HasAddress(obj)) { in IsMarked()
796 to_space_ = to_space; in SetToSpace()
[all …]
Dsemi_space.h216 space::ContinuousMemMapAllocSpace* to_space_; variable
/art/runtime/gc/
Dheap.cc2394 forward_address = to_space_->Alloc(self_, alloc_size, &bytes_allocated, nullptr, &dummy); in MarkNonForwardedObject()