Home
last modified time | relevance | path

Searched refs:MarkSweep (Results 1 – 13 of 13) sorted by relevance

/art/runtime/gc/collector/
Dmark_sweep.cc87 void MarkSweep::BindBitmaps() { in BindBitmaps()
98 MarkSweep::MarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix) in MarkSweep() function in art::gc::collector::MarkSweep
115 void MarkSweep::InitializePhase() { in InitializePhase()
144 void MarkSweep::RunPhases() { in RunPhases()
175 void MarkSweep::ProcessReferences(Thread* self) { in ProcessReferences()
182 void MarkSweep::PausePhase() { in PausePhase()
214 void MarkSweep::PreCleanCards() { in PreCleanCards()
245 void MarkSweep::RevokeAllThreadLocalAllocationStacks(Thread* self) { in RevokeAllThreadLocalAllocationStacks()
253 void MarkSweep::MarkingPhase() { in MarkingPhase()
268 void MarkSweep::UpdateAndMarkModUnion() { in UpdateAndMarkModUnion()
[all …]
Dpartial_mark_sweep.cc29 : MarkSweep(heap, is_concurrent, name_prefix.empty() ? "partial " : name_prefix) { in PartialMarkSweep()
34 MarkSweep::BindBitmaps(); in BindBitmaps()
Dpartial_mark_sweep.h26 class PartialMarkSweep : public MarkSweep {
Dmark_sweep.h55 class MarkSweep : public GarbageCollector {
57 explicit MarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix = "");
59 ~MarkSweep() {} in ~MarkSweep()
341 DISALLOW_IMPLICIT_CONSTRUCTORS(MarkSweep);
Dmark_sweep-inl.h32 inline void MarkSweep::ScanObjectVisit(mirror::Object* obj, const MarkVisitor& visitor, in ScanObjectVisit()
/art/runtime/gc/space/
Ddlmalloc_space.h27 class MarkSweep; variable
164 friend class collector::MarkSweep;
Dbump_pointer_space.h27 class MarkSweep; variable
192 friend class collector::MarkSweep;
Drosalloc_space.h28 class MarkSweep; variable
180 friend class collector::MarkSweep;
Dmalloc_space.h30 class MarkSweep; variable
/art/runtime/gc/accounting/
Dremembered_set.h32 class MarkSweep; variable
Dmod_union_table.h38 class MarkSweep; variable
/art/runtime/gc/
Dheap.h75 class MarkSweep; variable
1214 friend class collector::MarkSweep;
Dheap.cc480 garbage_collectors_.push_back(new collector::MarkSweep(this, concurrent)); in Heap()
3138 collector::MarkSweep* mark_sweep = down_cast<collector::MarkSweep*>(gc); in PostGcVerificationPaused()