Lines Matching defs:curMethodInfos
578 auto curMethodInfos = nativeAreaAllocator_.New<PGOMethodInfoMap>();
579 recordInfos_.emplace(recordProfileType, curMethodInfos);
580 return curMethodInfos;
586 auto curMethodInfos = GetMethodInfoMap(recordProfileType);
587 ASSERT(curMethodInfos != nullptr);
589 return curMethodInfos->AddMethod(chunk_.get(), jsMethod, mode);
595 auto curMethodInfos = GetMethodInfoMap(recordProfileType);
596 ASSERT(curMethodInfos != nullptr);
597 return curMethodInfos->AddType(chunk_.get(), methodId, offset, type);
603 auto curMethodInfos = GetMethodInfoMap(recordProfileType);
604 ASSERT(curMethodInfos != nullptr);
605 return curMethodInfos->AddCallTargetType(chunk_.get(), methodId, offset, type);
611 auto curMethodInfos = GetMethodInfoMap(recordProfileType);
612 ASSERT(curMethodInfos != nullptr);
613 return curMethodInfos->AddObjectInfo(chunk_.get(), methodId, offset, info);
619 auto curMethodInfos = GetMethodInfoMap(recordProfileType);
620 ASSERT(curMethodInfos != nullptr);
621 curMethodInfos->AddDefine(chunk_.get(), methodId, offset, type);
820 auto curMethodInfos = iter->second;
821 if (curMethodInfos->ProcessToBinary(*this, ProfileTypeRef(*this, recordId), task, fileStream, header)) {