From d391d703611e3db7a5836f5a962c976857b6a16a Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 2 Jul 2003 20:24:42 +0000 Subject: Keep track of how many inlinings are performed git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7076 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/DataStructure/BottomUpClosure.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/Analysis') diff --git a/lib/Analysis/DataStructure/BottomUpClosure.cpp b/lib/Analysis/DataStructure/BottomUpClosure.cpp index c449997e74..e2d6f6f0f4 100644 --- a/lib/Analysis/DataStructure/BottomUpClosure.cpp +++ b/lib/Analysis/DataStructure/BottomUpClosure.cpp @@ -14,6 +14,7 @@ namespace { Statistic<> MaxSCC("budatastructure", "Maximum SCC Size in Call Graph"); + Statistic<> NumBUInlines("budatastructures", "Number of graphs inlined"); RegisterAnalysis X("budatastructure", "Bottom-up Data Structure Analysis"); @@ -264,6 +265,7 @@ void BUDataStructures::calculateGraph(DSGraph &Graph) { Graph.mergeInGraph(CS, *Callee, GI, DSGraph::KeepModRefBits | DSGraph::StripAllocaBit | DSGraph::DontCloneCallNodes); + ++NumBUInlines; #if 0 Graph.writeGraphToFile(std::cerr, "bu_" + F.getName() + "_after_" + -- cgit v1.2.3