Searched refs:isJit (Results 1 - 11 of 11) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/ |
H A D | litecg_codegen.cpp | 97 void LiteCGAssembler::Run(const CompilerLog &log, [[maybe_unused]] bool fastCompileMode, bool isJit) in Run() argument 113 liteCG.SetupLiteCGEmitMemoryManager(&codeInfo_, isJit ? AllocateCodeSectionOnDemand : AllocateCodeSection, in Run() 117 isJit &= JitFort::IsResourceAvailable(); in Run() 118 if (isJit) { in Run() 126 liteCG.DoCG(isJit); in Run()
|
H A D | litecg_codegen.h | 31 void Run(const CompilerLog &log, bool fastCompileMode, bool isJit = false) override;
|
H A D | litecg_ir_builder.h | 39 bool isJit) in LMIRModule() 43 module = isJit ? nullptr : maple::litecg::CreateModuleWithName(name); in LMIRModule() 38 LMIRModule(NativeAreaAllocator *allocator, const std::string &name, bool logDbg, const std::string &triple, bool isJit) LMIRModule() argument
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/litecg/ |
H A D | litecg.cpp | 86 void LiteCG::DoCG(bool isJit) in DoCG() argument 94 cgOptions->SetUseJitCodeSign(isJit); in DoCG()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/litecg/ |
H A D | litecg.h | 65 void DoCG(bool isJit = false);
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/llvm/ |
H A D | llvm_codegen.h | 69 void Run(const CompilerLog &log, bool fastCompileMode, bool isJit = false) override;
110 void UseRoundTripSectionMemoryManager(bool isJit);
|
H A D | llvm_codegen.cpp | 398 void LLVMAssembler::UseRoundTripSectionMemoryManager(bool isJit) in UseRoundTripSectionMemoryManager() argument 402 &codeInfo_, isJit ? RoundTripAllocateCodeSectionOnDemand : RoundTripAllocateCodeSection, in UseRoundTripSectionMemoryManager() 403 isJit ? RoundTripAllocateDataSectionOnDemand : RoundTripAllocateDataSection, RoundTripFinalizeMemory, in UseRoundTripSectionMemoryManager() 501 void LLVMAssembler::Run(const CompilerLog &log, bool fastCompileMode, bool isJit) in Run() argument 513 UseRoundTripSectionMemoryManager(isJit); in Run()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | file_generators.h | 86 void RunAssembler(const CompilerLog &log, bool fastCompileMode, bool isJit = false); 194 bool isJit = false); 196 void CompileLatestModuleThenDestroy(bool isJit = false);
|
H A D | file_generators.cpp | 323 void Module::RunAssembler(const CompilerLog &log, bool fastCompileMode, bool isJit) in RunAssembler() argument 325 assembler_->Run(log, fastCompileMode, isJit); in RunAssembler() 475 [[maybe_unused]] LOptions option, bool logDebug, [[maybe_unused]] bool isJit) in AddModule() 479 LMIRModule *irModule = new LMIRModule(compilationEnv_->GetNativeAreaAllocator(), name, logDebug, triple, isJit); in AddModule() 574 void AOTFileGenerator::CompileLatestModuleThenDestroy(bool isJit) in CompileLatestModuleThenDestroy() argument 595 latestModule->RunAssembler(*(log_), fastCompileMode, isJit); in CompileLatestModuleThenDestroy() 474 AddModule(const std::string &name, const std::string &triple, [[maybe_unused]] LOptions option, bool logDebug, [[maybe_unused]] bool isJit) AddModule() argument
|
H A D | compilation_driver.h | 109 void CompileModuleThenDestroyIfNeeded(bool isJit = false);
|
H A D | code_generator.h | 147 virtual void Run(const CompilerLog &log, bool fastCompileMode, bool isJit = false) = 0;
|
Completed in 14 milliseconds