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

  /art/runtime/gc/space/
space.cc 85 mark_bitmap_.reset(accounting::LargeObjectBitmap::Create("large marked objects", nullptr,
87 CHECK(mark_bitmap_.get() != nullptr);
112 if (live_bitmap != mark_bitmap_.get()) {
113 accounting::ContinuousSpaceBitmap* mark_bitmap = mark_bitmap_.release();
116 mark_bitmap_.reset(live_bitmap);
128 Runtime::Current()->GetHeap()->GetMarkBitmap()->ReplaceBitmap(mark_bitmap_.get(), new_bitmap);
129 CHECK_EQ(mark_bitmap_.release(), live_bitmap_.get());
130 mark_bitmap_.reset(new_bitmap);
135 live_bitmap_.swap(mark_bitmap_);
138 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
436 return mark_bitmap_.get();
444 std::unique_ptr<accounting::ContinuousSpaceBitmap> mark_bitmap_; member in class:art::gc::space::ContinuousMemMapAllocSpace
malloc_space.cc 60 mark_bitmap_.reset(accounting::ContinuousSpaceBitmap::Create(
63 CHECK(mark_bitmap_.get() != nullptr) << "could not create allocspace mark bitmap #"
211 mark_bitmap_->SetHeapLimit(reinterpret_cast<uintptr_t>(End()));
212 CHECK_EQ(mark_bitmap_->HeapLimit(), reinterpret_cast<uintptr_t>(End()));
216 live_bitmap_.release(), mark_bitmap_.release());
zygote_space.cc 56 CHECK(zygote_space->mark_bitmap_.get() == nullptr);
58 zygote_space->mark_bitmap_.reset(mark_bitmap);
region_space.h 86 return mark_bitmap_.get();
89 return mark_bitmap_.get();
539 std::unique_ptr<accounting::ContinuousSpaceBitmap> mark_bitmap_; member in class:art::gc::space::FINAL
large_object_space.cc 105 live_bitmap_.swap(mark_bitmap_);
108 live_bitmap_->SetName(mark_bitmap_->GetName());
109 mark_bitmap_->SetName(temp_name);
120 mark_bitmap_->CopyFrom(live_bitmap_.get());
dlmalloc_space.cc 283 mark_bitmap_->Clear();
rosalloc_space.cc 363 mark_bitmap_->Clear();
region_space.cc 100 mark_bitmap_.reset(
  /art/runtime/gc/collector/
semi_space-inl.h 69 if (!mark_bitmap_->Set(obj, slow_path)) {
mark_compact.cc 58 mark_bitmap_(nullptr),
118 mark_bitmap_ = heap_->GetMarkBitmap();
151 if (!mark_bitmap_->Set(obj, slow_path)) {
478 return mark_bitmap_->Test(object) ? object : nullptr;
mark_compact.h 204 accounting::HeapBitmap* mark_bitmap_; member in class:art::gc::collector::MarkCompact
semi_space.h 220 accounting::HeapBitmap* mark_bitmap_; member in class:art::gc::collector::SemiSpace
mark_sweep.cc 98 mark_bitmap_(nullptr),
136 mark_bitmap_ = heap_->GetMarkBitmap();
484 DCHECK(mark_bitmap_->Test(obj));
499 if (!mark_bitmap_->Set(obj, visitor)) {
532 return !mark_bitmap_->AtomicTestAndSet(obj, visitor);
    [all...]
mark_sweep.h 314 accounting::HeapBitmap* mark_bitmap_; member in class:art::gc::collector::MarkSweep
semi_space.cc 99 mark_bitmap_(nullptr),
161 mark_bitmap_ = heap_->GetMarkBitmap();
770 return mark_bitmap_->Test(obj) ? obj : nullptr;
    [all...]
  /art/runtime/gc/
heap.h 585 return mark_bitmap_.get();
    [all...]
heap.cc 308 mark_bitmap_.reset(new accounting::HeapBitmap(this));
    [all...]

Completed in 137 milliseconds