blob: c1dacb6cb89c0299fc2b75a28c106b2ac4a79bd0 [file] [log] [blame]
Chris Lattnerb74e83c2002-12-16 16:15:28 +00001//===-- RegAllocLocal.cpp - A BasicBlock generic register allocator -------===//
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// 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.
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattnerb74e83c2002-12-16 16:15:28 +00009//
10// This register allocator allocates registers to a basic block at a time,
11// attempting to keep values in registers and reusing registers as appropriate.
12//
13//===----------------------------------------------------------------------===//
14
Chris Lattner4cc662b2003-08-03 21:47:31 +000015#define DEBUG_TYPE "regalloc"
Evan Chengddee8422006-11-15 20:55:15 +000016#include "llvm/BasicBlock.h"
Chris Lattner580f9be2002-12-28 20:40:43 +000017#include "llvm/CodeGen/MachineFunctionPass.h"
Chris Lattnerb74e83c2002-12-16 16:15:28 +000018#include "llvm/CodeGen/MachineInstr.h"
Chris Lattnereb24db92002-12-28 21:08:26 +000019#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000020#include "llvm/CodeGen/MachineRegisterInfo.h"
Evan Cheng22ff3ee2008-02-06 08:00:32 +000021#include "llvm/CodeGen/Passes.h"
Jim Laskeyeb577ba2006-08-02 12:30:23 +000022#include "llvm/CodeGen/RegAllocRegistry.h"
Chris Lattner3501fea2003-01-14 22:00:31 +000023#include "llvm/Target/TargetInstrInfo.h"
Chris Lattnerb74e83c2002-12-16 16:15:28 +000024#include "llvm/Target/TargetMachine.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000025#include "llvm/Support/CommandLine.h"
26#include "llvm/Support/Debug.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000027#include "llvm/Support/Compiler.h"
Owen Anderson743a1e62008-07-10 01:56:35 +000028#include "llvm/ADT/DenseMap.h"
Chris Lattner94c002a2007-02-01 05:32:05 +000029#include "llvm/ADT/IndexedMap.h"
Evan Chengddee8422006-11-15 20:55:15 +000030#include "llvm/ADT/SmallVector.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000031#include "llvm/ADT/Statistic.h"
Evan Cheng2fc628d2008-02-06 19:16:53 +000032#include "llvm/ADT/STLExtras.h"
Chris Lattner27f29162004-10-26 15:35:58 +000033#include <algorithm>
Evan Cheng10883172008-04-02 17:23:50 +000034#include <map>
Chris Lattneref09c632004-01-31 21:27:19 +000035using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000036
Chris Lattnercd3245a2006-12-19 22:41:21 +000037STATISTIC(NumStores, "Number of stores added");
38STATISTIC(NumLoads , "Number of loads added");
Jim Laskey13ec7022006-08-01 14:21:23 +000039
Dan Gohman844731a2008-05-13 00:00:25 +000040static RegisterRegAlloc
41 localRegAlloc("local", " local register allocator",
42 createLocalRegisterAllocator);
43
Chris Lattnercd3245a2006-12-19 22:41:21 +000044namespace {
Bill Wendlinge23e00d2007-05-08 19:02:46 +000045 class VISIBILITY_HIDDEN RALocal : public MachineFunctionPass {
Devang Patel794fd752007-05-01 21:15:47 +000046 public:
Devang Patel19974732007-05-03 01:11:54 +000047 static char ID;
Bill Wendlinge23e00d2007-05-08 19:02:46 +000048 RALocal() : MachineFunctionPass((intptr_t)&ID) {}
Devang Patel794fd752007-05-01 21:15:47 +000049 private:
Chris Lattner580f9be2002-12-28 20:40:43 +000050 const TargetMachine *TM;
Chris Lattnerb74e83c2002-12-16 16:15:28 +000051 MachineFunction *MF;
Dan Gohman6f0d0242008-02-10 18:45:23 +000052 const TargetRegisterInfo *TRI;
Owen Anderson6425f8b2008-01-07 01:35:56 +000053 const TargetInstrInfo *TII;
Chris Lattnerff863ba2002-12-25 05:05:46 +000054
Chris Lattnerb8822ad2003-08-04 23:36:39 +000055 // StackSlotForVirtReg - Maps virtual regs to the frame index where these
56 // values are spilled.
Chris Lattner580f9be2002-12-28 20:40:43 +000057 std::map<unsigned, int> StackSlotForVirtReg;
Chris Lattnerb74e83c2002-12-16 16:15:28 +000058
59 // Virt2PhysRegMap - This map contains entries for each virtual register
Alkis Evlogimenos4d0d8642004-02-25 21:55:45 +000060 // that is currently available in a physical register.
Chris Lattner94c002a2007-02-01 05:32:05 +000061 IndexedMap<unsigned, VirtReg2IndexFunctor> Virt2PhysRegMap;
Chris Lattnerecea5632004-02-09 02:12:04 +000062
63 unsigned &getVirt2PhysRegMapSlot(unsigned VirtReg) {
Alkis Evlogimenos4d0d8642004-02-25 21:55:45 +000064 return Virt2PhysRegMap[VirtReg];
Chris Lattnerecea5632004-02-09 02:12:04 +000065 }
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +000066
Chris Lattner64667b62004-02-09 01:26:13 +000067 // PhysRegsUsed - This array is effectively a map, containing entries for
68 // each physical register that currently has a value (ie, it is in
69 // Virt2PhysRegMap). The value mapped to is the virtual register
70 // corresponding to the physical register (the inverse of the
71 // Virt2PhysRegMap), or 0. The value is set to 0 if this register is pinned
Chris Lattner45d57882006-09-08 19:03:30 +000072 // because it is used by a future instruction, and to -2 if it is not
73 // allocatable. If the entry for a physical register is -1, then the
74 // physical register is "not in the map".
Chris Lattnerb74e83c2002-12-16 16:15:28 +000075 //
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +000076 std::vector<int> PhysRegsUsed;
Chris Lattnerb74e83c2002-12-16 16:15:28 +000077
78 // PhysRegsUseOrder - This contains a list of the physical registers that
79 // currently have a virtual register value in them. This list provides an
80 // ordering of registers, imposing a reallocation order. This list is only
81 // used if all registers are allocated and we have to spill one, in which
82 // case we spill the least recently used register. Entries at the front of
83 // the list are the least recently used registers, entries at the back are
84 // the most recently used.
85 //
86 std::vector<unsigned> PhysRegsUseOrder;
87
Evan Cheng839b7592008-01-17 02:08:17 +000088 // Virt2LastUseMap - This maps each virtual register to its last use
89 // (MachineInstr*, operand index pair).
90 IndexedMap<std::pair<MachineInstr*, unsigned>, VirtReg2IndexFunctor>
91 Virt2LastUseMap;
92
93 std::pair<MachineInstr*,unsigned>& getVirtRegLastUse(unsigned Reg) {
Dan Gohman6f0d0242008-02-10 18:45:23 +000094 assert(TargetRegisterInfo::isVirtualRegister(Reg) && "Illegal VirtReg!");
Evan Cheng839b7592008-01-17 02:08:17 +000095 return Virt2LastUseMap[Reg];
96 }
97
Chris Lattner91a452b2003-01-13 00:25:40 +000098 // VirtRegModified - This bitset contains information about which virtual
99 // registers need to be spilled back to memory when their registers are
100 // scavenged. If a virtual register has simply been rematerialized, there
101 // is no reason to spill it to memory when we need the register back.
Chris Lattner82bee0f2002-12-18 08:14:26 +0000102 //
Evan Cheng644340a2008-01-17 00:35:26 +0000103 BitVector VirtRegModified;
Owen Anderson491fccc2008-07-08 22:24:50 +0000104
105 // UsedInMultipleBlocks - Tracks whether a particular register is used in
106 // more than one block.
107 BitVector UsedInMultipleBlocks;
Chris Lattner91a452b2003-01-13 00:25:40 +0000108
109 void markVirtRegModified(unsigned Reg, bool Val = true) {
Dan Gohman6f0d0242008-02-10 18:45:23 +0000110 assert(TargetRegisterInfo::isVirtualRegister(Reg) && "Illegal VirtReg!");
111 Reg -= TargetRegisterInfo::FirstVirtualRegister;
Evan Cheng644340a2008-01-17 00:35:26 +0000112 if (Val)
113 VirtRegModified.set(Reg);
114 else
115 VirtRegModified.reset(Reg);
Chris Lattner91a452b2003-01-13 00:25:40 +0000116 }
117
118 bool isVirtRegModified(unsigned Reg) const {
Dan Gohman6f0d0242008-02-10 18:45:23 +0000119 assert(TargetRegisterInfo::isVirtualRegister(Reg) && "Illegal VirtReg!");
120 assert(Reg - TargetRegisterInfo::FirstVirtualRegister < VirtRegModified.size()
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000121 && "Illegal virtual register!");
Dan Gohman6f0d0242008-02-10 18:45:23 +0000122 return VirtRegModified[Reg - TargetRegisterInfo::FirstVirtualRegister];
Chris Lattner91a452b2003-01-13 00:25:40 +0000123 }
Chris Lattner82bee0f2002-12-18 08:14:26 +0000124
Evan Cheng7ac19af2007-06-26 21:05:13 +0000125 void AddToPhysRegsUseOrder(unsigned Reg) {
126 std::vector<unsigned>::iterator It =
127 std::find(PhysRegsUseOrder.begin(), PhysRegsUseOrder.end(), Reg);
128 if (It != PhysRegsUseOrder.end())
129 PhysRegsUseOrder.erase(It);
130 PhysRegsUseOrder.push_back(Reg);
131 }
132
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000133 void MarkPhysRegRecentlyUsed(unsigned Reg) {
Chris Lattner5e503492006-09-03 07:15:37 +0000134 if (PhysRegsUseOrder.empty() ||
135 PhysRegsUseOrder.back() == Reg) return; // Already most recently used
Chris Lattner0eb172c2002-12-24 00:04:55 +0000136
137 for (unsigned i = PhysRegsUseOrder.size(); i != 0; --i)
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000138 if (areRegsEqual(Reg, PhysRegsUseOrder[i-1])) {
139 unsigned RegMatch = PhysRegsUseOrder[i-1]; // remove from middle
140 PhysRegsUseOrder.erase(PhysRegsUseOrder.begin()+i-1);
141 // Add it to the end of the list
142 PhysRegsUseOrder.push_back(RegMatch);
143 if (RegMatch == Reg)
144 return; // Found an exact match, exit early
145 }
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000146 }
147
148 public:
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000149 virtual const char *getPassName() const {
150 return "Local Register Allocator";
151 }
152
Chris Lattner91a452b2003-01-13 00:25:40 +0000153 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattner91a452b2003-01-13 00:25:40 +0000154 AU.addRequiredID(PHIEliminationID);
Alkis Evlogimenos4c080862003-12-18 22:40:24 +0000155 AU.addRequiredID(TwoAddressInstructionPassID);
Chris Lattner91a452b2003-01-13 00:25:40 +0000156 MachineFunctionPass::getAnalysisUsage(AU);
157 }
158
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000159 private:
160 /// runOnMachineFunction - Register allocate the whole function
161 bool runOnMachineFunction(MachineFunction &Fn);
162
163 /// AllocateBasicBlock - Register allocate the specified basic block.
164 void AllocateBasicBlock(MachineBasicBlock &MBB);
165
Chris Lattner82bee0f2002-12-18 08:14:26 +0000166
Chris Lattner82bee0f2002-12-18 08:14:26 +0000167 /// areRegsEqual - This method returns true if the specified registers are
168 /// related to each other. To do this, it checks to see if they are equal
169 /// or if the first register is in the alias set of the second register.
170 ///
171 bool areRegsEqual(unsigned R1, unsigned R2) const {
172 if (R1 == R2) return true;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000173 for (const unsigned *AliasSet = TRI->getAliasSet(R2);
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000174 *AliasSet; ++AliasSet) {
175 if (*AliasSet == R1) return true;
176 }
Chris Lattner82bee0f2002-12-18 08:14:26 +0000177 return false;
178 }
179
Chris Lattner580f9be2002-12-28 20:40:43 +0000180 /// getStackSpaceFor - This returns the frame index of the specified virtual
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000181 /// register on the stack, allocating space if necessary.
Chris Lattner580f9be2002-12-28 20:40:43 +0000182 int getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass *RC);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000183
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000184 /// removePhysReg - This method marks the specified physical register as no
185 /// longer being in use.
186 ///
Chris Lattner82bee0f2002-12-18 08:14:26 +0000187 void removePhysReg(unsigned PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000188
189 /// spillVirtReg - This method spills the value specified by PhysReg into
190 /// the virtual register slot specified by VirtReg. It then updates the RA
191 /// data structures to indicate the fact that PhysReg is now available.
192 ///
Chris Lattner688c8252004-02-22 19:08:15 +0000193 void spillVirtReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI,
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000194 unsigned VirtReg, unsigned PhysReg);
195
Chris Lattnerc21be922002-12-16 17:44:42 +0000196 /// spillPhysReg - This method spills the specified physical register into
Chris Lattner128c2aa2003-08-17 18:01:15 +0000197 /// the virtual register slot associated with it. If OnlyVirtRegs is set to
198 /// true, then the request is ignored if the physical register does not
199 /// contain a virtual register.
Chris Lattner91a452b2003-01-13 00:25:40 +0000200 ///
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000201 void spillPhysReg(MachineBasicBlock &MBB, MachineInstr *I,
Chris Lattner128c2aa2003-08-17 18:01:15 +0000202 unsigned PhysReg, bool OnlyVirtRegs = false);
Chris Lattnerc21be922002-12-16 17:44:42 +0000203
Chris Lattner91a452b2003-01-13 00:25:40 +0000204 /// assignVirtToPhysReg - This method updates local state so that we know
205 /// that PhysReg is the proper container for VirtReg now. The physical
206 /// register must not be used for anything else when this is called.
207 ///
208 void assignVirtToPhysReg(unsigned VirtReg, unsigned PhysReg);
209
Chris Lattnerae640432002-12-17 02:50:10 +0000210 /// isPhysRegAvailable - Return true if the specified physical register is
211 /// free and available for use. This also includes checking to see if
212 /// aliased registers are all free...
213 ///
Chris Lattner82bee0f2002-12-18 08:14:26 +0000214 bool isPhysRegAvailable(unsigned PhysReg) const;
Chris Lattner91a452b2003-01-13 00:25:40 +0000215
216 /// getFreeReg - Look to see if there is a free register available in the
217 /// specified register class. If not, return 0.
218 ///
219 unsigned getFreeReg(const TargetRegisterClass *RC);
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000220
Chris Lattner91a452b2003-01-13 00:25:40 +0000221 /// getReg - Find a physical register to hold the specified virtual
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000222 /// register. If all compatible physical registers are used, this method
223 /// spills the last used virtual register to the stack, and uses that
224 /// register.
225 ///
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000226 unsigned getReg(MachineBasicBlock &MBB, MachineInstr *MI,
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000227 unsigned VirtReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000228
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000229 /// reloadVirtReg - This method transforms the specified specified virtual
230 /// register use to refer to a physical register. This method may do this
231 /// in one of several ways: if the register is available in a physical
232 /// register already, it uses that physical register. If the value is not
233 /// in a physical register, and if there are physical registers available,
234 /// it loads it into a register. If register pressure is high, and it is
235 /// possible, it tries to fold the load of the virtual register into the
236 /// instruction itself. It avoids doing this if register pressure is low to
237 /// improve the chance that subsequent instructions can use the reloaded
238 /// value. This method returns the modified instruction.
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000239 ///
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000240 MachineInstr *reloadVirtReg(MachineBasicBlock &MBB, MachineInstr *MI,
241 unsigned OpNum);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000242
Owen Anderson9094db12008-07-09 20:14:53 +0000243 /// ComputeLocalLiveness - Computes liveness of registers within a basic
244 /// block, setting the killed/dead flags as appropriate.
245 void ComputeLocalLiveness(MachineBasicBlock& MBB);
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000246
247 void reloadPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator &I,
248 unsigned PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000249 };
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000250 char RALocal::ID = 0;
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000251}
252
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000253/// getStackSpaceFor - This allocates space for the specified virtual register
254/// to be held on the stack.
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000255int RALocal::getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass *RC) {
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000256 // Find the location Reg would belong...
Dan Gohman0383bc02008-07-09 19:51:00 +0000257 std::map<unsigned, int>::iterator I = StackSlotForVirtReg.find(VirtReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000258
Dan Gohman0383bc02008-07-09 19:51:00 +0000259 if (I != StackSlotForVirtReg.end())
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000260 return I->second; // Already has space allocated?
261
Chris Lattner580f9be2002-12-28 20:40:43 +0000262 // Allocate a new stack object for this spill location...
Chris Lattner26eb14b2004-08-15 22:02:22 +0000263 int FrameIdx = MF->getFrameInfo()->CreateStackObject(RC->getSize(),
264 RC->getAlignment());
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000265
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000266 // Assign the slot...
Chris Lattner580f9be2002-12-28 20:40:43 +0000267 StackSlotForVirtReg.insert(I, std::make_pair(VirtReg, FrameIdx));
268 return FrameIdx;
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000269}
270
Chris Lattnerae640432002-12-17 02:50:10 +0000271
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000272/// removePhysReg - This method marks the specified physical register as no
Chris Lattner82bee0f2002-12-18 08:14:26 +0000273/// longer being in use.
274///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000275void RALocal::removePhysReg(unsigned PhysReg) {
Chris Lattner64667b62004-02-09 01:26:13 +0000276 PhysRegsUsed[PhysReg] = -1; // PhyReg no longer used
Chris Lattner82bee0f2002-12-18 08:14:26 +0000277
278 std::vector<unsigned>::iterator It =
279 std::find(PhysRegsUseOrder.begin(), PhysRegsUseOrder.end(), PhysReg);
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000280 if (It != PhysRegsUseOrder.end())
281 PhysRegsUseOrder.erase(It);
Chris Lattner82bee0f2002-12-18 08:14:26 +0000282}
283
Chris Lattner91a452b2003-01-13 00:25:40 +0000284
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000285/// spillVirtReg - This method spills the value specified by PhysReg into the
286/// virtual register slot specified by VirtReg. It then updates the RA data
287/// structures to indicate the fact that PhysReg is now available.
288///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000289void RALocal::spillVirtReg(MachineBasicBlock &MBB,
290 MachineBasicBlock::iterator I,
291 unsigned VirtReg, unsigned PhysReg) {
Chris Lattner8c819452003-08-05 04:13:58 +0000292 assert(VirtReg && "Spilling a physical register is illegal!"
Chris Lattnerd9ac6a72003-08-05 00:49:09 +0000293 " Must not have appropriate kill for the register or use exists beyond"
294 " the intended one.");
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000295 DOUT << " Spilling register " << TRI->getName(PhysReg)
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000296 << " containing %reg" << VirtReg;
Owen Andersonf6372aa2008-01-01 21:11:32 +0000297
Evan Cheng839b7592008-01-17 02:08:17 +0000298 if (!isVirtRegModified(VirtReg)) {
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000299 DOUT << " which has not been modified, so no store necessary!";
Evan Cheng839b7592008-01-17 02:08:17 +0000300 std::pair<MachineInstr*, unsigned> &LastUse = getVirtRegLastUse(VirtReg);
301 if (LastUse.first)
302 LastUse.first->getOperand(LastUse.second).setIsKill();
Evan Cheng2fc628d2008-02-06 19:16:53 +0000303 } else {
304 // Otherwise, there is a virtual register corresponding to this physical
305 // register. We only need to spill it into its stack slot if it has been
306 // modified.
Chris Lattner84bc5422007-12-31 04:13:23 +0000307 const TargetRegisterClass *RC = MF->getRegInfo().getRegClass(VirtReg);
Chris Lattnerd9ac6a72003-08-05 00:49:09 +0000308 int FrameIndex = getStackSpaceFor(VirtReg, RC);
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000309 DOUT << " to stack slot #" << FrameIndex;
Evan Cheng2fc628d2008-02-06 19:16:53 +0000310 // If the instruction reads the register that's spilled, (e.g. this can
311 // happen if it is a move to a physical register), then the spill
312 // instruction is not a kill.
Evan Cheng6130f662008-03-05 00:59:57 +0000313 bool isKill = !(I != MBB.end() && I->readsRegister(PhysReg));
Evan Cheng431bfcb2008-02-11 08:30:52 +0000314 TII->storeRegToStackSlot(MBB, I, PhysReg, isKill, FrameIndex, RC);
Alkis Evlogimenos2acef2d2004-02-19 06:19:09 +0000315 ++NumStores; // Update statistics
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000316 }
Chris Lattnerecea5632004-02-09 02:12:04 +0000317
318 getVirt2PhysRegMapSlot(VirtReg) = 0; // VirtReg no longer available
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000319
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000320 DOUT << "\n";
Chris Lattner82bee0f2002-12-18 08:14:26 +0000321 removePhysReg(PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000322}
323
Chris Lattnerae640432002-12-17 02:50:10 +0000324
Chris Lattner91a452b2003-01-13 00:25:40 +0000325/// spillPhysReg - This method spills the specified physical register into the
Chris Lattner128c2aa2003-08-17 18:01:15 +0000326/// virtual register slot associated with it. If OnlyVirtRegs is set to true,
327/// then the request is ignored if the physical register does not contain a
328/// virtual register.
Chris Lattner91a452b2003-01-13 00:25:40 +0000329///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000330void RALocal::spillPhysReg(MachineBasicBlock &MBB, MachineInstr *I,
331 unsigned PhysReg, bool OnlyVirtRegs) {
Chris Lattner64667b62004-02-09 01:26:13 +0000332 if (PhysRegsUsed[PhysReg] != -1) { // Only spill it if it's used!
Chris Lattner45d57882006-09-08 19:03:30 +0000333 assert(PhysRegsUsed[PhysReg] != -2 && "Non allocable reg used!");
Chris Lattner64667b62004-02-09 01:26:13 +0000334 if (PhysRegsUsed[PhysReg] || !OnlyVirtRegs)
335 spillVirtReg(MBB, I, PhysRegsUsed[PhysReg], PhysReg);
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000336 } else {
Chris Lattner91a452b2003-01-13 00:25:40 +0000337 // If the selected register aliases any other registers, we must make
Chris Lattner45d57882006-09-08 19:03:30 +0000338 // sure that one of the aliases isn't alive.
Dan Gohman6f0d0242008-02-10 18:45:23 +0000339 for (const unsigned *AliasSet = TRI->getAliasSet(PhysReg);
Chris Lattner64667b62004-02-09 01:26:13 +0000340 *AliasSet; ++AliasSet)
Chris Lattner45d57882006-09-08 19:03:30 +0000341 if (PhysRegsUsed[*AliasSet] != -1 && // Spill aliased register.
342 PhysRegsUsed[*AliasSet] != -2) // If allocatable.
Evan Cheng7ac19af2007-06-26 21:05:13 +0000343 if (PhysRegsUsed[*AliasSet])
344 spillVirtReg(MBB, I, PhysRegsUsed[*AliasSet], *AliasSet);
Chris Lattner91a452b2003-01-13 00:25:40 +0000345 }
346}
347
348
349/// assignVirtToPhysReg - This method updates local state so that we know
350/// that PhysReg is the proper container for VirtReg now. The physical
351/// register must not be used for anything else when this is called.
352///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000353void RALocal::assignVirtToPhysReg(unsigned VirtReg, unsigned PhysReg) {
Chris Lattner64667b62004-02-09 01:26:13 +0000354 assert(PhysRegsUsed[PhysReg] == -1 && "Phys reg already assigned!");
Chris Lattner91a452b2003-01-13 00:25:40 +0000355 // Update information to note the fact that this register was just used, and
356 // it holds VirtReg.
357 PhysRegsUsed[PhysReg] = VirtReg;
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000358 getVirt2PhysRegMapSlot(VirtReg) = PhysReg;
Evan Cheng7ac19af2007-06-26 21:05:13 +0000359 AddToPhysRegsUseOrder(PhysReg); // New use of PhysReg
Chris Lattner91a452b2003-01-13 00:25:40 +0000360}
361
362
Chris Lattnerae640432002-12-17 02:50:10 +0000363/// isPhysRegAvailable - Return true if the specified physical register is free
364/// and available for use. This also includes checking to see if aliased
365/// registers are all free...
366///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000367bool RALocal::isPhysRegAvailable(unsigned PhysReg) const {
Chris Lattner64667b62004-02-09 01:26:13 +0000368 if (PhysRegsUsed[PhysReg] != -1) return false;
Chris Lattnerae640432002-12-17 02:50:10 +0000369
370 // If the selected register aliases any other allocated registers, it is
371 // not free!
Dan Gohman6f0d0242008-02-10 18:45:23 +0000372 for (const unsigned *AliasSet = TRI->getAliasSet(PhysReg);
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000373 *AliasSet; ++AliasSet)
Evan Chengbcfa1ca2008-02-22 20:30:53 +0000374 if (PhysRegsUsed[*AliasSet] >= 0) // Aliased register in use?
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000375 return false; // Can't use this reg then.
Chris Lattnerae640432002-12-17 02:50:10 +0000376 return true;
377}
378
379
Chris Lattner91a452b2003-01-13 00:25:40 +0000380/// getFreeReg - Look to see if there is a free register available in the
381/// specified register class. If not, return 0.
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000382///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000383unsigned RALocal::getFreeReg(const TargetRegisterClass *RC) {
Chris Lattner580f9be2002-12-28 20:40:43 +0000384 // Get iterators defining the range of registers that are valid to allocate in
385 // this class, which also specifies the preferred allocation order.
386 TargetRegisterClass::iterator RI = RC->allocation_order_begin(*MF);
387 TargetRegisterClass::iterator RE = RC->allocation_order_end(*MF);
Chris Lattnerae640432002-12-17 02:50:10 +0000388
Chris Lattner91a452b2003-01-13 00:25:40 +0000389 for (; RI != RE; ++RI)
390 if (isPhysRegAvailable(*RI)) { // Is reg unused?
391 assert(*RI != 0 && "Cannot use register!");
392 return *RI; // Found an unused register!
393 }
394 return 0;
395}
396
397
Chris Lattner91a452b2003-01-13 00:25:40 +0000398/// getReg - Find a physical register to hold the specified virtual
399/// register. If all compatible physical registers are used, this method spills
400/// the last used virtual register to the stack, and uses that register.
401///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000402unsigned RALocal::getReg(MachineBasicBlock &MBB, MachineInstr *I,
403 unsigned VirtReg) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000404 const TargetRegisterClass *RC = MF->getRegInfo().getRegClass(VirtReg);
Chris Lattner91a452b2003-01-13 00:25:40 +0000405
406 // First check to see if we have a free register of the requested type...
407 unsigned PhysReg = getFreeReg(RC);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000408
Chris Lattnerae640432002-12-17 02:50:10 +0000409 // If we didn't find an unused register, scavenge one now!
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000410 if (PhysReg == 0) {
Chris Lattnerc21be922002-12-16 17:44:42 +0000411 assert(!PhysRegsUseOrder.empty() && "No allocated registers??");
Chris Lattnerae640432002-12-17 02:50:10 +0000412
413 // Loop over all of the preallocated registers from the least recently used
414 // to the most recently used. When we find one that is capable of holding
415 // our register, use it.
416 for (unsigned i = 0; PhysReg == 0; ++i) {
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000417 assert(i != PhysRegsUseOrder.size() &&
418 "Couldn't find a register of the appropriate class!");
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000419
Chris Lattnerae640432002-12-17 02:50:10 +0000420 unsigned R = PhysRegsUseOrder[i];
Chris Lattner41822c72003-08-23 23:49:42 +0000421
422 // We can only use this register if it holds a virtual register (ie, it
423 // can be spilled). Do not use it if it is an explicitly allocated
424 // physical register!
Chris Lattner64667b62004-02-09 01:26:13 +0000425 assert(PhysRegsUsed[R] != -1 &&
Chris Lattner41822c72003-08-23 23:49:42 +0000426 "PhysReg in PhysRegsUseOrder, but is not allocated?");
Chris Lattner45d57882006-09-08 19:03:30 +0000427 if (PhysRegsUsed[R] && PhysRegsUsed[R] != -2) {
Chris Lattner41822c72003-08-23 23:49:42 +0000428 // If the current register is compatible, use it.
Chris Lattner3bba0262004-08-15 22:23:09 +0000429 if (RC->contains(R)) {
Chris Lattner41822c72003-08-23 23:49:42 +0000430 PhysReg = R;
431 break;
432 } else {
433 // If one of the registers aliased to the current register is
434 // compatible, use it.
Dan Gohman6f0d0242008-02-10 18:45:23 +0000435 for (const unsigned *AliasIt = TRI->getAliasSet(R);
Chris Lattner5e503492006-09-03 07:15:37 +0000436 *AliasIt; ++AliasIt) {
437 if (RC->contains(*AliasIt) &&
438 // If this is pinned down for some reason, don't use it. For
439 // example, if CL is pinned, and we run across CH, don't use
440 // CH as justification for using scavenging ECX (which will
441 // fail).
Chris Lattner45d57882006-09-08 19:03:30 +0000442 PhysRegsUsed[*AliasIt] != 0 &&
443
444 // Make sure the register is allocatable. Don't allocate SIL on
445 // x86-32.
446 PhysRegsUsed[*AliasIt] != -2) {
Chris Lattner5e503492006-09-03 07:15:37 +0000447 PhysReg = *AliasIt; // Take an aliased register
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000448 break;
449 }
450 }
Chris Lattner41822c72003-08-23 23:49:42 +0000451 }
Chris Lattnerae640432002-12-17 02:50:10 +0000452 }
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000453 }
454
Chris Lattnerae640432002-12-17 02:50:10 +0000455 assert(PhysReg && "Physical register not assigned!?!?");
456
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000457 // At this point PhysRegsUseOrder[i] is the least recently used register of
458 // compatible register class. Spill it to memory and reap its remains.
Chris Lattnerc21be922002-12-16 17:44:42 +0000459 spillPhysReg(MBB, I, PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000460 }
461
462 // Now that we know which register we need to assign this to, do it now!
Chris Lattner91a452b2003-01-13 00:25:40 +0000463 assignVirtToPhysReg(VirtReg, PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000464 return PhysReg;
465}
466
Chris Lattnerae640432002-12-17 02:50:10 +0000467
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000468/// reloadVirtReg - This method transforms the specified specified virtual
469/// register use to refer to a physical register. This method may do this in
470/// one of several ways: if the register is available in a physical register
471/// already, it uses that physical register. If the value is not in a physical
472/// register, and if there are physical registers available, it loads it into a
473/// register. If register pressure is high, and it is possible, it tries to
474/// fold the load of the virtual register into the instruction itself. It
475/// avoids doing this if register pressure is low to improve the chance that
476/// subsequent instructions can use the reloaded value. This method returns the
477/// modified instruction.
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000478///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000479MachineInstr *RALocal::reloadVirtReg(MachineBasicBlock &MBB, MachineInstr *MI,
480 unsigned OpNum) {
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000481 unsigned VirtReg = MI->getOperand(OpNum).getReg();
482
483 // If the virtual register is already available, just update the instruction
484 // and return.
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000485 if (unsigned PR = getVirt2PhysRegMapSlot(VirtReg)) {
Bill Wendling97e3c012008-02-29 18:52:01 +0000486 MarkPhysRegRecentlyUsed(PR); // Already have this value available!
Chris Lattnere53f4a02006-05-04 17:52:23 +0000487 MI->getOperand(OpNum).setReg(PR); // Assign the input register
Bill Wendling97e3c012008-02-29 18:52:01 +0000488 getVirtRegLastUse(VirtReg) = std::make_pair(MI, OpNum);
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000489 return MI;
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000490 }
491
Chris Lattner1e3812c2004-02-17 04:08:37 +0000492 // Otherwise, we need to fold it into the current instruction, or reload it.
493 // If we have registers available to hold the value, use them.
Chris Lattner84bc5422007-12-31 04:13:23 +0000494 const TargetRegisterClass *RC = MF->getRegInfo().getRegClass(VirtReg);
Chris Lattner1e3812c2004-02-17 04:08:37 +0000495 unsigned PhysReg = getFreeReg(RC);
Chris Lattner11390e72004-02-17 08:09:40 +0000496 int FrameIndex = getStackSpaceFor(VirtReg, RC);
Chris Lattner1e3812c2004-02-17 04:08:37 +0000497
Chris Lattner11390e72004-02-17 08:09:40 +0000498 if (PhysReg) { // Register is available, allocate it!
499 assignVirtToPhysReg(VirtReg, PhysReg);
500 } else { // No registers available.
Evan Cheng27240c72008-02-07 19:46:55 +0000501 // Force some poor hapless value out of the register file to
Chris Lattner1e3812c2004-02-17 04:08:37 +0000502 // make room for the new register, and reload it.
503 PhysReg = getReg(MBB, MI, VirtReg);
504 }
505
Chris Lattner91a452b2003-01-13 00:25:40 +0000506 markVirtRegModified(VirtReg, false); // Note that this reg was just reloaded
507
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000508 DOUT << " Reloading %reg" << VirtReg << " into "
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000509 << TRI->getName(PhysReg) << "\n";
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000510
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000511 // Add move instruction(s)
Owen Andersonf6372aa2008-01-01 21:11:32 +0000512 TII->loadRegFromStackSlot(MBB, MI, PhysReg, FrameIndex, RC);
Alkis Evlogimenos2acef2d2004-02-19 06:19:09 +0000513 ++NumLoads; // Update statistics
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000514
Chris Lattner84bc5422007-12-31 04:13:23 +0000515 MF->getRegInfo().setPhysRegUsed(PhysReg);
Chris Lattnere53f4a02006-05-04 17:52:23 +0000516 MI->getOperand(OpNum).setReg(PhysReg); // Assign the input register
Evan Cheng839b7592008-01-17 02:08:17 +0000517 getVirtRegLastUse(VirtReg) = std::make_pair(MI, OpNum);
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000518 return MI;
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000519}
520
Evan Cheng7ac19af2007-06-26 21:05:13 +0000521/// isReadModWriteImplicitKill - True if this is an implicit kill for a
522/// read/mod/write register, i.e. update partial register.
523static bool isReadModWriteImplicitKill(MachineInstr *MI, unsigned Reg) {
524 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
525 MachineOperand& MO = MI->getOperand(i);
526 if (MO.isRegister() && MO.getReg() == Reg && MO.isImplicit() &&
527 MO.isDef() && !MO.isDead())
528 return true;
529 }
530 return false;
531}
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000532
Evan Cheng7ac19af2007-06-26 21:05:13 +0000533/// isReadModWriteImplicitDef - True if this is an implicit def for a
534/// read/mod/write register, i.e. update partial register.
535static bool isReadModWriteImplicitDef(MachineInstr *MI, unsigned Reg) {
536 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
537 MachineOperand& MO = MI->getOperand(i);
538 if (MO.isRegister() && MO.getReg() == Reg && MO.isImplicit() &&
539 !MO.isDef() && MO.isKill())
540 return true;
541 }
542 return false;
543}
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000544
Owen Anderson491fccc2008-07-08 22:24:50 +0000545// precedes - Helper function to determine with MachineInstr A
546// precedes MachineInstr B within the same MBB.
547static bool precedes(MachineBasicBlock::iterator A,
548 MachineBasicBlock::iterator B) {
549 if (A == B)
550 return false;
551
552 MachineBasicBlock::iterator I = A->getParent()->begin();
553 while (I != A->getParent()->end()) {
554 if (I == A)
555 return true;
556 else if (I == B)
557 return false;
558
559 ++I;
560 }
561
562 return false;
563}
564
Owen Anderson743a1e62008-07-10 01:56:35 +0000565namespace llvm {
566 template<> struct DenseMapInfo<uint32_t> {
567 static inline uint32_t getEmptyKey() { return ~0; }
568 static inline uint32_t getTombstoneKey() { return ~0 - 1; }
569 static unsigned getHashValue(const uint32_t& Val) { return Val * 37; }
570 static bool isPod() { return true; }
571 static bool isEqual(const uint32_t& LHS, const uint32_t& RHS) {
572 return LHS == RHS;
573 }
574 };
575}
576
Owen Anderson9094db12008-07-09 20:14:53 +0000577/// ComputeLocalLiveness - Computes liveness of registers within a basic
578/// block, setting the killed/dead flags as appropriate.
579void RALocal::ComputeLocalLiveness(MachineBasicBlock& MBB) {
Owen Anderson491fccc2008-07-08 22:24:50 +0000580 MachineRegisterInfo& MRI = MBB.getParent()->getRegInfo();
581 // Keep track of the most recently seen previous use or def of each reg,
582 // so that we can update them with dead/kill markers.
Owen Anderson743a1e62008-07-10 01:56:35 +0000583 DenseMap<unsigned, std::pair<MachineInstr*, unsigned> > LastUseDef;
Owen Anderson491fccc2008-07-08 22:24:50 +0000584 for (MachineBasicBlock::iterator I = MBB.begin(), E = MBB.end();
585 I != E; ++I) {
586 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
587 MachineOperand& MO = I->getOperand(i);
588 // Uses don't trigger any flags, but we need to save
589 // them for later. Also, we have to process these
590 // _before_ processing the defs, since an instr
591 // uses regs before it defs them.
592 if (MO.isReg() && MO.getReg() && MO.isUse())
593 LastUseDef[MO.getReg()] = std::make_pair(I, i);
594 }
595
596 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
597 MachineOperand& MO = I->getOperand(i);
598 // Defs others than 2-addr redefs _do_ trigger flag changes:
599 // - A def followed by a def is dead
600 // - A use followed by a def is a kill
Owen Andersondd4b47c2008-07-09 21:15:10 +0000601 if (MO.isReg() && MO.getReg() && MO.isDef()) {
Owen Anderson743a1e62008-07-10 01:56:35 +0000602 DenseMap<unsigned, std::pair<MachineInstr*, unsigned> >::iterator
Owen Anderson491fccc2008-07-08 22:24:50 +0000603 last = LastUseDef.find(MO.getReg());
604 if (last != LastUseDef.end()) {
Owen Andersonecee36e2008-07-10 01:53:01 +0000605 // Check if this is a two address instruction. If so, then
606 // the def does not kill the use.
607 if (last->second.first == I) {
608 bool isTwoAddr = false;
609 for (unsigned j = i+1, je = I->getDesc().getNumOperands();
610 j < je; ++j) {
611 const MachineOperand &MO2 = I->getOperand(j);
612 if (MO2.isRegister() && MO2.isUse() &&
613 MO2.getReg() == MO.getReg() &&
614 I->getDesc().getOperandConstraint(j, TOI::TIED_TO) == (int)i)
615 isTwoAddr = true;
616 }
617
618 if (isTwoAddr) continue;
Owen Andersondd4b47c2008-07-09 21:15:10 +0000619 }
Owen Andersondd4b47c2008-07-09 21:15:10 +0000620
Owen Anderson491fccc2008-07-08 22:24:50 +0000621 MachineOperand& lastUD =
622 last->second.first->getOperand(last->second.second);
623 if (lastUD.isDef())
624 lastUD.setIsDead(true);
625 else if (lastUD.isUse())
626 lastUD.setIsKill(true);
627 }
628
629 LastUseDef[MO.getReg()] = std::make_pair(I, i);
630 }
631 }
632 }
633
634 // Live-out (of the function) registers contain return values of the function,
635 // so we need to make sure they are alive at return time.
636 if (!MBB.empty() && MBB.back().getDesc().isReturn()) {
637 MachineInstr* Ret = &MBB.back();
638 for (MachineRegisterInfo::liveout_iterator
639 I = MF->getRegInfo().liveout_begin(),
640 E = MF->getRegInfo().liveout_end(); I != E; ++I)
641 if (!Ret->readsRegister(*I)) {
642 Ret->addOperand(MachineOperand::CreateReg(*I, false, true));
643 LastUseDef[*I] = std::make_pair(Ret, Ret->getNumOperands()-1);
644 }
645 }
646
647 // Finally, loop over the final use/def of each reg
648 // in the block and determine if it is dead.
Owen Anderson743a1e62008-07-10 01:56:35 +0000649 for (DenseMap<unsigned, std::pair<MachineInstr*, unsigned> >::iterator
Owen Anderson491fccc2008-07-08 22:24:50 +0000650 I = LastUseDef.begin(), E = LastUseDef.end(); I != E; ++I) {
651 MachineInstr* MI = I->second.first;
652 unsigned idx = I->second.second;
653 MachineOperand& MO = MI->getOperand(idx);
654
655 bool isPhysReg = TargetRegisterInfo::isPhysicalRegister(MO.getReg());
656
657 // A crude approximation of "live-out" calculation
658 bool usedOutsideBlock = isPhysReg ? false :
659 UsedInMultipleBlocks.test(MO.getReg() -
660 TargetRegisterInfo::FirstVirtualRegister);
661 if (!isPhysReg && !usedOutsideBlock)
662 for (MachineRegisterInfo::reg_iterator UI = MRI.reg_begin(MO.getReg()),
663 UE = MRI.reg_end(); UI != UE; ++UI)
664 // Two cases:
665 // - used in another block
666 // - used in the same block before it is defined (loop)
667 if (UI->getParent() != &MBB ||
Owen Anderson0966f0f2008-07-08 23:36:37 +0000668 (MO.isDef() && UI.getOperand().isUse() && precedes(&*UI, MI))) {
Owen Anderson491fccc2008-07-08 22:24:50 +0000669 UsedInMultipleBlocks.set(MO.getReg() -
670 TargetRegisterInfo::FirstVirtualRegister);
671 usedOutsideBlock = true;
672 break;
673 }
674
675 // Physical registers and those that are not live-out of the block
676 // are killed/dead at their last use/def within this block.
677 if (isPhysReg || !usedOutsideBlock) {
678 if (MO.isUse())
679 MO.setIsKill(true);
680 else if (MI->getOperand(idx).isDef())
681 MO.setIsDead(true);
682 }
683 }
Owen Anderson9094db12008-07-09 20:14:53 +0000684}
685
686void RALocal::AllocateBasicBlock(MachineBasicBlock &MBB) {
687 // loop over each instruction
688 MachineBasicBlock::iterator MII = MBB.begin();
689
690 DEBUG(const BasicBlock *LBB = MBB.getBasicBlock();
691 if (LBB) DOUT << "\nStarting RegAlloc of BB: " << LBB->getName());
692
693 // If this is the first basic block in the machine function, add live-in
694 // registers as active.
695 if (&MBB == &*MF->begin() || MBB.isLandingPad()) {
696 for (MachineBasicBlock::livein_iterator I = MBB.livein_begin(),
697 E = MBB.livein_end(); I != E; ++I) {
698 unsigned Reg = *I;
699 MF->getRegInfo().setPhysRegUsed(Reg);
700 PhysRegsUsed[Reg] = 0; // It is free and reserved now
701 AddToPhysRegsUseOrder(Reg);
702 for (const unsigned *AliasSet = TRI->getSubRegisters(Reg);
703 *AliasSet; ++AliasSet) {
704 if (PhysRegsUsed[*AliasSet] != -2) {
705 AddToPhysRegsUseOrder(*AliasSet);
706 PhysRegsUsed[*AliasSet] = 0; // It is free and reserved now
707 MF->getRegInfo().setPhysRegUsed(*AliasSet);
708 }
709 }
710 }
711 }
712
713 ComputeLocalLiveness(MBB);
Owen Anderson491fccc2008-07-08 22:24:50 +0000714
Chris Lattner44500e32006-06-15 22:21:53 +0000715 // Otherwise, sequentially allocate each instruction in the MBB.
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000716 while (MII != MBB.end()) {
717 MachineInstr *MI = MII++;
Chris Lattner749c6f62008-01-07 07:27:27 +0000718 const TargetInstrDesc &TID = MI->getDesc();
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000719 DEBUG(DOUT << "\nStarting RegAlloc of: " << *MI;
720 DOUT << " Regs have values: ";
Dan Gohman6f0d0242008-02-10 18:45:23 +0000721 for (unsigned i = 0; i != TRI->getNumRegs(); ++i)
Chris Lattner45d57882006-09-08 19:03:30 +0000722 if (PhysRegsUsed[i] != -1 && PhysRegsUsed[i] != -2)
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000723 DOUT << "[" << TRI->getName(i)
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000724 << ",%reg" << PhysRegsUsed[i] << "] ";
725 DOUT << "\n");
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000726
Chris Lattnerae640432002-12-17 02:50:10 +0000727 // Loop over the implicit uses, making sure that they are at the head of the
728 // use order list, so they don't get reallocated.
Jim Laskeycd4317e2006-07-21 21:15:20 +0000729 if (TID.ImplicitUses) {
730 for (const unsigned *ImplicitUses = TID.ImplicitUses;
731 *ImplicitUses; ++ImplicitUses)
732 MarkPhysRegRecentlyUsed(*ImplicitUses);
733 }
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000734
Evan Chengddee8422006-11-15 20:55:15 +0000735 SmallVector<unsigned, 8> Kills;
736 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
737 MachineOperand& MO = MI->getOperand(i);
Evan Cheng7ac19af2007-06-26 21:05:13 +0000738 if (MO.isRegister() && MO.isKill()) {
739 if (!MO.isImplicit())
740 Kills.push_back(MO.getReg());
741 else if (!isReadModWriteImplicitKill(MI, MO.getReg()))
742 // These are extra physical register kills when a sub-register
743 // is defined (def of a sub-register is a read/mod/write of the
744 // larger registers). Ignore.
745 Kills.push_back(MO.getReg());
746 }
Evan Chengddee8422006-11-15 20:55:15 +0000747 }
748
Brian Gaeke53b99a02003-08-15 21:19:25 +0000749 // Get the used operands into registers. This has the potential to spill
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000750 // incoming values if we are out of registers. Note that we completely
751 // ignore physical register uses here. We assume that if an explicit
752 // physical register is referenced by the instruction, that it is guaranteed
753 // to be live-in, or the input is badly hosed.
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000754 //
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000755 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
756 MachineOperand& MO = MI->getOperand(i);
757 // here we are looking for only used operands (never def&use)
Evan Chengddee8422006-11-15 20:55:15 +0000758 if (MO.isRegister() && !MO.isDef() && MO.getReg() && !MO.isImplicit() &&
Dan Gohman6f0d0242008-02-10 18:45:23 +0000759 TargetRegisterInfo::isVirtualRegister(MO.getReg()))
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000760 MI = reloadVirtReg(MBB, MI, i);
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000761 }
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000762
Evan Chengddee8422006-11-15 20:55:15 +0000763 // If this instruction is the last user of this register, kill the
Chris Lattner56ddada2004-02-17 17:49:10 +0000764 // value, freeing the register being used, so it doesn't need to be
765 // spilled to memory.
766 //
Evan Chengddee8422006-11-15 20:55:15 +0000767 for (unsigned i = 0, e = Kills.size(); i != e; ++i) {
768 unsigned VirtReg = Kills[i];
Chris Lattner56ddada2004-02-17 17:49:10 +0000769 unsigned PhysReg = VirtReg;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000770 if (TargetRegisterInfo::isVirtualRegister(VirtReg)) {
Chris Lattner56ddada2004-02-17 17:49:10 +0000771 // If the virtual register was never materialized into a register, it
772 // might not be in the map, but it won't hurt to zero it out anyway.
773 unsigned &PhysRegSlot = getVirt2PhysRegMapSlot(VirtReg);
774 PhysReg = PhysRegSlot;
775 PhysRegSlot = 0;
Chris Lattner0c5b8da2006-09-08 20:21:31 +0000776 } else if (PhysRegsUsed[PhysReg] == -2) {
777 // Unallocatable register dead, ignore.
778 continue;
Evan Cheng7ac19af2007-06-26 21:05:13 +0000779 } else {
Evan Cheng76500d52007-10-22 19:42:28 +0000780 assert((!PhysRegsUsed[PhysReg] || PhysRegsUsed[PhysReg] == -1) &&
Evan Cheng7ac19af2007-06-26 21:05:13 +0000781 "Silently clearing a virtual register?");
Chris Lattner56ddada2004-02-17 17:49:10 +0000782 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000783
Chris Lattner56ddada2004-02-17 17:49:10 +0000784 if (PhysReg) {
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000785 DOUT << " Last use of " << TRI->getName(PhysReg)
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000786 << "[%reg" << VirtReg <<"], removing it from live set\n";
Chris Lattner56ddada2004-02-17 17:49:10 +0000787 removePhysReg(PhysReg);
Dan Gohman6f0d0242008-02-10 18:45:23 +0000788 for (const unsigned *AliasSet = TRI->getSubRegisters(PhysReg);
Evan Chengddee8422006-11-15 20:55:15 +0000789 *AliasSet; ++AliasSet) {
790 if (PhysRegsUsed[*AliasSet] != -2) {
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000791 DOUT << " Last use of "
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000792 << TRI->getName(*AliasSet)
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000793 << "[%reg" << VirtReg <<"], removing it from live set\n";
Evan Chengddee8422006-11-15 20:55:15 +0000794 removePhysReg(*AliasSet);
795 }
796 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000797 }
798 }
799
800 // Loop over all of the operands of the instruction, spilling registers that
801 // are defined, and marking explicit destinations in the PhysRegsUsed map.
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000802 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
803 MachineOperand& MO = MI->getOperand(i);
Evan Cheng438f7bc2006-11-10 08:43:01 +0000804 if (MO.isRegister() && MO.isDef() && !MO.isImplicit() && MO.getReg() &&
Dan Gohman6f0d0242008-02-10 18:45:23 +0000805 TargetRegisterInfo::isPhysicalRegister(MO.getReg())) {
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000806 unsigned Reg = MO.getReg();
Chris Lattnercc406322006-09-08 19:11:11 +0000807 if (PhysRegsUsed[Reg] == -2) continue; // Something like ESP.
Evan Cheng7ac19af2007-06-26 21:05:13 +0000808 // These are extra physical register defs when a sub-register
809 // is defined (def of a sub-register is a read/mod/write of the
810 // larger registers). Ignore.
811 if (isReadModWriteImplicitDef(MI, MO.getReg())) continue;
812
Chris Lattner84bc5422007-12-31 04:13:23 +0000813 MF->getRegInfo().setPhysRegUsed(Reg);
Evan Chengddee8422006-11-15 20:55:15 +0000814 spillPhysReg(MBB, MI, Reg, true); // Spill any existing value in reg
Chris Lattner91a452b2003-01-13 00:25:40 +0000815 PhysRegsUsed[Reg] = 0; // It is free and reserved now
Evan Cheng7ac19af2007-06-26 21:05:13 +0000816 AddToPhysRegsUseOrder(Reg);
817
Dan Gohman6f0d0242008-02-10 18:45:23 +0000818 for (const unsigned *AliasSet = TRI->getSubRegisters(Reg);
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000819 *AliasSet; ++AliasSet) {
Chris Lattner45d57882006-09-08 19:03:30 +0000820 if (PhysRegsUsed[*AliasSet] != -2) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000821 MF->getRegInfo().setPhysRegUsed(*AliasSet);
Evan Cheng7ac19af2007-06-26 21:05:13 +0000822 PhysRegsUsed[*AliasSet] = 0; // It is free and reserved now
823 AddToPhysRegsUseOrder(*AliasSet);
Chris Lattner45d57882006-09-08 19:03:30 +0000824 }
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000825 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000826 }
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000827 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000828
829 // Loop over the implicit defs, spilling them as well.
Jim Laskeycd4317e2006-07-21 21:15:20 +0000830 if (TID.ImplicitDefs) {
831 for (const unsigned *ImplicitDefs = TID.ImplicitDefs;
832 *ImplicitDefs; ++ImplicitDefs) {
833 unsigned Reg = *ImplicitDefs;
Evan Cheng7ac19af2007-06-26 21:05:13 +0000834 if (PhysRegsUsed[Reg] != -2) {
Chris Lattner2b41b8e2006-09-19 18:02:01 +0000835 spillPhysReg(MBB, MI, Reg, true);
Evan Cheng7ac19af2007-06-26 21:05:13 +0000836 AddToPhysRegsUseOrder(Reg);
Chris Lattner2b41b8e2006-09-19 18:02:01 +0000837 PhysRegsUsed[Reg] = 0; // It is free and reserved now
838 }
Chris Lattner84bc5422007-12-31 04:13:23 +0000839 MF->getRegInfo().setPhysRegUsed(Reg);
Dan Gohman6f0d0242008-02-10 18:45:23 +0000840 for (const unsigned *AliasSet = TRI->getSubRegisters(Reg);
Jim Laskeycd4317e2006-07-21 21:15:20 +0000841 *AliasSet; ++AliasSet) {
Chris Lattner45d57882006-09-08 19:03:30 +0000842 if (PhysRegsUsed[*AliasSet] != -2) {
Evan Cheng7ac19af2007-06-26 21:05:13 +0000843 AddToPhysRegsUseOrder(*AliasSet);
844 PhysRegsUsed[*AliasSet] = 0; // It is free and reserved now
Chris Lattner84bc5422007-12-31 04:13:23 +0000845 MF->getRegInfo().setPhysRegUsed(*AliasSet);
Chris Lattner45d57882006-09-08 19:03:30 +0000846 }
Jim Laskeycd4317e2006-07-21 21:15:20 +0000847 }
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000848 }
Alkis Evlogimenosefe995a2003-12-13 01:20:58 +0000849 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000850
Evan Chengddee8422006-11-15 20:55:15 +0000851 SmallVector<unsigned, 8> DeadDefs;
852 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
853 MachineOperand& MO = MI->getOperand(i);
854 if (MO.isRegister() && MO.isDead())
855 DeadDefs.push_back(MO.getReg());
856 }
857
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000858 // Okay, we have allocated all of the source operands and spilled any values
859 // that would be destroyed by defs of this instruction. Loop over the
Chris Lattner0648b162005-01-23 22:51:56 +0000860 // explicit defs and assign them to a register, spilling incoming values if
Chris Lattner91a452b2003-01-13 00:25:40 +0000861 // we need to scavenge a register.
Chris Lattner82bee0f2002-12-18 08:14:26 +0000862 //
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000863 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
864 MachineOperand& MO = MI->getOperand(i);
Evan Cheng5d8062b2006-09-05 20:32:06 +0000865 if (MO.isRegister() && MO.isDef() && MO.getReg() &&
Dan Gohman6f0d0242008-02-10 18:45:23 +0000866 TargetRegisterInfo::isVirtualRegister(MO.getReg())) {
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000867 unsigned DestVirtReg = MO.getReg();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000868 unsigned DestPhysReg;
869
Alkis Evlogimenos9af9dbd2003-12-18 13:08:52 +0000870 // If DestVirtReg already has a value, use it.
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000871 if (!(DestPhysReg = getVirt2PhysRegMapSlot(DestVirtReg)))
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000872 DestPhysReg = getReg(MBB, MI, DestVirtReg);
Chris Lattner84bc5422007-12-31 04:13:23 +0000873 MF->getRegInfo().setPhysRegUsed(DestPhysReg);
Chris Lattnerd5725632003-05-12 03:54:14 +0000874 markVirtRegModified(DestVirtReg);
Evan Cheng839b7592008-01-17 02:08:17 +0000875 getVirtRegLastUse(DestVirtReg) = std::make_pair((MachineInstr*)0, 0);
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000876 DOUT << " Assigning " << TRI->getName(DestPhysReg)
Evan Cheng9af70902008-02-22 19:57:06 +0000877 << " to %reg" << DestVirtReg << "\n";
Dan Gohman85e68152008-07-09 20:12:26 +0000878 MO.setReg(DestPhysReg); // Assign the output register
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000879 }
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000880 }
Chris Lattner82bee0f2002-12-18 08:14:26 +0000881
Chris Lattner56ddada2004-02-17 17:49:10 +0000882 // If this instruction defines any registers that are immediately dead,
883 // kill them now.
884 //
Evan Chengddee8422006-11-15 20:55:15 +0000885 for (unsigned i = 0, e = DeadDefs.size(); i != e; ++i) {
886 unsigned VirtReg = DeadDefs[i];
Chris Lattner56ddada2004-02-17 17:49:10 +0000887 unsigned PhysReg = VirtReg;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000888 if (TargetRegisterInfo::isVirtualRegister(VirtReg)) {
Chris Lattner56ddada2004-02-17 17:49:10 +0000889 unsigned &PhysRegSlot = getVirt2PhysRegMapSlot(VirtReg);
890 PhysReg = PhysRegSlot;
891 assert(PhysReg != 0);
892 PhysRegSlot = 0;
Chris Lattner0c5b8da2006-09-08 20:21:31 +0000893 } else if (PhysRegsUsed[PhysReg] == -2) {
894 // Unallocatable register dead, ignore.
895 continue;
Chris Lattner56ddada2004-02-17 17:49:10 +0000896 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000897
Chris Lattner56ddada2004-02-17 17:49:10 +0000898 if (PhysReg) {
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000899 DOUT << " Register " << TRI->getName(PhysReg)
Chris Lattner56ddada2004-02-17 17:49:10 +0000900 << " [%reg" << VirtReg
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000901 << "] is never used, removing it frame live list\n";
Chris Lattner56ddada2004-02-17 17:49:10 +0000902 removePhysReg(PhysReg);
Dan Gohman6f0d0242008-02-10 18:45:23 +0000903 for (const unsigned *AliasSet = TRI->getAliasSet(PhysReg);
Evan Chengddee8422006-11-15 20:55:15 +0000904 *AliasSet; ++AliasSet) {
905 if (PhysRegsUsed[*AliasSet] != -2) {
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000906 DOUT << " Register " << TRI->getName(*AliasSet)
Evan Chengddee8422006-11-15 20:55:15 +0000907 << " [%reg" << *AliasSet
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000908 << "] is never used, removing it frame live list\n";
Evan Chengddee8422006-11-15 20:55:15 +0000909 removePhysReg(*AliasSet);
910 }
911 }
Chris Lattner82bee0f2002-12-18 08:14:26 +0000912 }
913 }
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000914
915 // Finally, if this is a noop copy instruction, zap it.
916 unsigned SrcReg, DstReg;
Dan Gohman88490542008-07-09 19:55:19 +0000917 if (TII->isMoveInstr(*MI, SrcReg, DstReg) && SrcReg == DstReg)
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000918 MBB.erase(MI);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000919 }
920
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000921 MachineBasicBlock::iterator MI = MBB.getFirstTerminator();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000922
923 // Spill all physical registers holding virtual registers now.
Dan Gohman6f0d0242008-02-10 18:45:23 +0000924 for (unsigned i = 0, e = TRI->getNumRegs(); i != e; ++i)
Anton Korobeynikov4aefd6b2008-02-20 12:07:57 +0000925 if (PhysRegsUsed[i] != -1 && PhysRegsUsed[i] != -2) {
Chris Lattner64667b62004-02-09 01:26:13 +0000926 if (unsigned VirtReg = PhysRegsUsed[i])
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000927 spillVirtReg(MBB, MI, VirtReg, i);
Chris Lattner64667b62004-02-09 01:26:13 +0000928 else
929 removePhysReg(i);
Anton Korobeynikov4aefd6b2008-02-20 12:07:57 +0000930 }
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000931
Chris Lattner9a5ef202005-11-09 05:28:45 +0000932#if 0
933 // This checking code is very expensive.
Chris Lattnerecea5632004-02-09 02:12:04 +0000934 bool AllOk = true;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000935 for (unsigned i = TargetRegisterInfo::FirstVirtualRegister,
Chris Lattner84bc5422007-12-31 04:13:23 +0000936 e = MF->getRegInfo().getLastVirtReg(); i <= e; ++i)
Chris Lattnerecea5632004-02-09 02:12:04 +0000937 if (unsigned PR = Virt2PhysRegMap[i]) {
Bill Wendling832171c2006-12-07 20:04:42 +0000938 cerr << "Register still mapped: " << i << " -> " << PR << "\n";
Chris Lattnerecea5632004-02-09 02:12:04 +0000939 AllOk = false;
940 }
941 assert(AllOk && "Virtual registers still in phys regs?");
942#endif
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000943
Chris Lattner128c2aa2003-08-17 18:01:15 +0000944 // Clear any physical register which appear live at the end of the basic
945 // block, but which do not hold any virtual registers. e.g., the stack
946 // pointer.
947 PhysRegsUseOrder.clear();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000948}
949
950/// runOnMachineFunction - Register allocate the whole function
951///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000952bool RALocal::runOnMachineFunction(MachineFunction &Fn) {
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000953 DOUT << "Machine Function " << "\n";
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000954 MF = &Fn;
Chris Lattner580f9be2002-12-28 20:40:43 +0000955 TM = &Fn.getTarget();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000956 TRI = TM->getRegisterInfo();
Owen Anderson6425f8b2008-01-07 01:35:56 +0000957 TII = TM->getInstrInfo();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000958
Dan Gohman6f0d0242008-02-10 18:45:23 +0000959 PhysRegsUsed.assign(TRI->getNumRegs(), -1);
Chris Lattner45d57882006-09-08 19:03:30 +0000960
961 // At various places we want to efficiently check to see whether a register
962 // is allocatable. To handle this, we mark all unallocatable registers as
963 // being pinned down, permanently.
964 {
Dan Gohman6f0d0242008-02-10 18:45:23 +0000965 BitVector Allocable = TRI->getAllocatableSet(Fn);
Chris Lattner45d57882006-09-08 19:03:30 +0000966 for (unsigned i = 0, e = Allocable.size(); i != e; ++i)
967 if (!Allocable[i])
968 PhysRegsUsed[i] = -2; // Mark the reg unallocable.
969 }
Chris Lattner64667b62004-02-09 01:26:13 +0000970
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000971 // initialize the virtual->physical register map to have a 'null'
972 // mapping for all virtual registers
Evan Cheng644340a2008-01-17 00:35:26 +0000973 unsigned LastVirtReg = MF->getRegInfo().getLastVirtReg();
974 Virt2PhysRegMap.grow(LastVirtReg);
Evan Cheng839b7592008-01-17 02:08:17 +0000975 Virt2LastUseMap.grow(LastVirtReg);
Dan Gohman6f0d0242008-02-10 18:45:23 +0000976 VirtRegModified.resize(LastVirtReg+1-TargetRegisterInfo::FirstVirtualRegister);
Owen Anderson491fccc2008-07-08 22:24:50 +0000977 UsedInMultipleBlocks.resize(LastVirtReg+1-TargetRegisterInfo::FirstVirtualRegister);
978
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000979 // Loop over all of the basic blocks, eliminating virtual register references
980 for (MachineFunction::iterator MBB = Fn.begin(), MBBe = Fn.end();
981 MBB != MBBe; ++MBB)
982 AllocateBasicBlock(*MBB);
983
Chris Lattner580f9be2002-12-28 20:40:43 +0000984 StackSlotForVirtReg.clear();
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000985 PhysRegsUsed.clear();
Chris Lattner91a452b2003-01-13 00:25:40 +0000986 VirtRegModified.clear();
Owen Anderson491fccc2008-07-08 22:24:50 +0000987 UsedInMultipleBlocks.clear();
Chris Lattnerecea5632004-02-09 02:12:04 +0000988 Virt2PhysRegMap.clear();
Evan Cheng839b7592008-01-17 02:08:17 +0000989 Virt2LastUseMap.clear();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000990 return true;
991}
992
Chris Lattneref09c632004-01-31 21:27:19 +0000993FunctionPass *llvm::createLocalRegisterAllocator() {
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000994 return new RALocal();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000995}