Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DProfiledCallGraph.h86 if (!ProfiledFunctions.count(Name)) { in addProfiledFunction()
89 ProfiledFunctions[Name] = ProfiledCallGraphNode(Name); in addProfiledFunction()
90 Root.Callees.insert(&ProfiledFunctions[Name]); in addProfiledFunction()
95 assert(ProfiledFunctions.count(CallerName)); in addProfiledCall()
96 auto CalleeIt = ProfiledFunctions.find(CalleeName); in addProfiledCall()
97 if (CalleeIt == ProfiledFunctions.end()) { in addProfiledCall()
100 ProfiledFunctions[CallerName].Callees.insert(&CalleeIt->second); in addProfiledCall()
124 StringMap<ProfiledCallGraphNode> ProfiledFunctions; variable