blob: 4d99280805822c24d361513f160c056b31e4e414 [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
Brian Gaeke960707c2003-11-11 22:41:34 +000023namespace llvm {
24
Chris Lattner26f15902003-02-22 23:57:48 +000025namespace {
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 {
Chris Lattnera906bac2003-10-05 21:20:13 +000037 AU.addRequired<DominatorTree>();
Chris Lattner26f15902003-02-22 23:57:48 +000038 AU.addRequired<DominanceFrontier>();
Chris Lattnere27406e2003-03-03 17:25:18 +000039 AU.addRequired<TargetData>();
Chris Lattner26f15902003-02-22 23:57:48 +000040 AU.setPreservesCFG();
41 }
42 };
43
44 RegisterOpt<PromotePass> X("mem2reg", "Promote Memory to Register");
45} // end of anonymous namespace
46
47bool PromotePass::runOnFunction(Function &F) {
48 std::vector<AllocaInst*> Allocas;
Chris Lattnere27406e2003-03-03 17:25:18 +000049 const TargetData &TD = getAnalysis<TargetData>();
Chris Lattner26f15902003-02-22 23:57:48 +000050
Chris Lattner5dac64f2003-09-20 14:39:18 +000051 BasicBlock &BB = F.getEntryBlock(); // Get the entry node for the function
Chris Lattner26f15902003-02-22 23:57:48 +000052
Chris Lattnerb396afd2003-06-25 14:58:56 +000053 bool Changed = false;
Chris Lattnera906bac2003-10-05 21:20:13 +000054
55 DominatorTree &DT = getAnalysis<DominatorTree>();
56 DominanceFrontier &DF = getAnalysis<DominanceFrontier>();
Chris Lattnerb396afd2003-06-25 14:58:56 +000057
58 while (1) {
59 Allocas.clear();
Chris Lattner26f15902003-02-22 23:57:48 +000060
Chris Lattnerb396afd2003-06-25 14:58:56 +000061 // 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
Chris Lattnera906bac2003-10-05 21:20:13 +000070 PromoteMemToReg(Allocas, DT, DF, TD);
Chris Lattner26f15902003-02-22 23:57:48 +000071 NumPromoted += Allocas.size();
Chris Lattnerb396afd2003-06-25 14:58:56 +000072 Changed = true;
Chris Lattner26f15902003-02-22 23:57:48 +000073 }
Chris Lattnerb396afd2003-06-25 14:58:56 +000074
75 return Changed;
Chris Lattner26f15902003-02-22 23:57:48 +000076}
77
78// createPromoteMemoryToRegister - Provide an entry point to create this pass.
79//
80Pass *createPromoteMemoryToRegister() {
81 return new PromotePass();
82}
Brian Gaeke960707c2003-11-11 22:41:34 +000083
84} // End llvm namespace