Searched refs:heap_begin (Results 1 - 7 of 7) sorted by relevance

/art/runtime/gc/accounting/
H A Dspace_bitmap_test.cc33 byte* heap_begin = reinterpret_cast<byte*>(0x10000000); local
36 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
60 byte* heap_begin = reinterpret_cast<byte*>(0x10000000); local
64 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
70 reinterpret_cast<mirror::Object*>(heap_begin + j * kObjectAlignment);
81 reinterpret_cast<mirror::Object*>(heap_begin + i * kObjectAlignment);
84 reinterpret_cast<mirror::Object*>(heap_begin + (i + j) * kObjectAlignment);
115 byte* heap_begin = reinterpret_cast<byte*>(0x10000000); variable
124 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
131 space_bitmap->Set(reinterpret_cast<mirror::Object*>(heap_begin
[all...]
H A Dspace_bitmap.cc38 const std::string& name, MemMap* mem_map, byte* heap_begin, size_t heap_capacity) {
42 return new SpaceBitmap(name, mem_map, bitmap_begin, bitmap_size, heap_begin);
47 size_t bitmap_size, const void* heap_begin)
49 heap_begin_(reinterpret_cast<uintptr_t>(heap_begin)),
60 const std::string& name, byte* heap_begin, size_t heap_capacity) {
70 return CreateFromMemMap(name, mem_map.release(), heap_begin, heap_capacity);
37 CreateFromMemMap( const std::string& name, MemMap* mem_map, byte* heap_begin, size_t heap_capacity) argument
46 SpaceBitmap(const std::string& name, MemMap* mem_map, uword* bitmap_begin, size_t bitmap_size, const void* heap_begin) argument
59 Create( const std::string& name, byte* heap_begin, size_t heap_capacity) argument
H A Dcard_table.cc58 CardTable* CardTable::Create(const byte* heap_begin, size_t heap_capacity) { argument
78 (reinterpret_cast<uintptr_t>(heap_begin) >> kCardShift));
H A Dspace_bitmap.h47 // heap_begin of heap_capacity bytes, where objects are guaranteed to be kAlignment-aligned.
48 static SpaceBitmap* Create(const std::string& name, byte* heap_begin, size_t heap_capacity);
51 // mem map. The address range covered starts at heap_begin and is of size equal to heap_capacity.
54 byte* heap_begin, size_t heap_capacity);
196 const void* heap_begin);
H A Dcard_table.h54 static CardTable* Create(const byte* heap_begin, size_t heap_capacity);
/art/runtime/gc/
H A Dheap_test.cc65 byte* heap_begin = reinterpret_cast<byte*>(0x1000); local
68 accounting::ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
70 reinterpret_cast<mirror::Object*>(&heap_begin[heap_capacity - kObjectAlignment]);
H A Dheap.cc335 // Add the space so its accounted for in the heap_begin and heap_end.
352 byte* heap_begin = continuous_spaces_.front()->Begin(); local
354 size_t heap_capacity = heap_end - heap_begin;
360 card_table_.reset(accounting::CardTable::Create(heap_begin, heap_capacity));

Completed in 118 milliseconds