2003-02-22 23:57:48 +00:00
|
|
|
//===- Mem2Reg.cpp - The -mem2reg pass, a wrapper around the Utils lib ----===//
|
2005-04-21 23:48:37 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
2005-04-21 23:48:37 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2003-02-22 23:57:48 +00:00
|
|
|
//
|
|
|
|
// This pass is a simple pass wrapper around the PromoteMemToReg function call
|
|
|
|
// exposed by the Utils library.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-12-19 22:17:40 +00:00
|
|
|
#define DEBUG_TYPE "mem2reg"
|
2003-02-22 23:57:48 +00:00
|
|
|
#include "llvm/Transforms/Scalar.h"
|
|
|
|
#include "llvm/Transforms/Utils/PromoteMemToReg.h"
|
2006-05-09 04:13:41 +00:00
|
|
|
#include "llvm/Transforms/Utils/UnifyFunctionExitNodes.h"
|
2003-02-22 23:57:48 +00:00
|
|
|
#include "llvm/Analysis/Dominators.h"
|
2004-07-29 17:30:56 +00:00
|
|
|
#include "llvm/Instructions.h"
|
2003-02-22 23:57:48 +00:00
|
|
|
#include "llvm/Function.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/ADT/Statistic.h"
|
2006-08-27 12:54:02 +00:00
|
|
|
#include "llvm/Support/Compiler.h"
|
2004-01-09 06:02:20 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2006-12-19 22:17:40 +00:00
|
|
|
STATISTIC(NumPromoted, "Number of alloca's promoted");
|
2003-02-22 23:57:48 +00:00
|
|
|
|
2006-12-19 22:17:40 +00:00
|
|
|
namespace {
|
2006-06-28 22:08:15 +00:00
|
|
|
struct VISIBILITY_HIDDEN PromotePass : public FunctionPass {
|
2007-05-06 13:37:16 +00:00
|
|
|
static char ID; // Pass identification, replacement for typeid
|
2007-05-01 21:15:47 +00:00
|
|
|
PromotePass() : FunctionPass((intptr_t)&ID) {}
|
|
|
|
|
2003-02-22 23:57:48 +00:00
|
|
|
// runOnFunction - To run this pass, first we calculate the alloca
|
|
|
|
// instructions that are safe for promotion, then we promote each one.
|
|
|
|
//
|
|
|
|
virtual bool runOnFunction(Function &F);
|
|
|
|
|
|
|
|
// getAnalysisUsage - We need dominance frontiers
|
|
|
|
//
|
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
2007-06-07 21:57:03 +00:00
|
|
|
AU.addRequired<DominatorTree>();
|
2003-02-22 23:57:48 +00:00
|
|
|
AU.addRequired<DominanceFrontier>();
|
|
|
|
AU.setPreservesCFG();
|
2007-04-16 18:10:23 +00:00
|
|
|
// This is a cluster of orthogonal Transforms
|
2006-05-09 04:13:41 +00:00
|
|
|
AU.addPreserved<UnifyFunctionExitNodes>();
|
|
|
|
AU.addPreservedID(LowerSelectID);
|
|
|
|
AU.addPreservedID(LowerSwitchID);
|
2006-05-17 21:05:27 +00:00
|
|
|
AU.addPreservedID(LowerInvokePassID);
|
|
|
|
AU.addPreservedID(LowerAllocationsID);
|
2003-02-22 23:57:48 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2007-05-03 01:11:54 +00:00
|
|
|
char PromotePass::ID = 0;
|
2006-08-27 22:42:52 +00:00
|
|
|
RegisterPass<PromotePass> X("mem2reg", "Promote Memory to Register");
|
2003-02-22 23:57:48 +00:00
|
|
|
} // end of anonymous namespace
|
|
|
|
|
|
|
|
bool PromotePass::runOnFunction(Function &F) {
|
|
|
|
std::vector<AllocaInst*> Allocas;
|
|
|
|
|
2003-09-20 14:39:18 +00:00
|
|
|
BasicBlock &BB = F.getEntryBlock(); // Get the entry node for the function
|
2003-02-22 23:57:48 +00:00
|
|
|
|
2003-06-25 14:58:56 +00:00
|
|
|
bool Changed = false;
|
2003-10-05 21:20:13 +00:00
|
|
|
|
2007-06-07 21:57:03 +00:00
|
|
|
DominatorTree &DT = getAnalysis<DominatorTree>();
|
2003-10-05 21:20:13 +00:00
|
|
|
DominanceFrontier &DF = getAnalysis<DominanceFrontier>();
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2003-06-25 14:58:56 +00:00
|
|
|
while (1) {
|
|
|
|
Allocas.clear();
|
|
|
|
|
|
|
|
// Find allocas that are safe to promote, by looking at all instructions in
|
|
|
|
// the entry node
|
|
|
|
for (BasicBlock::iterator I = BB.begin(), E = --BB.end(); I != E; ++I)
|
|
|
|
if (AllocaInst *AI = dyn_cast<AllocaInst>(I)) // Is it an alloca?
|
2007-04-25 17:15:20 +00:00
|
|
|
if (isAllocaPromotable(AI))
|
2003-06-25 14:58:56 +00:00
|
|
|
Allocas.push_back(AI);
|
|
|
|
|
|
|
|
if (Allocas.empty()) break;
|
|
|
|
|
2007-06-07 21:57:03 +00:00
|
|
|
PromoteMemToReg(Allocas, DT, DF);
|
2003-02-22 23:57:48 +00:00
|
|
|
NumPromoted += Allocas.size();
|
2003-06-25 14:58:56 +00:00
|
|
|
Changed = true;
|
2003-02-22 23:57:48 +00:00
|
|
|
}
|
2003-06-25 14:58:56 +00:00
|
|
|
|
|
|
|
return Changed;
|
2003-02-22 23:57:48 +00:00
|
|
|
}
|
|
|
|
|
2006-05-02 04:24:36 +00:00
|
|
|
// Publically exposed interface to pass...
|
|
|
|
const PassInfo *llvm::PromoteMemoryToRegisterID = X.getPassInfo();
|
2003-02-22 23:57:48 +00:00
|
|
|
// createPromoteMemoryToRegister - Provide an entry point to create this pass.
|
|
|
|
//
|
2005-03-28 02:01:12 +00:00
|
|
|
FunctionPass *llvm::createPromoteMemoryToRegisterPass() {
|
2003-02-22 23:57:48 +00:00
|
|
|
return new PromotePass();
|
|
|
|
}
|