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 /include/llvm/Analysis/DataStructure/DSGraph.h | |
parent | c54839573cd9ffa6af33dc5190cc40d498534585 (diff) |
De-inline methods
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12101 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis/DataStructure/DSGraph.h')
-rw-r--r-- | include/llvm/Analysis/DataStructure/DSGraph.h | 19 |
1 files changed, 3 insertions, 16 deletions
diff --git a/include/llvm/Analysis/DataStructure/DSGraph.h b/include/llvm/Analysis/DataStructure/DSGraph.h index d56c5c5c10..14d46a84bb 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; |