Home
last modified time | relevance | path

Searched refs:AOT (Results 1 - 25 of 32) sorted by relevance

12

/arkcompiler/runtime_core/static_core/compiler/aot/
H A Daot_manager.cpp27 LOG(DEBUG, AOT) << "Trying to add already existing AOT file: '" << fileName << "'"; in AddFile()
40 LOG(DEBUG, AOT) << "AOT file '" << fileName << "' has been loaded, code=" << aotFile.Value()->GetCode() in AddFile()
42 LOG(DEBUG, AOT) << " It contains the following panda files:"; in AddFile()
44 LOG(DEBUG, AOT) << " " << aotFile.Value()->GetString(header.fileNameStr); in AddFile()
87 LOG(ERROR, AOT) << "\t\t" << context.substr(start, end - start); in FancyClassContextPrint()
91 LOG(ERROR, AOT) << "\t\t" << context.substr(start); in FancyClassContextPrint()
102 LOG(ERROR, AOT) << "Cannot found file " << fileContext << " in runtime context"; in CheckFilesInClassContext()
139 LOG(ERROR, AOT) << "Canno in VerifyClassHierarchy()
[all...]
/arkcompiler/runtime_core/static_core/compiler/tools/paoc/
H A Dpaoc.cpp257 paoc_->mode_ = PaocMode::AOT; in InitPaocMode()
613 // in this case it should not be added into AOT file. in Compile()
655 case PaocMode::AOT: in Compile()
763 LOG(INFO, COMPILER) << "Ark AOT successfully compiled method: " << runtime_->GetMethodFullName(ctx->method, false); in FinalizeCompileAot()
787 * Compiles a method in AOT mode.
796 << "LLVM AOT compiler supports only --paoc-use-cha=true"; in CompileAot()
824 LOG_PAOC(FATAL) << "LLVM AOT failed (unknown instruction)"; in CompileAot()
827 // Fallback to Ark Compiler AOT compilation in CompileAot()
833 LOG_PAOC(INFO) << "LLVM fallback to ARK AOT on method: " << runtime_->GetMethodFullName(ctx->method, false); in CompileAot()
881 " the AOT fil in PrintUsage()
[all...]
H A Dpaoc.h38 enum class PaocMode : uint8_t { AOT, JIT, OSR, LLVM }; member in ark::ark::paoc::PaocMode
102 return mode_ == PaocMode::AOT || mode_ == PaocMode::LLVM; in IsAotMode()
159 PaocMode mode_ {PaocMode::AOT};
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/enum_types/
H A Dconfiguration_kind.py24 AOT = "AOT" variable in ConfigurationKind
25 AOT_FULL = "AOT-FULL"
/arkcompiler/ets_runtime/ecmascript/dfx/cpu_profiler/tests/
H A Dsamples_record_test.cpp123 result = samplesRecord.AddRunningStateTest(funcName, RunningState::AOT, in HWTEST_F_L0()
156 result = samplesRecord.AddRunningStateTest(funcName, RunningState::AOT, in HWTEST_F_L0()
158 EXPECT_EQ(result, "testFunction(AOT)"); in HWTEST_F_L0()
176 samplesRecord.StatisticStateTimeTest(104, RunningState::AOT); in HWTEST_F_L0()
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/
H A Drunner_js.py53 if self.conf_kind in [ConfigurationKind.AOT, ConfigurationKind.AOT_FULL]:
H A Dtest_file_based.py181 if self.test_env.conf_kind in [ConfigurationKind.AOT, ConfigurationKind.AOT_FULL]:
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/
H A Dtool.py47 AOT = 'aot' variable in ToolMode
62 AOT = auto() variable in OptFlags
H A Dcli.py120 help='Skip AOT compilation of stdlib')
273 if ToolMode.AOT == mode:
274 flags |= OptFlags.AOT
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/plugins/platforms/
H A Dark_js_vm_ohos.py68 if OptFlags.AOT in self.flags:
H A Dark_js_vm_host.py66 if OptFlags.AOT in self.flags:
H A Darkts_host.py46 log.info('AOT-Compiling %s. This may took a long time...',
79 if OptFlags.AOT in self.flags:
H A Darkts_device.py44 log.info('AOT-Compiling %s. This may took a long time...',
81 if OptFlags.AOT in self.flags:
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/src/vmb/plugins/tools/
H A Dark_js_vm.py44 aot = f'--aot-file={name} ' if OptFlags.AOT in self.flags else ''
H A Dark.py59 if OptFlags.AOT in self.flags:
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/tests/
H A Dtest_cli.py65 test.assertTrue(OptFlags.AOT not in flags)
/arkcompiler/ets_runtime/ecmascript/dfx/stackinfo/
H A Djs_stackgetter.h31 AOT, member in panda::ecmascript::RunningState
/arkcompiler/runtime_core/static_core/compiler/tools/aotdump/
H A Daotdump.cpp173 std::cerr << "Open AOT file failed: " << aotRes.Error() << std::endl; in Run()
362 LOG(FATAL, AOT) << "ZydisDecoderInit failed"; in PrintCodeX8664()
368 LOG(FATAL, AOT) << "ZydisFormatterInit failed"; in PrintCodeX8664()
377 LOG(FATAL, AOT) << "ZydisDecoderDecodeBuffer failed"; in PrintCodeX8664()
381 LOG(FATAL, AOT) << "ZydisFormatterFormatInstruction failed"; in PrintCodeX8664()
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/hermes/
H A Dtest_js_hermes.py64 if self.test_env.conf_kind in [ConfigurationKind.AOT, ConfigurationKind.AOT_FULL]:
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/test262/
H A Dtest_js_test262.py75 if self.test_env.conf_kind in [ConfigurationKind.AOT, ConfigurationKind.AOT_FULL]:
/arkcompiler/ets_runtime/ecmascript/compiler/aot_file/
H A Dan_file_data_manager.h27 AOT, member in panda::ecmascript::AnFileDataManager::Type
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/ets/
H A Drunner_ets.py66 if self.conf_kind in [ConfigurationKind.AOT, ConfigurationKind.AOT_FULL]:
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/
H A Dheap_sampling.cpp160 if (state == RunningState::AOT && type != kungfu::DeoptType::NONE) { in AddRunningState()
/arkcompiler/runtime_core/static_core/compiler/tools/
H A Dbenchmark_coverage.sh57 PAOC_MODE_NAME=AOT
/arkcompiler/runtime_core/static_core/runtime/
H A Druntime.cpp680 LOG(FATAL, RUNTIME) << "AOT file wasn't loaded for panda file: " << name; in CheckBootPandaFiles()
737 // During AOT compilation of boot files no application panda files were used. in CreatePandaVM()
799 LOG(FATAL, AOT) << "Failed to load AoT file: " << res.Error(); in HandleAotOptions()
802 LOG(FATAL, AOT) << "Failed to load '" << fname << "' with unknown reason"; in HandleAotOptions()
825 LOG(FATAL, AOT) << "We can't use the option --no-async-jit=true with AOT"; in HandleJitOptions()
850 << ", ResolveString optimization won't be applied to AOT-compiled code. " in CheckOptionsConsistency()
904 // We must load AOT file before InitializePandaVM, because during initialization, code execution may be called. in Initialize()

Completed in 13 milliseconds

12