Fixes to the reassociate pass to make it respect dominance properties
[oota-llvm.git] / lib / Transforms / Instrumentation / TraceValues.cpp
1 //===- TraceValues.cpp - Value Tracing for debugging -------------*- C++ -*--=//
2 //
3 // Support for inserting LLVM code to print values at basic block and function
4 // exits.
5 //
6 //===----------------------------------------------------------------------===//
7
8 #include "llvm/Transforms/Instrumentation/TraceValues.h"
9 #include "llvm/Constants.h"
10 #include "llvm/DerivedTypes.h"
11 #include "llvm/iMemory.h"
12 #include "llvm/iTerminators.h"
13 #include "llvm/iOther.h"
14 #include "llvm/Module.h"
15 #include "llvm/Pass.h"
16 #include "llvm/Assembly/Writer.h"
17 #include "Support/CommandLine.h"
18 #include "Support/StringExtras.h"
19 #include <algorithm>
20 #include <sstream>
21 using std::vector;
22 using std::string;
23
24 static cl::opt<bool>
25 DisablePtrHashing("tracedisablehashdisable", cl::Hidden,
26                   cl::desc("Disable pointer hashing"));
27
28 static cl::list<string>
29 TraceFuncName("tracefunc", cl::desc("trace only specific functions"),
30               cl::value_desc("function"), cl::Hidden);
31
32 static void TraceValuesAtBBExit(BasicBlock *BB,
33                                 Function *Printf, Function* HashPtrToSeqNum,
34                                 vector<Instruction*> *valuesStoredInFunction);
35
36 // We trace a particular function if no functions to trace were specified
37 // or if the function is in the specified list.
38 // 
39 inline static bool
40 TraceThisFunction(Function &func)
41 {
42   if (TraceFuncName.size() == 0)
43     return true;
44
45   return std::find(TraceFuncName.begin(), TraceFuncName.end(), func.getName())
46                   != TraceFuncName.end();
47 }
48
49
50 namespace {
51   struct ExternalFuncs {
52     Function *PrintfFunc, *HashPtrFunc, *ReleasePtrFunc;
53     Function *RecordPtrFunc, *PushOnEntryFunc, *ReleaseOnReturnFunc;
54     void doInitialization(Module &M); // Add prototypes for external functions
55   };
56   
57   class InsertTraceCode : public FunctionPass {
58   protected:
59     ExternalFuncs externalFuncs;
60   public:
61     
62     // Add a prototype for runtime functions not already in the program.
63     //
64     bool doInitialization(Module &M);
65     
66     //--------------------------------------------------------------------------
67     // Function InsertCodeToTraceValues
68     // 
69     // Inserts tracing code for all live values at basic block and/or function
70     // exits as specified by `traceBasicBlockExits' and `traceFunctionExits'.
71     //
72     bool doit(Function *M);
73
74     virtual void handleBasicBlock(BasicBlock *BB, vector<Instruction*> &VI) = 0;
75
76     // runOnFunction - This method does the work.
77     //
78     bool runOnFunction(Function &F);
79
80     virtual void getAnalysisUsage(AnalysisUsage &AU) const {
81       AU.setPreservesCFG();
82     }
83   };
84
85   struct FunctionTracer : public InsertTraceCode {
86     // Ignore basic blocks here...
87     virtual void handleBasicBlock(BasicBlock *BB, vector<Instruction*> &VI) {}
88   };
89
90   struct BasicBlockTracer : public InsertTraceCode {
91     // Trace basic blocks here...
92     virtual void handleBasicBlock(BasicBlock *BB, vector<Instruction*> &VI) {
93       TraceValuesAtBBExit(BB, externalFuncs.PrintfFunc,
94                           externalFuncs.HashPtrFunc, &VI);
95     }
96   };
97
98   // Register the passes...
99   RegisterOpt<FunctionTracer>  X("tracem","Insert Function trace code only");
100   RegisterOpt<BasicBlockTracer> Y("trace","Insert BB and Function trace code");
101 } // end anonymous namespace
102
103
104 Pass *createTraceValuesPassForFunction() {     // Just trace functions
105   return new FunctionTracer();
106 }
107
108 Pass *createTraceValuesPassForBasicBlocks() {  // Trace BB's and functions
109   return new BasicBlockTracer();
110 }
111
112
113 // Add a prototype for external functions used by the tracing code.
114 //
115 void ExternalFuncs::doInitialization(Module &M) {
116   const Type *SBP = PointerType::get(Type::SByteTy);
117   const FunctionType *MTy =
118     FunctionType::get(Type::IntTy, vector<const Type*>(1, SBP), true);
119   PrintfFunc = M.getOrInsertFunction("printf", MTy);
120
121   // uint (sbyte*)
122   const FunctionType *hashFuncTy =
123     FunctionType::get(Type::UIntTy, vector<const Type*>(1, SBP), false);
124   HashPtrFunc = M.getOrInsertFunction("HashPointerToSeqNum", hashFuncTy);
125   
126   // void (sbyte*)
127   const FunctionType *voidSBPFuncTy =
128     FunctionType::get(Type::VoidTy, vector<const Type*>(1, SBP), false);
129   
130   ReleasePtrFunc = M.getOrInsertFunction("ReleasePointerSeqNum", voidSBPFuncTy);
131   RecordPtrFunc  = M.getOrInsertFunction("RecordPointer", voidSBPFuncTy);
132   
133   const FunctionType *voidvoidFuncTy =
134     FunctionType::get(Type::VoidTy, vector<const Type*>(), false);
135   
136   PushOnEntryFunc = M.getOrInsertFunction("PushPointerSet", voidvoidFuncTy);
137   ReleaseOnReturnFunc = M.getOrInsertFunction("ReleasePointersPopSet",
138                                                voidvoidFuncTy);
139 }
140
141
142 // Add a prototype for external functions used by the tracing code.
143 //
144 bool InsertTraceCode::doInitialization(Module &M) {
145   externalFuncs.doInitialization(M);
146   return false;
147 }
148
149
150 static inline GlobalVariable *getStringRef(Module *M, const string &str) {
151   // Create a constant internal string reference...
152   Constant *Init = ConstantArray::get(str);
153
154   // Create the global variable and record it in the module
155   // The GV will be renamed to a unique name if needed.
156   GlobalVariable *GV = new GlobalVariable(Init->getType(), true, true, Init,
157                                           "trstr");
158   M->getGlobalList().push_back(GV);
159   return GV;
160 }
161
162
163 // 
164 // Check if this instruction has any uses outside its basic block,
165 // or if it used by either a Call or Return instruction.
166 // 
167 static inline bool LiveAtBBExit(const Instruction* I) {
168   const BasicBlock *BB = I->getParent();
169   for (Value::use_const_iterator U = I->use_begin(); U != I->use_end(); ++U)
170     if (const Instruction *UI = dyn_cast<Instruction>(*U))
171       if (UI->getParent() != BB || isa<ReturnInst>(UI))
172         return true;
173
174   return false;
175 }
176
177
178 static inline bool TraceThisOpCode(unsigned opCode) {
179   // Explicitly test for opCodes *not* to trace so that any new opcodes will
180   // be traced by default (VoidTy's are already excluded)
181   // 
182   return (opCode  < Instruction::OtherOpsBegin &&
183           opCode != Instruction::Alloca &&
184           opCode != Instruction::PHINode &&
185           opCode != Instruction::Cast);
186 }
187
188
189 static bool ShouldTraceValue(const Instruction *I) {
190   return
191     I->getType() != Type::VoidTy && LiveAtBBExit(I) &&
192     TraceThisOpCode(I->getOpcode());
193 }
194
195 static string getPrintfCodeFor(const Value *V) {
196   if (V == 0) return "";
197   if (V->getType()->isFloatingPoint())
198     return "%g";
199   else if (V->getType() == Type::LabelTy)
200     return "0x%p";
201   else if (isa<PointerType>(V->getType()))
202     return DisablePtrHashing ? "0x%p" : "%d";
203   else if (V->getType()->isIntegral())
204     return "%d";
205   
206   assert(0 && "Illegal value to print out...");
207   return "";
208 }
209
210
211 static void InsertPrintInst(Value *V, BasicBlock *BB, Instruction *InsertBefore,
212                             string Message,
213                             Function *Printf, Function* HashPtrToSeqNum) {
214   // Escape Message by replacing all % characters with %% chars.
215   string Tmp;
216   std::swap(Tmp, Message);
217   string::iterator I = std::find(Tmp.begin(), Tmp.end(), '%');
218   while (I != Tmp.end()) {
219     Message.append(Tmp.begin(), I);
220     Message += "%%";
221     ++I; // Make sure to erase the % as well...
222     Tmp.erase(Tmp.begin(), I);
223     I = std::find(Tmp.begin(), Tmp.end(), '%');
224   }
225
226   Module *Mod = BB->getParent()->getParent();
227
228   // Turn the marker string into a global variable...
229   GlobalVariable *fmtVal = getStringRef(Mod, Message+getPrintfCodeFor(V)+"\n");
230
231   // Turn the format string into an sbyte *
232   Instruction *GEP = 
233     new GetElementPtrInst(fmtVal,
234                           vector<Value*>(2,ConstantSInt::get(Type::LongTy, 0)),
235                           "trstr", InsertBefore);
236   
237   // Insert a call to the hash function if this is a pointer value
238   if (V && isa<PointerType>(V->getType()) && !DisablePtrHashing) {
239     const Type *SBP = PointerType::get(Type::SByteTy);
240     if (V->getType() != SBP)     // Cast pointer to be sbyte*
241       V = new CastInst(V, SBP, "Hash_cast", InsertBefore);
242
243     vector<Value*> HashArgs(1, V);
244     V = new CallInst(HashPtrToSeqNum, HashArgs, "ptrSeqNum", InsertBefore);
245   }
246   
247   // Insert the first print instruction to print the string flag:
248   vector<Value*> PrintArgs;
249   PrintArgs.push_back(GEP);
250   if (V) PrintArgs.push_back(V);
251   new CallInst(Printf, PrintArgs, "trace", InsertBefore);
252 }
253                             
254
255 static void InsertVerbosePrintInst(Value *V, BasicBlock *BB,
256                                    Instruction *InsertBefore,
257                                    const string &Message, Function *Printf,
258                                    Function* HashPtrToSeqNum) {
259   std::ostringstream OutStr;
260   if (V) WriteAsOperand(OutStr, V);
261   InsertPrintInst(V, BB, InsertBefore, Message+OutStr.str()+" = ",
262                   Printf, HashPtrToSeqNum);
263 }
264
265 static void 
266 InsertReleaseInst(Value *V, BasicBlock *BB,
267                   Instruction *InsertBefore,
268                   Function* ReleasePtrFunc) {
269   
270   const Type *SBP = PointerType::get(Type::SByteTy);
271   if (V->getType() != SBP)    // Cast pointer to be sbyte*
272     V = new CastInst(V, SBP, "RPSN_cast", InsertBefore);
273
274   vector<Value*> releaseArgs(1, V);
275   new CallInst(ReleasePtrFunc, releaseArgs, "", InsertBefore);
276 }
277
278 static void 
279 InsertRecordInst(Value *V, BasicBlock *BB,
280                  Instruction *InsertBefore,
281                  Function* RecordPtrFunc) {
282     const Type *SBP = PointerType::get(Type::SByteTy);
283   if (V->getType() != SBP)     // Cast pointer to be sbyte*
284     V = new CastInst(V, SBP, "RP_cast", InsertBefore);
285
286   vector<Value*> releaseArgs(1, V);
287   new CallInst(RecordPtrFunc, releaseArgs, "", InsertBefore);
288 }
289
290 // Look for alloca and free instructions. These are the ptrs to release.
291 // Release the free'd pointers immediately.  Record the alloca'd pointers
292 // to be released on return from the current function.
293 // 
294 static void
295 ReleasePtrSeqNumbers(BasicBlock *BB,
296                      ExternalFuncs& externalFuncs) {
297   
298   for (BasicBlock::iterator II=BB->begin(), IE = BB->end(); II != IE; ++II)
299     if (FreeInst *FI = dyn_cast<FreeInst>(&*II))
300       InsertReleaseInst(FI->getOperand(0), BB, FI,externalFuncs.ReleasePtrFunc);
301     else if (AllocaInst *AI = dyn_cast<AllocaInst>(&*II))
302       InsertRecordInst(AI, BB, AI->getNext(), externalFuncs.RecordPtrFunc);
303 }  
304
305
306 // Insert print instructions at the end of basic block BB for each value
307 // computed in BB that is live at the end of BB,
308 // or that is stored to memory in BB.
309 // If the value is stored to memory, we load it back before printing it
310 // We also return all such loaded values in the vector valuesStoredInFunction
311 // for printing at the exit from the function.  (Note that in each invocation
312 // of the function, this will only get the last value stored for each static
313 // store instruction).
314 // 
315 static void TraceValuesAtBBExit(BasicBlock *BB,
316                                 Function *Printf, Function* HashPtrToSeqNum,
317                                 vector<Instruction*> *valuesStoredInFunction) {
318   // Get an iterator to point to the insertion location, which is
319   // just before the terminator instruction.
320   // 
321   TerminatorInst *InsertPos = BB->getTerminator();
322   
323   std::ostringstream OutStr;
324   WriteAsOperand(OutStr, BB, false);
325   InsertPrintInst(0, BB, InsertPos, "LEAVING BB:" + OutStr.str(),
326                   Printf, HashPtrToSeqNum);
327
328   // Insert a print instruction for each instruction preceding InsertPos.
329   // The print instructions must go before InsertPos, so we use the
330   // instruction *preceding* InsertPos to check when to terminate the loop.
331   // 
332   for (BasicBlock::iterator II = BB->begin(); &*II != InsertPos; ++II) {
333     if (StoreInst *SI = dyn_cast<StoreInst>(&*II)) {
334       assert(valuesStoredInFunction &&
335              "Should not be printing a store instruction at function exit");
336       LoadInst *LI = new LoadInst(SI->getPointerOperand(), "reload." +
337                                   SI->getPointerOperand()->getName(),
338                                   InsertPos);
339       valuesStoredInFunction->push_back(LI);
340     }
341     if (ShouldTraceValue(II))
342       InsertVerbosePrintInst(II, BB, InsertPos, "  ", Printf, HashPtrToSeqNum);
343   }
344 }
345
346 static inline void InsertCodeToShowFunctionEntry(Function &F, Function *Printf,
347                                                  Function* HashPtrToSeqNum){
348   // Get an iterator to point to the insertion location
349   BasicBlock &BB = F.getEntryNode();
350   Instruction *InsertPos = BB.begin();
351
352   std::ostringstream OutStr;
353   WriteAsOperand(OutStr, &F, true);
354   InsertPrintInst(0, &BB, InsertPos, "ENTERING FUNCTION: " + OutStr.str(),
355                   Printf, HashPtrToSeqNum);
356
357   // Now print all the incoming arguments
358   unsigned ArgNo = 0;
359   for (Function::aiterator I = F.abegin(), E = F.aend(); I != E; ++I, ++ArgNo){
360     InsertVerbosePrintInst(I, &BB, InsertPos,
361                            "  Arg #" + utostr(ArgNo) + ": ", Printf,
362                            HashPtrToSeqNum);
363   }
364 }
365
366
367 static inline void InsertCodeToShowFunctionExit(BasicBlock *BB,
368                                                 Function *Printf,
369                                                 Function* HashPtrToSeqNum) {
370   // Get an iterator to point to the insertion location
371   ReturnInst *Ret = cast<ReturnInst>(BB->getTerminator());
372   
373   std::ostringstream OutStr;
374   WriteAsOperand(OutStr, BB->getParent(), true);
375   InsertPrintInst(0, BB, Ret, "LEAVING  FUNCTION: " + OutStr.str(),
376                   Printf, HashPtrToSeqNum);
377   
378   // print the return value, if any
379   if (BB->getParent()->getReturnType() != Type::VoidTy)
380     InsertPrintInst(Ret->getReturnValue(), BB, Ret, "  Returning: ",
381                     Printf, HashPtrToSeqNum);
382 }
383
384
385 bool InsertTraceCode::runOnFunction(Function &F) {
386   if (!TraceThisFunction(F))
387     return false;
388   
389   vector<Instruction*> valuesStoredInFunction;
390   vector<BasicBlock*>  exitBlocks;
391
392   // Insert code to trace values at function entry
393   InsertCodeToShowFunctionEntry(F, externalFuncs.PrintfFunc,
394                                 externalFuncs.HashPtrFunc);
395   
396   // Push a pointer set for recording alloca'd pointers at entry.
397   if (!DisablePtrHashing)
398     new CallInst(externalFuncs.PushOnEntryFunc, vector<Value*>(), "",
399                  F.getEntryNode().begin());
400
401   for (Function::iterator BB = F.begin(); BB != F.end(); ++BB) {
402     if (isa<ReturnInst>(BB->getTerminator()))
403       exitBlocks.push_back(BB); // record this as an exit block
404
405     // Insert trace code if this basic block is interesting...
406     handleBasicBlock(BB, valuesStoredInFunction);
407
408     if (!DisablePtrHashing)          // release seq. numbers on free/ret
409       ReleasePtrSeqNumbers(BB, externalFuncs);
410   }
411   
412   for (unsigned i=0; i != exitBlocks.size(); ++i)
413     {
414       // Insert code to trace values at function exit
415       InsertCodeToShowFunctionExit(exitBlocks[i], externalFuncs.PrintfFunc,
416                                    externalFuncs.HashPtrFunc);
417       
418       // Release all recorded pointers before RETURN.  Do this LAST!
419       if (!DisablePtrHashing)
420         new CallInst(externalFuncs.ReleaseOnReturnFunc, vector<Value*>(), "",
421                      exitBlocks[i]->getTerminator());
422     }
423   
424   return true;
425 }