Searched refs:FunctionMap (Results 1 - 7 of 7) sorted by relevance

/external/llvm/include/llvm/IR/
H A DFunctionInfo.h141 /// in the FunctionMap. Requires a vector in the case of multiple
163 FunctionInfoMapTy FunctionMap; member in class:llvm::FunctionInfoIndex
176 funcinfo_iterator begin() { return FunctionMap.begin(); }
177 const_funcinfo_iterator begin() const { return FunctionMap.begin(); }
178 funcinfo_iterator end() { return FunctionMap.end(); }
179 const_funcinfo_iterator end() const { return FunctionMap.end(); }
183 return FunctionMap[FuncName];
188 return FunctionMap.find(FuncName);
193 FunctionMap[FuncName].push_back(std::move(Info));
/external/llvm/lib/Analysis/
H A DCallGraph.cpp36 : M(Arg.M), FunctionMap(std::move(Arg.FunctionMap)), Root(Arg.Root),
39 Arg.FunctionMap.clear();
52 for (auto &I : FunctionMap)
112 Nodes.reserve(FunctionMap.size());
143 FunctionMap.erase(F); // Remove the call graph node from the map
155 assert(FunctionMap.count(From) && "No CallGraphNode for function!");
156 assert(!FunctionMap.count(To) &&
158 FunctionMapTy::iterator I = FunctionMap.find(From);
160 FunctionMap[T
[all...]
/external/google-breakpad/src/common/dwarf/
H A Dfunctioninfo.h70 typedef std::map<uint64, FunctionInfo*> FunctionMap; typedef in namespace:dwarf2reader
115 FunctionMap* offset_to_funcinfo,
116 FunctionMap* address_to_funcinfo,
178 FunctionMap* offset_to_funcinfo_;
179 FunctionMap* address_to_funcinfo_;
H A Dfunctioninfo.cc206 FunctionMap::iterator iter = offset_to_funcinfo_->find(data);
/external/llvm/include/llvm/Analysis/
H A DCallGraph.h82 FunctionMapTy FunctionMap; member in class:llvm::CallGraph
121 inline iterator begin() { return FunctionMap.begin(); }
122 inline iterator end() { return FunctionMap.end(); }
123 inline const_iterator begin() const { return FunctionMap.begin(); }
124 inline const_iterator end() const { return FunctionMap.end(); }
128 const_iterator I = FunctionMap.find(F);
129 assert(I != FunctionMap.end() && "Function not in callgraph!");
135 const_iterator I = FunctionMap.find(F);
136 assert(I != FunctionMap.end() && "Function not in callgraph!");
/external/clang/include/clang/Analysis/
H A DCallGraph.h39 /// FunctionMap owns all CallGraphNodes.
40 FunctionMapTy FunctionMap; member in class:clang::CallGraph
71 iterator begin() { return FunctionMap.begin(); }
72 iterator end() { return FunctionMap.end(); }
73 const_iterator begin() const { return FunctionMap.begin(); }
74 const_iterator end() const { return FunctionMap.end(); }
77 unsigned size() const { return FunctionMap.size(); }
/external/clang/lib/Analysis/
H A DCallGraph.cpp108 llvm::DeleteContainerSeconds(FunctionMap);
143 FunctionMapTy::const_iterator I = FunctionMap.find(F);
144 if (I == FunctionMap.end()) return nullptr;
152 CallGraphNode *&Node = FunctionMap[F];

Completed in 875 milliseconds