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

  /art/runtime/gc/collector/
semi_space-inl.h 63 DCHECK(!to_space_->HasAddress(obj)) << "Tried to mark " << obj << " in to-space";
65 CHECK(!to_space_->HasAddress(ref)) << "Marking " << ref << " in to_space_";
79 if (!to_space_->HasAddress(obj_ptr->AsMirrorPtr())) {
semi_space.cc 73 if (space == to_space_ || collect_from_space_only_) {
96 to_space_(nullptr),
157 to_space_live_bitmap_ = to_space_->GetLiveBitmap();
442 last_gc_to_space_end_ = to_space_->End();
525 forward_address = to_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, nullptr,
560 // DCHECK(!to_space_->HasAddress(obj)) failure below.
571 forward_address = to_space_->AllocThreadUnsafe(self_, object_size, &bytes_allocated, nullptr,
597 DCHECK(to_space_->HasAddress(forward_address) ||
648 return space != from_space_ && space != to_space_;
766 to_space_->HasAddress(obj))
    [all...]
semi_space.h 216 space::ContinuousMemMapAllocSpace* to_space_; member in class:art::gc::collector::SemiSpace
254 // The space which we copy to if the to_space_ is full.
258 // to_space_ when calculating how many objects and bytes we freed.
  /external/v8/src/heap/
spaces.h 2650 SemiSpace to_space_; member in class:v8::internal::NewSpace
    [all...]
spaces-inl.h 154 return from_space_.ContainsSlow(a) || to_space_.ContainsSlow(a);
158 return to_space_.ContainsSlow(a);
165 bool NewSpace::ToSpaceContains(Object* o) { return to_space_.Contains(o); }
541 DCHECK_SEMISPACE_ALLOCATION_INFO(allocation_info_, to_space_);
566 DCHECK_SEMISPACE_ALLOCATION_INFO(allocation_info_, to_space_);
spaces.cc     [all...]
  /art/runtime/gc/
heap.cc     [all...]

Completed in 848 milliseconds