Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/llvm/include/llvm/Transforms/IPO/
DProfiledCallGraph.h130 if (!ProfiledFunctions.count(Name)) { in addProfiledFunction()
133 ProfiledFunctions[Name] = ProfiledCallGraphNode(Name); in addProfiledFunction()
134 Root.Edges.emplace(&Root, &ProfiledFunctions[Name], 0); in addProfiledFunction()
141 assert(ProfiledFunctions.count(CallerName));
142 auto CalleeIt = ProfiledFunctions.find(CalleeName);
143 if (CalleeIt == ProfiledFunctions.end())
145 ProfiledCallGraphEdge Edge(&ProfiledFunctions[CallerName],
147 auto &Edges = ProfiledFunctions[CallerName].Edges;
179 StringMap<ProfiledCallGraphNode> ProfiledFunctions; variable