blob: 1bfe09aba51569fc2e38b765851b8716835dbfb5 [file] [log] [blame]
Chris Lattner4dabb2c2004-07-07 06:32:21 +00001//===- DataStructureStats.cpp - Various statistics for DS Graphs ----------===//
John Criswellb576c942003-10-20 19:43:21 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
Vikram S. Adve586aa3c2002-11-13 15:41:00 +00009//
Chris Lattner4dabb2c2004-07-07 06:32:21 +000010// This file defines a little pass that prints out statistics for DS Graphs.
11//
Vikram S. Adve586aa3c2002-11-13 15:41:00 +000012//===----------------------------------------------------------------------===//
13
Chris Lattner4dabb2c2004-07-07 06:32:21 +000014#include "llvm/Analysis/DataStructure/DataStructure.h"
15#include "llvm/Analysis/DataStructure/DSGraph.h"
Vikram S. Adve586aa3c2002-11-13 15:41:00 +000016#include "llvm/Function.h"
Misha Brukmand8e1eea2004-07-29 17:05:13 +000017#include "llvm/Instructions.h"
Vikram S. Adve586aa3c2002-11-13 15:41:00 +000018#include "llvm/Pass.h"
Chris Lattner78925492003-09-20 01:20:46 +000019#include "llvm/Support/InstVisitor.h"
Vikram S. Adve586aa3c2002-11-13 15:41:00 +000020#include "Support/Statistic.h"
21#include <vector>
Chris Lattner9a927292003-11-12 23:11:14 +000022using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000023
Vikram S. Adve586aa3c2002-11-13 15:41:00 +000024namespace {
Chris Lattnered806bf2002-11-17 22:17:12 +000025 Statistic<> TotalNumCallees("totalcallees",
Vikram S. Adve586aa3c2002-11-13 15:41:00 +000026 "Total number of callee functions at all indirect call sites");
27 Statistic<> NumIndirectCalls("numindirect",
28 "Total number of indirect call sites in the program");
29 Statistic<> NumPoolNodes("numpools",
30 "Number of allocation nodes that could be pool allocated");
31
Chris Lattner78925492003-09-20 01:20:46 +000032 // Typed/Untyped memory accesses: If DSA can infer that the types the loads
33 // and stores are accessing are correct (ie, the node has not been collapsed),
34 // increment the appropriate counter.
35 Statistic<> NumTypedMemAccesses("numtypedmemaccesses",
36 "Number of loads/stores which are fully typed");
37 Statistic<> NumUntypedMemAccesses("numuntypedmemaccesses",
38 "Number of loads/stores which are untyped");
Vikram S. Adve586aa3c2002-11-13 15:41:00 +000039
Chris Lattner78925492003-09-20 01:20:46 +000040 class DSGraphStats : public FunctionPass, public InstVisitor<DSGraphStats> {
41 void countCallees(const Function &F);
42 const DSGraph *TDGraph;
43
44 DSNode *getNodeForValue(Value *V);
Chris Lattner192cd9c2003-09-20 16:12:57 +000045 bool isNodeForValueCollapsed(Value *V);
Vikram S. Adve586aa3c2002-11-13 15:41:00 +000046 public:
47 /// Driver functions to compute the Load/Store Dep. Graph per function.
48 bool runOnFunction(Function& F);
49
50 /// getAnalysisUsage - This modify nothing, and uses the Top-Down Graph.
51 void getAnalysisUsage(AnalysisUsage &AU) const {
52 AU.setPreservesAll();
53 AU.addRequired<TDDataStructures>();
54 }
55
Chris Lattner78925492003-09-20 01:20:46 +000056 void visitLoad(LoadInst &LI);
57 void visitStore(StoreInst &SI);
58
Vikram S. Adve586aa3c2002-11-13 15:41:00 +000059 /// Debugging support methods
60 void print(std::ostream &O) const { }
Vikram S. Adve586aa3c2002-11-13 15:41:00 +000061 };
62
63 static RegisterAnalysis<DSGraphStats> Z("dsstats", "DS Graph Statistics");
64}
65
Chris Lattnered806bf2002-11-17 22:17:12 +000066static bool isIndirectCallee(Value *V) {
67 if (isa<Function>(V)) return false;
68
69 if (CastInst *CI = dyn_cast<CastInst>(V))
70 return isIndirectCallee(CI->getOperand(0));
71 return true;
72}
73
Vikram S. Adve586aa3c2002-11-13 15:41:00 +000074
Chris Lattner78925492003-09-20 01:20:46 +000075void DSGraphStats::countCallees(const Function& F) {
Vikram S. Adve586aa3c2002-11-13 15:41:00 +000076 unsigned numIndirectCalls = 0, totalNumCallees = 0;
77
Chris Lattner78925492003-09-20 01:20:46 +000078 const std::vector<DSCallSite> &callSites = TDGraph->getFunctionCalls();
79 for (unsigned i = 0, N = callSites.size(); i != N; ++i)
Chris Lattner808a7ae2003-09-20 16:34:13 +000080 if (isIndirectCallee(callSites[i].getCallSite().getCalledValue())) {
Chris Lattner78925492003-09-20 01:20:46 +000081 // This is an indirect function call
82 const std::vector<GlobalValue*> &Callees =
83 callSites[i].getCalleeNode()->getGlobals();
84 if (Callees.size() > 0) {
85 totalNumCallees += Callees.size();
86 ++numIndirectCalls;
87 } else
Chris Lattner808a7ae2003-09-20 16:34:13 +000088 std::cerr << "WARNING: No callee in Function '" << F.getName()
89 << "' at call: \n"
90 << *callSites[i].getCallSite().getInstruction();
Chris Lattner78925492003-09-20 01:20:46 +000091 }
92
Vikram S. Adve586aa3c2002-11-13 15:41:00 +000093 TotalNumCallees += totalNumCallees;
94 NumIndirectCalls += numIndirectCalls;
Chris Lattner78925492003-09-20 01:20:46 +000095
Chris Lattnered806bf2002-11-17 22:17:12 +000096 if (numIndirectCalls)
97 std::cout << " In function " << F.getName() << ": "
98 << (totalNumCallees / (double) numIndirectCalls)
99 << " average callees per indirect call\n";
Vikram S. Adve586aa3c2002-11-13 15:41:00 +0000100}
101
Chris Lattner78925492003-09-20 01:20:46 +0000102DSNode *DSGraphStats::getNodeForValue(Value *V) {
103 const DSGraph *G = TDGraph;
Reid Spencere8404342004-07-18 00:18:30 +0000104 if (isa<Constant>(V))
Chris Lattner78925492003-09-20 01:20:46 +0000105 G = TDGraph->getGlobalsGraph();
Vikram S. Adve586aa3c2002-11-13 15:41:00 +0000106
Chris Lattner192cd9c2003-09-20 16:12:57 +0000107 const DSGraph::ScalarMapTy &ScalarMap = G->getScalarMap();
108 DSGraph::ScalarMapTy::const_iterator I = ScalarMap.find(V);
109 if (I != ScalarMap.end())
110 return I->second.getNode();
111 return 0;
112}
113
114bool DSGraphStats::isNodeForValueCollapsed(Value *V) {
115 if (DSNode *N = getNodeForValue(V))
Chris Lattner9970bf62003-09-20 21:48:01 +0000116 return N->isNodeCompletelyFolded() || N->isIncomplete();
Chris Lattner192cd9c2003-09-20 16:12:57 +0000117 return false;
Vikram S. Adve586aa3c2002-11-13 15:41:00 +0000118}
119
Chris Lattner78925492003-09-20 01:20:46 +0000120void DSGraphStats::visitLoad(LoadInst &LI) {
Chris Lattner192cd9c2003-09-20 16:12:57 +0000121 if (isNodeForValueCollapsed(LI.getOperand(0))) {
Chris Lattner78925492003-09-20 01:20:46 +0000122 NumUntypedMemAccesses++;
123 } else {
124 NumTypedMemAccesses++;
125 }
126}
127
128void DSGraphStats::visitStore(StoreInst &SI) {
Chris Lattner192cd9c2003-09-20 16:12:57 +0000129 if (isNodeForValueCollapsed(SI.getOperand(1))) {
Chris Lattner78925492003-09-20 01:20:46 +0000130 NumUntypedMemAccesses++;
131 } else {
132 NumTypedMemAccesses++;
133 }
134}
135
136
137
138bool DSGraphStats::runOnFunction(Function& F) {
139 TDGraph = &getAnalysis<TDDataStructures>().getDSGraph(F);
140 countCallees(F);
141 visit(F);
142 return true;
Vikram S. Adve586aa3c2002-11-13 15:41:00 +0000143}