Home
last modified time | relevance | path

Searched refs:FULL_GC (Results 1 - 25 of 41) sorted by relevance

12

/arkcompiler/ets_runtime/ecmascript/tests/
H A Djs_handle_test.cpp40 thread->GetEcmaVM()->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
65 thread->GetEcmaVM()->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
79 thread->GetEcmaVM()->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
115 thread->GetEcmaVM()->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
146 thread->GetEcmaVM()->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
182 thread->GetEcmaVM()->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
193 thread->GetEcmaVM()->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
H A Dmem_controller_test.cpp44 heap->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
52 heap->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
61 heap->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
160 heap->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
H A Dgc_second_test.cpp74 const_cast<Heap *>(thread->GetEcmaVM()->GetHeap())->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
213 heap->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
245 heap->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
268 idleGCTrigger->TryTriggerIdleGC(TRIGGER_IDLE_GC_TYPE::FULL_GC); in HWTEST_F_L0()
274 heap->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
H A Djs_finalization_registry_test.cpp183 vm->CollectGarbage(TriggerGCType::FULL_GC); in RegisterUnRegisterTestCommon()
219 vm->CollectGarbage(TriggerGCType::FULL_GC); in RegisterUnRegisterTestCommonTwoTarget()
288 vm->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
334 vm->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
H A Dgc_third_test.cpp72 heap->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
181 heap->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
198 heap->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
426 heap->CollectGarbage(TriggerGCType::FULL_GC, GCReason::IDLE); in HWTEST_F_L0()
H A Dread_only_space_test.cpp137 heap->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
H A Dgc_first_test.cpp168 heap->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
171 heap->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
H A Dconcurrent_marking_test.cpp131 heap->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
H A Dobject_factory_test.cpp69 thread->GetEcmaVM()->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
H A Didle_gc_trigger_test.cpp325 trigger->TryTriggerIdleGC(TRIGGER_IDLE_GC_TYPE::FULL_GC); in HWTEST_F_L0()
/arkcompiler/runtime_core/static_core/runtime/mem/gc/g1/
H A Dg1-gc.h176 template <RegionFlag REGION_TYPE, bool FULL_GC>
191 template <bool ATOMIC, RegionFlag REGION_TYPE, bool FULL_GC>
194 template <bool ATOMIC, bool FULL_GC>
291 template <bool FULL_GC>
292 void UpdateRefsAndClear(const CollectionSet &collectionSet, MovedObjectsContainer<FULL_GC> *movedObjectsContainer,
300 template <bool FULL_GC>
320 template <bool FULL_GC, bool NEED_LOCK>
321 std::conditional_t<FULL_GC, UpdateRemsetRefUpdater<LanguageConfig, NEED_LOCK>,
329 template <bool FULL_GC, bool ENABLE_WORKERS, class Visitor>
330 void UpdateMovedObjectsReferences(MovedObjectsContainer<FULL_GC> *movedObjectsContaine
[all...]
H A Dg1-gc.cpp130 template <RegionFlag REGION_TYPE, bool FULL_GC>
136 if constexpr (FULL_GC) { in DoRegionCompacting()
158 RegionCompactingImpl<true, REGION_TYPE, FULL_GC>(region, movedObjectSaver); in DoRegionCompacting()
161 RegionCompactingImpl<false, REGION_TYPE, FULL_GC>(region, movedObjectSaver); in DoRegionCompacting()
219 template <bool ATOMIC, bool FULL_GC>
243 objectAllocator->template PromoteYoungRegion<false, FULL_GC>(region, promotionDeathChecker, in RegionPromotionImpl()
246 aliveMoveCount += objectAllocator->template PromoteYoungRegion<true, FULL_GC>(region, promotionDeathChecker, in RegionPromotionImpl()
445 template <bool ATOMIC, RegionFlag REGION_TYPE, bool FULL_GC>
497 RegionPromotionImpl<ATOMIC, FULL_GC>(region, movedObjectSaver); in RegionCompactingImpl()
520 template <class LanguageConfig, typename RefUpdater, bool FULL_GC>
[all...]
H A Dg1-allocator.h193 template <bool USE_MARKBITMAP, bool FULL_GC>
198 return objectAllocator_->template PromoteYoungRegion<USE_MARKBITMAP, FULL_GC>(region, deathChecker, in PromoteYoungRegion()
/arkcompiler/ets_runtime/ecmascript/builtins/tests/
H A Dbuiltins_finalization_registry_test.cpp177 vm->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
213 vm->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
250 vm->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
284 vm->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
334 vm->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
365 vm->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
393 vm->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
H A Dbuiltins_weak_ref_test.cpp160 vm->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/
H A Dcommon_enum.h40 FULL_GC, enumerator
/arkcompiler/ets_runtime/test/fuzztest/jsnapitriggergc_fuzzer/
H A Djsnapitriggergc_fuzzer.cpp36 JSNApi::TRIGGER_GC_TYPE gcType = JSNApi::TRIGGER_GC_TYPE::FULL_GC; in JSNApiTriggerGCFuzztest()
/arkcompiler/ets_runtime/ecmascript/mem/
H A Dfull_gc.cpp90 workManager_->Initialize(TriggerGCType::FULL_GC, ParallelGCTaskPhase::COMPRESS_HANDLE_GLOBAL_POOL_TASK); in Initialize()
187 heap_->Resume(FULL_GC); in Finish()
H A Didle_gc_trigger.cpp168 case TRIGGER_IDLE_GC_TYPE::FULL_GC: in TryTriggerIdleGC()
171 heap_->CollectGarbage(TriggerGCType::FULL_GC, GCReason::IDLE); in TryTriggerIdleGC()
H A Didle_gc_trigger.h56 case TRIGGER_IDLE_GC_TYPE::FULL_GC: in GetGCTypeName()
H A Dheap.cpp1115 gcType = TriggerGCType::FULL_GC; in CollectGarbage()
1117 if (fullGCRequested_ && thread_->IsReadyToConcurrentMark() && gcType != TriggerGCType::FULL_GC) { in CollectGarbage()
1118 gcType = TriggerGCType::FULL_GC; in CollectGarbage()
1120 if (oldGCRequested_ && gcType != TriggerGCType::FULL_GC) { in CollectGarbage()
1126 gcType = TriggerGCType::FULL_GC; in CollectGarbage()
1197 case TriggerGCType::FULL_GC: in CollectGarbage()
1221 if (gcType == TriggerGCType::FULL_GC || IsConcurrentFullMark()) { in CollectGarbage()
1254 if (shouldThrowOOMError_ && gcType_ == TriggerGCType::FULL_GC) { in CollectGarbage()
1701 CollectGarbage(TriggerGCType::FULL_GC, reason); in CheckAndTriggerHintGC()
1713 CollectGarbage(TriggerGCType::FULL_GC, reaso in CheckAndTriggerHintGC()
[all...]
H A Dmem_controller.cpp195 case TriggerGCType::FULL_GC: { in StopCalculationAfterGC()
/arkcompiler/ets_runtime/ecmascript/builtins/
H A Dbuiltins_gc.cpp226 return FULL_GC; in StringToGcType()
/arkcompiler/ets_runtime/ecmascript/napi/test/
H A Ddfx_jsnapi_tests.cpp333 heap->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
343 heap->CollectGarbage(TriggerGCType::FULL_GC); in HWTEST_F_L0()
/arkcompiler/toolchain/tooling/agent/
H A Dheapprofiler_impl.cpp326 panda::JSNApi::TriggerGC(vm_, panda::JSNApi::TRIGGER_GC_TYPE::FULL_GC); in CollectGarbage()

Completed in 21 milliseconds

12