Searched refs:gcType (Results 1 – 12 of 12) sorted by relevance
192 void Heap::Resume(TriggerGCType gcType) in Resume() argument194 if (gcType == TriggerGCType::FULL_GC) { in Resume()207 Platform::GetCurrentPlatform()->PostTask(std::make_unique<AsyncClearTask>(this, gcType)); in Resume()209 ReclaimRegions(gcType); in Resume()226 void Heap::CollectGarbage(TriggerGCType gcType) in CollectGarbage() argument242 gcType = TriggerGCType::FULL_GC; in CollectGarbage()244 if (isFullGCRequested_ && thread_->IsReadyToMark() && gcType != TriggerGCType::FULL_GC) { in CollectGarbage()245 gcType = TriggerGCType::FULL_GC; in CollectGarbage()249 OPTIONAL_LOG(ecmaVm_, ERROR, ECMASCRIPT) << "Heap::CollectGarbage, gcType = " << gcType in CollectGarbage()252 switch (gcType) { in CollectGarbage()[all …]
60 void Resume(TriggerGCType gcType);204 void CollectGarbage(TriggerGCType gcType);366 inline void ReclaimRegions(TriggerGCType gcType);
273 void Heap::ReclaimRegions(TriggerGCType gcType) in ReclaimRegions() argument281 if (gcType == TriggerGCType::FULL_GC) { in ReclaimRegions()283 } else if (gcType == TriggerGCType::OLD_GC) { in ReclaimRegions()
137 void WorkerHelper::Initialize(TriggerGCType gcType, ParallelGCTaskPhase parallelTask) in Initialize() argument150 if (gcType != TriggerGCType::OLD_GC) { in Initialize()
93 void MemController::StopCalculationAfterGC(TriggerGCType gcType) in StopCalculationAfterGC() argument119 switch (gcType) { in StopCalculationAfterGC()
56 void StopCalculationAfterGC(TriggerGCType gcType);
147 void Initialize(TriggerGCType gcType, ParallelGCTaskPhase parallelTask);
779 std::string gcType; in GetGcType() local782 gcType = "gen-gc"; in GetGcType()785 gcType = "stw"; in GetGcType()788 gcType = "epsilon"; in GetGcType()793 return gcType; in GetGcType()899 static void TriggerGC(const EcmaVM *vm, TRIGGER_GC_TYPE gcType = TRIGGER_GC_TYPE::SEMI_GC);
701 void EcmaVM::CollectGarbage(TriggerGCType gcType) const in CollectGarbage()703 heap_->CollectGarbage(gcType); in CollectGarbage()
322 void CollectGarbage(TriggerGCType gcType) const;
801 template <GCType gcType, MTModeT MTMode = MT_MODE_MULTI>
203 void JSNApi::TriggerGC(const EcmaVM *vm, TRIGGER_GC_TYPE gcType) in TriggerGC() argument206 switch (gcType) { in TriggerGC()