Home
last modified time | relevance | path

Searched refs:options_ (Results 1 – 13 of 13) sorted by relevance

/arkcompiler/ets_frontend/es2panda/aot/
DemitFiles.cpp31 auto emitMergedAbcJob = new EmitMergedAbcJob(options_->CompilerOutput(), progsInfo_); in Schedule()
37 auto outputCacheIter = options_->CompilerOptions().cacheFiles.find(info.first); in Schedule()
38 if (outputCacheIter != options_->CompilerOptions().cacheFiles.end()) { in Schedule()
52 auto outputFileName = options_->OutputFiles().empty() ? options_->CompilerOutput() : in Schedule()
53 options_->OutputFiles().at(info.first); in Schedule()
DemitFiles.h75 : WorkerQueue(options->CompilerOptions().fileThreadCount), options_(options), statp_(statp), in EmitFileQueue()
77 mergeAbc_ = options_->CompilerOptions().mergeAbc; in EmitFileQueue()
87 const std::unique_ptr<panda::es2panda::aot::Options> &options_;
Doptions.h105 return (options_ & OptionFlags::PARSE_ONLY) != 0; in ParseOnly()
110 return (options_ & OptionFlags::SIZE_STAT) != 0; in SizeStat()
137 OptionFlags options_ {OptionFlags::DEFAULT};
Doptions.cpp429 options_ |= OptionFlags::PARSE_ONLY; in Parse()
433 options_ |= OptionFlags::SIZE_STAT; in Parse()
/arkcompiler/ets_frontend/es2panda/compiler/core/
DcompileQueue.cpp81 auto cacheFileIter = options_->cacheFiles.find(src_->fileName); in Run()
82 if (cacheFileIter != options_->cacheFiles.end()) { in Run()
98 es2panda::Compiler compiler(src_->scriptExtension, options_->functionThreadCount); in Run()
99 auto *prog = compiler.CompileFile(*options_, src_, symbolTable_); in Run()
104 if (options_->optLevel != 0) { in Run()
143 for (auto &input: options_->sourceFiles) { in Schedule()
144 auto *fileJob = new CompileFileJob(&input, options_, progsInfo_, symbolTable_, allocator_); in Schedule()
DcompileQueue.h78 …: src_(src), options_(options), progsInfo_(progsInfo), symbolTable_(symbolTable), allocator_(alloc… in CompileFileJob()
88 es2panda::CompilerOptions *options_; variable
114 : util::WorkerQueue(threadCount), options_(options), progsInfo_(progsInfo), in CompileFileQueue()
124 es2panda::CompilerOptions *options_;
/arkcompiler/runtime_core/compiler/tests/
Dpanda_runner.h35 options_.SetBootPandaFiles(boot_panda_files); in PandaRunner()
37 options_.SetShouldLoadBootPandaFiles(true); in PandaRunner()
38 options_.SetShouldInitializeIntrinsics(false); in PandaRunner()
39 options_.SetNoAsyncJit(true); in PandaRunner()
113 Runtime::Create(options_); in CreateRuntime()
119 return options_; in GetRuntimeOptions()
179 RuntimeOptions options_;
/arkcompiler/ets_runtime/ecmascript/
Decma_vm.cpp153 options_ = std::move(options); in EcmaVM()
154 icEnabled_ = options_.EnableIC(); in EcmaVM()
155 optionalLogEnabled_ = options_.EnableOptionalLog(); in EcmaVM()
156 options_.ParseAsmInterOption(); in EcmaVM()
180 if (options_.IsWorker()) { in IsEnablePGOProfiler()
183 return options_.GetEnableAsmInterpreter() && options_.IsEnablePGOProfiler(); in IsEnablePGOProfiler()
196 gcStats_ = chunk_.New<GCStats>(heap_, options_.GetLongPauseTime()); in Initialize()
217 if (options_.GetEnableAsmInterpreter()) { in Initialize()
258 if (options_.EnableGCStatsPrint()) { in ~EcmaVM()
328 …if (options_.EnableCpuProfilerColdStartMainThread() && options_.GetArkBundleName().compare(bundleN… in CheckStartCpuProfiler()
[all …]
Decma_vm.h141 return options_; in GetJSOptions()
172 if (options_.EnableThreadCheck()) { in GetJSThread()
232 options_.SetEnableForceGC(enable); in SetEnableForceGC()
300 return options_.IsWorker(); in IsWorkerThread()
323 return options_.EnableReportModuleResolvingFailure(); in EnableReportModuleResolvingFailure()
431 JSRuntimeOptions options_; variable
/arkcompiler/ets_runtime/ecmascript/compiler/
Dllvm_codegen.cpp271 options_.MCJMM = in UseRoundTripSectionMemoryManager()
278 …LLVMBool ret = LLVMCreateMCJITCompilerForModule(&engine_, module_, &options_, sizeof(options_), &e… in BuildMCJITEngine()
290 LLVMPassManagerBuilderSetOptLevel(pmBuilder, options_.OptLevel); // using O3 optimization level in BuildAndRunPasses()
321 LLVMPassManagerBuilderSetOptLevel(pmBuilder, options_.OptLevel); // using O3 optimization level in BuildAndRunPassesFastMode()
434 LLVMInitializeMCJITCompilerOptions(&options_, sizeof(options_)); in Initialize()
435 options_.OptLevel = option.optLevel; in Initialize()
437 options_.RelMode = static_cast<LLVMRelocMode>(option.relocMode); in Initialize()
438 options_.NoFramePointerElim = static_cast<int32_t>(option.genFp); in Initialize()
439 options_.CodeModel = LLVMCodeModelSmall; in Initialize()
Dllvm_codegen.h195 LLVMMCJITCompilerOptions options_ {};
/arkcompiler/toolchain/tooling/base/
Dpt_params.h1040 return options_.value(); in GetOptions()
1045 options_ = options; in SetOptions()
1051 return options_.has_value(); in HasOptions()
1189 std::optional<std::string> options_ {};
Dpt_params.cpp975 startParams->options_ = std::move(options); in Create()