Home
last modified time | relevance | path

Searched refs:STWYoungGC (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/mem/
Dstw_young_gc.h35 class STWYoungGC : public GarbageCollector {
37 STWYoungGC(Heap *heap, bool parallelGC);
38 ~STWYoungGC() override = default;
39 NO_COPY_SEMANTIC(STWYoungGC);
40 NO_MOVE_SEMANTIC(STWYoungGC);
Dstw_young_gc.cpp33 STWYoungGC::STWYoungGC(Heap *heap, bool parallelGC) in STWYoungGC() function in panda::ecmascript::STWYoungGC
38 void STWYoungGC::RunPhases() in RunPhases()
54 void STWYoungGC::Initialize() in Initialize()
67 void STWYoungGC::Mark() in Mark()
94 void STWYoungGC::Sweep() in Sweep()
140 void STWYoungGC::Finish() in Finish()
Dheap.h46 class STWYoungGC; variable
178 STWYoungGC *GetSTWYoungGC() const in GetSTWYoungGC()
769 STWYoungGC *stwYoungGC_ {nullptr};
Dheap.cpp127 stwYoungGC_ = new STWYoungGC(this, parallelGC_); in Initialize()