Searched refs:gc (Results 1 - 25 of 264) sorted by relevance

1234567891011

/art/tools/cpp-define-generator/
H A Dconstant_rosalloc.def20 #include "gc/allocator/rosalloc.h" // art::gc::allocator::RosAlloc
26 DEFINE_ROSALLOC_CONSTANT(MAX_THREAD_LOCAL_BRACKET_SIZE, int32_t, art::gc::allocator::RosAlloc::kMaxThreadLocalBracketSize)
27 DEFINE_ROSALLOC_CONSTANT(BRACKET_QUANTUM_SIZE_SHIFT, int32_t, art::gc::allocator::RosAlloc::kThreadLocalBracketQuantumSizeShift)
29 DEFINE_ROSALLOC_CONSTANT(BRACKET_QUANTUM_SIZE_MASK, int32_t, static_cast<int32_t>(art::gc::allocator::RosAlloc::kThreadLocalBracketQuantumSize - 1))
31 uint32_t, ~static_cast<uint32_t>(art::gc::allocator::RosAlloc::kThreadLocalBracketQuantumSize - 1))
33 uint64_t, ~static_cast<uint64_t>(art::gc::allocator::RosAlloc::kThreadLocalBracketQuantumSize - 1))
34 DEFINE_ROSALLOC_CONSTANT(RUN_FREE_LIST_OFFSET, int32_t, art::gc::allocator::RosAlloc::RunFreeListOffset())
35 DEFINE_ROSALLOC_CONSTANT(RUN_FREE_LIST_HEAD_OFFSET, int32_t, art::gc::allocator::RosAlloc::RunFreeListHeadOffset())
36 DEFINE_ROSALLOC_CONSTANT(RUN_FREE_LIST_SIZE_OFFSET, int32_t, art::gc
[all...]
H A Dconstant_card_table.def20 #include "gc/accounting/card_table.h"
24 DEFINE_EXPR(CARD_TABLE_CARD_SHIFT, size_t, art::gc::accounting::CardTable::kCardShift)
H A Dconstant_heap.def20 #include "gc/heap.h"
24 DEFINE_EXPR(MIN_LARGE_OBJECT_THRESHOLD, size_t, art::gc::Heap::kMinLargeObjectThreshold)
/art/test/597-deopt-new-string/
H A Ddeopt.cc19 #include "gc/gc_cause.h"
20 #include "gc/scoped_gc_critical_section.h"
34 gc::ScopedGCCriticalSection gcs(Thread::Current(),
35 gc::kGcCauseInstrumentation,
36 gc::kCollectorTypeInstrumentation);
53 gc::ScopedGCCriticalSection gcs(Thread::Current(),
54 gc::kGcCauseInstrumentation,
55 gc::kCollectorTypeInstrumentation);
/art/runtime/gc/collector/
H A Dimmune_region.cc19 #include "gc/space/space-inl.h"
23 namespace gc { namespace in namespace:art
37 } // namespace gc
H A Dgc_type.h23 namespace gc { namespace in namespace:art
43 } // namespace gc
/art/runtime/gc/
H A Dreference_processor-inl.h25 namespace gc { namespace in namespace:art
31 } // namespace gc
H A Dgc_pause_listener.h21 namespace gc { namespace in namespace:art
31 } // namespace gc
H A Dweak_root_state.h23 namespace gc { namespace in namespace:art
38 } // namespace gc
H A Dallocation_listener.h36 namespace gc { namespace in namespace:art
46 } // namespace gc
H A Dallocator_type.h23 namespace gc { namespace in namespace:art
42 } // namespace gc
H A Dscoped_gc_critical_section.h28 namespace gc { namespace in namespace:art
44 } // namespace gc
/art/runtime/gc/space/
H A Dmemory_tool_settings.h21 namespace gc { namespace in namespace:art
29 } // namespace gc
H A Ddlmalloc_space_random_test.cc22 namespace gc { namespace in namespace:art
34 } // namespace gc
H A Ddlmalloc_space_static_test.cc22 namespace gc { namespace in namespace:art
34 } // namespace gc
H A Drosalloc_space_random_test.cc20 namespace gc { namespace in namespace:art
33 } // namespace gc
H A Drosalloc_space_static_test.cc20 namespace gc { namespace in namespace:art
33 } // namespace gc
/art/test/121-simple-suspend-check/src/
H A DMain.java22 Runtime.getRuntime().gc();
26 Runtime.getRuntime().gc();
/art/test/152-dead-large-object/src/
H A DMain.java23 Runtime.getRuntime().gc();
/art/test/079-phantom/src/
H A DMain.java43 Runtime.getRuntime().gc();
50 Runtime.getRuntime().gc();
59 Runtime.getRuntime().gc();
64 Runtime.getRuntime().gc();
69 Runtime.getRuntime().gc();
/art/test/003-omnibus-opcodes/src/
H A DInternedString.java37 Runtime.getRuntime().gc();
44 Runtime.getRuntime().gc();
48 // and it should survive the gc
56 Runtime.getRuntime().gc();
/art/test/908-gc-start-finish/src/art/
H A DTest908.java43 Runtime.getRuntime().gc();
54 Runtime.getRuntime().gc();
58 Runtime.getRuntime().gc();
/art/runtime/entrypoints/quick/
H A Dquick_alloc_entrypoints.h21 #include "gc/allocator_type.h"
35 void SetQuickAllocEntryPointsAllocator(gc::AllocatorType allocator)
H A Dquick_alloc_entrypoints.cc36 gc::AllocatorType allocator_type>
42 if (kUseTlabFastPath && !kInstrumented && allocator_type == gc::kAllocatorTypeTLAB) {
46 byte_count = RoundUp(byte_count, gc::space::BumpPointerSpace::kAlignment);
124 GENERATE_ENTRYPOINTS_FOR_ALLOCATOR(DlMalloc, gc::kAllocatorTypeDlMalloc)
125 GENERATE_ENTRYPOINTS_FOR_ALLOCATOR(RosAlloc, gc::kAllocatorTypeRosAlloc)
126 GENERATE_ENTRYPOINTS_FOR_ALLOCATOR(BumpPointer, gc::kAllocatorTypeBumpPointer)
127 GENERATE_ENTRYPOINTS_FOR_ALLOCATOR(TLAB, gc::kAllocatorTypeTLAB)
128 GENERATE_ENTRYPOINTS_FOR_ALLOCATOR(Region, gc::kAllocatorTypeRegion)
129 GENERATE_ENTRYPOINTS_FOR_ALLOCATOR(RegionTLAB, gc::kAllocatorTypeRegionTLAB)
193 static gc
[all...]
/art/test/141-class-unload/src-ex/
H A DIntHolder.java31 Runtime.getRuntime().gc();

Completed in 1006 milliseconds

1234567891011