Lines Matching defs:methodInfos
245 void PGOMethodInfoMap::Merge(Chunk *chunk, PGOMethodInfoMap *methodInfos)
247 for (auto iter = methodInfos->methodInfos_.begin(); iter != methodInfos->methodInfos_.end(); iter++) {
266 for (auto iter = methodInfos->methodTypeInfos_.begin(); iter != methodInfos->methodTypeInfos_.end(); iter++) {
281 for (auto iter = methodInfos->methodsChecksum_.begin(); iter != methodInfos->methodsChecksum_.end(); iter++) {
705 CMap<ProfileType, PGOMethodInfoMap *> methodInfos = recordInfos.recordInfos_;
706 for (auto iter = methodInfos.begin(); iter != methodInfos.end(); iter++) {
776 PGOMethodInfoMap *methodInfos = nativeAreaAllocator_.New<PGOMethodInfoMap>();
777 ASSERT(methodInfos != nullptr);
778 if (methodInfos->ParseFromBinary(chunk_.get(), *this, &addr)) {
779 recordInfos_.emplace(recordType, methodInfos);
912 PGOMethodInfoMap *methodInfos = nullptr;
914 methodInfos = nativeAreaAllocator_.New<PGOMethodInfoMap>();
915 recordInfos_.emplace(profileType, methodInfos);
917 methodInfos = methodInfosIter->second;
919 ASSERT(methodInfos != nullptr);
920 if (!methodInfos->ParseFromText(chunk_.get(), hotnessThreshold_, infoStrings)) {
951 auto methodInfos = iter->second;
952 methodInfos->ProcessToText(hotnessThreshold_, recordName, stream);