Home
last modified time | relevance | path

Searched refs:functionList (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/
Dverification.cpp94 const auto &functionList = result.GetMIRModule().GetFunctionList(); in DeferredCheckFinalClassAndMethod() local
96 for (size_t index = 0; index < functionList.size(); ++index) { in DeferredCheckFinalClassAndMethod()
121 const auto &functionList = result.GetMIRModule().GetFunctionList(); in VerifyModule() local
122 for (size_t index = 0; index < functionList.size(); ++index) { in VerifyModule()
124 MIRFunction *currentFunction = functionList[index]; in VerifyModule()
Dmir_module.cpp32 functionList(memPoolAllocator.Adapter()), in MIRModule()
64 for (MIRFunction *mirFunc : functionList) { in ~MIRModule()
322 for (MIRFunction *mirFunc : functionList) { in Emit()
332 for (MIRFunction *mirFunc : functionList) { in DumpFunctionList()
638 for (MIRFunction *currFunc : functionList) { in FindEntryFunction()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/
Dmir_module.h231 return functionList; in GetFunctionList()
235 return functionList; in GetFunctionList()
332 functionList.push_back(pf); in AddFunction()
874 …MapleList<MIRFunction *> functionList; // function table in the order of the appearance of functi… variable