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