/art/runtime/gc/ |
D | heap.cc | 99 DEFINE_RUNTIME_DEBUG_FLAG(Heap, kStressCollectorTransition); 148 uint8_t* const Heap::kPreferredAllocSpaceBegin = 153 uint8_t* const Heap::kPreferredAllocSpaceBegin = reinterpret_cast<uint8_t*>(0x20000000); 156 uint8_t* const Heap::kPreferredAllocSpaceBegin = reinterpret_cast<uint8_t*>(0x40000000); 164 Heap::Heap(size_t initial_size, in Heap() function in art::gc::Heap 638 MemMap* Heap::MapAnonymousPreferredAddress(const char* name, in MapAnonymousPreferredAddress() 653 bool Heap::MayUseCollector(CollectorType type) const { in MayUseCollector() 657 space::MallocSpace* Heap::CreateMallocSpaceFromMemMap(MemMap* mem_map, in CreateMallocSpaceFromMemMap() 685 void Heap::CreateMainMallocSpace(MemMap* mem_map, size_t initial_size, size_t growth_limit, in CreateMainMallocSpace() 710 void Heap::ChangeAllocator(AllocatorType allocator) { in ChangeAllocator() [all …]
|
D | heap-visit-objects-inl.h | 38 inline void Heap::VisitObjects(Visitor&& visitor) { in VisitObjects() 72 inline void Heap::VisitObjectsPaused(Visitor&& visitor) { in VisitObjectsPaused() 81 inline void Heap::VisitObjectsInternalRegionSpace(Visitor&& visitor) { in VisitObjectsInternalRegionSpace() 106 inline void Heap::VisitObjectsInternal(Visitor&& visitor) { in VisitObjectsInternal() 146 DCHECK(Heap::rosalloc_space_ == nullptr) in VisitObjectsInternal()
|
D | verification.h | 36 class Heap; variable 40 explicit Verification(gc::Heap* heap) : heap_(heap) {} in Verification() 73 gc::Heap* const heap_;
|
D | heap-inl.h | 45 inline mirror::Object* Heap::AllocObjectWithAllocator(Thread* self, in AllocObjectWithAllocator() 224 inline void Heap::PushOnAllocationStack(Thread* self, ObjPtr<mirror::Object>* obj) { in PushOnAllocationStack() 235 inline mirror::Object* Heap::AllocLargeObject(Thread* self, in AllocLargeObject() 248 inline mirror::Object* Heap::TryToAllocate(Thread* self, in TryToAllocate() 385 inline bool Heap::ShouldAllocLargeObject(ObjPtr<mirror::Class> c, size_t byte_count) const { in ShouldAllocLargeObject() 393 inline bool Heap::IsOutOfMemoryOnAllocation(AllocatorType allocator_type, in IsOutOfMemoryOnAllocation() 413 inline void Heap::CheckConcurrentGC(Thread* self, in CheckConcurrentGC() 421 inline void Heap::WriteBarrierField(ObjPtr<mirror::Object> dst, in WriteBarrierField() 427 inline void Heap::WriteBarrierArray(ObjPtr<mirror::Object> dst, in WriteBarrierArray() 433 inline void Heap::WriteBarrierEveryFieldOf(ObjPtr<mirror::Object> obj) { in WriteBarrierEveryFieldOf()
|
D | heap_test.cc | 37 gc::Heap::kPreferredAllocSpaceBegin, in SetUp() 52 Heap* heap = Runtime::Current()->GetHeap(); in TEST_F()
|
D | reference_queue.h | 47 class Heap; variable
|
D | reference_processor.h | 43 class Heap; variable
|
/art/runtime/gc/accounting/ |
D | remembered_set.h | 39 class Heap; variable 50 explicit RememberedSet(const std::string& name, Heap* heap, space::ContinuousSpace* space) in RememberedSet() 67 Heap* GetHeap() const { in GetHeap() 77 Heap* const heap_;
|
D | mod_union_table.h | 44 class Heap; variable 59 explicit ModUnionTable(const std::string& name, Heap* heap, space::ContinuousSpace* space) in ModUnionTable() 104 Heap* GetHeap() const { in GetHeap() 114 Heap* const heap_; 121 explicit ModUnionTableReferenceCache(const std::string& name, Heap* heap, in ModUnionTableReferenceCache() 169 explicit ModUnionTableCardCache(const std::string& name, Heap* heap,
|
D | heap_bitmap.h | 30 class Heap; variable 66 explicit HeapBitmap(Heap* heap) : heap_(heap) {} in HeapBitmap() 69 const Heap* const heap_; 86 friend class art::gc::Heap;
|
D | mod_union_table-inl.h | 32 Heap* heap, in ModUnionTableToZygoteAllocspace()
|
D | card_table.h | 39 class Heap; variable
|
/art/runtime/ |
D | runtime_options.def | 48 RUNTIME_OPTIONS_KEY (MemoryKiB, MemoryMaximumSize, gc::Heap::kDefaultMaximum… 49 RUNTIME_OPTIONS_KEY (MemoryKiB, MemoryInitialSize, gc::Heap::kDefaultInitial… 51 RUNTIME_OPTIONS_KEY (MemoryKiB, HeapMinFree, gc::Heap::kDefaultMinFree) 52 RUNTIME_OPTIONS_KEY (MemoryKiB, HeapMaxFree, gc::Heap::kDefaultMaxFree) 53 RUNTIME_OPTIONS_KEY (MemoryKiB, NonMovingSpaceCapacity, gc::Heap::kDefaultNonMovi… 54 RUNTIME_OPTIONS_KEY (double, HeapTargetUtilization, gc::Heap::kDefaultTargetU… 55 RUNTIME_OPTIONS_KEY (double, ForegroundHeapGrowthMultiplier, gc::Heap::kDefaultHeapGro… 61 … LongPauseLogThreshold, gc::Heap::kDefaultLongPauseLogThreshold) 63 … LongGCLogThreshold, gc::Heap::kDefaultLongGCLogThreshold) 96 … LargeObjectSpace, gc::Heap::kDefaultLargeObjectSpaceType) [all …]
|
D | read_barrier-inl.h | 80 gc::Heap* heap = Runtime::Current()->GetHeap(); in Barrier() 208 gc::Heap* heap = Runtime::Current()->GetHeap(); in IsDuringStartup()
|
/art/runtime/gc/collector/ |
D | garbage_collector.h | 44 class Heap; variable 62 GarbageCollector(Heap* heap, const std::string& name); 71 Heap* GetHeap() const { in GetHeap() 145 Heap* const heap_;
|
D | partial_mark_sweep.h | 33 PartialMarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix = "");
|
D | partial_mark_sweep.cc | 28 PartialMarkSweep::PartialMarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix) in PartialMarkSweep()
|
D | sticky_mark_sweep.h | 33 StickyMarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix = "");
|
D | sticky_mark_sweep.cc | 31 StickyMarkSweep::StickyMarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix) in StickyMarkSweep()
|
D | semi_space.h | 43 class Heap; variable 62 explicit SemiSpace(Heap* heap, bool generational = false, const std::string& name_prefix = "");
|
D | mark_compact.h | 44 class Heap; variable 61 explicit MarkCompact(Heap* heap, const std::string& name_prefix = "");
|
/art/tools/amm/models/ |
D | JavaHeap.md | 1 # Java Heap Model
|
/art/runtime/gc/space/ |
D | space.h | 38 class Heap; variable 188 friend class art::gc::Heap; 460 friend class gc::Heap;
|
/art/tools/cpp-define-generator/ |
D | constant_heap.def | 24 DEFINE_EXPR(MIN_LARGE_OBJECT_THRESHOLD, size_t, art::gc::Heap::kMinLargeObjectThreshold)
|
/art/runtime/native/ |
D | dalvik_system_VMDebug.cc | 279 gc::Heap* const heap = Runtime::Current()->GetHeap(); in VMDebug_countInstancesOfClass() 297 gc::Heap* const heap = Runtime::Current()->GetHeap(); in VMDebug_countInstancesOfClasses() 347 gc::Heap* const heap = Runtime::Current()->GetHeap(); in VMDebug_getInstancesOfClasses() 387 gc::Heap* heap = Runtime::Current()->GetHeap(); in VMDebug_getHeapSpaceStats() 446 gc::Heap* heap = Runtime::Current()->GetHeap(); in VMDebug_getRuntimeStatInternal() 507 gc::Heap* heap = Runtime::Current()->GetHeap(); in VMDebug_getRuntimeStatsInternal()
|