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 84 mark_bitmap_.reset(accounting::LargeObjectBitmap::Create("large marked objects", nullptr,
86 CHECK(mark_bitmap_.get() != nullptr);
111 if (live_bitmap != mark_bitmap_.get()) {
112 accounting::ContinuousSpaceBitmap* mark_bitmap = mark_bitmap_.release();
115 mark_bitmap_.reset(live_bitmap);
127 Runtime::Current()->GetHeap()->GetMarkBitmap()->ReplaceBitmap(mark_bitmap_.get(), new_bitmap);
128 CHECK_EQ(mark_bitmap_.release(), live_bitmap_.get());
129 mark_bitmap_.reset(new_bitmap);
134 live_bitmap_.swap(mark_bitmap_);
137 live_bitmap_->SetName(mark_bitmap_->GetName())
    [all...]
space.h 353 return mark_bitmap_.get();
366 std::unique_ptr<accounting::LargeObjectBitmap> mark_bitmap_; member in class:art::gc::space::DiscontinuousSpace
437 return mark_bitmap_.get();
445 std::unique_ptr<accounting::ContinuousSpaceBitmap> mark_bitmap_; member in class:art::gc::space::ContinuousMemMapAllocSpace
malloc_space.cc 56 mark_bitmap_.reset(accounting::ContinuousSpaceBitmap::Create(
59 CHECK(mark_bitmap_.get() != nullptr) << "could not create allocspace mark bitmap #"
207 mark_bitmap_->SetHeapLimit(reinterpret_cast<uintptr_t>(End()));
208 CHECK_EQ(mark_bitmap_->HeapLimit(), reinterpret_cast<uintptr_t>(End()));
212 live_bitmap_.release(), mark_bitmap_.release());
zygote_space.cc 54 CHECK(zygote_space->mark_bitmap_.get() == nullptr);
56 zygote_space->mark_bitmap_.reset(mark_bitmap);
large_object_space.cc 103 live_bitmap_.swap(mark_bitmap_);
106 live_bitmap_->SetName(mark_bitmap_->GetName());
107 mark_bitmap_->SetName(temp_name);
118 mark_bitmap_->CopyFrom(live_bitmap_.get());
dlmalloc_space.cc 282 mark_bitmap_->Clear();
rosalloc_space.cc 362 mark_bitmap_->Clear();
  /art/runtime/gc/collector/
semi_space-inl.h 69 if (!mark_bitmap_->Set(obj, slow_path)) {
mark_compact.cc 113 mark_bitmap_ = heap_->GetMarkBitmap();
146 if (!mark_bitmap_->Set(obj, slow_path)) {
472 return mark_bitmap_->Test(object) ? object : nullptr;
mark_compact.h 203 accounting::HeapBitmap* mark_bitmap_; member in class:art::gc::collector::MarkCompact
semi_space.h 219 accounting::HeapBitmap* mark_bitmap_; member in class:art::gc::collector::SemiSpace
mark_sweep.cc 97 mark_bitmap_(nullptr),
135 mark_bitmap_ = heap_->GetMarkBitmap();
492 DCHECK(mark_bitmap_->Test(obj));
507 if (!mark_bitmap_->Set(obj, visitor)) {
540 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 98 mark_bitmap_(nullptr),
160 mark_bitmap_ = heap_->GetMarkBitmap();
764 return mark_bitmap_->Test(obj) ? obj : nullptr;
    [all...]
  /art/runtime/gc/
heap.h 556 return mark_bitmap_.get();
    [all...]
heap.cc 268 mark_bitmap_.reset(new accounting::HeapBitmap(this));
    [all...]

Completed in 343 milliseconds