Home
last modified time | relevance | path

Searched refs:ProfileDataMap (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp460 ProfileDataMap.clear(); in run()
552 auto It = ProfileDataMap.find(Name); in computeNumValueSiteCounts()
553 if (It == ProfileDataMap.end()) { in computeNumValueSiteCounts()
556 ProfileDataMap[Name] = PD; in computeNumValueSiteCounts()
563 auto It = ProfileDataMap.find(Name); in lowerValueProfileInst()
564 assert(It != ProfileDataMap.end() && It->second.DataVar && in lowerValueProfileInst()
715 auto It = ProfileDataMap.find(NamePtr); in getOrCreateRegionCounters()
717 if (It != ProfileDataMap.end()) { in getOrCreateRegionCounters()
802 ProfileDataMap[NamePtr] = PD; in getOrCreateRegionCounters()
827 for (auto &PD : ProfileDataMap) { in emitVNodes()
/freebsd-12.1/contrib/llvm/include/llvm/Transforms/Instrumentation/
H A DInstrProfiling.h58 DenseMap<GlobalVariable *, PerFunctionProfileData> ProfileDataMap; variable
/freebsd-12.1/contrib/llvm/lib/ProfileData/
H A DInstrProfWriter.cpp190 auto &ProfileDataMap = FunctionData[Name]; in addRecord() local
195 ProfileDataMap.insert(std::make_pair(Hash, InstrProfRecord())); in addRecord()