Lines Matching refs:curMethodInfos
979 auto curMethodInfos = nativeAreaAllocator_.New<PGOMethodInfoMap>(); in GetMethodInfoMap() local
980 recordInfos_.emplace(recordName.c_str(), curMethodInfos); in GetMethodInfoMap()
981 return curMethodInfos; in GetMethodInfoMap()
987 auto curMethodInfos = GetMethodInfoMap(recordName); in AddMethod() local
988 ASSERT(curMethodInfos != nullptr); in AddMethod()
990 return curMethodInfos->AddMethod(chunk_.get(), jsMethod, mode, incCount); in AddMethod()
995 auto curMethodInfos = GetMethodInfoMap(recordName); in AddType() local
996 ASSERT(curMethodInfos != nullptr); in AddType()
997 return curMethodInfos->AddType(chunk_.get(), methodId, offset, type); in AddType()
1003 auto curMethodInfos = GetMethodInfoMap(recordName); in AddCallTargetType() local
1004 ASSERT(curMethodInfos != nullptr); in AddCallTargetType()
1005 return curMethodInfos->AddCallTargetType(chunk_.get(), methodId, offset, type); in AddCallTargetType()
1011 auto curMethodInfos = GetMethodInfoMap(recordName); in AddObjectInfo() local
1012 ASSERT(curMethodInfos != nullptr); in AddObjectInfo()
1013 return curMethodInfos->AddObjectInfo(chunk_.get(), methodId, offset, info); in AddObjectInfo()
1019 auto curMethodInfos = GetMethodInfoMap(recordName); in AddDefine() local
1020 ASSERT(curMethodInfos != nullptr); in AddDefine()
1021 curMethodInfos->AddDefine(chunk_.get(), methodId, offset, type, superType); in AddDefine()
1126 auto curMethodInfos = iter->second; in ProcessToBinary() local
1127 … if (curMethodInfos->ProcessToBinary(hotnessThreshold_, recordName, task, fileStream, header)) { in ProcessToBinary()