diff options
author | Chris Lattner <sabre@nondot.org> | 2004-03-03 20:55:15 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-03-03 20:55:15 +0000 |
commit | 3d549b18a3ee6d74ceb90314cf9a87cee2457537 (patch) | |
tree | ebad95297dfcf867d9bd41cf31138d77c8e70ad4 | |
parent | c54839573cd9ffa6af33dc5190cc40d498534585 (diff) | |
download | external_llvm-3d549b18a3ee6d74ceb90314cf9a87cee2457537.zip external_llvm-3d549b18a3ee6d74ceb90314cf9a87cee2457537.tar.gz external_llvm-3d549b18a3ee6d74ceb90314cf9a87cee2457537.tar.bz2 |
De-inline methods
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12101 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Analysis/DSGraph.h | 19 | ||||
-rw-r--r-- | include/llvm/Analysis/DataStructure/DSGraph.h | 19 |
2 files changed, 6 insertions, 32 deletions
diff --git a/include/llvm/Analysis/DSGraph.h b/include/llvm/Analysis/DSGraph.h index d56c5c5..14d46a8 100644 --- a/include/llvm/Analysis/DSGraph.h +++ b/include/llvm/Analysis/DSGraph.h @@ -370,22 +370,9 @@ public: N->getGlobals().end() && "Global value not in node!"); } - void AssertCallSiteInGraph(const DSCallSite &CS) const { - if (CS.isIndirectCall()) - AssertNodeInGraph(CS.getCalleeNode()); - AssertNodeInGraph(CS.getRetVal().getNode()); - for (unsigned j = 0, e = CS.getNumPtrArgs(); j != e; ++j) - AssertNodeInGraph(CS.getPtrArg(j).getNode()); - } - - void AssertCallNodesInGraph() const { - for (unsigned i = 0, e = FunctionCalls.size(); i != e; ++i) - AssertCallSiteInGraph(FunctionCalls[i]); - } - void AssertAuxCallNodesInGraph() const { - for (unsigned i = 0, e = AuxFunctionCalls.size(); i != e; ++i) - AssertCallSiteInGraph(AuxFunctionCalls[i]); - } + void AssertCallSiteInGraph(const DSCallSite &CS) const; + void AssertCallNodesInGraph() const; + void AssertAuxCallNodesInGraph() const; void AssertGraphOK() const; diff --git a/include/llvm/Analysis/DataStructure/DSGraph.h b/include/llvm/Analysis/DataStructure/DSGraph.h index d56c5c5..14d46a8 100644 --- a/include/llvm/Analysis/DataStructure/DSGraph.h +++ b/include/llvm/Analysis/DataStructure/DSGraph.h @@ -370,22 +370,9 @@ public: N->getGlobals().end() && "Global value not in node!"); } - void AssertCallSiteInGraph(const DSCallSite &CS) const { - if (CS.isIndirectCall()) - AssertNodeInGraph(CS.getCalleeNode()); - AssertNodeInGraph(CS.getRetVal().getNode()); - for (unsigned j = 0, e = CS.getNumPtrArgs(); j != e; ++j) - AssertNodeInGraph(CS.getPtrArg(j).getNode()); - } - - void AssertCallNodesInGraph() const { - for (unsigned i = 0, e = FunctionCalls.size(); i != e; ++i) - AssertCallSiteInGraph(FunctionCalls[i]); - } - void AssertAuxCallNodesInGraph() const { - for (unsigned i = 0, e = AuxFunctionCalls.size(); i != e; ++i) - AssertCallSiteInGraph(AuxFunctionCalls[i]); - } + void AssertCallSiteInGraph(const DSCallSite &CS) const; + void AssertCallNodesInGraph() const; + void AssertAuxCallNodesInGraph() const; void AssertGraphOK() const; |