Home
last modified time | relevance | path

Searched refs:ConcurrentCopying (Results 1 – 12 of 12) sorted by relevance

/art/runtime/gc/collector/
Dconcurrent_copying.cc70 ConcurrentCopying::ConcurrentCopying(Heap* heap, in ConcurrentCopying() function in art::gc::collector::ConcurrentCopying
189 void ConcurrentCopying::MarkHeapReference(mirror::HeapReference<mirror::Object>* field, in MarkHeapReference()
221 ConcurrentCopying::~ConcurrentCopying() { in ~ConcurrentCopying()
225 void ConcurrentCopying::RunPhases() { in RunPhases()
279 class ConcurrentCopying::ActivateReadBarrierEntrypointsCheckpoint : public Closure {
281 explicit ActivateReadBarrierEntrypointsCheckpoint(ConcurrentCopying* concurrent_copying) in ActivateReadBarrierEntrypointsCheckpoint()
299 ConcurrentCopying* const concurrent_copying_;
302 class ConcurrentCopying::ActivateReadBarrierEntrypointsCallback : public Closure {
304 explicit ActivateReadBarrierEntrypointsCallback(ConcurrentCopying* concurrent_copying) in ActivateReadBarrierEntrypointsCallback()
315 ConcurrentCopying* const concurrent_copying_;
[all …]
Dconcurrent_copying-inl.h35 inline mirror::Object* ConcurrentCopying::MarkUnevacFromSpaceRegion( in MarkUnevacFromSpaceRegion()
95 inline mirror::Object* ConcurrentCopying::MarkImmuneSpace(Thread* const self, in MarkImmuneSpace()
127 inline mirror::Object* ConcurrentCopying::Mark(Thread* const self, in Mark()
199 inline mirror::Object* ConcurrentCopying::MarkFromReadBarrier(mirror::Object* from_ref) { in MarkFromReadBarrier()
227 inline mirror::Object* ConcurrentCopying::GetFwdPtrUnchecked(mirror::Object* from_ref) { in GetFwdPtrUnchecked()
238 inline mirror::Object* ConcurrentCopying::GetFwdPtr(mirror::Object* from_ref) { in GetFwdPtr()
243 inline bool ConcurrentCopying::IsMarkedInUnevacFromSpace(mirror::Object* from_ref) { in IsMarkedInUnevacFromSpace()
Dconcurrent_copying.h59 class ConcurrentCopying : public GarbageCollector {
71 ConcurrentCopying(Heap* heap,
76 ~ConcurrentCopying();
521 DISALLOW_IMPLICIT_CONSTRUCTORS(ConcurrentCopying);
/art/runtime/gc/accounting/
Dheap_bitmap.h33 class ConcurrentCopying; variable
79 friend class art::gc::collector::ConcurrentCopying;
/art/runtime/native/
Djava_lang_ref_Reference.cc69 return gc::collector::ConcurrentCopying::GetFwdPtrUnchecked(referent.Ptr()) == other.Ptr() ? in Reference_refersTo0()
/art/runtime/gc/
Dheap.h92 class ConcurrentCopying; variable
826 collector::ConcurrentCopying* ConcurrentCopyingCollector() { in ConcurrentCopyingCollector()
827 collector::ConcurrentCopying* active_collector = in ConcurrentCopyingCollector()
1642 Atomic<collector::ConcurrentCopying*> active_concurrent_copying_collector_;
1643 collector::ConcurrentCopying* young_concurrent_copying_collector_;
1644 collector::ConcurrentCopying* concurrent_copying_collector_;
1762 friend class collector::ConcurrentCopying;
Dreference_queue.cc85 collector::ConcurrentCopying* concurrent_copying = heap->ConcurrentCopyingCollector(); in DisableReadBarrierForReference()
Dheap.cc803 concurrent_copying_collector_ = new collector::ConcurrentCopying(this, in Heap()
809 young_concurrent_copying_collector_ = new collector::ConcurrentCopying( in Heap()
2600 && gc::collector::ConcurrentCopying::kGrayDirtyImmuneObjects; in PreZygoteFork()
2846 collector::ConcurrentCopying* active_cc_collector; in CollectGarbageInternal()
/art/runtime/
Dread_barrier-inl.h235 gc::collector::ConcurrentCopying* collector = heap->ConcurrentCopyingCollector(); in IsDuringStartup()
Dthread_list.cc1429 gc::collector::ConcurrentCopying* const cc = in Register()
Dthread.cc4529 gc::collector::ConcurrentCopying* cc = runtime->GetHeap()->ConcurrentCopyingCollector(); in SweepCacheEntry()
/art/dex2oat/linker/
Dimage_writer.cc3183 if (kUseBakerReadBarrier && gc::collector::ConcurrentCopying::kGrayDirtyImmuneObjects) { in CopyObject()