Home
last modified time | relevance | path

Searched refs:Sweep (Results 1 - 25 of 31) sorted by relevance

12

/arkcompiler/ets_runtime/ecmascript/mem/
H A Dconcurrent_sweeper.cpp42 void ConcurrentSweeper::Sweep(bool fullGC) in Sweep() function in panda::ecmascript::ConcurrentSweeper
60 heap_->GetOldSpace()->Sweep(); in Sweep()
62 heap_->GetNonMovableSpace()->Sweep(); in Sweep()
63 heap_->GetMachineCodeSpace()->Sweep(); in Sweep()
65 heap_->GetHugeObjectSpace()->Sweep(); in Sweep()
66 heap_->GetHugeMachineCodeSpace()->Sweep(); in Sweep()
H A Dfull_gc.cpp57 Sweep(); in RunPhases()
110 void FullGC::Sweep() in Sweep() function in panda::ecmascript::FullGC
112 ECMA_BYTRACE_NAME(HITRACE_TAG_ARK, "FullGC::Sweep"); in Sweep()
113 TRACE_GC(GCStats::Scope::ScopeId::Sweep, heap_->GetEcmaVM()->GetEcmaGCStats()); in Sweep()
172 heap_->GetSweeper()->Sweep(true); in Sweep()
H A Dpartial_gc.cpp56 Sweep(); in RunPhases()
148 void PartialGC::Sweep() in Sweep() function in panda::ecmascript::PartialGC
150 ECMA_BYTRACE_NAME(HITRACE_TAG_ARK, "PartialGC::Sweep"); in Sweep()
156 TRACE_GC(GCStats::Scope::ScopeId::Sweep, heap_->GetEcmaVM()->GetEcmaGCStats()); in Sweep()
157 heap_->GetSweeper()->Sweep(); in Sweep()
H A Dgarbage_collector.h35 virtual void Sweep() = 0;
H A Dfull_gc.h39 void Sweep() override;
H A Dpartial_gc.h48 void Sweep() override;
H A Dconcurrent_sweeper.h47 void Sweep(bool fullGC = false);
H A Dsparse_space.cpp153 void SparseSpace::Sweep() in Sweep() function in panda::ecmascript::SparseSpace
195 // Sweep low alive object size at first in SortSweepingRegion()
645 void MachineCodeSpace::Sweep() in Sweep() function in panda::ecmascript::MachineCodeSpace
647 SparseSpace::Sweep(); in Sweep()
649 jitFort_->Sweep(); in Sweep()
H A Dsparse_space.h72 virtual void Sweep();
277 void Sweep() override;
H A Dgc_stats.cpp233 << STATS_DESCRIPTION_FORMAT("Sweep:") in PrintGCDurationStatistic()
234 << STATS_DATA_FORMAT(scopeDuration_[Scope::ScopeId::Sweep]) << "ms\n" in PrintGCDurationStatistic()
267 << STATS_DESCRIPTION_FORMAT("Sweep:") in PrintGCDurationStatistic()
268 << STATS_DATA_FORMAT(scopeDuration_[Scope::ScopeId::Sweep]) << "ms\n" in PrintGCDurationStatistic()
563 size_t sweepSpeed = GetRecordData(RecordData::START_OBJ_SIZE) / scopeDuration_[Scope::ScopeId::Sweep]; in RecordGCSpeed()
715 << STATS_DESCRIPTION_FORMAT("Sweep:") in PrintSharedGCDuration()
716 << STATS_DATA_FORMAT(scopeDuration_[Scope::ScopeId::Sweep]) << "ms\n" in PrintSharedGCDuration()
H A Dspace.h301 void Sweep();
H A Djit_fort.h66 void Sweep();
/arkcompiler/ets_runtime/ecmascript/mem/shared_heap/
H A Dshared_concurrent_sweeper.cpp39 void SharedConcurrentSweeper::Sweep(bool isFullGC) in Sweep() function in panda::ecmascript::SharedConcurrentSweeper
58 sHeap_->GetOldSpace()->Sweep(); in Sweep()
60 sHeap_->GetNonMovableSpace()->Sweep(); in Sweep()
62 sHeap_->GetHugeObjectSpace()->Sweep(); in Sweep()
H A Dshared_full_gc.cpp37 Sweep(); in RunPhases()
72 void SharedFullGC::Sweep() in Sweep() function in panda::ecmascript::SharedFullGC
74 ECMA_BYTRACE_NAME(HITRACE_TAG_ARK, "SharedFullGC::Sweep"); in Sweep()
75 TRACE_GC(GCStats::Scope::ScopeId::Sweep, sHeap_->GetEcmaGCStats()); in Sweep()
108 sHeap_->GetSweeper()->Sweep(true); in Sweep()
H A Dshared_gc.cpp45 Sweep(); in RunPhases()
86 void SharedGC::Sweep() in Sweep() function in panda::ecmascript::SharedGC
88 ECMA_BYTRACE_NAME(HITRACE_TAG_ARK, "SharedGC::Sweep"); in Sweep()
89 TRACE_GC(GCStats::Scope::ScopeId::Sweep, sHeap_->GetEcmaGCStats()); in Sweep()
114 sHeap_->GetSweeper()->Sweep(false); in Sweep()
H A Dshared_full_gc.h43 void Sweep() override;
H A Dshared_gc.h40 void Sweep() override;
H A Dshared_space.h57 void Sweep();
227 void Sweep();
H A Dshared_concurrent_sweeper.h33 void Sweep(bool isFullGC);
/arkcompiler/runtime_core/static_core/runtime/mem/gc/stw-gc/
H A Dstw-gc.cpp70 Sweep(); in RunPhasesImpl()
138 void StwGC<LanguageConfig>::Sweep() in Sweep() function in ark::mem::StwGC
142 LOG_DEBUG_GC << "Sweep with MarkChecker"; in Sweep()
145 LOG_DEBUG_GC << "Sweep with ReverseMarkChecker"; in Sweep()
H A Dstw-gc.h116 void Sweep();
/arkcompiler/runtime_core/static_core/runtime/
H A Dstring_table.h64 virtual void Sweep(const GCObjectVisitor &gcObjectVisitor);
84 virtual void Sweep(const GCObjectVisitor &gcObjectVisitor);
H A Dstring_table.cpp69 void StringTable::Sweep(const GCObjectVisitor &gcObjectVisitor) in Sweep() function in ark::StringTable
71 table_.Sweep(gcObjectVisitor); in Sweep()
240 void StringTable::Table::Sweep(const GCObjectVisitor &gcObjectVisitor) in Sweep() function in ark::StringTable::Table
243 LOG(DEBUG, GC) << "=== StringTable Sweep. BEGIN ==="; in Sweep()
262 LOG(DEBUG, GC) << "=== StringTable Sweep. END ==="; in Sweep()
/arkcompiler/runtime_core/static_core/runtime/mem/gc/gen-gc/
H A Dgen-gc.h158 /// Sweep dead objects in tenured space
160 void Sweep();
162 /// Sweep dead objects in young space
/arkcompiler/ets_runtime/ecmascript/
H A Dcommon.h35 V(Sweep) \

Completed in 11 milliseconds

12