Home
last modified time | relevance | path

Searched defs:cfg (Results 1 – 25 of 48) sorted by relevance

12

/arkcompiler/runtime_core/static_core/verification/config/process/
Dconfig_process.cpp30 bool ProcessConfigSection(Config *cfg, const Section &section, const ark::PandaString &path = "") in ProcessConfigSection()
48 void RegisterConfigHandler(Config *cfg, const PandaString &path, callable<bool(Config *, const Sect… in RegisterConfigHandler() argument
54 bool ProcessConfig(Config *cfg, const Section &section) in ProcessConfig()
/arkcompiler/ets_frontend/ets2panda/test/unit/cfg/
Dcfg_test_if.cpp32 CFG *cfg = GetCfg(); in TEST_F() local
51 CFG *cfg = GetCfg(); in TEST_F() local
91 CFG *cfg = GetCfg(); in TEST_F() local
138 CFG *cfg = GetCfg(); in TEST_F() local
183 CFG *cfg = GetCfg(); in TEST_F() local
Dcfg_test_for.cpp33 CFG *cfg = GetCfg(); in TEST_F() local
84 CFG *cfg = GetCfg(); in TEST_F() local
145 CFG *cfg = GetCfg(); in TEST_F() local
199 CFG *cfg = GetCfg(); in TEST_F() local
Dcfg_test_do_while.cpp34 CFG *cfg = GetCfg(); in TEST_F() local
83 CFG *cfg = GetCfg(); in TEST_F() local
143 CFG *cfg = GetCfg(); in TEST_F() local
Dcfg_test_while.cpp34 CFG *cfg = GetCfg(); in TEST_F() local
86 CFG *cfg = GetCfg(); in TEST_F() local
148 CFG *cfg = GetCfg(); in TEST_F() local
Dcfg_test_try_catch.cpp41 CFG *cfg = GetCfg(); in TEST_F() local
Dcfg_test_for_of.cpp32 CFG *cfg = GetCfg(); in TEST_F() local
Dcfg_test_switch.cpp52 CFG *cfg = GetCfg(); in TEST_F() local
/arkcompiler/runtime_core/static_core/verification/config/
Dconfig_load.cpp36 bool ProcessConfigFile(ark::verifier::Config *cfg, const char *text) in ProcessConfigFile()
60 bool LoadConfig(Config *cfg, std::string_view filename) in LoadConfig()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dpost_schedule.cpp23 void PostSchedule::Run(ControlFlowGraph &cfg) in Run()
40 void PostSchedule::GenerateExtraBB(ControlFlowGraph &cfg) in GenerateExtraBB()
88 bool PostSchedule::VisitHeapAlloc(GateRef gate, ControlFlowGraph &cfg, size_t bbIdx, size_t instIdx) in VisitHeapAlloc()
119 bool PostSchedule::VisitHeapAllocForCMCGC(GateRef gate, ControlFlowGraph &cfg, size_t bbIdx, size_t… in VisitHeapAllocForCMCGC()
153 void PostSchedule::ReplaceGateDirectly(std::vector<GateRef> &gates, ControlFlowGraph &cfg, size_t b… in ReplaceGateDirectly()
160 void PostSchedule::ScheduleEndBB(std::vector<GateRef> &gates, ControlFlowGraph &cfg, size_t bbIdx, … in ScheduleEndBB()
169 void PostSchedule::ScheduleNewBB(std::vector<GateRef> &gates, ControlFlowGraph &cfg, size_t bbIdx) in ScheduleNewBB()
176 void PostSchedule::ScheduleCurrentBB(const std::vector<GateRef> &gates, ControlFlowGraph &cfg, size… in ScheduleCurrentBB()
193 void PostSchedule::ReplaceBBState(ControlFlowGraph &cfg, size_t bbIdx, std::vector<GateRef> &curren… in ReplaceBBState()
565 bool PostSchedule::VisitStore(GateRef gate, ControlFlowGraph &cfg, size_t bbIdx, size_t instIdx) in VisitStore()
[all …]
Dstub.cpp45 void Stub::GenerateCircuit(const CompilationConfig *cfg) in GenerateCircuit()
Dcode_generator.h211 …orStub(Circuit *circuit, const ControlFlowGraph &graph, size_t index, const CompilationConfig *cfg) in RunForStub()
221 void Run(Circuit *circuit, const ControlFlowGraph &graph, const CompilationConfig *cfg, in Run()
/arkcompiler/ets_frontend/ets2panda/linter/arkanalyzer/src/core/model/
DArkMethod.ts487 const cfg = this.getCfg() as Cfg; constant
508 const cfg = this.getCfg() as Cfg; constant
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/ets/
DcfgBuilderPhase.cpp35 compiler::CFG *cfg = program->GetCFG(); in Perform() local
/arkcompiler/ets_frontend/ets2panda/declgen_ets2ts/
Dmain.cpp78 …oid DestroyContextAndConfig(const es2panda_Impl *impl, es2panda_Context *ctx, es2panda_Config *cfg, in DestroyContextAndConfig()
98 auto *cfg = impl->CreateConfig(newArgc, newArgv); in Run() local
/arkcompiler/ets_frontend/ets2panda/linter/arkanalyzer/src/utils/
DentryMethodUtils.ts117 const cfg = method.getCfg(); constant
/arkcompiler/ets_frontend/ets2panda/linter/arkanalyzer/src/core/model/builder/
DArkMethodBuilder.ts389 const cfg = new Cfg(); constant
416 const cfg = new Cfg(); constant
432 const cfg = constructor.getCfg(); constant
/arkcompiler/ets_frontend/ets2panda/linter/arkanalyzer/src/save/arkir/
DArkIRMethodPrinter.ts58 const cfg = this.method.getCfg(); constant
/arkcompiler/runtime_core/static_core/verification/config/debug_breakpoint/
Dconfig_handler_breakpoints.cpp92 static bool RegisterConfigHandlerBreakpointsVerifierAnalyzer(const struct Section &s, Config *&cfg) in RegisterConfigHandlerBreakpointsVerifierAnalyzer()
116 static const auto CONFIG_DEBUG_BREAKPOINTS = [](Config *cfg, const Section &section) { in RegisterConfigHandlerBreakpoints()
/arkcompiler/ets_frontend/ets2panda/linter/arkanalyzer/src/callgraph/algorithm/
DAbstractAnalysis.ts156 const cfg = arkMethod.getCfg(); constant
/arkcompiler/ets_frontend/ets2panda/linter/arkanalyzer/src/save/source/
DSourceMethod.ts83 const cfg = this.method.getCfg(); constant
/arkcompiler/runtime_core/static_core/verification/config/handlers/
Dconfig_handler_method_options.cpp283 static const auto PROCESS_METHOD_OPTIONS = [](Config *cfg, const Section &section) { in MethodOptionsProcessor()
313 Section cfg; in RegisterConfigHandlerMethodOptions() local
341 Section cfg; in SetDefaultMethodOptions() local
/arkcompiler/runtime_core/static_core/runtime/tests/
Dmem_stats_gen_gc_test.cpp133 void SetupRuntime(const std::string &gcTypeParam, const Config &cfg) in SetupRuntime()
678 for (MemStatsGenGCTest::Config cfg; !cfg.End(); ++cfg) { in TEST_F() local
727 for (MemStatsGenGCTest::Config cfg; !cfg.End(); ++cfg) { in TEST_F() local
778 for (MemStatsGenGCTest::Config cfg; !cfg.End(); ++cfg) { in TEST_F() local
837 for (MemStatsGenGCTest::Config cfg; !cfg.End(); ++cfg) { in TEST_F() local
877 for (MemStatsGenGCTest::Config cfg; !cfg.End(); ++cfg) { in TEST_F() local
954 for (MemStatsGenGCTest::Config cfg; !cfg.End(); ++cfg) { in TEST_F() local
/arkcompiler/ets_frontend/ets2panda/linter/arkanalyzer/src/core/common/
DIRUtils.ts46 const cfg = method.getCfg(); constant
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/
Dlitecg_codegen.cpp121 const CompilationConfig *cfg) in GenerateCodeForStub()
129 …orImpl::GenerateCode(Circuit *circuit, const ControlFlowGraph &graph, const CompilationConfig *cfg, in GenerateCode()

12