Home | History | Annotate | Download | only in collector

Lines Matching defs:bitmap

142       const char* bitmap_name = space->IsImageSpace() ? "cc image space bitmap" :
143 "cc zygote space bitmap";
145 accounting::ContinuousSpaceBitmap* bitmap =
147 cc_heap_bitmap_->AddContinuousSpaceBitmap(bitmap);
148 cc_bitmaps_.push_back(bitmap);
150 accounting::ContinuousSpaceBitmap* bitmap =
151 accounting::ContinuousSpaceBitmap::Create("cc region space bitmap",
153 cc_heap_bitmap_->AddContinuousSpaceBitmap(bitmap);
154 cc_bitmaps_.push_back(bitmap);
155 region_space_bitmap_ = bitmap;
312 << "An immune space object must have a bitmap";
1257 LOG(INFO) << "ClearBlackPtrs: " << *space << " bitmap: " << *mark_bitmap;
1506 LOG(INFO) << "holder is marked in the region space bitmap.";
1508 LOG(INFO) << "holder is not marked in the region space bitmap.";
1517 << "An immune space object must have a bitmap.";
1529 CHECK(los_bitmap != nullptr) << "LOS bitmap covers the entire address range";
1556 << "An immune space ref must have a bitmap. " << ref;
1570 CHECK(los_bitmap != nullptr) << "LOS bitmap covers the entire address range";
1827 // Mark it in the mark bitmap.
1943 << "An immune space object must have a bitmap";
1956 // Non-immune non-moving space. Use the mark bitmap.
1961 CHECK(los_bitmap != nullptr) << "LOS bitmap covers the entire address range";
1997 << "An immune space object must have a bitmap";
2016 // Use the mark bitmap.
2021 CHECK(los_bitmap != nullptr) << "LOS bitmap covers the entire address range";
2111 // We don't really need to lock the heap bitmap lock as we use CAS to mark in bitmaps.