4d99280805822c24d361513f160c056b31e4e414
[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 llvm {
24
25 namespace {
26   Statistic<> NumPromoted("mem2reg", "Number of alloca's promoted");
27
28   struct PromotePass : public FunctionPass {
29     // runOnFunction - To run this pass, first we calculate the alloca
30     // instructions that are safe for promotion, then we promote each one.
31     //
32     virtual bool runOnFunction(Function &F);
33
34     // getAnalysisUsage - We need dominance frontiers
35     //
36     virtual void getAnalysisUsage(AnalysisUsage &AU) const {
37       AU.addRequired<DominatorTree>();
38       AU.addRequired<DominanceFrontier>();
39       AU.addRequired<TargetData>();
40       AU.setPreservesCFG();
41     }
42   };
43
44   RegisterOpt<PromotePass> X("mem2reg", "Promote Memory to Register");
45 }  // end of anonymous namespace
46
47 bool PromotePass::runOnFunction(Function &F) {
48   std::vector<AllocaInst*> Allocas;
49   const TargetData &TD = getAnalysis<TargetData>();
50
51   BasicBlock &BB = F.getEntryBlock();  // Get the entry node for the function
52
53   bool Changed  = false;
54
55   DominatorTree     &DT = getAnalysis<DominatorTree>();
56   DominanceFrontier &DF = getAnalysis<DominanceFrontier>();
57   
58   while (1) {
59     Allocas.clear();
60
61     // Find allocas that are safe to promote, by looking at all instructions in
62     // the entry node
63     for (BasicBlock::iterator I = BB.begin(), E = --BB.end(); I != E; ++I)
64       if (AllocaInst *AI = dyn_cast<AllocaInst>(I))       // Is it an alloca?
65         if (isAllocaPromotable(AI, TD))
66           Allocas.push_back(AI);
67
68     if (Allocas.empty()) break;
69
70     PromoteMemToReg(Allocas, DT, DF, TD);
71     NumPromoted += Allocas.size();
72     Changed = true;
73   }
74
75   return Changed;
76 }
77
78 // createPromoteMemoryToRegister - Provide an entry point to create this pass.
79 //
80 Pass *createPromoteMemoryToRegister() {
81   return new PromotePass();
82 }
83
84 } // End llvm namespace