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.cpp107 const auto &functionList = result.GetMIRModule().GetFunctionList(); in DeferredCheckFinalClassAndMethod() local
109 for (size_t index = 0; index < functionList.size(); ++index) { in DeferredCheckFinalClassAndMethod()
134 const auto &functionList = result.GetMIRModule().GetFunctionList(); in VerifyModule() local
135 for (size_t index = 0; index < functionList.size(); ++index) { in VerifyModule()
137 MIRFunction *currentFunction = functionList[index]; in VerifyModule()
Dmir_module.cpp32 functionList(memPoolAllocator.Adapter()), in MIRModule()
64 for (MIRFunction *mirFunc : functionList) { in ~MIRModule()
334 for (MIRFunction *mirFunc : functionList) { in Emit()
344 for (MIRFunction *mirFunc : functionList) { in DumpFunctionList()
684 for (MIRFunction *currFunc : functionList) { in FindEntryFunction()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/
Dmir_module.h232 return functionList; in GetFunctionList()
236 return functionList; in GetFunctionList()
330 functionList.push_back(pf); in AddFunction()
867 …MapleList<MIRFunction *> functionList; // function table in the order of the appearance of functi… variable