EdgeProfiling.cpp 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. //===- EdgeProfiling.cpp - Insert counters for edge profiling -------------===//
  2. //
  3. // The LLVM Compiler Infrastructure
  4. //
  5. // This file is distributed under the University of Illinois Open Source
  6. // License. See LICENSE.TXT for details.
  7. //
  8. //===----------------------------------------------------------------------===//
  9. //
  10. // This pass instruments the specified program with counters for edge profiling.
  11. // Edge profiling can give a reasonable approximation of the hot paths through a
  12. // program, and is used for a wide variety of program transformations.
  13. //
  14. // Note that this implementation is very naive. We insert a counter for *every*
  15. // edge in the program, instead of using control flow information to prune the
  16. // number of counters inserted.
  17. //
  18. //===----------------------------------------------------------------------===//
  19. #include "ProfilingUtils.h"
  20. #include "llvm/Constants.h"
  21. #include "llvm/DerivedTypes.h"
  22. #include "llvm/LLVMContext.h"
  23. #include "llvm/Module.h"
  24. #include "llvm/Pass.h"
  25. #include "llvm/Support/Compiler.h"
  26. #include "llvm/Support/Streams.h"
  27. #include "llvm/Transforms/Utils/BasicBlockUtils.h"
  28. #include "llvm/Transforms/Instrumentation.h"
  29. #include <set>
  30. using namespace llvm;
  31. namespace {
  32. class VISIBILITY_HIDDEN EdgeProfiler : public ModulePass {
  33. bool runOnModule(Module &M);
  34. public:
  35. static char ID; // Pass identification, replacement for typeid
  36. EdgeProfiler() : ModulePass(&ID) {}
  37. };
  38. }
  39. char EdgeProfiler::ID = 0;
  40. static RegisterPass<EdgeProfiler>
  41. X("insert-edge-profiling", "Insert instrumentation for edge profiling");
  42. ModulePass *llvm::createEdgeProfilerPass() { return new EdgeProfiler(); }
  43. bool EdgeProfiler::runOnModule(Module &M) {
  44. Function *Main = M.getFunction("main");
  45. if (Main == 0) {
  46. cerr << "WARNING: cannot insert edge profiling into a module"
  47. << " with no main function!\n";
  48. return false; // No main, no instrumentation!
  49. }
  50. std::set<BasicBlock*> BlocksToInstrument;
  51. unsigned NumEdges = 0;
  52. for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) {
  53. if (F->isDeclaration()) continue;
  54. // Reserve space for (0,entry) edge.
  55. ++NumEdges;
  56. for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
  57. // Keep track of which blocks need to be instrumented. We don't want to
  58. // instrument blocks that are added as the result of breaking critical
  59. // edges!
  60. BlocksToInstrument.insert(BB);
  61. NumEdges += BB->getTerminator()->getNumSuccessors();
  62. }
  63. }
  64. const Type *ATy = ArrayType::get(Type::getInt32Ty(M.getContext()), NumEdges);
  65. GlobalVariable *Counters =
  66. new GlobalVariable(M, ATy, false, GlobalValue::InternalLinkage,
  67. Constant::getNullValue(ATy), "EdgeProfCounters");
  68. // Instrument all of the edges...
  69. unsigned i = 0;
  70. for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) {
  71. if (F->isDeclaration()) continue;
  72. // Create counter for (0,entry) edge.
  73. IncrementCounterInBlock(&F->getEntryBlock(), i++, Counters);
  74. for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
  75. if (BlocksToInstrument.count(BB)) { // Don't instrument inserted blocks
  76. // Okay, we have to add a counter of each outgoing edge. If the
  77. // outgoing edge is not critical don't split it, just insert the counter
  78. // in the source or destination of the edge.
  79. TerminatorInst *TI = BB->getTerminator();
  80. for (unsigned s = 0, e = TI->getNumSuccessors(); s != e; ++s) {
  81. // If the edge is critical, split it.
  82. SplitCriticalEdge(TI, s, this);
  83. // Okay, we are guaranteed that the edge is no longer critical. If we
  84. // only have a single successor, insert the counter in this block,
  85. // otherwise insert it in the successor block.
  86. if (TI->getNumSuccessors() == 1) {
  87. // Insert counter at the start of the block
  88. IncrementCounterInBlock(BB, i++, Counters);
  89. } else {
  90. // Insert counter at the start of the block
  91. IncrementCounterInBlock(TI->getSuccessor(s), i++, Counters);
  92. }
  93. }
  94. }
  95. }
  96. // Add the initialization call to main.
  97. InsertProfilingInitCall(Main, "llvm_start_edge_profiling", Counters);
  98. return true;
  99. }