blob: e1ed060bfd2add19c4e800126725d9f3d1655d7c [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"
Owen Andersonfa5cbd62009-07-03 19:42:02 +000024#include "llvm/LLVMContext.h"
Andrew Lenharth183119c2005-11-10 01:58:38 +000025#include "llvm/Module.h"
26#include "llvm/BasicBlock.h"
27#include "llvm/Instructions.h"
28#include "llvm/ADT/Statistic.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 {
Chris Lattner3e8b6632009-09-02 06:11:42 +000037 struct RegToMem : public FunctionPass {
Nick Lewyckyecd94c82007-05-06 13:37:16 +000038 static char ID; // Pass identification, replacement for typeid
Owen Anderson90c579d2010-08-06 18:33:48 +000039 RegToMem() : FunctionPass(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
Chris Lattner20a2faa2009-09-02 06:15:37 +000046 bool valueEscapes(const Instruction *Inst) const {
47 const BasicBlock *BB = Inst->getParent();
Gabor Greif60ad7812010-03-25 23:06:16 +000048 for (Value::const_use_iterator UI = Inst->use_begin(),E = Inst->use_end();
Gabor Greif67894a32010-04-14 16:48:56 +000049 UI != E; ++UI) {
50 const Instruction *I = cast<Instruction>(*UI);
51 if (I->getParent() != BB || isa<PHINode>(I))
Andrew Lenharth183119c2005-11-10 01:58:38 +000052 return true;
Gabor Greif67894a32010-04-14 16:48:56 +000053 }
Andrew Lenharth183119c2005-11-10 01:58:38 +000054 return false;
55 }
56
Chris Lattner20a2faa2009-09-02 06:15:37 +000057 virtual bool runOnFunction(Function &F);
Andrew Lenharth183119c2005-11-10 01:58:38 +000058 };
Andrew Lenharth183119c2005-11-10 01:58:38 +000059}
Dan Gohman844731a2008-05-13 00:00:25 +000060
61char RegToMem::ID = 0;
Owen Anderson2ab36d32010-10-12 19:48:12 +000062INITIALIZE_PASS_BEGIN(RegToMem, "reg2mem", "Demote all values to stack slots",
Owen Andersonce665bd2010-10-07 22:25:06 +000063 false, false)
Owen Anderson2ab36d32010-10-12 19:48:12 +000064INITIALIZE_PASS_DEPENDENCY(BreakCriticalEdges)
65INITIALIZE_PASS_END(RegToMem, "reg2mem", "Demote all values to stack slots",
66 false, false)
Chris Lattner20a2faa2009-09-02 06:15:37 +000067
68bool RegToMem::runOnFunction(Function &F) {
69 if (F.isDeclaration())
70 return false;
71
72 // Insert all new allocas into entry block.
73 BasicBlock *BBEntry = &F.getEntryBlock();
74 assert(pred_begin(BBEntry) == pred_end(BBEntry) &&
75 "Entry block to function must not have predecessors!");
76
77 // Find first non-alloca instruction and create insertion point. This is
78 // safe if block is well-formed: it always have terminator, otherwise
79 // we'll get and assertion.
80 BasicBlock::iterator I = BBEntry->begin();
81 while (isa<AllocaInst>(I)) ++I;
82
83 CastInst *AllocaInsertionPoint =
84 new BitCastInst(Constant::getNullValue(Type::getInt32Ty(F.getContext())),
85 Type::getInt32Ty(F.getContext()),
86 "reg2mem alloca point", I);
87
88 // Find the escaped instructions. But don't create stack slots for
89 // allocas in entry block.
90 std::list<Instruction*> WorkList;
91 for (Function::iterator ibb = F.begin(), ibe = F.end();
92 ibb != ibe; ++ibb)
93 for (BasicBlock::iterator iib = ibb->begin(), iie = ibb->end();
94 iib != iie; ++iib) {
95 if (!(isa<AllocaInst>(iib) && iib->getParent() == BBEntry) &&
96 valueEscapes(iib)) {
97 WorkList.push_front(&*iib);
98 }
99 }
100
101 // Demote escaped instructions
102 NumRegsDemoted += WorkList.size();
103 for (std::list<Instruction*>::iterator ilb = WorkList.begin(),
104 ile = WorkList.end(); ilb != ile; ++ilb)
105 DemoteRegToStack(**ilb, false, AllocaInsertionPoint);
106
107 WorkList.clear();
108
109 // Find all phi's
110 for (Function::iterator ibb = F.begin(), ibe = F.end();
111 ibb != ibe; ++ibb)
112 for (BasicBlock::iterator iib = ibb->begin(), iie = ibb->end();
113 iib != iie; ++iib)
114 if (isa<PHINode>(iib))
115 WorkList.push_front(&*iib);
116
117 // Demote phi nodes
118 NumPhisDemoted += WorkList.size();
119 for (std::list<Instruction*>::iterator ilb = WorkList.begin(),
120 ile = WorkList.end(); ilb != ile; ++ilb)
121 DemotePHIToStack(cast<PHINode>(*ilb), AllocaInsertionPoint);
122
123 return true;
124}
125
126
Andrew Lenharth183119c2005-11-10 01:58:38 +0000127// createDemoteRegisterToMemory - Provide an entry point to create this pass.
128//
Owen Anderson90c579d2010-08-06 18:33:48 +0000129char &llvm::DemoteRegisterToMemoryID = RegToMem::ID;
Andrew Lenharth183119c2005-11-10 01:58:38 +0000130FunctionPass *llvm::createDemoteRegisterToMemoryPass() {
131 return new RegToMem();
132}