/art/runtime/gc/ |
D | heap.cc | 116 Heap::Heap(size_t initial_size, size_t growth_limit, size_t min_free, size_t max_free, in Heap() function in art::gc::Heap 453 MemMap* Heap::MapAnonymousPreferredAddress(const char* name, byte* request_begin, size_t capacity, in MapAnonymousPreferredAddress() 467 space::MallocSpace* Heap::CreateMallocSpaceFromMemMap(MemMap* mem_map, size_t initial_size, in CreateMallocSpaceFromMemMap() 492 void Heap::CreateMainMallocSpace(MemMap* mem_map, size_t initial_size, size_t growth_limit, in CreateMainMallocSpace() 517 void Heap::ChangeAllocator(AllocatorType allocator) { in ChangeAllocator() 529 void Heap::DisableMovingGc() { in DisableMovingGc() 558 std::string Heap::SafeGetClassDescriptor(mirror::Class* klass) { in SafeGetClassDescriptor() 587 std::string Heap::SafePrettyTypeOf(mirror::Object* obj) { in SafePrettyTypeOf() 602 void Heap::DumpObject(std::ostream& stream, mirror::Object* obj) { in DumpObject() 635 bool Heap::IsCompilingBoot() const { in IsCompilingBoot() [all …]
|
D | heap-inl.h | 39 inline mirror::Object* Heap::AllocObjectWithAllocator(Thread* self, mirror::Class* klass, in AllocObjectWithAllocator() 172 inline void Heap::PushOnAllocationStack(Thread* self, mirror::Object** obj) { in PushOnAllocationStack() 183 inline mirror::Object* Heap::AllocLargeObject(Thread* self, mirror::Class** klass, in AllocLargeObject() 195 inline mirror::Object* Heap::TryToAllocate(Thread* self, AllocatorType allocator_type, in TryToAllocate() 276 inline Heap::AllocationTimer::AllocationTimer(Heap* heap, mirror::Object** allocated_obj_ptr) in AllocationTimer() 283 inline Heap::AllocationTimer::~AllocationTimer() { in ~AllocationTimer() 294 inline bool Heap::ShouldAllocLargeObject(mirror::Class* c, size_t byte_count) const { in ShouldAllocLargeObject() 303 inline bool Heap::IsOutOfMemoryOnAllocation(AllocatorType allocator_type, size_t alloc_size) { in IsOutOfMemoryOnAllocation() 322 inline void Heap::CheckConcurrentGC(Thread* self, size_t new_num_bytes_allocated, in CheckConcurrentGC()
|
D | heap.h | 127 class Heap { 156 explicit Heap(size_t initial_size, size_t growth_limit, size_t min_free, 171 ~Heap(); 929 Heap* const heap_; 935 explicit ScopedDisableRosAllocVerification(Heap* heap) in ScopedDisableRosAllocVerification() 1063 Heap* heap_; 1067 AllocationTimer(Heap* heap, mirror::Object** allocated_obj_ptr); 1071 DISALLOW_IMPLICIT_CONSTRUCTORS(Heap); 1079 explicit ScopedHeapFill(Heap* heap) in ScopedHeapFill() 1089 Heap* const heap_;
|
D | reference_queue.h | 40 class Heap; variable
|
D | heap_test.cc | 32 Heap* heap = Runtime::Current()->GetHeap(); in TEST_F()
|
D | reference_processor.h | 38 class Heap; variable
|
/art/runtime/gc/accounting/ |
D | mod_union_table.h | 43 class Heap; variable 56 explicit ModUnionTable(const std::string& name, Heap* heap, space::ContinuousSpace* space) in ModUnionTable() 84 Heap* GetHeap() const { in GetHeap() 93 Heap* const heap_; 100 explicit ModUnionTableReferenceCache(const std::string& name, Heap* heap, in ModUnionTableReferenceCache() 136 …explicit ModUnionTableCardCache(const std::string& name, Heap* heap, space::ContinuousSpace* space) in ModUnionTableCardCache()
|
D | remembered_set.h | 38 class Heap; variable 49 explicit RememberedSet(const std::string& name, Heap* heap, space::ContinuousSpace* space) in RememberedSet() 67 Heap* GetHeap() const { in GetHeap() 77 Heap* const heap_;
|
D | heap_bitmap.h | 28 class Heap; variable 60 explicit HeapBitmap(Heap* heap) : heap_(heap) {} in HeapBitmap() 63 const Heap* const heap_; 80 friend class art::gc::Heap;
|
D | mod_union_table-inl.h | 31 explicit ModUnionTableToZygoteAllocspace(const std::string& name, Heap* heap, in ModUnionTableToZygoteAllocspace()
|
D | card_table.h | 38 class Heap; variable
|
/art/runtime/gc/collector/ |
D | garbage_collector.h | 32 class Heap; variable 120 GarbageCollector(Heap* heap, const std::string& name); 134 Heap* GetHeap() const { in GetHeap() 188 Heap* const heap_;
|
D | partial_mark_sweep.h | 33 explicit 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 | concurrent_copying.h | 28 explicit ConcurrentCopying(Heap* heap, bool generational = false,
|
D | sticky_mark_sweep.h | 33 explicit StickyMarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix = "");
|
D | sticky_mark_sweep.cc | 27 StickyMarkSweep::StickyMarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix) in StickyMarkSweep()
|
D | mark_sweep.h | 46 class Heap; variable 57 explicit MarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix = ""); 324 friend class art::gc::Heap;
|
D | semi_space.h | 44 class Heap; variable 63 explicit SemiSpace(Heap* heap, bool generational = false, const std::string& name_prefix = "");
|
D | mark_compact.h | 45 class Heap; variable 62 explicit MarkCompact(Heap* heap, const std::string& name_prefix = "");
|
/art/runtime/ |
D | parsed_options.cc | 181 heap_initial_size_ = gc::Heap::kDefaultInitialSize; in Parse() 182 heap_maximum_size_ = gc::Heap::kDefaultMaximumSize; in Parse() 183 heap_min_free_ = gc::Heap::kDefaultMinFree; in Parse() 184 heap_max_free_ = gc::Heap::kDefaultMaxFree; in Parse() 185 heap_non_moving_space_capacity_ = gc::Heap::kDefaultNonMovingSpaceCapacity; in Parse() 186 heap_target_utilization_ = gc::Heap::kDefaultTargetUtilization; in Parse() 187 foreground_heap_growth_multiplier_ = gc::Heap::kDefaultHeapGrowthMultiplier; in Parse() 242 long_pause_log_threshold_ = gc::Heap::kDefaultLongPauseLogThreshold; in Parse() 243 long_gc_log_threshold_ = gc::Heap::kDefaultLongGCLogThreshold; in Parse()
|
D | runtime_android.cc | 49 gc::Heap* heap = runtime->GetHeap(); in HandleUnexpectedSignal()
|
/art/runtime/gc/space/ |
D | space.h | 39 class Heap; variable 182 friend class art::gc::Heap; 434 friend class gc::Heap;
|
/art/compiler/ |
D | image_test.cc | 119 gc::Heap* heap = Runtime::Current()->GetHeap(); in TEST_F() 165 gc::Heap* heap = Runtime::Current()->GetHeap(); in TEST_F()
|
/art/runtime/mirror/ |
D | object.cc | 85 gc::Heap* heap = Runtime::Current()->GetHeap(); in CopyObject() 126 gc::Heap* heap = Runtime::Current()->GetHeap(); in Clone()
|