Home
last modified time | relevance | path

Searched refs:space_bitmap (Results 1 – 3 of 3) sorted by relevance

/art/runtime/gc/accounting/
Dspace_bitmap_test.cc35 std::unique_ptr<ContinuousSpaceBitmap> space_bitmap( in TEST_F() local
37 EXPECT_TRUE(space_bitmap.get() != nullptr); in TEST_F()
63 std::unique_ptr<ContinuousSpaceBitmap> space_bitmap( in TEST_F() local
65 EXPECT_TRUE(space_bitmap.get() != nullptr); in TEST_F()
72 space_bitmap->Set(obj); in TEST_F()
85 BitmapVerify(space_bitmap.get(), start, end); in TEST_F()
123 std::unique_ptr<ContinuousSpaceBitmap> space_bitmap( in RunTest() local
131 space_bitmap->Set(reinterpret_cast<mirror::Object*>(heap_begin + offset)); in RunTest()
133 space_bitmap->Clear(reinterpret_cast<mirror::Object*>(heap_begin + offset)); in RunTest()
145 space_bitmap->VisitMarkedRange(reinterpret_cast<uintptr_t>(heap_begin) + offset, in RunTest()
[all …]
/art/runtime/gc/space/
Dlarge_object_space.cc148 auto* space_bitmap = live_bitmap->GetContinuousSpaceBitmap(obj); in Alloc() local
149 CHECK(space_bitmap == nullptr) << obj << " overlaps with bitmap " << *space_bitmap; in Alloc()
151 space_bitmap = live_bitmap->GetContinuousSpaceBitmap(obj_end - 1); in Alloc()
152 CHECK(space_bitmap == nullptr) << obj_end << " overlaps with bitmap " << *space_bitmap; in Alloc()
/art/runtime/
DAndroid.mk62 gc/accounting/space_bitmap.cc \