Home
last modified time | relevance | path

Searched refs:GetModule (Results 1 – 25 of 58) sorted by relevance

123

/arkcompiler/ets_runtime/ecmascript/compiler/
Dcompilation_driver.h58 Module *module = GetModule(); in CompileMethod()
103 Module *GetModule();
149 Module *GetModule();
170 Module *module = GetModule(); in CompileMethod()
Dstub_compiler.cpp148 RunPipeline(static_cast<LLVMModule*>(stubM->GetModule()), &allocator); in BuildStubModuleAndSave()
157 RunPipeline(static_cast<LLVMModule*>(comM->GetModule()), &allocator); in BuildStubModuleAndSave()
167 RunPipeline(static_cast<LLVMModule*>(builtinM->GetModule()), &allocator); in BuildStubModuleAndSave()
177 RunPipeline(static_cast<LLVMModule*>(baselineM->GetModule()), &allocator); in BuildStubModuleAndSave()
Dcompilation_driver.cpp47 Module *CompilationDriver::GetModule() in GetModule() function in panda::ecmascript::kungfu::CompilationDriver
114 Module *JitCompilationDriver::GetModule() in GetModule() function in panda::ecmascript::kungfu::JitCompilationDriver
Dfile_generators.cpp582 if (latestModule->GetModule()->GetModuleKind() != MODULE_LLVM) { in CompileLatestModuleThenDestroy()
583 LMIRModule *lmirModule = static_cast<LMIRModule*>(latestModule->GetModule()); in CompileLatestModuleThenDestroy()
585 lmirModule->GetModule()->SetLastModulePC(lastModulePC); in CompileLatestModuleThenDestroy()
587 lmirModule->GetModule()->SetIsAArch64(IsAArch64()); in CompileLatestModuleThenDestroy()
603 if (latestModule->GetModule()->GetModuleKind() != MODULE_LLVM) { in CompileLatestModuleThenDestroy()
604 LMIRModule *lmirModule = static_cast<LMIRModule*>(latestModule->GetModule()); in CompileLatestModuleThenDestroy()
605 lastModulePC = lmirModule->GetModule()->GetCurModulePC(); in CompileLatestModuleThenDestroy()
773 if (latestModule->GetModule()->GetModuleKind() != MODULE_LLVM) { in JitCreateLitecgModule()
774 LMIRModule *lmirModule = static_cast<LMIRModule*>(latestModule->GetModule()); in JitCreateLitecgModule()
Dpass_manager.cpp90 ctx_ = new PassContext(triple_, log_, collector_, m->GetModule(), &profilerDecoder_); in Compile()
94 auto module = m->GetModule(); in Compile()
293 PassContext ctx(triple_, log_, &collector, m->GetModule(), &profilerDecoder_); in Compile()
296 auto module = m->GetModule(); in Compile()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
Deh_func.cpp46 MIRModule *mirModule = mirFunc.GetModule(); in ConvertThrowToRuntime()
60 MIRModule *mirModule = mirFunc.GetModule(); in ConvertThrowToRethrow()
195 MIRModule &mirModule = *cgFunc->GetFunction().GetModule(); in DumpEHFunc()
237 MIRModule *mirModule = cgFunc->GetFunction().GetModule(); in GenerateCleanupLabel()
245 MIRModule &mirModule = *cgFunc->GetFunction().GetModule(); in InsertDefaultLabelAndAbortFunc()
292 MIRModule &mirModule = *cgFunc->GetFunction().GetModule(); in InsertEHSwitchTable()
334 MIRBuilder *mirBuilder = cgFunc->GetFunction().GetModule()->GetMIRBuilder(); in CreateLSDAHeader()
356 MIRBuilder *mirBuilder = cgFunc->GetFunction().GetModule()->GetMIRBuilder(); in FillLSDACallSiteTable()
Dlabel_creation.cpp32 MIRBuilder *mirBuilder = cgFunc->GetFunction().GetModule()->GetMIRBuilder(); in CreateStartEndLabel()
/arkcompiler/ets_runtime/ecmascript/module/
Djs_module_namespace.cpp103 JSHandle<SourceTextModule> mm(thread, moduleNamespace->GetModule()); in GetProperty()
120 JSTaggedValue targetModule = resolvedBind->GetModule(); in GetProperty()
140 JSTaggedValue targetModule = resolvedBind->GetModule(); in GetProperty()
355 JSHandle<SourceTextModule> mm(thread, moduleNamespace->GetModule()); in ValidateKeysAvailable()
365 targetModule = JSHandle<ResolvedBinding>::Cast(binding)->GetModule(); in ValidateKeysAvailable()
367 targetModule = JSHandle<ResolvedIndexBinding>::Cast(binding)->GetModule(); in ValidateKeysAvailable()
383 JSHandle<SourceTextModule> module(thread, nameSpace->GetModule()); in SetModuleDeregisterProcession()
Djs_module_manager.cpp42 JSTaggedValue module = JSFunction::Cast(currentFunc.GetTaggedObject())->GetModule(); in GetCurrentModule()
67 JSTaggedValue currentModule = JSFunction::Cast(jsFunc.GetTaggedObject())->GetModule(); in GetModuleValueInner()
90 JSTaggedValue currentModule = JSFunction::Cast(jsFunc.GetTaggedObject())->GetModule(); in GetModuleValueOutter()
119 JSTaggedValue resolvedModule = binding->GetModule(); in GetModuleValueOutterInternal()
139 JSTaggedValue resolvedModule = binding->GetModule(); in GetModuleValueOutterInternal()
166 JSTaggedValue currentModule = JSFunction::Cast(jsFunc.GetTaggedObject())->GetModule(); in GetLazyModuleValueOutter()
186 JSTaggedValue resolvedModule = binding->GetModule(); in GetLazyModuleValueOutterInternal()
209 JSTaggedValue resolvedModule = binding->GetModule(); in GetLazyModuleValueOutterInternal()
247 …e<SourceTextModule> currentModule(thread, JSFunction::Cast(jsFunc.GetTaggedObject())->GetModule()); in StoreModuleValue()
275 JSTaggedValue currentModule = JSFunction::Cast(jsFunc.GetTaggedObject())->GetModule(); in GetModuleValueInner()
[all …]
Djs_shared_module_manager.cpp45 JSTaggedValue currentModule = JSFunction::Cast(jsFunc.GetTaggedObject())->GetModule(); in GetSendableModuleValue()
68 JSHandle<SourceTextModule> resolvedModule(thread, binding->GetModule().GetTaggedObject()); in GetSendableModuleValueImpl()
79 JSTaggedValue currentModule = JSFunction::Cast(jsFunc.GetTaggedObject())->GetModule(); in GetLazySendableModuleValue()
102 JSHandle<SourceTextModule> resolvedModule(thread, binding->GetModule().GetTaggedObject()); in GetLazySendableModuleValueImpl()
Djs_module_deregister.h40 JSHandle<SourceTextModule> moduleRecord(thread, nameSp->GetModule()); in ProcessModuleReference()
Dmodule_tools.cpp61 JSTaggedValue resolvedModule = binding->GetModule(); in ProcessModuleLoadInfo()
83 JSTaggedValue resolvedModule = binding->GetModule(); in ProcessModuleLoadInfo()
Djs_shared_module.cpp51 JSHandle<SourceTextModule> resolvedModule(thread, binding->GetModule()); in CloneRecordIndexBinding()
68 JSHandle<SourceTextModule> resolvedModule(thread, resolvedBinding->GetModule()); in CloneRecordNameBinding()
/arkcompiler/ets_runtime/ecmascript/require/tests/
Djs_cjs_module_cache_test.cpp73 newCacheTested->GetModule(fileName.GetTaggedValue())); in HWTEST_F_L0()
105 newCacheTested->GetModule(fileName.GetTaggedValue())); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/
Dlitecg_codegen.cpp107 maple::litecg::LiteCG liteCG(*lmirModule.GetModule(), options); in Run()
109 std::string irFileName = lmirModule.GetModule()->GetFileName() + ".mpl"; in Run()
Dlitecg_codegen.h54 LMIRModule *GetModule() const in GetModule() function
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_pgo/src/
Dinstrument.cpp39 auto *counterConst = func.GetModule()->GetMemPool()->New<MIRAddrofConst>(counter.GetStIdx(), 0, in RegisterInFuncInfo()
52 auto *mirModule = func.GetModule(); in GetOrCreateFuncCounter()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/mpl2mpl/src/
Dsimplify.cpp398 if (!currFunc->GetModule()->IsCModule() || !symbolConst || !stIdx.IsGlobal() || in ReplaceExprWithConst()
408 return currFunc->GetModule()->GetMIRBuilder()->CreateConstval(symbolConst); in ReplaceExprWithConst()
560 MIRBuilder *mirBuilder = func.GetModule()->GetMIRBuilder(); in BuildAsRhsExpr()
591 MIRBuilder *mirBuilder = func.GetModule()->GetMIRBuilder(); in TryToExtractComplexExpr()
602 MIRBuilder *mirBuilder = func.GetModule()->GetMIRBuilder(); in ExpandMemsetLowLevel()
658 MIRBuilder *mirBuilder = func.GetModule()->GetMIRBuilder(); in GenMemopRetAssign()
/arkcompiler/runtime_core/static_core/libllvmbackend/lowering/
Dwrapped_module.h61 const std::unique_ptr<llvm::Module> &GetModule();
Dwrapped_module.cpp78 const std::unique_ptr<llvm::Module> &WrappedModule::GetModule() in GetModule() function in ark::llvmbackend::WrappedModule
/arkcompiler/ets_runtime/ecmascript/interpreter/
Dinterpreter_assembly.h54 static JSTaggedValue GetModule(JSTaggedType *sp);
/arkcompiler/ets_runtime/ecmascript/require/
Djs_cjs_module_cache.h110 inline JSTaggedValue GetModule(const JSTaggedValue &key) in GetModule() function
Djs_cjs_module.cpp56 … moduleCache->GetModule(filename.GetTaggedValue())); in SearchFromModuleCache()
/arkcompiler/ets_runtime/ecmascript/compiler/baseline/
Dbaseline_stubs.h52 inline GateRef GetModule(GateRef sp);
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_me/include/
Dssa_tab.h201 MIRModule &GetModule() const in GetModule() function

123