blob: d915155ed4bfb4a8f2fe3404bc7f8ab3ceadf8b7 [file] [log] [blame]
Chris Lattner26f15902003-02-22 23:57:48 +00001//===- Mem2Reg.cpp - The -mem2reg pass, a wrapper around the Utils lib ----===//
John Criswell482202a2003-10-20 19:43:21 +00002//
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//===----------------------------------------------------------------------===//
Chris Lattner26f15902003-02-22 23:57:48 +00009//
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"
Chris Lattnere27406e2003-03-03 17:25:18 +000020#include "llvm/Target/TargetData.h"
Chris Lattner26f15902003-02-22 23:57:48 +000021#include "Support/Statistic.h"
22
23namespace {
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 {
Chris Lattnera906bac2003-10-05 21:20:13 +000035 AU.addRequired<DominatorTree>();
Chris Lattner26f15902003-02-22 23:57:48 +000036 AU.addRequired<DominanceFrontier>();
Chris Lattnere27406e2003-03-03 17:25:18 +000037 AU.addRequired<TargetData>();
Chris Lattner26f15902003-02-22 23:57:48 +000038 AU.setPreservesCFG();
39 }
40 };
41
42 RegisterOpt<PromotePass> X("mem2reg", "Promote Memory to Register");
43} // end of anonymous namespace
44
45bool PromotePass::runOnFunction(Function &F) {
46 std::vector<AllocaInst*> Allocas;
Chris Lattnere27406e2003-03-03 17:25:18 +000047 const TargetData &TD = getAnalysis<TargetData>();
Chris Lattner26f15902003-02-22 23:57:48 +000048
Chris Lattner5dac64f2003-09-20 14:39:18 +000049 BasicBlock &BB = F.getEntryBlock(); // Get the entry node for the function
Chris Lattner26f15902003-02-22 23:57:48 +000050
Chris Lattnerb396afd2003-06-25 14:58:56 +000051 bool Changed = false;
Chris Lattnera906bac2003-10-05 21:20:13 +000052
53 DominatorTree &DT = getAnalysis<DominatorTree>();
54 DominanceFrontier &DF = getAnalysis<DominanceFrontier>();
Chris Lattnerb396afd2003-06-25 14:58:56 +000055
56 while (1) {
57 Allocas.clear();
Chris Lattner26f15902003-02-22 23:57:48 +000058
Chris Lattnerb396afd2003-06-25 14:58:56 +000059 // 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
Chris Lattnera906bac2003-10-05 21:20:13 +000068 PromoteMemToReg(Allocas, DT, DF, TD);
Chris Lattner26f15902003-02-22 23:57:48 +000069 NumPromoted += Allocas.size();
Chris Lattnerb396afd2003-06-25 14:58:56 +000070 Changed = true;
Chris Lattner26f15902003-02-22 23:57:48 +000071 }
Chris Lattnerb396afd2003-06-25 14:58:56 +000072
73 return Changed;
Chris Lattner26f15902003-02-22 23:57:48 +000074}
75
76// createPromoteMemoryToRegister - Provide an entry point to create this pass.
77//
78Pass *createPromoteMemoryToRegister() {
79 return new PromotePass();
80}