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

  /art/runtime/gc/space/
space.cc 87 mark_bitmap_.reset(accounting::LargeObjectBitmap::Create("large marked objects", nullptr,
89 CHECK(mark_bitmap_.get() != nullptr);
113 if (live_bitmap != mark_bitmap_.get()) {
114 accounting::ContinuousSpaceBitmap* mark_bitmap = mark_bitmap_.release();
117 mark_bitmap_.reset(live_bitmap);
129 Runtime::Current()->GetHeap()->GetMarkBitmap()->ReplaceBitmap(mark_bitmap_.get(), new_bitmap);
130 CHECK_EQ(mark_bitmap_.release(), live_bitmap_.get());
131 mark_bitmap_.reset(new_bitmap);
136 live_bitmap_.swap(mark_bitmap_);
139 live_bitmap_->SetName(mark_bitmap_->GetName())
    [all...]
space.h 352 return mark_bitmap_.get();
365 std::unique_ptr<accounting::LargeObjectBitmap> mark_bitmap_; member in class:art::gc::space::DiscontinuousSpace
443 return mark_bitmap_.get();
455 std::unique_ptr<accounting::ContinuousSpaceBitmap> mark_bitmap_; member in class:art::gc::space::ContinuousMemMapAllocSpace
malloc_space.cc 71 mark_bitmap_.reset(accounting::ContinuousSpaceBitmap::Create(
74 CHECK(mark_bitmap_.get() != nullptr) << "could not create allocspace mark bitmap #"
234 mark_bitmap_->SetHeapLimit(reinterpret_cast<uintptr_t>(End()));
235 CHECK_EQ(mark_bitmap_->HeapLimit(), reinterpret_cast<uintptr_t>(End()));
239 live_bitmap_.release(), mark_bitmap_.release());
zygote_space.cc 57 CHECK(zygote_space->mark_bitmap_.get() == nullptr);
59 zygote_space->mark_bitmap_.reset(mark_bitmap);
region_space.h 111 return mark_bitmap_.get();
114 return mark_bitmap_.get();
759 std::unique_ptr<accounting::ContinuousSpaceBitmap> mark_bitmap_; member in class:art::gc::space::final
large_object_space.cc 104 live_bitmap_.swap(mark_bitmap_);
107 live_bitmap_->SetName(mark_bitmap_->GetName());
108 mark_bitmap_->SetName(temp_name);
121 mark_bitmap_->CopyFrom(live_bitmap_.get());
dlmalloc_space.cc 341 mark_bitmap_->Clear();
rosalloc_space.cc 431 mark_bitmap_->Clear();
region_space.cc 128 mark_bitmap_.reset(
    [all...]
  /art/runtime/gc/collector/
semi_space-inl.h 68 if (!mark_bitmap_->Set(obj, slow_path)) {
semi_space.h 221 accounting::HeapBitmap* mark_bitmap_; member in class:art::gc::collector::SemiSpace
mark_sweep.cc 99 mark_bitmap_(nullptr),
139 mark_bitmap_ = heap_->GetMarkBitmap();
509 DCHECK(mark_bitmap_->Test(obj));
524 if (!mark_bitmap_->Set(obj, visitor)) {
557 return !mark_bitmap_->AtomicTestAndSet(obj, visitor);
    [all...]
mark_sweep.h 313 accounting::HeapBitmap* mark_bitmap_; member in class:art::gc::collector::MarkSweep
semi_space.cc 100 mark_bitmap_(nullptr),
162 mark_bitmap_ = heap_->GetMarkBitmap();
772 return mark_bitmap_->Test(obj) ? obj : nullptr;
    [all...]
  /art/runtime/gc/
heap.h 641 return mark_bitmap_.get();
    [all...]
heap.cc 337 mark_bitmap_.reset(new accounting::HeapBitmap(this));
    [all...]

Completed in 229 milliseconds