Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp541 ProfileDataMap.clear(); in run()
621 auto It = ProfileDataMap.find(Name); in computeNumValueSiteCounts()
622 if (It == ProfileDataMap.end()) { in computeNumValueSiteCounts()
625 ProfileDataMap[Name] = PD; in computeNumValueSiteCounts()
632 auto It = ProfileDataMap.find(Name); in lowerValueProfileInst()
633 assert(It != ProfileDataMap.end() && It->second.DataVar && in lowerValueProfileInst()
816 auto It = ProfileDataMap.find(NamePtr); in getOrCreateRegionCounters()
818 if (It != ProfileDataMap.end()) { in getOrCreateRegionCounters()
941 ProfileDataMap[NamePtr] = PD; in getOrCreateRegionCounters()
966 for (auto &PD : ProfileDataMap) { in emitVNodes()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ProfileData/
H A DInstrProfWriter.cpp206 auto &ProfileDataMap = FunctionData[Name]; in overlapRecord() local
210 ProfileDataMap.insert(std::make_pair(Hash, InstrProfRecord())); in overlapRecord()
228 auto &ProfileDataMap = FunctionData[Name]; in addRecord() local
233 ProfileDataMap.insert(std::make_pair(Hash, InstrProfRecord())); in addRecord()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Instrumentation/
H A DInstrProfiling.h59 DenseMap<GlobalVariable *, PerFunctionProfileData> ProfileDataMap; variable