Skip to content
Snippets Groups Projects
Commit a5d531f6 authored by Anna Zaks's avatar Anna Zaks
Browse files

CallGraph: Add getNode() method, constify.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@152439 91177308-0d34-0410-b5e6-96231b3b80d8
parent ba50b3e8
No related branches found
No related tags found
No related merge requests found
...@@ -27,7 +27,7 @@ class CallGraphNode; ...@@ -27,7 +27,7 @@ class CallGraphNode;
class CallGraph { class CallGraph {
friend class CallGraphNode; friend class CallGraphNode;
typedef llvm::DenseMap<Decl *, CallGraphNode *> FunctionMapTy; typedef llvm::DenseMap<const Decl *, CallGraphNode *> FunctionMapTy;
/// FunctionMap owns all CallGraphNodes. /// FunctionMap owns all CallGraphNodes.
FunctionMapTy FunctionMap; FunctionMapTy FunctionMap;
...@@ -51,6 +51,9 @@ public: ...@@ -51,6 +51,9 @@ public:
/// \brief Populate the call graph with the functions in the given DeclContext. /// \brief Populate the call graph with the functions in the given DeclContext.
void addToCallGraph(DeclContext *DC); void addToCallGraph(DeclContext *DC);
/// \brief Lookup the node for the given declaration.
CallGraphNode *getNode(const Decl *) const;
/// \brief Lookup the node for the given declaration. If none found, insert /// \brief Lookup the node for the given declaration. If none found, insert
/// one into the graph. /// one into the graph.
CallGraphNode *getOrInsertFunction(Decl *); CallGraphNode *getOrInsertFunction(Decl *);
...@@ -165,7 +168,7 @@ template <> struct GraphTraits<clang::CallGraph*> ...@@ -165,7 +168,7 @@ template <> struct GraphTraits<clang::CallGraph*>
static NodeType *getEntryNode(clang::CallGraph *CGN) { static NodeType *getEntryNode(clang::CallGraph *CGN) {
return CGN->getRoot(); // Start at the external node! return CGN->getRoot(); // Start at the external node!
} }
typedef std::pair<clang::Decl*, clang::CallGraphNode*> PairTy; typedef std::pair<const clang::Decl*, clang::CallGraphNode*> PairTy;
typedef std::pointer_to_unary_function<PairTy, clang::CallGraphNode&> DerefFun; typedef std::pointer_to_unary_function<PairTy, clang::CallGraphNode&> DerefFun;
// nodes_iterator/begin/end - Allow iteration over all nodes in the graph // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
typedef mapped_iterator<clang::CallGraph::iterator, DerefFun> nodes_iterator; typedef mapped_iterator<clang::CallGraph::iterator, DerefFun> nodes_iterator;
...@@ -190,7 +193,7 @@ template <> struct GraphTraits<const clang::CallGraph*> : ...@@ -190,7 +193,7 @@ template <> struct GraphTraits<const clang::CallGraph*> :
static NodeType *getEntryNode(const clang::CallGraph *CGN) { static NodeType *getEntryNode(const clang::CallGraph *CGN) {
return CGN->getRoot(); return CGN->getRoot();
} }
typedef std::pair<clang::Decl*, clang::CallGraphNode*> PairTy; typedef std::pair<const clang::Decl*, clang::CallGraphNode*> PairTy;
typedef std::pointer_to_unary_function<PairTy, clang::CallGraphNode&> DerefFun; typedef std::pointer_to_unary_function<PairTy, clang::CallGraphNode&> DerefFun;
// nodes_iterator/begin/end - Allow iteration over all nodes in the graph // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
typedef mapped_iterator<clang::CallGraph::const_iterator, typedef mapped_iterator<clang::CallGraph::const_iterator,
......
...@@ -136,6 +136,10 @@ void CallGraph::addToCallGraph(DeclContext *DC) { ...@@ -136,6 +136,10 @@ void CallGraph::addToCallGraph(DeclContext *DC) {
} }
} }
CallGraphNode *CallGraph::getNode(const Decl *F) const {
return FunctionMap.find(F)->second;
}
CallGraphNode *CallGraph::getOrInsertFunction(Decl *F) { CallGraphNode *CallGraph::getOrInsertFunction(Decl *F) {
CallGraphNode *&Node = FunctionMap[F]; CallGraphNode *&Node = FunctionMap[F];
if (Node) if (Node)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment