Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
Dpgo_profiler_info.h871 explicit PGOMethodIdSet(Chunk* chunk): chunk_(chunk), methodInfoMap_(chunk) {}; in PGOMethodIdSet()
877 for (auto &methodNameSet : methodInfoMap_) { in Clear()
880 methodInfoMap_.clear(); in Clear()
903 auto iter = methodInfoMap_.find(methodName); in GetTypeInfo()
904 if ((iter != methodInfoMap_.end()) && (iter->second.GetFirstMethodInfo() != nullptr)) { in GetTypeInfo()
912 auto iter = methodInfoMap_.find(methodName); in GetTypeInfo()
913 if ((iter != methodInfoMap_.end()) && (iter->second.GetMethodInfo(checksum) != nullptr)) { in GetTypeInfo()
921 const auto &iter = methodInfoMap_.find(methodName); in MatchAndMarkMethod()
922 if (iter == methodInfoMap_.end()) { in MatchAndMarkMethod()
1008 ChunkUnorderedMap<CString, PGOMethodNameSet> methodInfoMap_; variable
Dpgo_profiler_info.cpp922 auto ret = methodInfoMap_.try_emplace(info->GetMethodName(), chunk_); in ParseFromBinary()
933 return !methodInfoMap_.empty(); in ParseFromBinary()
940 totalMethodCount += methodInfoMap_.size(); in GetMismatchResult()
941 for (const auto &methodNameSet : methodInfoMap_) { in GetMismatchResult()
953 for (const auto &methodNameSet : from.methodInfoMap_) { in Merge()
954 auto iter = methodInfoMap_.find(methodNameSet.first); in Merge()
955 if (iter == methodInfoMap_.end()) { in Merge()
956 auto ret = methodInfoMap_.try_emplace(methodNameSet.first, chunk_); in Merge()