| /arkcompiler/ets_runtime/test/fuzztest/jsnapitriggergc_fuzzer/ |
| D | jsnapitriggergc_fuzzer.cpp | 36 JSNApi::TRIGGER_GC_TYPE gcType = JSNApi::TRIGGER_GC_TYPE::FULL_GC; in JSNApiTriggerGCFuzztest() local 39 JSNApi::TRIGGER_GC_TYPE gcType = JSNApi::TRIGGER_GC_TYPE::OLD_GC; in JSNApiTriggerGCFuzztest() local 42 JSNApi::TRIGGER_GC_TYPE gcType = JSNApi::TRIGGER_GC_TYPE::SEMI_GC; in JSNApiTriggerGCFuzztest() local
|
| /arkcompiler/ets_runtime/ecmascript/mem/ |
| D | idle_gc_trigger.h | 52 const char *GetGCTypeName(TRIGGER_IDLE_GC_TYPE gcType) const in GetGCTypeName() 72 bool IsPossiblePostGCTask(TRIGGER_IDLE_GC_TYPE gcType) const in IsPossiblePostGCTask() 78 void SetPostGCTask(TRIGGER_IDLE_GC_TYPE gcType) in SetPostGCTask() 84 void ClearPostGCTask(TRIGGER_IDLE_GC_TYPE gcType) in ClearPostGCTask()
|
| D | idle_gc_trigger.cpp | 147 void IdleGCTrigger::PostIdleGCTask(TRIGGER_IDLE_GC_TYPE gcType) in PostIdleGCTask() 205 void IdleGCTrigger::TryTriggerIdleGC(TRIGGER_IDLE_GC_TYPE gcType) in TryTriggerIdleGC()
|
| D | gc_stats.cpp | 435 void GCStats::RecordStatisticBeforeGC(TriggerGCType gcType, GCReason reason) in RecordStatisticBeforeGC() 650 GCType GCStats::GetGCType(TriggerGCType gcType) in GetGCType() 796 void SharedGCStats::RecordStatisticBeforeGC(TriggerGCType gcType, GCReason reason) in RecordStatisticBeforeGC()
|
| D | work_manager.cpp | 156 void WorkManager::Initialize(TriggerGCType gcType, ParallelGCTaskPhase taskPhase) in Initialize() 198 void SharedGCWorkManager::Initialize(TriggerGCType gcType, SharedParallelMarkPhase taskPhase) in Initialize()
|
| D | concurrent_marker.cpp | 81 TriggerGCType gcType; in HandleMarkingFinished() local
|
| D | heap.cpp | 93 void SharedHeap::ForceCollectGarbageWithoutDaemonThread(TriggerGCType gcType, GCReason gcReason, JS… in ForceCollectGarbageWithoutDaemonThread() 184 void SharedHeap::StartConcurrentMarking(TriggerGCType gcType, GCReason gcReason) in StartConcurrentMarking() 372 void SharedHeap::DaemonCollectGarbage([[maybe_unused]]TriggerGCType gcType, [[maybe_unused]]GCReaso… in DaemonCollectGarbage() 484 void SharedHeap::Reclaim(TriggerGCType gcType) in Reclaim() 498 void SharedHeap::ReclaimRegions(TriggerGCType gcType) in ReclaimRegions() 973 void Heap::Resume(TriggerGCType gcType) in Resume() 1096 void Heap::CollectGarbage(TriggerGCType gcType, GCReason reason) in CollectGarbage()
|
| D | mem_controller.cpp | 116 void MemController::StopCalculationAfterGC(TriggerGCType gcType) in StopCalculationAfterGC()
|
| /arkcompiler/runtime_core/static_core/runtime/mem/ |
| D | memory_manager.cpp | 28 GCType gcType, MemStatsType *memStats) in CreateHeapManager() 48 …yManager::Create(const LanguageContext &ctx, InternalAllocatorPtr internalAllocator, GCType gcType, in Create()
|
| /arkcompiler/runtime_core/static_core/runtime/mem/gc/ |
| D | gc_types.h | 40 constexpr bool IsGenerationalGCType(const GCType gcType) in IsGenerationalGCType() 102 constexpr std::string_view GCStringFromType(GCType gcType) in GCStringFromType()
|
| D | gc_stats.cpp | 276 PandaString GCInstanceStats::GetDump(GCType gcType) in GetDump() 312 PandaString GCInstanceStats::GetYoungSpaceDump(GCType gcType) in GetYoungSpaceDump() 336 PandaString GCInstanceStats::GetAllSpacesDump(GCType gcType) in GetAllSpacesDump()
|
| /arkcompiler/runtime_core/static_core/runtime/ |
| D | file_manager.cpp | 62 …auto gcType = Runtime::GetGCType(Runtime::GetOptions(), plugins::RuntimeTypeToLang(runtime->GetRun… in LoadAnFile() local
|
| /arkcompiler/runtime_core/static_core/runtime/tests/ |
| D | gc_log_test.cpp | 53 void SetupRuntime(const std::string &gcType, bool smallHeapAndYoungSpaces = false, in SetupRuntime() 114 auto gcType = GetParam(); in FullLogTest() local
|
| D | mem_stats_gc_test.cpp | 31 void SetupRuntime(const std::string &gcType) in SetupRuntime()
|
| D | explicit_gc_test.cpp | 55 void SetupRuntime(const std::string &gcType, bool isExplicitFull) const in SetupRuntime() argument
|
| D | epsilon_gcs_test.cpp | 44 static RuntimeOptions CreateDefaultOptions(GCType gcType = GCType::EPSILON_GC) in CreateDefaultOptions()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/runtime/ |
| D | ets_language_context.cpp | 58 mem::GC *EtsLanguageContext::CreateGC(mem::GCType gcType, mem::ObjectAllocatorBase *objectAllocator, in CreateGC()
|
| /arkcompiler/ets_runtime/ecmascript/mem/shared_heap/ |
| D | shared_concurrent_marker.cpp | 42 void SharedConcurrentMarker::Mark(TriggerGCType gcType, GCReason gcReason) in Mark()
|
| /arkcompiler/runtime_core/static_core/runtime/interpreter/ |
| D | interpreter_impl.cpp | 113 auto gcType = thread->GetVM()->GetGC()->GetType(); in ExecuteImpl() local
|
| /arkcompiler/runtime_core/static_core/compiler/aot/ |
| D | aot_file.cpp | 49 …<std::unique_ptr<AotFile>, std::string> AotFile::Open(const std::string &fileName, uint32_t gcType, in Open()
|
| D | aot_manager.cpp | 23 …tring> AotManager::AddFile(const std::string &fileName, RuntimeInterface *runtime, uint32_t gcType, in AddFile()
|
| D | aot_headers.h | 34 uint32_t gcType; member
|
| /arkcompiler/runtime_core/static_core/compiler/aot/aot_builder/ |
| D | aot_builder.h | 47 void SetGcType(uint32_t gcType) in SetGcType()
|
| /arkcompiler/runtime_core/static_core/runtime/core/ |
| D | core_language_context.cpp | 123 mem::GC *CoreLanguageContext::CreateGC(mem::GCType gcType, mem::ObjectAllocatorBase *objectAllocato… in CreateGC()
|
| /arkcompiler/runtime_core/static_core/compiler/tests/ |
| D | aot_test.cpp | 183 void BuildAot(const char *tmpfilePn, mem::GCType gcType) in BuildAot() 315 …auto gcType = Runtime::GetGCType(runtime->GetOptions(), plugins::RuntimeTypeToLang(runtime->GetRun… in TEST_F() local 538 …auto gcType = Runtime::GetGCType(runtime->GetOptions(), plugins::RuntimeTypeToLang(runtime->GetRun… in TEST_F() local
|