/art/tools/cpp-define-generator/ |
D | rosalloc.def | 18 #include "gc/allocator/rosalloc.h" 22 art::gc::allocator::RosAlloc::kThreadLocalBracketQuantumSize - 1) 24 ~static_cast<uint32_t>(art::gc::allocator::RosAlloc::kThreadLocalBracketQuantumSize - 1)) 26 ~static_cast<uint64_t>(art::gc::allocator::RosAlloc::kThreadLocalBracketQuantumSize - 1)) 28 art::gc::allocator::RosAlloc::kThreadLocalBracketQuantumSizeShift) 30 art::gc::allocator::RosAlloc::kMaxThreadLocalBracketSize) 32 art::gc::allocator::RosAlloc::RunFreeListHeadOffset()) 34 art::gc::allocator::RosAlloc::RunFreeListOffset()) 36 art::gc::allocator::RosAlloc::RunFreeListSizeOffset()) 38 art::gc::allocator::RosAlloc::RunSlotNextOffset())
|
D | globals.def | 23 #include "gc/accounting/card_table.h" 24 #include "gc/heap.h" 48 art::gc::accounting::CardTable::kCardShift) 58 art::gc::Heap::kMinLargeObjectThreshold)
|
/art/test/597-deopt-new-string/ |
D | deopt.cc | 34 gc::ScopedGCCriticalSection gcs(Thread::Current(), in Java_Main_deoptimizeAll() 35 gc::kGcCauseInstrumentation, in Java_Main_deoptimizeAll() 36 gc::kCollectorTypeInstrumentation); in Java_Main_deoptimizeAll() 53 gc::ScopedGCCriticalSection gcs(Thread::Current(), in Java_Main_undeoptimizeAll() 54 gc::kGcCauseInstrumentation, in Java_Main_undeoptimizeAll() 55 gc::kCollectorTypeInstrumentation); in Java_Main_undeoptimizeAll()
|
/art/runtime/ |
D | Android.bp | 90 "gc/allocation_record.cc", 91 "gc/allocator/dlmalloc.cc", 92 "gc/allocator/rosalloc.cc", 93 "gc/accounting/bitmap.cc", 94 "gc/accounting/card_table.cc", 95 "gc/accounting/heap_bitmap.cc", 96 "gc/accounting/mod_union_table.cc", 97 "gc/accounting/remembered_set.cc", 98 "gc/accounting/space_bitmap.cc", 99 "gc/collector/concurrent_copying.cc", [all …]
|
D | runtime_options.def | 49 RUNTIME_OPTIONS_KEY (MemoryKiB, MemoryMaximumSize, gc::Heap::kDefaultMaximum… 50 RUNTIME_OPTIONS_KEY (MemoryKiB, MemoryInitialSize, gc::Heap::kDefaultInitial… 52 RUNTIME_OPTIONS_KEY (MemoryKiB, HeapMinFree, gc::Heap::kDefaultMinFree) 53 RUNTIME_OPTIONS_KEY (MemoryKiB, HeapMaxFree, gc::Heap::kDefaultMaxFree) 54 RUNTIME_OPTIONS_KEY (MemoryKiB, NonMovingSpaceCapacity, gc::Heap::kDefaultNonMovi… 56 RUNTIME_OPTIONS_KEY (double, HeapTargetUtilization, gc::Heap::kDefaultTargetU… 57 RUNTIME_OPTIONS_KEY (double, ForegroundHeapGrowthMultiplier, gc::Heap::kDefaultHeapGro… 64 … LongPauseLogThreshold, gc::Heap::kDefaultLongPauseLogThreshold) 66 … LongGCLogThreshold, gc::Heap::kDefaultLongGCLogThreshold) 102 RUNTIME_OPTIONS_KEY (gc::space::LargeObjectSpaceType, \ [all …]
|
D | write_barrier.h | 24 namespace gc { 57 ALWAYS_INLINE static gc::accounting::CardTable* GetCardTable();
|
D | aot_class_linker.h | 24 namespace gc { 35 static bool CanReferenceInBootImageExtension(ObjPtr<mirror::Class> klass, gc::Heap* heap)
|
/art/runtime/entrypoints/quick/ |
D | quick_alloc_entrypoints.cc | 37 gc::AllocatorType allocator_type> 43 if (kUseTlabFastPath && !kInstrumented && allocator_type == gc::kAllocatorTypeTLAB) { in artAllocObjectFromCode() 49 static_assert(kObjectAlignment == gc::space::BumpPointerSpace::kAlignment, "Alignment check"); in artAllocObjectFromCode() 50 DCHECK_ALIGNED(byte_count, gc::space::BumpPointerSpace::kAlignment); in artAllocObjectFromCode() 131 GENERATE_ENTRYPOINTS_FOR_ALLOCATOR(DlMalloc, gc::kAllocatorTypeDlMalloc) 132 GENERATE_ENTRYPOINTS_FOR_ALLOCATOR(RosAlloc, gc::kAllocatorTypeRosAlloc) 133 GENERATE_ENTRYPOINTS_FOR_ALLOCATOR(BumpPointer, gc::kAllocatorTypeBumpPointer) 134 GENERATE_ENTRYPOINTS_FOR_ALLOCATOR(TLAB, gc::kAllocatorTypeTLAB) 135 GENERATE_ENTRYPOINTS_FOR_ALLOCATOR(Region, gc::kAllocatorTypeRegion) 136 GENERATE_ENTRYPOINTS_FOR_ALLOCATOR(RegionTLAB, gc::kAllocatorTypeRegionTLAB) [all …]
|
/art/test/079-phantom/src/ |
D | Main.java | 43 Runtime.getRuntime().gc(); in run() 50 Runtime.getRuntime().gc(); in run() 59 Runtime.getRuntime().gc(); in run() 64 Runtime.getRuntime().gc(); in run() 69 Runtime.getRuntime().gc(); in run()
|
/art/test/908-gc-start-finish/src/art/ |
D | Test908.java | 43 Runtime.getRuntime().gc(); in run() 54 Runtime.getRuntime().gc(); in run() 58 Runtime.getRuntime().gc(); in run()
|
/art/test/003-omnibus-opcodes/src/ |
D | InternedString.java | 37 Runtime.getRuntime().gc(); in testDeadInternedString() 44 Runtime.getRuntime().gc(); in testImmortalInternedString() 56 Runtime.getRuntime().gc(); in testImmortalInternedString()
|
/art/test/913-heaps/src/art/ |
D | Test913.java | 57 Runtime.getRuntime().gc(); in runFollowReferences() 58 Runtime.getRuntime().gc(); in runFollowReferences() 62 Runtime.getRuntime().gc(); in runFollowReferences() 63 Runtime.getRuntime().gc(); in runFollowReferences() 67 Runtime.getRuntime().gc(); in runFollowReferences() 68 Runtime.getRuntime().gc(); in runFollowReferences() 72 Runtime.getRuntime().gc(); in runFollowReferences() 73 Runtime.getRuntime().gc(); in runFollowReferences() 78 Runtime.getRuntime().gc(); in runFollowReferences() 79 Runtime.getRuntime().gc(); in runFollowReferences() [all …]
|
/art/test/121-simple-suspend-check/src/ |
D | Main.java | 22 Runtime.getRuntime().gc(); in main() 26 Runtime.getRuntime().gc(); in main()
|
/art/test/903-hello-tagging/src/art/ |
D | Test903.java | 33 Runtime.getRuntime().gc(); in doTest() 34 Runtime.getRuntime().gc(); in doTest() 57 Runtime.getRuntime().gc(); in test() 58 Runtime.getRuntime().gc(); in test() 63 Runtime.getRuntime().gc(); in test() 64 Runtime.getRuntime().gc(); in test()
|
/art/runtime/gc/ |
D | verification.h | 30 namespace gc { 40 explicit Verification(gc::Heap* heap) : heap_(heap) {} in Verification() 73 gc::Heap* const heap_;
|
/art/test/036-finalizer/ |
D | expected.txt | 2 gc 10 gc + finalize
|
/art/test/401-optimizing-compiler/src/ |
D | Main.java | 209 Runtime.getRuntime().gc(); in forceGCStaticMethod() 210 Runtime.getRuntime().gc(); in forceGCStaticMethod() 211 Runtime.getRuntime().gc(); in forceGCStaticMethod() 212 Runtime.getRuntime().gc(); in forceGCStaticMethod() 213 Runtime.getRuntime().gc(); in forceGCStaticMethod() 214 Runtime.getRuntime().gc(); in forceGCStaticMethod()
|
/art/cmdline/ |
D | cmdline_types.h | 438 static gc::CollectorType ParseCollectorType(const std::string& option) { 440 return gc::kCollectorTypeMS; 442 return gc::kCollectorTypeCMS; 444 return gc::kCollectorTypeSS; 446 return gc::kCollectorTypeCC; 448 return gc::kCollectorTypeNone; 455 gc::CollectorType collector_type_ = gc::kCollectorTypeDefault; 476 gc::CollectorType collector_type = ParseCollectorType(gc_option); 477 if (collector_type != gc::kCollectorTypeNone) { 544 gc::CollectorType background_collector_type_; [all …]
|
/art/runtime/mirror/ |
D | object_array-alloc-inl.h | 39 gc::AllocatorType allocator_type) { in Alloc() 68 gc::Heap* heap = Runtime::Current()->GetHeap(); in CopyOf() 69 gc::AllocatorType allocator_type = heap->IsMovableObject(h_this.Get()) in CopyOf()
|
D | reference.h | 29 namespace gc { 112 friend class gc::ReferenceProcessor; 113 friend class gc::ReferenceQueue;
|
D | class-alloc-inl.h | 50 inline ObjPtr<Object> Class::Alloc(Thread* self, gc::AllocatorType allocator_type) { in Alloc() 52 gc::Heap* heap = Runtime::Current()->GetHeap(); in Alloc()
|
/art/runtime/gc/accounting/ |
D | heap_bitmap.h | 28 namespace gc { 78 friend class art::gc::Heap; 79 friend class art::gc::collector::ConcurrentCopying;
|
/art/test/036-finalizer/src/ |
D | Main.java | 89 Runtime.getRuntime().gc(); in main() 102 Runtime.getRuntime().gc(); in main() 105 System.gc(); in main() 153 Runtime.getRuntime().gc(); in runFinalizationTest()
|
/art/test/2007-virtual-structural-finalizable/src-art/art/ |
D | Test2007.java | 94 Runtime.getRuntime().gc(); in run() 111 Runtime.getRuntime().gc(); in doTest()
|
/art/runtime/native/ |
D | java_lang_StringFactory.cc | 49 gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator(); in StringFactory_newStringFromBytes() 66 gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator(); in StringFactory_newStringFromChars() 83 gc::AllocatorType allocator_type = Runtime::Current()->GetHeap()->GetCurrentAllocator(); in StringFactory_newStringFromString()
|