Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DCallGraph.h80 FunctionMapTy FunctionMap; variable
107 inline iterator begin() { return FunctionMap.begin(); } in begin()
108 inline iterator end() { return FunctionMap.end(); } in end()
109 inline const_iterator begin() const { return FunctionMap.begin(); } in begin()
110 inline const_iterator end() const { return FunctionMap.end(); } in end()
114 const_iterator I = FunctionMap.find(F);
115 assert(I != FunctionMap.end() && "Function not in callgraph!");
121 const_iterator I = FunctionMap.find(F);
122 assert(I != FunctionMap.end() && "Function not in callgraph!");
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DCallGraph.cpp43 : M(Arg.M), FunctionMap(std::move(Arg.FunctionMap)), in CallGraph()
46 Arg.FunctionMap.clear(); in CallGraph()
51 for (auto &P : FunctionMap) in CallGraph()
63 for (auto &I : FunctionMap) in ~CallGraph()
125 Nodes.reserve(FunctionMap.size()); in print()
166 FunctionMap.erase(F); // Remove the call graph node from the map in removeFunctionFromModule()
176 auto &CGN = FunctionMap[F]; in getOrInsertFunction()
H A DStackSafetyAnalysis.cpp474 using FunctionMap = std::map<const CalleeTy *, FunctionInfo<CalleeTy>>; typedef in __anon6fe50f740211::StackSafetyDataFlowAnalysis
476 FunctionMap Functions;
498 StackSafetyDataFlowAnalysis(uint32_t PointerBitWidth, FunctionMap Functions) in StackSafetyDataFlowAnalysis()
502 const FunctionMap &run();
605 const typename StackSafetyDataFlowAnalysis<CalleeTy>::FunctionMap &
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/
H A DCallGraph.h49 FunctionMapTy FunctionMap; variable
86 iterator begin() { return FunctionMap.begin(); } in begin()
87 iterator end() { return FunctionMap.end(); } in end()
88 const_iterator begin() const { return FunctionMap.begin(); } in begin()
89 const_iterator end() const { return FunctionMap.end(); } in end()
92 unsigned size() const { return FunctionMap.size(); } in size()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DCallGraph.cpp198 FunctionMapTy::const_iterator I = FunctionMap.find(F); in getNode()
199 if (I == FunctionMap.end()) return nullptr; in getNode()
207 std::unique_ptr<CallGraphNode> &Node = FunctionMap[F]; in getOrInsertNode()