Searched refs:ProfiledFunctions (Results 1 – 1 of 1) sorted by relevance
130 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