blob: bd124bb686c57a9ae9186f645b122a690dd3122c [file] [log] [blame]
Andrew Lenharth93e59f62005-11-28 00:58:09 +00001//===- RSProfiling.cpp - Various profiling using random sampling ----------===//
2//
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//===----------------------------------------------------------------------===//
9//
10// These passes implement a random sampling based profiling. Different methods
11// of choosing when to sample are supported, as well as different types of
12// profiling. This is done as two passes. The first is a sequence of profiling
Andrew Lenharth517caef2005-11-28 18:00:38 +000013// passes which insert profiling into the program, and remember what they
14// inserted.
15//
Andrew Lenharth93e59f62005-11-28 00:58:09 +000016// The second stage duplicates all instructions in a function, ignoring the
17// profiling code, then connects the two versions togeather at the entry and at
18// backedges. At each connection point a choice is made as to whether to jump
19// to the profiled code (take a sample) or execute the unprofiled code.
20//
21// It is highly recommeneded that after this pass one runs mem2reg and adce
22// (instcombine load-vn gdce dse also are good to run afterwards)
23//
24// This design is intended to make the profiling passes independent of the RS
25// framework, but any profiling pass that implements the RSProfiling interface
26// is compatible with the rs framework (and thus can be sampled)
27//
28// TODO: obviously the block and function profiling are almost identical to the
29// existing ones, so they can be unified (esp since these passes are valid
30// without the rs framework).
31// TODO: Fix choice code so that frequency is not hard coded
32//
33//===----------------------------------------------------------------------===//
34
35#include "llvm/Pass.h"
Andrew Lenharth93e59f62005-11-28 00:58:09 +000036#include "llvm/Module.h"
Andrew Lenharth93e59f62005-11-28 00:58:09 +000037#include "llvm/Instructions.h"
38#include "llvm/Constants.h"
39#include "llvm/DerivedTypes.h"
40#include "llvm/Transforms/Scalar.h"
41#include "llvm/Transforms/Utils/BasicBlockUtils.h"
42#include "llvm/ADT/Statistic.h"
43#include "llvm/Support/CommandLine.h"
44#include "llvm/Support/Debug.h"
45#include "llvm/Transforms/Instrumentation.h"
Andrew Lenharth517caef2005-11-28 18:00:38 +000046//#include "ProfilingUtils.h"
Andrew Lenharth93e59f62005-11-28 00:58:09 +000047#include "RSProfiling.h"
48
49#include <set>
50#include <map>
51#include <queue>
52#include <list>
53#include <iostream>
54
55using namespace llvm;
56
57namespace {
58 Statistic<> NumBackEdges("bedge", "Number of BackEdges");
59
60 enum RandomMeth {
61 GBV, GBVO, HOSTCC
62 };
63
64 cl::opt<RandomMeth> RandomMethod("profile-randomness",
65 cl::desc("How to randomly choose to profile:"),
66 cl::values(
67 clEnumValN(GBV, "global", "global counter"),
Andrew Lenharth517caef2005-11-28 18:00:38 +000068 clEnumValN(GBVO, "ra_global",
69 "register allocated global counter"),
Andrew Lenharth93e59f62005-11-28 00:58:09 +000070 clEnumValN(HOSTCC, "rdcc", "cycle counter"),
71 clEnumValEnd));
72
Andrew Lenharth93e59f62005-11-28 00:58:09 +000073 class NullProfilerRS : public RSProfilers {
74 public:
75 bool isProfiling(Value* v) {
76 return false;
77 }
78 bool runOnModule(Module &M) {
79 return false;
80 }
81 void getAnalysisUsage(AnalysisUsage &AU) const {
82 AU.setPreservesAll();
83 }
84 };
85
86 static RegisterAnalysisGroup<RSProfilers> A("Profiling passes");
87 static RegisterOpt<NullProfilerRS> NP("insert-null-profiling-rs",
Andrew Lenharth517caef2005-11-28 18:00:38 +000088 "Measure profiling framework overhead");
Andrew Lenharth93e59f62005-11-28 00:58:09 +000089 static RegisterAnalysisGroup<RSProfilers, NullProfilerRS, true> NPT;
Andrew Lenharth93e59f62005-11-28 00:58:09 +000090
91 //Something that chooses how to sample
92 class Chooser {
93 public:
94 virtual void ProcessChoicePoint(BasicBlock*) = 0;
95 virtual void PrepFunction(Function*) = 0;
96 virtual ~Chooser() {}
97 };
98
99 //Things that implement sampling policies
100 class GlobalRandomCounter : public Chooser {
101 GlobalVariable* Counter;
102 Value* ResetValue;
103 const Type* T;
104 public:
105 GlobalRandomCounter(Module& M, const Type* t, uint64_t resetval);
106 virtual ~GlobalRandomCounter();
107 virtual void PrepFunction(Function* F);
108 virtual void ProcessChoicePoint(BasicBlock* bb);
109 };
110
111 class GlobalRandomCounterOpt : public Chooser {
112 GlobalVariable* Counter;
113 Value* ResetValue;
114 AllocaInst* AI;
115 const Type* T;
116 public:
117 GlobalRandomCounterOpt(Module& M, const Type* t, uint64_t resetval);
118 virtual ~GlobalRandomCounterOpt();
119 virtual void PrepFunction(Function* F);
120 virtual void ProcessChoicePoint(BasicBlock* bb);
121 };
122
123 class CycleCounter : public Chooser {
124 uint64_t rm;
125 Function* F;
126 public:
127 CycleCounter(Module& m, uint64_t resetmask);
128 virtual ~CycleCounter();
129 virtual void PrepFunction(Function* F);
130 virtual void ProcessChoicePoint(BasicBlock* bb);
131 };
132
133
134 struct ProfilerRS : public FunctionPass {
135 std::map<Value*, Value*> TransCache;
136 std::set<BasicBlock*> ChoicePoints;
137 Chooser* c;
138
139 Value* Translate(Value* v);
140 void Duplicate(Function& F, RSProfilers& LI);
141 void ProcessBackEdge(BasicBlock* src, BasicBlock* dst, Function& F);
142 bool runOnFunction(Function& F);
143 bool doInitialization(Module &M);
144 virtual void getAnalysisUsage(AnalysisUsage &AU) const;
145 };
146
147 RegisterOpt<ProfilerRS> X("insert-rs-profiling-framework",
Andrew Lenharth517caef2005-11-28 18:00:38 +0000148 "Insert random sampling instrumentation framework");
Andrew Lenharth93e59f62005-11-28 00:58:09 +0000149};
150
151//Local utilities
152static void ReplacePhiPred(BasicBlock* btarget,
153 BasicBlock* bold, BasicBlock* bnew);
154
155static void CollapsePhi(BasicBlock* btarget, BasicBlock* bsrc);
156
157template<class T>
158static void recBackEdge(BasicBlock* bb, T& BackEdges,
159 std::map<BasicBlock*, int>& color,
160 std::map<BasicBlock*, int>& depth,
161 std::map<BasicBlock*, int>& finish,
162 int& time);
163
164//find the back edges and where they go to
165template<class T>
166static void getBackEdges(Function& F, T& BackEdges);
167
168
169///////////////////////////////////////
170// Methods of choosing when to profile
171///////////////////////////////////////
172
173GlobalRandomCounter::GlobalRandomCounter(Module& M, const Type* t,
174 uint64_t resetval) : T(t) {
175 Counter = new GlobalVariable(T, false, GlobalValue::InternalLinkage,
176 ConstantUInt::get(T, resetval),
177 "RandomSteeringCounter", &M);
178 ResetValue = ConstantUInt::get(T, resetval);
179}
180
181GlobalRandomCounter::~GlobalRandomCounter() {}
182
183void GlobalRandomCounter::PrepFunction(Function* F) {}
184
185void GlobalRandomCounter::ProcessChoicePoint(BasicBlock* bb) {
186 BranchInst* t = cast<BranchInst>(bb->getTerminator());
187
188 //decrement counter
189 LoadInst* l = new LoadInst(Counter, "counter", t);
190
Andrew Lenharth517caef2005-11-28 18:00:38 +0000191 SetCondInst* s = new SetCondInst(Instruction::SetEQ, l,
192 ConstantUInt::get(T, 0),
Andrew Lenharth93e59f62005-11-28 00:58:09 +0000193 "countercc", t);
Andrew Lenharth517caef2005-11-28 18:00:38 +0000194 Value* nv = BinaryOperator::createSub(l, ConstantInt::get(T, 1),
Andrew Lenharth93e59f62005-11-28 00:58:09 +0000195 "counternew", t);
196 new StoreInst(nv, Counter, t);
197 t->setCondition(s);
198
199 //reset counter
200 BasicBlock* oldnext = t->getSuccessor(0);
Andrew Lenharth517caef2005-11-28 18:00:38 +0000201 BasicBlock* resetblock = new BasicBlock("reset", oldnext->getParent(),
202 oldnext);
Andrew Lenharth93e59f62005-11-28 00:58:09 +0000203 TerminatorInst* t2 = new BranchInst(oldnext, resetblock);
204 t->setSuccessor(0, resetblock);
205 new StoreInst(ResetValue, Counter, t2);
206 ReplacePhiPred(oldnext, bb, resetblock);
207}
208
209GlobalRandomCounterOpt::GlobalRandomCounterOpt(Module& M, const Type* t,
210 uint64_t resetval)
211 : AI(0), T(t) {
212 Counter = new GlobalVariable(T, false, GlobalValue::InternalLinkage,
213 ConstantUInt::get(T, resetval),
214 "RandomSteeringCounter", &M);
215 ResetValue = ConstantUInt::get(T, resetval);
216}
217
218GlobalRandomCounterOpt::~GlobalRandomCounterOpt() {}
219
220void GlobalRandomCounterOpt::PrepFunction(Function* F) {
221 //make a local temporary to cache the global
222 BasicBlock& bb = F->getEntryBlock();
223 AI = new AllocaInst(T, 0, "localcounter", bb.begin());
224 LoadInst* l = new LoadInst(Counter, "counterload", AI->getNext());
225 new StoreInst(l, AI, l->getNext());
226
227 //modify all functions and return values
228 for(Function::iterator fib = F->begin(), fie = F->end();
229 fib != fie; ++fib)
230 for(BasicBlock::iterator bib = fib->begin(), bie = fib->end();
231 bib != bie; ++bib)
232 if (isa<CallInst>(&*bib)) {
233 LoadInst* l = new LoadInst(AI, "counter", bib);
234 new StoreInst(l, Counter, bib);
235 l = new LoadInst(Counter, "counter", bib->getNext());
236 new StoreInst(l, AI, l->getNext());
237 } else if (isa<InvokeInst>(&*bib)) {
238 LoadInst* l = new LoadInst(AI, "counter", bib);
239 new StoreInst(l, Counter, bib);
240
241 BasicBlock* bb = cast<InvokeInst>(&*bib)->getNormalDest();
242 Instruction* i = bb->begin();
243 while (isa<PHINode>(i)) i = i->getNext();
244 l = new LoadInst(Counter, "counter", i);
245
246 bb = cast<InvokeInst>(&*bib)->getUnwindDest();
247 i = bb->begin();
248 while (isa<PHINode>(i)) i = i->getNext();
249 l = new LoadInst(Counter, "counter", i);
250 new StoreInst(l, AI, l->getNext());
251 } else if (isa<UnwindInst>(&*bib) || isa<ReturnInst>(&*bib)) {
252 LoadInst* l = new LoadInst(AI, "counter", bib);
253 new StoreInst(l, Counter, bib);
254 }
255}
256
257void GlobalRandomCounterOpt::ProcessChoicePoint(BasicBlock* bb) {
258 BranchInst* t = cast<BranchInst>(bb->getTerminator());
259
260 //decrement counter
261 LoadInst* l = new LoadInst(AI, "counter", t);
262
Andrew Lenharth517caef2005-11-28 18:00:38 +0000263 SetCondInst* s = new SetCondInst(Instruction::SetEQ, l,
264 ConstantUInt::get(T, 0),
Andrew Lenharth93e59f62005-11-28 00:58:09 +0000265 "countercc", t);
Andrew Lenharth517caef2005-11-28 18:00:38 +0000266 Value* nv = BinaryOperator::createSub(l, ConstantInt::get(T, 1),
Andrew Lenharth93e59f62005-11-28 00:58:09 +0000267 "counternew", t);
268 new StoreInst(nv, AI, t);
269 t->setCondition(s);
270
271 //reset counter
272 BasicBlock* oldnext = t->getSuccessor(0);
Andrew Lenharth517caef2005-11-28 18:00:38 +0000273 BasicBlock* resetblock = new BasicBlock("reset", oldnext->getParent(),
274 oldnext);
Andrew Lenharth93e59f62005-11-28 00:58:09 +0000275 TerminatorInst* t2 = new BranchInst(oldnext, resetblock);
276 t->setSuccessor(0, resetblock);
277 new StoreInst(ResetValue, AI, t2);
278 ReplacePhiPred(oldnext, bb, resetblock);
279}
280
281
282CycleCounter::CycleCounter(Module& m, uint64_t resetmask) : rm(resetmask) {
283 F = m.getOrInsertFunction("llvm.readcyclecounter", Type::ULongTy, NULL);
284}
285
286CycleCounter::~CycleCounter() {}
287
288void CycleCounter::PrepFunction(Function* F) {}
289
290void CycleCounter::ProcessChoicePoint(BasicBlock* bb) {
291 BranchInst* t = cast<BranchInst>(bb->getTerminator());
292
293 CallInst* c = new CallInst(F, "rdcc", t);
Andrew Lenharth517caef2005-11-28 18:00:38 +0000294 BinaryOperator* b =
295 BinaryOperator::createAnd(c, ConstantUInt::get(Type::ULongTy, rm),
296 "mrdcc", t);
Andrew Lenharth93e59f62005-11-28 00:58:09 +0000297
Andrew Lenharth517caef2005-11-28 18:00:38 +0000298 SetCondInst* s = new SetCondInst(Instruction::SetEQ, b,
299 ConstantUInt::get(Type::ULongTy, 0),
Andrew Lenharth93e59f62005-11-28 00:58:09 +0000300 "mrdccc", t);
301 t->setCondition(s);
302}
303
304///////////////////////////////////////
305// Profiling:
306///////////////////////////////////////
Andrew Lenharth517caef2005-11-28 18:00:38 +0000307bool RSProfilers_std::isProfiling(Value* v) {
Andrew Lenharth93e59f62005-11-28 00:58:09 +0000308 if (profcode.find(v) != profcode.end())
309 return true;
310 //else
311 RSProfilers& LI = getAnalysis<RSProfilers>();
312 return LI.isProfiling(v);
313}
314
Andrew Lenharth517caef2005-11-28 18:00:38 +0000315void RSProfilers_std::IncrementCounterInBlock(BasicBlock *BB, unsigned CounterNum,
Andrew Lenharth93e59f62005-11-28 00:58:09 +0000316 GlobalValue *CounterArray) {
317 // Insert the increment after any alloca or PHI instructions...
318 BasicBlock::iterator InsertPos = BB->begin();
319 while (isa<AllocaInst>(InsertPos) || isa<PHINode>(InsertPos))
320 ++InsertPos;
321
322 // Create the getelementptr constant expression
323 std::vector<Constant*> Indices(2);
324 Indices[0] = Constant::getNullValue(Type::IntTy);
325 Indices[1] = ConstantSInt::get(Type::IntTy, CounterNum);
326 Constant *ElementPtr = ConstantExpr::getGetElementPtr(CounterArray, Indices);
327
328 // Load, increment and store the value back.
329 Value *OldVal = new LoadInst(ElementPtr, "OldCounter", InsertPos);
330 profcode.insert(OldVal);
Andrew Lenharth517caef2005-11-28 18:00:38 +0000331 Value *NewVal = BinaryOperator::createAdd(OldVal,
332 ConstantInt::get(Type::UIntTy, 1),
333 "NewCounter", InsertPos);
Andrew Lenharth93e59f62005-11-28 00:58:09 +0000334 profcode.insert(NewVal);
335 profcode.insert(new StoreInst(NewVal, ElementPtr, InsertPos));
336}
337
Andrew Lenharth517caef2005-11-28 18:00:38 +0000338void RSProfilers_std::getAnalysisUsage(AnalysisUsage &AU) const {
Andrew Lenharth93e59f62005-11-28 00:58:09 +0000339 //grab any outstanding profiler, or get the null one
340 AU.addRequired<RSProfilers>();
341}
342
Andrew Lenharth93e59f62005-11-28 00:58:09 +0000343///////////////////////////////////////
344// RS Framework
345///////////////////////////////////////
346
347Value* ProfilerRS::Translate(Value* v) {
348 if(TransCache[v])
349 return TransCache[v];
350
351 if (BasicBlock* bb = dyn_cast<BasicBlock>(v)) {
352 if (bb == &bb->getParent()->getEntryBlock())
353 TransCache[bb] = bb; //don't translate entry block
354 else
Andrew Lenharth517caef2005-11-28 18:00:38 +0000355 TransCache[bb] = new BasicBlock("dup_" + bb->getName(), bb->getParent(),
356 NULL);
Andrew Lenharth93e59f62005-11-28 00:58:09 +0000357 return TransCache[bb];
358 } else if (Instruction* i = dyn_cast<Instruction>(v)) {
359 //we have already translated this
360 //do not translate entry block allocas
361 if(&i->getParent()->getParent()->getEntryBlock() == i->getParent()) {
362 TransCache[i] = i;
363 return i;
364 } else {
365 //translate this
366 Instruction* i2 = i->clone();
367 if (i->hasName())
368 i2->setName("dup_" + i->getName());
369 TransCache[i] = i2;
370 //NumNewInst++;
371 for (unsigned x = 0; x < i2->getNumOperands(); ++x)
372 i2->setOperand(x, Translate(i2->getOperand(x)));
373 return i2;
374 }
375 } else if (isa<Function>(v) || isa<Constant>(v) || isa<Argument>(v)) {
376 TransCache[v] = v;
377 return v;
378 }
379 assert(0 && "Value not handled");
Jeff Cohen7ff44ec2005-11-28 06:45:57 +0000380 return 0;
Andrew Lenharth93e59f62005-11-28 00:58:09 +0000381}
382
383void ProfilerRS::Duplicate(Function& F, RSProfilers& LI)
384{
385 //perform a breadth first search, building up a duplicate of the code
386 std::queue<BasicBlock*> worklist;
387 std::set<BasicBlock*> seen;
388
389 //This loop ensures proper BB order, to help performance
390 for (Function::iterator fib = F.begin(), fie = F.end(); fib != fie; ++fib)
391 worklist.push(fib);
392 while (!worklist.empty()) {
393 Translate(worklist.front());
394 worklist.pop();
395 }
396
397 //remember than reg2mem created a new entry block we don't want to duplicate
398 worklist.push(F.getEntryBlock().getTerminator()->getSuccessor(0));
399 seen.insert(&F.getEntryBlock());
400
401 while (!worklist.empty()) {
402 BasicBlock* bb = worklist.front();
403 worklist.pop();
404 if(seen.find(bb) == seen.end()) {
405 BasicBlock* bbtarget = cast<BasicBlock>(Translate(bb));
406 BasicBlock::InstListType& instlist = bbtarget->getInstList();
407 for (BasicBlock::iterator iib = bb->begin(), iie = bb->end();
408 iib != iie; ++iib) {
409 //NumOldInst++;
410 if (!LI.isProfiling(&*iib)) {
411 Instruction* i = cast<Instruction>(Translate(iib));
412 instlist.insert(bbtarget->end(), i);
413 }
414 }
415 //updated search state;
416 seen.insert(bb);
417 TerminatorInst* ti = bb->getTerminator();
418 for (unsigned x = 0; x < ti->getNumSuccessors(); ++x) {
419 BasicBlock* bbs = ti->getSuccessor(x);
420 if (seen.find(bbs) == seen.end()) {
421 worklist.push(bbs);
422 }
423 }
424 }
425 }
426}
427
428void ProfilerRS::ProcessBackEdge(BasicBlock* src, BasicBlock* dst, Function& F) {
429 //given a backedge from B -> A, and translations A' and B',
430 //a: insert C and C'
431 //b: add branches in C to A and A' and in C' to A and A'
432 //c: mod terminators@B, replace A with C
433 //d: mod terminators@B', replace A' with C'
434 //e: mod phis@A for pred B to be pred C
435 // if multiple entries, simplify to one
436 //f: mod phis@A' for pred B' to be pred C'
437 // if multiple entries, simplify to one
438 //g: for all phis@A with pred C using x
439 // add in edge from C' using x'
440 // add in edge from C using x in A'
441
442 //a:
443 BasicBlock* bbC = new BasicBlock("choice", &F, src->getNext() );
444 //ChoicePoints.insert(bbC);
Andrew Lenharth517caef2005-11-28 18:00:38 +0000445 BasicBlock* bbCp =
446 new BasicBlock("choice", &F, cast<BasicBlock>(Translate(src))->getNext() );
Andrew Lenharth93e59f62005-11-28 00:58:09 +0000447 ChoicePoints.insert(bbCp);
448
449 //b:
Andrew Lenharth93e59f62005-11-28 00:58:09 +0000450 new BranchInst(cast<BasicBlock>(Translate(dst)), bbC);
Andrew Lenharth517caef2005-11-28 18:00:38 +0000451 new BranchInst(dst, cast<BasicBlock>(Translate(dst)),
452 ConstantBool::get(true), bbCp);
Andrew Lenharth93e59f62005-11-28 00:58:09 +0000453 //c:
454 {
455 TerminatorInst* iB = src->getTerminator();
456 for (unsigned x = 0; x < iB->getNumSuccessors(); ++x)
457 if (iB->getSuccessor(x) == dst)
458 iB->setSuccessor(x, bbC);
459 }
460 //d:
461 {
462 TerminatorInst* iBp = cast<TerminatorInst>(Translate(src->getTerminator()));
463 for (unsigned x = 0; x < iBp->getNumSuccessors(); ++x)
464 if (iBp->getSuccessor(x) == cast<BasicBlock>(Translate(dst)))
465 iBp->setSuccessor(x, bbCp);
466 }
467 //e:
468 ReplacePhiPred(dst, src, bbC);
469 //src could be a switch, in which case we are replacing several edges with one
470 //thus collapse those edges int the Phi
471 CollapsePhi(dst, bbC);
472 //f:
Andrew Lenharth517caef2005-11-28 18:00:38 +0000473 ReplacePhiPred(cast<BasicBlock>(Translate(dst)),
474 cast<BasicBlock>(Translate(src)),bbCp);
Andrew Lenharth93e59f62005-11-28 00:58:09 +0000475 CollapsePhi(cast<BasicBlock>(Translate(dst)), bbCp);
476 //g:
477 for(BasicBlock::iterator ib = dst->begin(), ie = dst->end(); ib != ie;
478 ++ib)
479 if (PHINode* phi = dyn_cast<PHINode>(&*ib)) {
480 for(unsigned x = 0; x < phi->getNumIncomingValues(); ++x)
481 if(bbC == phi->getIncomingBlock(x)) {
482 phi->addIncoming(Translate(phi->getIncomingValue(x)), bbCp);
Andrew Lenharth517caef2005-11-28 18:00:38 +0000483 cast<PHINode>(Translate(phi))->addIncoming(phi->getIncomingValue(x),
484 bbC);
Andrew Lenharth93e59f62005-11-28 00:58:09 +0000485 }
486 phi->removeIncomingValue(bbC);
487 }
488}
489
490bool ProfilerRS::runOnFunction(Function& F) {
491 if (!F.isExternal()) {
492 std::set<std::pair<BasicBlock*, BasicBlock*> > BackEdges;
493 RSProfilers& LI = getAnalysis<RSProfilers>();
494
495 getBackEdges(F, BackEdges);
Andrew Lenharth93e59f62005-11-28 00:58:09 +0000496 Duplicate(F, LI);
497 //assume that stuff worked. now connect the duplicated basic blocks
498 //with the originals in such a way as to preserve ssa. yuk!
Andrew Lenharth517caef2005-11-28 18:00:38 +0000499 for (std::set<std::pair<BasicBlock*, BasicBlock*> >::iterator
500 ib = BackEdges.begin(), ie = BackEdges.end(); ib != ie; ++ib)
Andrew Lenharth93e59f62005-11-28 00:58:09 +0000501 ProcessBackEdge(ib->first, ib->second, F);
502
Andrew Lenharth517caef2005-11-28 18:00:38 +0000503 //oh, and add the edge from the reg2mem created entry node to the
504 //duplicated second node
Andrew Lenharth93e59f62005-11-28 00:58:09 +0000505 TerminatorInst* T = F.getEntryBlock().getTerminator();
506 ReplaceInstWithInst(T, new BranchInst(T->getSuccessor(0),
Andrew Lenharth517caef2005-11-28 18:00:38 +0000507 cast<BasicBlock>(Translate(T->getSuccessor(0))),
508 ConstantBool::get(true)));
Andrew Lenharth93e59f62005-11-28 00:58:09 +0000509
510 //do whatever is needed now that the function is duplicated
511 c->PrepFunction(&F);
512
513 //add entry node to choice points
514 ChoicePoints.insert(&F.getEntryBlock());
515
Andrew Lenharth517caef2005-11-28 18:00:38 +0000516 for (std::set<BasicBlock*>::iterator
517 ii = ChoicePoints.begin(), ie = ChoicePoints.end(); ii != ie; ++ii)
Andrew Lenharth93e59f62005-11-28 00:58:09 +0000518 c->ProcessChoicePoint(*ii);
519
520 ChoicePoints.clear();
521 TransCache.clear();
522
523 return true;
524 }
525 return false;
526}
527
528bool ProfilerRS::doInitialization(Module &M) {
529 switch (RandomMethod) {
530 case GBV:
531 c = new GlobalRandomCounter(M, Type::UIntTy, (1 << 14) - 1);
532 break;
533 case GBVO:
534 c = new GlobalRandomCounterOpt(M, Type::UIntTy, (1 << 14) - 1);
535 break;
536 case HOSTCC:
537 c = new CycleCounter(M, (1 << 14) - 1);
538 break;
539 };
540 return true;
541}
542
543void ProfilerRS::getAnalysisUsage(AnalysisUsage &AU) const {
544 AU.addRequired<RSProfilers>();
545 AU.addRequiredID(DemoteRegisterToMemoryID);
546}
547
548///////////////////////////////////////
549// Utilities:
550///////////////////////////////////////
551static void ReplacePhiPred(BasicBlock* btarget,
552 BasicBlock* bold, BasicBlock* bnew) {
553 for(BasicBlock::iterator ib = btarget->begin(), ie = btarget->end();
554 ib != ie; ++ib)
555 if (PHINode* phi = dyn_cast<PHINode>(&*ib)) {
556 for(unsigned x = 0; x < phi->getNumIncomingValues(); ++x)
557 if(bold == phi->getIncomingBlock(x))
558 phi->setIncomingBlock(x, bnew);
559 }
560}
561
562static void CollapsePhi(BasicBlock* btarget, BasicBlock* bsrc) {
563 for(BasicBlock::iterator ib = btarget->begin(), ie = btarget->end();
564 ib != ie; ++ib)
565 if (PHINode* phi = dyn_cast<PHINode>(&*ib)) {
566 unsigned total = phi->getNumIncomingValues();
567 std::map<BasicBlock*, Value*> counter;
568 for(unsigned i = 0; i < phi->getNumIncomingValues(); ) {
569 if (counter[phi->getIncomingBlock(i)]) {
Andrew Lenharth517caef2005-11-28 18:00:38 +0000570 assert(phi->getIncomingValue(i) == counter[phi->getIncomingBlock(i)]);
Andrew Lenharth93e59f62005-11-28 00:58:09 +0000571 phi->removeIncomingValue(i, false);
572 } else {
573 counter[phi->getIncomingBlock(i)] = phi->getIncomingValue(i);
574 ++i;
575 }
576 }
577 }
578}
579
580template<class T>
581static void recBackEdge(BasicBlock* bb, T& BackEdges,
582 std::map<BasicBlock*, int>& color,
583 std::map<BasicBlock*, int>& depth,
584 std::map<BasicBlock*, int>& finish,
585 int& time)
586{
587 color[bb] = 1;
588 ++time;
589 depth[bb] = time;
590 TerminatorInst* t= bb->getTerminator();
591 for(unsigned i = 0; i < t->getNumSuccessors(); ++i) {
592 BasicBlock* bbnew = t->getSuccessor(i);
593 if (color[bbnew] == 0)
594 recBackEdge(bbnew, BackEdges, color, depth, finish, time);
595 else if (color[bbnew] == 1) {
596 BackEdges.insert(std::make_pair(bb, bbnew));
597 //NumBackEdges++;
598 }
599 }
600 color[bb] = 2;
601 ++time;
602 finish[bb] = time;
603}
604
605
606
607//find the back edges and where they go to
608template<class T>
609static void getBackEdges(Function& F, T& BackEdges) {
610 std::map<BasicBlock*, int> color;
611 std::map<BasicBlock*, int> depth;
612 std::map<BasicBlock*, int> finish;
613 int time = 0;
614 recBackEdge(&F.getEntryBlock(), BackEdges, color, depth, finish, time);
615 DEBUG(std::cerr << F.getName() << " " << BackEdges.size() << "\n");
616}
617
618
619//Creation functions
Andrew Lenharth93e59f62005-11-28 00:58:09 +0000620ModulePass* llvm::createNullProfilerRSPass() {
621 return new NullProfilerRS();
622}
623
624FunctionPass* llvm::createRSProfilingPass() {
625 return new ProfilerRS();
626}