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 79 mark_bitmap_.reset(accounting::LargeObjectBitmap::Create("large marked objects", nullptr,
81 CHECK(mark_bitmap_.get() != nullptr);
106 if (live_bitmap != mark_bitmap_.get()) {
107 accounting::ContinuousSpaceBitmap* mark_bitmap = mark_bitmap_.release();
110 mark_bitmap_.reset(live_bitmap);
122 Runtime::Current()->GetHeap()->GetMarkBitmap()->ReplaceBitmap(mark_bitmap_.get(), new_bitmap);
123 CHECK_EQ(mark_bitmap_.release(), live_bitmap_.get());
124 mark_bitmap_.reset(new_bitmap);
129 live_bitmap_.swap(mark_bitmap_);
132 live_bitmap_->SetName(mark_bitmap_->GetName())
    [all...]
space.h 332 return mark_bitmap_.get();
345 std::unique_ptr<accounting::LargeObjectBitmap> mark_bitmap_; member in class:art::gc::space::DiscontinuousSpace
417 return mark_bitmap_.get();
425 std::unique_ptr<accounting::ContinuousSpaceBitmap> mark_bitmap_; member in class:art::gc::space::ContinuousMemMapAllocSpace
zygote_space.cc 54 CHECK(zygote_space->mark_bitmap_.get() == nullptr);
56 zygote_space->mark_bitmap_.reset(mark_bitmap);
malloc_space.cc 56 mark_bitmap_.reset(accounting::ContinuousSpaceBitmap::Create(
206 mark_bitmap_->SetHeapLimit(reinterpret_cast<uintptr_t>(End()));
207 CHECK_EQ(mark_bitmap_->HeapLimit(), reinterpret_cast<uintptr_t>(End()));
211 live_bitmap_.release(), mark_bitmap_.release());
large_object_space.cc 80 live_bitmap_.swap(mark_bitmap_);
83 live_bitmap_->SetName(mark_bitmap_->GetName());
84 mark_bitmap_->SetName(temp_name);
95 mark_bitmap_->CopyFrom(live_bitmap_.get());
dlmalloc_space.cc 295 mark_bitmap_->Clear();
rosalloc_space.cc 351 mark_bitmap_->Clear();
  /art/runtime/gc/collector/
semi_space-inl.h 83 if (!mark_bitmap_->Set(obj, visitor)) {
mark_compact.cc 139 mark_bitmap_ = heap_->GetMarkBitmap();
179 if (!mark_bitmap_->Set(obj, visitor)) {
470 return mark_bitmap_->Test(object);
mark_sweep.cc 98 current_space_bitmap_(nullptr), mark_bitmap_(nullptr), mark_stack_(nullptr),
132 mark_bitmap_ = heap_->GetMarkBitmap();
399 DCHECK(mark_bitmap_->Test(obj));
414 if (!mark_bitmap_->Set(obj, visitor)) {
447 return !mark_bitmap_->AtomicTestAndSet(obj, visitor);
    [all...]
mark_compact.h 224 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.h 287 accounting::HeapBitmap* mark_bitmap_; member in class:art::gc::collector::MarkSweep
semi_space.cc 148 mark_bitmap_ = heap_->GetMarkBitmap();
733 return mark_bitmap_->Test(obj) ? obj : nullptr;
    [all...]
  /art/runtime/gc/
heap.h 481 return mark_bitmap_.get();
    [all...]
heap.cc 207 mark_bitmap_.reset(new accounting::HeapBitmap(this));
    [all...]

Completed in 544 milliseconds