Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/Instrumentation/
DInstrProfiling.cpp116 ProfileDataMap.clear(); in run()
186 auto It = ProfileDataMap.find(Name); in computeNumValueSiteCounts()
187 if (It == ProfileDataMap.end()) { in computeNumValueSiteCounts()
190 ProfileDataMap[Name] = PD; in computeNumValueSiteCounts()
198 auto It = ProfileDataMap.find(Name); in lowerValueProfileInst()
199 assert(It != ProfileDataMap.end() && It->second.DataVar && in lowerValueProfileInst()
330 auto It = ProfileDataMap.find(NamePtr); in getOrCreateRegionCounters()
332 if (It != ProfileDataMap.end()) { in getOrCreateRegionCounters()
416 ProfileDataMap[NamePtr] = PD; in getOrCreateRegionCounters()
441 for (auto &PD : ProfileDataMap) { in emitVNodes()
/external/llvm/include/llvm/Transforms/
DInstrProfiling.h46 DenseMap<GlobalVariable *, PerFunctionProfileData> ProfileDataMap; variable
/external/llvm/lib/ProfileData/
DInstrProfWriter.cpp160 auto &ProfileDataMap = FunctionData[I.Name]; in addRecord() local
165 ProfileDataMap.insert(std::make_pair(I.Hash, InstrProfRecord())); in addRecord()