Home | History | Annotate | Download | only in Analysis

Lines Matching refs:FunctionMap

36     : M(Arg.M), FunctionMap(std::move(Arg.FunctionMap)), Root(Arg.Root),
39 Arg.FunctionMap.clear();
52 for (auto &I : FunctionMap)
110 Nodes.reserve(FunctionMap.size());
141 FunctionMap.erase(F); // Remove the call graph node from the map
153 assert(FunctionMap.count(From) && "No CallGraphNode for function!");
154 assert(!FunctionMap.count(To) &&
156 FunctionMapTy::iterator I = FunctionMap.find(From);
158 FunctionMap[To] = std::move(I->second);
159 FunctionMap.erase(I);
166 auto &CGN = FunctionMap[F];