From 3d549b18a3ee6d74ceb90314cf9a87cee2457537 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 3 Mar 2004 20:55:15 +0000 Subject: De-inline methods git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12101 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Analysis/DSGraph.h | 19 +++---------------- 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; -- cgit v1.1