HomeSort by relevance Sort by last modified time
    Searched refs:from_space_ (Results 1 - 7 of 7) sorted by null

  /art/runtime/gc/collector/
semi_space-inl.h 30 DCHECK(from_space_->HasAddress(obj));
48 if (from_space_->HasAddress(obj)) {
semi_space.cc 98 from_space_(nullptr),
155 CHECK(from_space_->CanMoveObjects()) << "Attempting to move from " << *from_space_;
222 if (!from_space_->HasAddress(reinterpret_cast<mirror::Object*>(last_gc_to_space_end_))) {
223 last_gc_to_space_end_ = from_space_->Begin();
260 const int64_t from_bytes = from_space_->GetBytesAllocated();
262 const uint64_t from_objects = from_space_->GetObjectsAllocated();
269 from_space_->Clear();
273 if (!from_space_->IsRosAllocSpace()) {
275 VLOG(heap) << "Protecting from_space_ : " << *from_space_
323 space::ContinuousMemMapAllocSpace* const from_space_; member in class:art::gc::collector::SemiSpace::VerifyNoFromSpaceReferencesVisitor::space
    [all...]
semi_space.h 218 space::ContinuousMemMapAllocSpace* from_space_; member in class:art::gc::collector::SemiSpace
247 // Used for generational mode. When true, we only collect the from_space_.
  /art/runtime/gc/accounting/
mod_union_table.cc 97 from_space_(from_space),
123 if (ref != nullptr && !from_space_->HasAddress(ref) && !immune_space_->HasAddress(ref)) {
134 space::ContinuousSpace* const from_space_; member in class:art::gc::accounting::ModUnionUpdateObjectReferencesVisitor::space
149 from_space_(from_space),
158 from_space_,
167 space::ContinuousSpace* const from_space_; member in class:art::gc::accounting::ModUnionScanImageRootVisitor::space
  /external/v8/src/heap/
spaces.h 2654 SemiSpace from_space_; member in class:v8::internal::NewSpace
    [all...]
spaces-inl.h 158 return from_space_.ContainsSlow(a) || to_space_.ContainsSlow(a);
166 return from_space_.ContainsSlow(a);
170 bool NewSpace::FromSpaceContains(Object* o) { return from_space_.Contains(o); }
spaces.cc     [all...]

Completed in 155 milliseconds