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