Lines Matching refs:methodId
618 PGOMethodId methodId(jsMethod->GetMethodId()); in AddMethod() local
619 auto result = methodInfos_.find(methodId); in AddMethod()
630 auto info = new (infoAddr) PGOMethodInfo(methodId, incCount, mode, methodName.c_str()); in AddMethod()
631 methodInfos_.emplace(methodId, info); in AddMethod()
634 methodsChecksum_.emplace(methodId, checksum); in AddMethod()
639 PGOMethodTypeSet *PGOMethodInfoMap::GetOrInsertMethodTypeSet(Chunk *chunk, PGOMethodId methodId) in GetOrInsertMethodTypeSet() argument
641 auto typeInfoSetIter = methodTypeInfos_.find(methodId); in GetOrInsertMethodTypeSet()
646 methodTypeInfos_.emplace(methodId, typeInfoSet); in GetOrInsertMethodTypeSet()
651 bool PGOMethodInfoMap::AddType(Chunk *chunk, PGOMethodId methodId, int32_t offset, PGOSampleType ty… in AddType() argument
653 auto typeInfoSet = GetOrInsertMethodTypeSet(chunk, methodId); in AddType()
659 bool PGOMethodInfoMap::AddCallTargetType(Chunk *chunk, PGOMethodId methodId, int32_t offset, PGOSam… in AddCallTargetType() argument
661 auto typeInfoSet = GetOrInsertMethodTypeSet(chunk, methodId); in AddCallTargetType()
667 bool PGOMethodInfoMap::AddObjectInfo(Chunk *chunk, PGOMethodId methodId, int32_t offset, const PGOO… in AddObjectInfo() argument
669 auto typeInfoSet = GetOrInsertMethodTypeSet(chunk, methodId); in AddObjectInfo()
676 Chunk *chunk, PGOMethodId methodId, int32_t offset, PGOSampleType type, PGOSampleType superType) in AddDefine() argument
678 auto typeInfoSet = GetOrInsertMethodTypeSet(chunk, methodId); in AddDefine()
687 auto methodId = iter->first; in Merge() local
690 auto result = methodInfos_.find(methodId); in Merge()
699 …methodId, fromMethodInfo->GetCount(), fromMethodInfo->GetSampleMode(), fromMethodInfo->GetMethodNa… in Merge()
700 methodInfos_.emplace(methodId, newMethodInfo); in Merge()
706 auto methodId = iter->first; in Merge() local
709 auto result = methodTypeInfos_.find(methodId); in Merge()
716 methodTypeInfos_.emplace(methodId, typeInfoSet); in Merge()
721 auto methodId = iter->first; in Merge() local
722 auto result = methodsChecksum_.find(methodId); in Merge()
724 methodsChecksum_.emplace(methodId, iter->second); in Merge()
829 uint32_t methodId; in ParseFromText() local
830 …!base::StringHelper::StrToUInt32(infoStrings[PGOMethodInfo::METHOD_ID_INDEX].c_str(), &methodId)) { in ParseFromText()
838 … auto info = new (infoAddr) PGOMethodInfo(PGOMethodId(methodId), count, mode, methodName.c_str()); in ParseFromText()
839 methodInfos_.emplace(methodId, info); in ParseFromText()
993 bool PGORecordDetailInfos::AddType(const CString &recordName, PGOMethodId methodId, int32_t offset,… in AddType() argument
997 return curMethodInfos->AddType(chunk_.get(), methodId, offset, type); in AddType()
1000 bool PGORecordDetailInfos::AddCallTargetType(const CString &recordName, PGOMethodId methodId, int32… in AddCallTargetType() argument
1005 return curMethodInfos->AddCallTargetType(chunk_.get(), methodId, offset, type); in AddCallTargetType()
1009 const CString &recordName, EntityId methodId, int32_t offset, const PGOObjectInfo &info) in AddObjectInfo() argument
1013 return curMethodInfos->AddObjectInfo(chunk_.get(), methodId, offset, info); in AddObjectInfo()
1017 …const CString &recordName, PGOMethodId methodId, int32_t offset, PGOSampleType type, PGOSampleType… in AddDefine() argument
1021 curMethodInfos->AddDefine(chunk_.get(), methodId, offset, type, superType); in AddDefine()
1248 bool PGORecordSimpleInfos::Match(const CString &recordName, EntityId methodId) in Match() argument
1254 return methodIdsIter->second->Match(methodId); in Match()