Home
last modified time | relevance | path

Searched refs:gc (Results 1 – 25 of 309) sorted by relevance

12345678910>>...13

/art/tools/cpp-define-generator/
Drosalloc.def18 #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())
Dglobals.def23 #include "gc/accounting/card_table.h"
24 #include "gc/heap.h"
53 art::gc::accounting::CardTable::kCardShift)
63 art::gc::Heap::kMinLargeObjectThreshold)
/art/test/597-deopt-new-string/
Ddeopt.cc34 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/
DAndroid.bp96 "gc/allocation_record.cc",
97 "gc/allocator/dlmalloc.cc",
98 "gc/allocator/rosalloc.cc",
99 "gc/accounting/bitmap.cc",
100 "gc/accounting/card_table.cc",
101 "gc/accounting/heap_bitmap.cc",
102 "gc/accounting/mod_union_table.cc",
103 "gc/accounting/remembered_set.cc",
104 "gc/accounting/space_bitmap.cc",
105 "gc/collector/concurrent_copying.cc",
[all …]
Druntime_options.def49 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)
103 RUNTIME_OPTIONS_KEY (gc::space::LargeObjectSpaceType, \
[all …]
Dwrite_barrier.h24 namespace gc {
57 ALWAYS_INLINE static gc::accounting::CardTable* GetCardTable();
Daot_class_linker.h24 namespace gc {
35 static bool CanReferenceInBootImageExtension(ObjPtr<mirror::Class> klass, gc::Heap* heap)
Dparsed_options.cc177 .WithType<gc::space::ImageSpaceLoadingOrder>() in MakeParser()
178 .WithValueMap({{"system", gc::space::ImageSpaceLoadingOrder::kSystemFirst}, in MakeParser()
179 {"data", gc::space::ImageSpaceLoadingOrder::kDataFirst}}) in MakeParser()
305 .WithType<gc::space::LargeObjectSpaceType>() in MakeParser()
306 .WithValueMap({{"disabled", gc::space::LargeObjectSpaceType::kDisabled}, in MakeParser()
307 {"freelist", gc::space::LargeObjectSpaceType::kFreeList}, in MakeParser()
308 {"map", gc::space::LargeObjectSpaceType::kMap}}) in MakeParser()
634 args.SetIfMissing(M::ParallelGCThreads, gc::Heap::kDefaultEnableParallelGC ? in DoParse()
660 gc::CollectorType background_collector_type_; in DoParse()
661 gc::CollectorType collector_type_ = (XGcOption{}).collector_type_; in DoParse()
[all …]
/art/runtime/entrypoints/quick/
Dquick_alloc_entrypoints.cc37 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/
DMain.java43 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/003-omnibus-opcodes/src/
DInternedString.java37 Runtime.getRuntime().gc(); in testDeadInternedString()
44 Runtime.getRuntime().gc(); in testImmortalInternedString()
56 Runtime.getRuntime().gc(); in testImmortalInternedString()
/art/test/908-gc-start-finish/src/art/
DTest908.java43 Runtime.getRuntime().gc(); in run()
54 Runtime.getRuntime().gc(); in run()
58 Runtime.getRuntime().gc(); in run()
/art/test/913-heaps/src/art/
DTest913.java57 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/
DMain.java22 Runtime.getRuntime().gc(); in main()
26 Runtime.getRuntime().gc(); in main()
/art/test/903-hello-tagging/src/art/
DTest903.java33 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/
Dverification.h30 namespace gc {
40 explicit Verification(gc::Heap* heap) : heap_(heap) {} in Verification()
73 gc::Heap* const heap_;
/art/test/036-finalizer/
Dexpected.txt2 gc
10 gc + finalize
/art/test/401-optimizing-compiler/src/
DMain.java209 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/
Dcmdline_types.h464 static gc::CollectorType ParseCollectorType(const std::string& option) {
466 return gc::kCollectorTypeMS;
468 return gc::kCollectorTypeCMS;
470 return gc::kCollectorTypeSS;
472 return gc::kCollectorTypeCC;
474 return gc::kCollectorTypeNone;
481 gc::CollectorType collector_type_ = gc::kCollectorTypeDefault;
502 gc::CollectorType collector_type = ParseCollectorType(gc_option);
503 if (collector_type != gc::kCollectorTypeNone) {
575 gc::CollectorType background_collector_type_;
[all …]
/art/runtime/gc/accounting/
Dheap_bitmap.h28 namespace gc {
78 friend class art::gc::Heap;
79 friend class art::gc::collector::ConcurrentCopying;
/art/runtime/mirror/
Dobject_array-alloc-inl.h39 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()
Dreference.h29 namespace gc {
112 friend class gc::ReferenceProcessor;
113 friend class gc::ReferenceQueue;
/art/test/617-clinit-oome/src/
DMain.java19 Runtime.getRuntime().gc(); in exhaustJavaHeap()
39 Runtime.getRuntime().gc(); in main()
/art/test/064-field-access/src/
DOOMEOnNullAccess.java40 Runtime.getRuntime().gc(); in exhaustJavaHeap()
58 Runtime.getRuntime().gc(); in main()
/art/test/036-finalizer/src/
DMain.java89 Runtime.getRuntime().gc(); in main()
102 Runtime.getRuntime().gc(); in main()
105 System.gc(); in main()
153 Runtime.getRuntime().gc(); in runFinalizationTest()

12345678910>>...13