Rename Function::getEntryNode -> getEntryBlock
[oota-llvm.git] / lib / Transforms / Utils / Mem2Reg.cpp
1 //===- Mem2Reg.cpp - The -mem2reg pass, a wrapper around the Utils lib ----===//
2 //
3 // This pass is a simple pass wrapper around the PromoteMemToReg function call
4 // exposed by the Utils library.
5 //
6 //===----------------------------------------------------------------------===//
7
8 #include "llvm/Transforms/Scalar.h"
9 #include "llvm/Transforms/Utils/PromoteMemToReg.h"
10 #include "llvm/Analysis/Dominators.h"
11 #include "llvm/iMemory.h"
12 #include "llvm/Function.h"
13 #include "llvm/Target/TargetData.h"
14 #include "Support/Statistic.h"
15
16 namespace {
17   Statistic<> NumPromoted("mem2reg", "Number of alloca's promoted");
18
19   struct PromotePass : public FunctionPass {
20     // runOnFunction - To run this pass, first we calculate the alloca
21     // instructions that are safe for promotion, then we promote each one.
22     //
23     virtual bool runOnFunction(Function &F);
24
25     // getAnalysisUsage - We need dominance frontiers
26     //
27     virtual void getAnalysisUsage(AnalysisUsage &AU) const {
28       AU.addRequired<DominanceFrontier>();
29       AU.addRequired<TargetData>();
30       AU.setPreservesCFG();
31     }
32   };
33
34   RegisterOpt<PromotePass> X("mem2reg", "Promote Memory to Register");
35 }  // end of anonymous namespace
36
37 bool PromotePass::runOnFunction(Function &F) {
38   std::vector<AllocaInst*> Allocas;
39   const TargetData &TD = getAnalysis<TargetData>();
40
41   BasicBlock &BB = F.getEntryBlock();  // Get the entry node for the function
42
43   bool Changed  = false;
44   
45   while (1) {
46     Allocas.clear();
47
48     // Find allocas that are safe to promote, by looking at all instructions in
49     // the entry node
50     for (BasicBlock::iterator I = BB.begin(), E = --BB.end(); I != E; ++I)
51       if (AllocaInst *AI = dyn_cast<AllocaInst>(I))       // Is it an alloca?
52         if (isAllocaPromotable(AI, TD))
53           Allocas.push_back(AI);
54
55     if (Allocas.empty()) break;
56
57     PromoteMemToReg(Allocas, getAnalysis<DominanceFrontier>(), TD);
58     NumPromoted += Allocas.size();
59     Changed = true;
60   }
61
62   return Changed;
63 }
64
65 // createPromoteMemoryToRegister - Provide an entry point to create this pass.
66 //
67 Pass *createPromoteMemoryToRegister() {
68   return new PromotePass();
69 }