Home
last modified time | relevance | path

Searched refs:MapleFileProf (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/src/
Dprofile.cpp116 const MapleFileProf *funcProf = nullptr; in ParseFunc()
120 funcProf = reinterpret_cast<const MapleFileProf *>(data + offset); in ParseFunc()
126 … funcItem = reinterpret_cast<const FunctionItem *>(data + offset + sizeof(MapleFileProf)); in ParseFunc()
140 offset += sizeof(MapleFileProf) + funcProf->size; in ParseFunc()
146 const MapleFileProf *methodSigProf = nullptr; in ParseMethodSignature()
150 methodSigProf = reinterpret_cast<const MapleFileProf *>(data + offset); in ParseMethodSignature()
156 …thodSigItem = reinterpret_cast<const MethodSignatureItem *>(data + offset + sizeof(MapleFileProf)); in ParseMethodSignature()
163 offset += sizeof(MapleFileProf) + methodSigProf->size; in ParseMethodSignature()
169 const MapleFileProf *funcProf = nullptr; in ParseIRFuncDesc()
173 funcProf = reinterpret_cast<const MapleFileProf *>(data + offset); in ParseIRFuncDesc()
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/
Dprofile_type.h108 struct MapleFileProf { struct
112 MapleFileProf(uint32_t idx, uint32_t num, uint32_t size) : idx(idx), num(num), size(size) {} in MapleFileProf() function