/arkcompiler/ets_frontend/es2panda/aot/ |
H A D | main.cpp | 36 namespace panda::es2panda::aot { namespace in panda::es2panda 59 const std::unique_ptr<panda::es2panda::aot::Options> &options) in GenerateBase64Output() 121 const std::unique_ptr<panda::es2panda::aot::Options> &options, std::map<std::string, size_t> *statp) in GenerateProgramsByWorkers() 123 auto queue = new panda::es2panda::aot::EmitFileQueue(options, statp, programsInfo); in GenerateProgramsByWorkers() 142 const std::unique_ptr<panda::es2panda::aot::Options> &options) in DumpProgramInfos() 170 const std::unique_ptr<panda::es2panda::aot::Options> &options, in GenerateProgram() 259 const std::unique_ptr<panda::es2panda::aot::Options> &options, size_t expectedProgsCount, in GenerateAbcFiles() 277 const std::unique_ptr<panda::es2panda::aot::Options> &options, in ResolveDepsRelations() 280 panda::es2panda::aot::DepsRelationResolver depsRelationResolver(programsInfo, options, resolvedDepsRelation); in ResolveDepsRelations() 285 const std::unique_ptr<panda::es2panda::aot in ResolveAndGenerate() [all...] |
H A D | resolveDepsRelation.h | 24 #include <aot/options.h> 28 namespace panda::es2panda::aot { namespace in panda::es2panda 33 const std::unique_ptr<panda::es2panda::aot::Options> &options, in DepsRelationResolver() 60 } // namespace panda::es2panda::aot
|
H A D | emitFiles.h | 19 #include <aot/options.h> 25 namespace panda::es2panda::aot { namespace in panda::es2panda 81 explicit EmitFileQueue(const std::unique_ptr<panda::es2panda::aot::Options> &options, in EmitFileQueue() 97 const std::unique_ptr<panda::es2panda::aot::Options> &options_; 102 } // namespace panda::es2panda::aot
|
H A D | options.h | 34 namespace panda::es2panda::aot { namespace in panda::es2panda 182 } // namespace panda::es2panda::aot
|
H A D | resolveDepsRelation.cpp | 20 namespace panda::es2panda::aot { namespace in panda::es2panda 154 } // namespace panda::es2panda::aot
|
H A D | emitFiles.cpp | 26 namespace panda::es2panda::aot { namespace in panda::es2panda
|
H A D | options.cpp | 38 namespace panda::es2panda::aot { namespace in panda::es2panda 773 } // namespace panda::es2panda::aot
|
/arkcompiler/runtime_core/static_core/compiler/aot/ |
H A D | aot_file.cpp | 54 trace::ScopedTrace scopedTrace("Open aot file " + fileName); in Open() 61 LOAD_AOT_SYMBOL(aot); in Open() 66 if (code_end.Value() < code.Value() || aot_end.Value() <= aot.Value()) { in Open() 70 auto aotHeader = reinterpret_cast<const AotHeader *>(aot.Value()); in Open() 88 return std::make_unique<AotFile>(std::move(handle), Span(aot.Value(), aot_end.Value() - aot.Value()), in Open()
|
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/plugins/tools/ |
H A D | ark_js_vm.py | 44 aot = f'--aot-file={name} ' if OptFlags.AOT in self.flags else '' 47 f'{aot}{self.custom} ./{name}.abc', 54 aot = '' if not with_aot else f'--aot-file={name} ' 60 f'{self.custom} {aot}'
|
/arkcompiler/ets_frontend/ets2panda/aot/ |
H A D | main.cpp | 31 namespace ark::es2panda::aot { namespace in ark::es2panda 167 } // namespace ark::es2panda::aot 171 ark::es2panda::aot::MemManager mm; 172 return ark::es2panda::aot::Run(argc, argv);
|
/arkcompiler/runtime_core/static_core/compiler/tools/ |
H A D | benchmark_coverage.sh | 56 if [ "$PAOC_MODE" = aot ]; then
|
/arkcompiler/runtime_core/static_core/tests/cts-generator/runner/ |
H A D | single_test_runner.rb | 131 FileUtils.rm("#{@bin_file}.aot") if $paoc && File.exist?("#{@bin_file}.aot") 213 aot = if $paoc 214 "--aot-file=#{@bin_file}.aot" 218 run_command "#{$panda} #{$panda_options.join ' '} #{@test_panda_options} #{aot} " \ 231 run_command "#{$paoc} --paoc-panda-files #{@bin_file} --paoc-output #{@bin_file}.aot"
|
/arkcompiler/runtime_core/tests/cts-generator/runner/ |
H A D | single_test_runner.rb | 138 FileUtils.rm("#{@bin_file}.aot") if $paoc && File.exist?("#{@bin_file}.aot") 220 aot = if $paoc 221 "--aot-file=#{@bin_file}.aot" 225 run_command "#{$panda} #{@pa_options} #{$panda_options.join ' '} #{@test_panda_options} #{aot} " \ 238 run_command "#{$paoc} #{@pa_options} --paoc-panda-files #{@bin_file} --paoc-output #{@bin_file}.aot"
|
/arkcompiler/ets_frontend/es2panda/compiler/core/ |
H A D | compileQueue.h | 19 #include <aot/options.h>
|
/arkcompiler/ets_runtime/test/regresstest/ |
H A D | run_regress_test.py | 67 parser.add_argument('--ark-aot-tool', 69 parser.add_argument('--ark-aot', default=False, action='store_true', 70 help="runs in ark-aot mode") 149 output('pgo mode cannot be used without aot') 666 aot = RegressTestAot(args) 667 RegressTestAot.step_obj = aot 668 aot._start() 669 test_reports = aot.compile_aots(test_reports) 670 aot._end() 687 f"--aot [all...] |
/arkcompiler/ets_runtime/tools/circuit_viewer/src/ir/ |
H A D | LogParser.js | 256 if (l.startsWith('[compiler] aot method')) { 257 //[compiler] aot method [func_main_0@b.abc] log: 258 const regexFuncName = /^\[compiler\] aot method \[([#a-zA-Z0-9_@/.]+)\] (recordName \[[a-zA-Z0-9_]*\] )*log:/g;
|
/arkcompiler/runtime_core/static_core/compiler/tools/paoc/ |
H A D | paoc.cpp | 18 #include "aot/compiled_method.h" 256 if (modeStr == "aot") { in InitPaocMode() 878 std::cerr << " --paoc-mode specify compilation mode (aot, llvm, jit or osr) \n"; in PrintUsage()
|