Searched refs:to_space_ (Results 1 – 4 of 4) sorted by relevance
/art/runtime/gc/collector/ |
D | semi_space-inl.h | 62 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()
|
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() 442 last_gc_to_space_end_ = to_space_->End(); in ReclaimPhase() 525 forward_address = to_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, nullptr, in MarkNonForwardedObject() 571 forward_address = to_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, nullptr, in MarkNonForwardedObject() 597 DCHECK(to_space_->HasAddress(forward_address) || in MarkNonForwardedObject() 648 return space != from_space_ && space != to_space_; in ShouldSweepSpace() 766 to_space_->HasAddress(obj)) { in IsMarked() 793 to_space_ = to_space; in SetToSpace() [all …]
|
D | semi_space.h | 215 space::ContinuousMemMapAllocSpace* to_space_; variable
|
/art/runtime/gc/ |
D | heap.cc | 2241 forward_address = to_space_->Alloc(self_, alloc_size, &bytes_allocated, nullptr, &dummy); in MarkNonForwardedObject()
|