blob: eda0c0e93a1985c57f7b955c7d2851258ee7f1a4 [file] [log] [blame]
Andrew Lenharth183119c2005-11-10 01:58:38 +00001//===- Reg2Mem.cpp - Convert registers to allocas -------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Andrew Lenharth183119c2005-11-10 01:58:38 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file demotes all registers to memory references. It is intented to be
11// the inverse of PromoteMemoryToRegister. By converting to loads, the only
12// values live accross basic blocks are allocas and loads before phi nodes.
13// It is intended that this should make CFG hacking much easier.
14// To make later hacking easier, the entry block is split into two, such that
15// all introduced allocas and nothing else are in the entry block.
16//
17//===----------------------------------------------------------------------===//
18
Chris Lattner0e5f4992006-12-19 21:40:18 +000019#define DEBUG_TYPE "reg2mem"
Andrew Lenharth183119c2005-11-10 01:58:38 +000020#include "llvm/Transforms/Scalar.h"
21#include "llvm/Transforms/Utils/Local.h"
22#include "llvm/Pass.h"
23#include "llvm/Function.h"
24#include "llvm/Module.h"
25#include "llvm/BasicBlock.h"
26#include "llvm/Instructions.h"
27#include "llvm/ADT/Statistic.h"
Reid Spencer9133fe22007-02-05 23:32:05 +000028#include "llvm/Support/Compiler.h"
Anton Korobeynikova024e8c2007-10-21 23:05:16 +000029#include "llvm/Support/CFG.h"
Andrew Lenharth183119c2005-11-10 01:58:38 +000030#include <list>
Andrew Lenharth183119c2005-11-10 01:58:38 +000031using namespace llvm;
32
Anton Korobeynikova024e8c2007-10-21 23:05:16 +000033STATISTIC(NumRegsDemoted, "Number of registers demoted");
34STATISTIC(NumPhisDemoted, "Number of phi-nodes demoted");
Chris Lattner0e5f4992006-12-19 21:40:18 +000035
Andrew Lenharth183119c2005-11-10 01:58:38 +000036namespace {
Reid Spencer9133fe22007-02-05 23:32:05 +000037 struct VISIBILITY_HIDDEN RegToMem : public FunctionPass {
Nick Lewyckyecd94c82007-05-06 13:37:16 +000038 static char ID; // Pass identification, replacement for typeid
Devang Patel794fd752007-05-01 21:15:47 +000039 RegToMem() : FunctionPass((intptr_t)&ID) {}
Andrew Lenharth183119c2005-11-10 01:58:38 +000040
Andrew Lenharth7045f6c2005-11-22 21:45:19 +000041 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
42 AU.addRequiredID(BreakCriticalEdgesID);
Andrew Lenharthb0826522005-11-25 16:04:54 +000043 AU.addPreservedID(BreakCriticalEdgesID);
Andrew Lenharth7045f6c2005-11-22 21:45:19 +000044 }
45
Andrew Lenharth183119c2005-11-10 01:58:38 +000046 bool valueEscapes(Instruction* i) {
47 BasicBlock* bb = i->getParent();
Anton Korobeynikova024e8c2007-10-21 23:05:16 +000048 for (Value::use_iterator ii = i->use_begin(), ie = i->use_end();
49 ii != ie; ++ii)
Andrew Lenharthfa25e482005-11-10 19:39:09 +000050 if (cast<Instruction>(*ii)->getParent() != bb ||
Anton Korobeynikovbed29462007-04-16 18:10:23 +000051 isa<PHINode>(*ii))
Andrew Lenharth183119c2005-11-10 01:58:38 +000052 return true;
53 return false;
54 }
55
56 virtual bool runOnFunction(Function &F) {
Reid Spencer5cbf9852007-01-30 20:08:39 +000057 if (!F.isDeclaration()) {
Anton Korobeynikova024e8c2007-10-21 23:05:16 +000058 // Insert all new allocas into entry block.
59 BasicBlock* BBEntry = &F.getEntryBlock();
60 assert(pred_begin(BBEntry) == pred_end(BBEntry) &&
61 "Entry block to function must not have predecessors!");
Andrew Lenharth183119c2005-11-10 01:58:38 +000062
Anton Korobeynikova024e8c2007-10-21 23:05:16 +000063 // Find first non-alloca instruction and create insertion point. This is
64 // safe if block is well-formed: it always have terminator, otherwise
65 // we'll get and assertion.
66 BasicBlock::iterator I = BBEntry->begin();
67 while (isa<AllocaInst>(I)) ++I;
68
69 CastInst *AllocaInsertionPoint =
70 CastInst::create(Instruction::BitCast,
71 Constant::getNullValue(Type::Int32Ty), Type::Int32Ty,
72 "reg2mem alloca point", I);
73
74 // Find the escaped instructions. But don't create stack slots for
75 // allocas in entry block.
Andrew Lenharth183119c2005-11-10 01:58:38 +000076 std::list<Instruction*> worklist;
77 for (Function::iterator ibb = F.begin(), ibe = F.end();
78 ibb != ibe; ++ibb)
79 for (BasicBlock::iterator iib = ibb->begin(), iie = ibb->end();
80 iib != iie; ++iib) {
Anton Korobeynikova024e8c2007-10-21 23:05:16 +000081 if (!(isa<AllocaInst>(iib) && iib->getParent() == BBEntry) &&
82 valueEscapes(iib)) {
Andrew Lenharth183119c2005-11-10 01:58:38 +000083 worklist.push_front(&*iib);
Anton Korobeynikova024e8c2007-10-21 23:05:16 +000084 }
Andrew Lenharth183119c2005-11-10 01:58:38 +000085 }
Anton Korobeynikova024e8c2007-10-21 23:05:16 +000086
87 // Demote escaped instructions
88 NumRegsDemoted += worklist.size();
Andrew Lenharth183119c2005-11-10 01:58:38 +000089 for (std::list<Instruction*>::iterator ilb = worklist.begin(),
90 ile = worklist.end(); ilb != ile; ++ilb)
Anton Korobeynikova024e8c2007-10-21 23:05:16 +000091 DemoteRegToStack(**ilb, false, AllocaInsertionPoint);
92
93 worklist.clear();
94
95 // Find all phi's
96 for (Function::iterator ibb = F.begin(), ibe = F.end();
97 ibb != ibe; ++ibb)
98 for (BasicBlock::iterator iib = ibb->begin(), iie = ibb->end();
99 iib != iie; ++iib)
100 if (isa<PHINode>(iib))
101 worklist.push_front(&*iib);
102
103 // Demote phi nodes
104 NumPhisDemoted += worklist.size();
105 for (std::list<Instruction*>::iterator ilb = worklist.begin(),
106 ile = worklist.end(); ilb != ile; ++ilb)
107 DemotePHIToStack(cast<PHINode>(*ilb), AllocaInsertionPoint);
108
Andrew Lenharth183119c2005-11-10 01:58:38 +0000109 return true;
110 }
111 return false;
112 }
113 };
114
Devang Patel19974732007-05-03 01:11:54 +0000115 char RegToMem::ID = 0;
Chris Lattner7f8897f2006-08-27 22:42:52 +0000116 RegisterPass<RegToMem> X("reg2mem", "Demote all values to stack slots");
Andrew Lenharth183119c2005-11-10 01:58:38 +0000117}
118
119// createDemoteRegisterToMemory - Provide an entry point to create this pass.
120//
Andrew Lenharth7c0c5672005-11-22 22:14:23 +0000121const PassInfo *llvm::DemoteRegisterToMemoryID = X.getPassInfo();
Andrew Lenharth183119c2005-11-10 01:58:38 +0000122FunctionPass *llvm::createDemoteRegisterToMemoryPass() {
123 return new RegToMem();
124}