Home
last modified time | relevance | path

Searched refs:Module (Results 1 – 25 of 64) sorted by relevance

123

/arkcompiler/runtime_core/static_core/libllvmbackend/transforms/
Dllvm_optimizer.h24 class Module; variable
35 void OptimizeModule(llvm::Module *module) const;
36 void ProcessInlineModule(llvm::Module *inlineModule) const;
42 void DoOptimizeModule(llvm::Module *module) const;
Dllvm_optimizer.cpp124 void LLVMOptimizer::ProcessInlineModule(llvm::Module *inlineModule) const in ProcessInlineModule()
148 void LLVMOptimizer::OptimizeModule(llvm::Module *module) const in OptimizeModule()
169 void LLVMOptimizer::DoOptimizeModule(llvm::Module *module) const in DoOptimizeModule()
/arkcompiler/ets_frontend/ets2panda/ir/ets/
DetsImportDeclaration.h70 StringLiteral *Module() in Module() function
72 return source_->Module(); in Module()
75 const StringLiteral *Module() const in Module() function
77 return source_->Module(); in Module()
DetsImportSource.h58 const ir::StringLiteral *Module() const in Module() function
63 ir::StringLiteral *Module() in Module() function
/arkcompiler/ets_runtime/ecmascript/compiler/
Dfile_generators.h31 class Module {
33 Module() = default;
34 Module(IRModule *module, Assembler *assembler) in Module() function
156 std::vector<Module> modulePackage_ {};
186 Module* GetLatestModule();
190Module* AddModule(const std::string &name, const std::string &triple, LOptions option, bool logDeb…
218 void CollectCodeInfo(Module *module, uint32_t moduleIdx);
220 uint64_t RollbackTextSize(Module *module);
247Module* AddModule(NativeAreaAllocator *allocator, const std::string &name, const std::string &trip…
Dfile_generators.cpp34 void Module::CollectStackMapDes(ModuleSectionDes& des) const in CollectStackMapDes()
56 void Module::CollectAnStackMapDes(ModuleSectionDes& des, uint64_t textOffset, in CollectAnStackMapDes()
81 void Module::CollectFuncEntryInfo(std::map<uintptr_t, std::string> &addr2name, StubFileInfo &stubIn… in CollectFuncEntryInfo()
123 void Module::CollectFuncEntryInfo(std::map<uintptr_t, std::string> &addr2name, AnFileInfo &aotInfo,… in CollectFuncEntryInfo()
195 void Module::CollectFuncEntryInfoByLiteCG(std::map<uintptr_t, std::string> &addr2name, AnFileInfo &… in CollectFuncEntryInfoByLiteCG()
259 void Module::CollectModuleSectionDes(ModuleSectionDes &moduleDes) const in CollectModuleSectionDes()
281 void Module::CollectAnModuleSectionDes(ModuleSectionDes &moduleDes, uint64_t textOffset, in CollectAnModuleSectionDes()
296 uint32_t Module::GetSectionSize(ElfSecName sec) const in GetSectionSize()
301 uintptr_t Module::GetSectionAddr(ElfSecName sec) const in GetSectionAddr()
306 void Module::RunAssembler(const CompilerLog &log, bool fastCompileMode) in RunAssembler()
[all …]
Dstub_compiler.cpp142Module* stubM = generator.AddModule(&allocator, "bc_stub", triple_, stubOp, log->OutputASM(), Stub… in BuildStubModuleAndSave()
151Module* comM = generator.AddModule(&allocator, "com_stub", triple_, comOp, log->OutputASM(), StubF… in BuildStubModuleAndSave()
160Module* builtinM = generator.AddModule(&allocator, "builtin_stub", triple_, builtinOp, log->Output… in BuildStubModuleAndSave()
Dcompilation_driver.h26 class Module; variable
88 Module *module = GetModule(); in CompileMethod()
160 Module *GetModule();
388 Module *GetModule();
409 Module *module = GetModule(); in CompileMethod()
/arkcompiler/runtime_core/static_core/libllvmbackend/transforms/passes/inline_ir/
Dinline_ir_utils.h20 class Module; variable
25 bool RemoveDanglingAliases(llvm::Module &module);
Dinline_ir_utils.cpp25 using llvm::Module;
38 bool RemoveDanglingAliases(Module &module) in RemoveDanglingAliases()
Dremove_unused_functions.h28 class Module; variable
45 … llvm::PreservedAnalyses run(llvm::Module &module, llvm::ModuleAnalysisManager &analysis_manager);
Dcleanup_inline_module.cpp49 using llvm::Module;
197 bool Run(Module &module) in Run()
215 void RemoveNonInlinableFunctions(Module &module) in RemoveNonInlinableFunctions()
423 void RemoveObjectFileGlobals(const Module &module) const in RemoveObjectFileGlobals()
459 llvm::PreservedAnalyses CleanupInlineModule::run(llvm::Module &module, llvm::ModuleAnalysisManager … in run()
Dmark_inline_module.h36 … llvm::PreservedAnalyses run(llvm::Module &module, llvm::ModuleAnalysisManager &analysis_manager);
Ddiscard_inline_module.h36 … llvm::PreservedAnalyses run(llvm::Module &module, llvm::ModuleAnalysisManager &analysis_manager);
Dmark_inline_module.cpp35 llvm::PreservedAnalyses MarkInlineModule::run(llvm::Module &module, llvm::ModuleAnalysisManager & /… in run()
Dcleanup_inline_module.h44 … llvm::PreservedAnalyses run(llvm::Module &module, llvm::ModuleAnalysisManager &analysis_manager);
Ddiscard_inline_module.cpp40 llvm::PreservedAnalyses DiscardInlineModule::run(llvm::Module &module, llvm::ModuleAnalysisManager … in run()
/arkcompiler/runtime_core/static_core/libllvmbackend/lowering/
Ddebug_data_builder.h28 class Module; variable
35 explicit DebugDataBuilder(llvm::Module *module, const std::string &filename);
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/litecg/
Dlitecg.h44 LiteCG(Module &mirModule);
70 Module &module;
/arkcompiler/runtime_core/static_core/irtoc/lang/
Disa.rb21 class Module class
/arkcompiler/runtime_core/static_core/libllvmbackend/
Dllvm_ark_interface.h36 class Module; variable
86 llvm::FunctionType *GetOrCreateRuntimeFunctionType(llvm::LLVMContext &ctx, llvm::Module *module,
Dmir_compiler.cpp35 llvm::Expected<std::unique_ptr<CreatedObjectFile>> MIRCompiler::CompileModule(llvm::Module &module) in CompileModule()
Dmir_compiler.h55 llvm::Expected<std::unique_ptr<CreatedObjectFile>> CompileModule(llvm::Module &module);
/arkcompiler/ets_runtime/test/moduletest/stubbuilder/
Dstubbuilder.js499 function Module() { class
511 print(Module().f());
520 function Module() {
529 print(Module().f());
606 function Module(stdlib, foreign, heap) {
609 print(Module(this, { x:0 }));
/arkcompiler/runtime_core/static_core/libllvmbackend/transforms/passes/
Dark_inlining.h56 llvm::PreservedAnalyses run(llvm::Module &module, llvm::ModuleAnalysisManager &moduleAm);

123