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

  /external/compiler-rt/lib/tsan/rtl/
tsan_interface_java.cc 30 const uptr heap_begin; member in struct:__tsan::JavaContext
33 JavaContext(jptr heap_begin, jptr heap_size)
34 : heap_begin(heap_begin)
69 void __tsan_java_init(jptr heap_begin, jptr heap_size) {
71 DPrintf("#%d: java_init(%p, %p)\n", thr->tid, heap_begin, heap_size);
73 CHECK_GT(heap_begin, 0);
75 CHECK_EQ(heap_begin % kHeapAlignment, 0);
77 CHECK_LT(heap_begin, heap_begin + heap_size)
    [all...]
tsan_interface_java.h 38 void __tsan_java_init(jptr heap_begin, jptr heap_size) INTERFACE_ATTRIBUTE;
  /art/runtime/gc/accounting/
space_bitmap_test.cc 33 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000); local
36 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
60 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(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 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x10000000); variable
124 ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
131 space_bitmap->Set(reinterpret_cast<mirror::Object*>(heap_begin + offset))
    [all...]
space_bitmap.cc 44 const std::string& name, MemMap* mem_map, uint8_t* heap_begin, size_t heap_capacity) {
48 return new SpaceBitmap(name, mem_map, bitmap_begin, bitmap_size, heap_begin);
53 size_t bitmap_size, const void* heap_begin)
55 heap_begin_(reinterpret_cast<uintptr_t>(heap_begin)),
66 const std::string& name, uint8_t* heap_begin, size_t heap_capacity) {
77 return CreateFromMemMap(name, mem_map.release(), heap_begin, heap_capacity);
card_table.cc 60 CardTable* CardTable::Create(const uint8_t* heap_begin, size_t heap_capacity) {
81 (reinterpret_cast<uintptr_t>(heap_begin) >> kCardShift));
space_bitmap.h 48 // heap_begin of heap_capacity bytes, where objects are guaranteed to be kAlignment-aligned.
49 static SpaceBitmap* Create(const std::string& name, uint8_t* heap_begin, size_t heap_capacity);
52 // mem map. The address range covered starts at heap_begin and is of size equal to heap_capacity.
55 uint8_t* heap_begin, size_t heap_capacity);
200 const void* heap_begin);
card_table.h 55 static CardTable* Create(const uint8_t* heap_begin, size_t heap_capacity);
  /art/runtime/gc/
heap_test.cc 66 uint8_t* heap_begin = reinterpret_cast<uint8_t*>(0x1000); local
69 accounting::ContinuousSpaceBitmap::Create("test bitmap", heap_begin, heap_capacity));
71 reinterpret_cast<mirror::Object*>(&heap_begin[heap_capacity - kObjectAlignment]);
heap.cc 486 // Add the space so its accounted for in the heap_begin and heap_end.
511 uint8_t* heap_begin = continuous_spaces_.front()->Begin(); local
513 size_t heap_capacity = heap_end - heap_begin;
    [all...]
  /external/compiler-rt/test/tsan/
java.h 6 void __tsan_java_init(jptr heap_begin, jptr heap_size);

Completed in 350 milliseconds