Home
last modified time | relevance | path

Searched refs:from_space_ (Results 1 – 3 of 3) sorted by relevance

/art/runtime/gc/collector/
Dsemi_space.cc92 from_space_(nullptr), in SemiSpace()
142 CHECK(from_space_->CanMoveObjects()) << "Attempting to move from " << *from_space_; in InitializePhase()
209 if (!from_space_->HasAddress(reinterpret_cast<mirror::Object*>(last_gc_to_space_end_))) { in MarkingPhase()
210 last_gc_to_space_end_ = from_space_->Begin(); in MarkingPhase()
245 const int64_t from_bytes = from_space_->GetBytesAllocated(); in MarkingPhase()
247 const uint64_t from_objects = from_space_->GetObjectsAllocated(); in MarkingPhase()
254 from_space_->Clear(); in MarkingPhase()
255 VLOG(heap) << "Protecting from_space_: " << *from_space_; in MarkingPhase()
256 from_space_->GetMemMap()->Protect(kProtectFromSpace ? PROT_NONE : PROT_READ); in MarkingPhase()
279 from_space_(from_space) {} in SemiSpaceVerifyNoFromSpaceReferencesVisitor()
[all …]
Dsemi_space-inl.h45 DCHECK(from_space_->HasAddress(obj)); in GetForwardingAddressInFromSpace()
67 if (from_space_->HasAddress(obj)) { in MarkObject()
Dsemi_space.h218 space::ContinuousMemMapAllocSpace* from_space_; variable