Home
last modified time | relevance | path

Searched defs:phase (Results 1 – 25 of 41) sorted by relevance

12

/arkcompiler/runtime_core/static_core/runtime/mem/gc/
Dgc_scope.cpp27 GCScope<TRACE_TIMING_PHASE>::GCScope(std::string_view name, GC *gc, GCPhase phase) in GCScope()
32 GCScope<TIMING_PHASE>::GCScope(std::string_view name, GC *gc, GCPhase phase) in GCScope()
37 GCScope<TRACE_PHASE>::GCScope(std::string_view name, GC *gc, GCPhase phase) in GCScope()
Dgc_scoped_phase.h38 static PandaString GetPhaseName(GCPhase phase) in GetPhaseName()
66 static const char *GetPhaseAbbr(GCPhase phase) in GetPhaseAbbr()
Dgc_phase.h34 constexpr size_t ToIndex(GCPhase phase) in ToIndex()
44 constexpr bool IsMarking(GCPhase phase) in IsMarking()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_phase/src/
Dmaple_phase_manager.cpp223 AnalysisDep *MaplePhaseManager::FindAnalysisDep(const MaplePhase *phase) in FindAnalysisDep()
246 void MaplePhaseManager::RunDependentPhase(const MaplePhase &phase, AnalysisDataManager &adm, IRTemp… in RunDependentPhase()
271 auto *phase = static_cast<phaseT *>(phaseInfo.GetConstructor()(transformPhaseMempool.get())); in RunTransformPhase() local
293 phaseT *phase = nullptr; in RunAnalysisPhase() local
/arkcompiler/ets_runtime/common_components/heap/collector/
Dcollector.cpp26 const char* Collector::GetGCPhaseName(GCPhase phase) in GetGCPhaseName()
Dcollector.h62 … virtual void SetGCPhase(const GCPhase phase) { gcPhase_.store(phase, std::memory_order_release); } in SetGCPhase()
Dcollector_proxy.h43 void SetGCPhase(const GCPhase phase) override { currentCollector_->SetGCPhase(phase); } in SetGCPhase()
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/xgc/
Dremark_cycle_test.cpp53 void GCPhaseStarted(mem::GCPhase phase) override in GCPhaseStarted()
91 void GCPhaseFinished(mem::GCPhase phase) override in GCPhaseFinished()
Dmark_deep_js2sts_test.cpp88 void GCPhaseStarted(mem::GCPhase phase) override in GCPhaseStarted()
Dmark_cycle2_test.cpp89 void GCPhaseStarted(mem::GCPhase phase) override in GCPhaseStarted()
Dmark_js2sts_test.cpp101 void GCPhaseStarted(mem::GCPhase phase) override in GCPhaseStarted()
/arkcompiler/ets_runtime/common_components/mutator/tests/
Dmutator_test.cpp235 GCPhase phase = GCPhase::GC_PHASE_ENUM; in HWTEST_F_L0() local
244 GCPhase phase = GCPhase::GC_PHASE_PRECOPY; in HWTEST_F_L0() local
253 GCPhase phase = GCPhase::GC_PHASE_IDLE; in HWTEST_F_L0() local
/arkcompiler/ets_runtime/common_components/mutator/
Dmutator_manager.cpp239 void MutatorManager::StopTheWorld(bool syncGCPhase, GCPhase phase) in StopTheWorld()
358 void MutatorManager::EnsurePhaseTransition(GCPhase phase, std::list<Mutator*> &undoneMutators) in EnsurePhaseTransition()
380 void MutatorManager::TransitionAllMutatorsToGCPhase(GCPhase phase) in TransitionAllMutatorsToGCPhase()
/arkcompiler/ets_runtime/common_components/heap/allocator/
Dregion_space.cpp42 GCPhase phase = Mutator::GetMutator()->GetMutatorPhase(); in AllocateThreadLocalRegion() local
145 GCPhase phase = Mutator::GetMutator()->GetMutatorPhase(); in AllocOldRegion() local
172 GCPhase phase = Mutator::GetMutator()->GetMutatorPhase(); in AllocPinnedRegion() local
Dregion_manager.h181 GCPhase phase = Mutator::GetMutator()->GetMutatorPhase(); variable
217 GCPhase phase = Mutator::GetMutator()->GetMutatorPhase(); variable
246 GCPhase phase = Mutator::GetMutator()->GetMutatorPhase(); variable
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/
Dcfgo.h71 CfgoPhase phase = kCfgoDefault; variable
/arkcompiler/ets_frontend/ets2panda/compiler/core/
DcompilerImpl.cpp188 while (auto phase = context.phaseManager->NextPhase()) { in RunVerifierAndPhases() local
241 while (auto phase = context.phaseManager->NextPhase()) { in RunPhases() local
536 while (auto phase = phaseManager.NextPhase()) { in GetPhasesList() local
/arkcompiler/ets_frontend/ets2panda/test/utils/
Dchecker_test.h130 while (auto phase = publicContext_->phaseManager->NextPhase()) { in InitializeChecker() local
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/
Dgc_task_tracker.cpp68 void GCTaskTracker::GCPhaseStarted(mem::GCPhase phase) in GCPhaseStarted()
/arkcompiler/ets_frontend/ets2panda/util/
Doptions.h168 bool HasVerifierPhase(std::string_view phase) const in HasVerifierPhase()
/arkcompiler/ets_frontend/ets2panda/test/unit/
Dunion_normalisation_test.h122 while (auto phase = publicContext_->phaseManager->NextPhase()) { in InitializeChecker() local
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/
Dutil.cpp204 for (auto *phase : phaseManager->RebindPhases()) { in Rebind() local
243 for (auto *phase : phaseManager->RecheckPhases()) { in Recheck() local
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/xgc/
Dxgc.cpp242 void XGC::GCPhaseStarted(mem::GCPhase phase) in GCPhaseStarted()
272 void XGC::GCPhaseFinished(mem::GCPhase phase) in GCPhaseFinished()
/arkcompiler/ets_runtime/common_components/heap/
Dheap.cpp302 void HeapImpl::InstallBarrier(const GCPhase phase) in InstallBarrier()
325 void HeapImpl::SetGCPhase(const GCPhase phase) { collectorProxy_.SetGCPhase(phase); } in SetGCPhase()
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/templates/
DTemplate.mjs141 function runIters(phase, count, time) { argument

12