Home
last modified time | relevance | path

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

/freebsd-src/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DProfiledCallGraph.h138 if (!ProfiledFunctions.count(Name)) { in addProfiledFunction()
144 ProfiledFunctions[Name] = &Node; in addProfiledFunction()
145 Root.Edges.emplace(&Root, ProfiledFunctions[Name], 0); in addProfiledFunction()
152 assert(ProfiledFunctions.count(CallerName));
153 auto CalleeIt = ProfiledFunctions.find(CalleeName);
154 if (CalleeIt == ProfiledFunctions.end())
156 ProfiledCallGraphEdge Edge(ProfiledFunctions[CallerName],
158 auto &Edges = ProfiledFunctions[CallerName]->Edges;
196 for (auto &Node : ProfiledFunctions) {
212 ProfiledFunctions; variable