blob: dc375cc54e69659961c4f2edd7133312ac2d65f6 [file] [log] [blame]
Chris Lattner101b8cd2002-12-16 16:15:28 +00001//===-- RegAllocLocal.cpp - A BasicBlock generic register allocator -------===//
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// 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.
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner101b8cd2002-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 Lattner74e4e9b2003-08-03 21:47:31 +000015#define DEBUG_TYPE "regalloc"
Chris Lattnerbfa53192003-01-13 00:25:40 +000016#include "llvm/CodeGen/Passes.h"
Chris Lattnerb4e41112002-12-28 20:40:43 +000017#include "llvm/CodeGen/MachineFunctionPass.h"
Chris Lattner101b8cd2002-12-16 16:15:28 +000018#include "llvm/CodeGen/MachineInstr.h"
Chris Lattner42714ec2002-12-25 05:05:46 +000019#include "llvm/CodeGen/SSARegMap.h"
Chris Lattnerca4362f2002-12-28 21:08:26 +000020#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattnerbfa53192003-01-13 00:25:40 +000021#include "llvm/CodeGen/LiveVariables.h"
Chris Lattnerb4d58d72003-01-14 22:00:31 +000022#include "llvm/Target/TargetInstrInfo.h"
Chris Lattner101b8cd2002-12-16 16:15:28 +000023#include "llvm/Target/TargetMachine.h"
Chris Lattnerd4627092002-12-18 08:14:26 +000024#include "Support/CommandLine.h"
Chris Lattner1007f032003-08-01 22:21:34 +000025#include "Support/Debug.h"
26#include "Support/Statistic.h"
Chris Lattner101b8cd2002-12-16 16:15:28 +000027#include <iostream>
Chris Lattnerc330b982004-01-31 21:27:19 +000028using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000029
Chris Lattner101b8cd2002-12-16 16:15:28 +000030namespace {
31 Statistic<> NumSpilled ("ra-local", "Number of registers spilled");
32 Statistic<> NumReloaded("ra-local", "Number of registers reloaded");
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +000033 cl::opt<bool> DisableKill("disable-kill", cl::Hidden,
Chris Lattnerd4627092002-12-18 08:14:26 +000034 cl::desc("Disable register kill in local-ra"));
Chris Lattner101b8cd2002-12-16 16:15:28 +000035
Chris Lattnerb4e41112002-12-28 20:40:43 +000036 class RA : public MachineFunctionPass {
37 const TargetMachine *TM;
Chris Lattner101b8cd2002-12-16 16:15:28 +000038 MachineFunction *MF;
Chris Lattnerb4e41112002-12-28 20:40:43 +000039 const MRegisterInfo *RegInfo;
Chris Lattnerbfa53192003-01-13 00:25:40 +000040 LiveVariables *LV;
Chris Lattner42714ec2002-12-25 05:05:46 +000041
Chris Lattner815b85e2003-08-04 23:36:39 +000042 // StackSlotForVirtReg - Maps virtual regs to the frame index where these
43 // values are spilled.
Chris Lattnerb4e41112002-12-28 20:40:43 +000044 std::map<unsigned, int> StackSlotForVirtReg;
Chris Lattner101b8cd2002-12-16 16:15:28 +000045
46 // Virt2PhysRegMap - This map contains entries for each virtual register
Chris Lattner80cbed42004-02-09 02:12:04 +000047 // that is currently available in a physical register. This is "logically"
48 // a map from virtual register numbers to physical register numbers.
49 // Instead of using a map, however, which is slow, we use a vector. The
50 // index is the VREG number - FirstVirtualRegister. If the entry is zero,
51 // then it is logically "not in the map".
Chris Lattner101b8cd2002-12-16 16:15:28 +000052 //
Chris Lattner80cbed42004-02-09 02:12:04 +000053 std::vector<unsigned> Virt2PhysRegMap;
54
55 unsigned &getVirt2PhysRegMapSlot(unsigned VirtReg) {
Alkis Evlogimenosbbf53932004-02-15 21:37:17 +000056 assert(MRegisterInfo::isVirtualRegister(VirtReg) &&"Illegal VREG #");
Chris Lattner80cbed42004-02-09 02:12:04 +000057 assert(VirtReg-MRegisterInfo::FirstVirtualRegister <Virt2PhysRegMap.size()
58 && "VirtReg not in map!");
59 return Virt2PhysRegMap[VirtReg-MRegisterInfo::FirstVirtualRegister];
60 }
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +000061
Chris Lattner490627a2004-02-09 01:26:13 +000062 // PhysRegsUsed - This array is effectively a map, containing entries for
63 // each physical register that currently has a value (ie, it is in
64 // Virt2PhysRegMap). The value mapped to is the virtual register
65 // corresponding to the physical register (the inverse of the
66 // Virt2PhysRegMap), or 0. The value is set to 0 if this register is pinned
67 // because it is used by a future instruction. If the entry for a physical
68 // register is -1, then the physical register is "not in the map".
Chris Lattner101b8cd2002-12-16 16:15:28 +000069 //
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +000070 std::vector<int> PhysRegsUsed;
Chris Lattner101b8cd2002-12-16 16:15:28 +000071
72 // PhysRegsUseOrder - This contains a list of the physical registers that
73 // currently have a virtual register value in them. This list provides an
74 // ordering of registers, imposing a reallocation order. This list is only
75 // used if all registers are allocated and we have to spill one, in which
76 // case we spill the least recently used register. Entries at the front of
77 // the list are the least recently used registers, entries at the back are
78 // the most recently used.
79 //
80 std::vector<unsigned> PhysRegsUseOrder;
81
Chris Lattnerbfa53192003-01-13 00:25:40 +000082 // VirtRegModified - This bitset contains information about which virtual
83 // registers need to be spilled back to memory when their registers are
84 // scavenged. If a virtual register has simply been rematerialized, there
85 // is no reason to spill it to memory when we need the register back.
Chris Lattnerd4627092002-12-18 08:14:26 +000086 //
Chris Lattnerbfa53192003-01-13 00:25:40 +000087 std::vector<bool> VirtRegModified;
88
89 void markVirtRegModified(unsigned Reg, bool Val = true) {
Chris Lattnerc330b982004-01-31 21:27:19 +000090 assert(MRegisterInfo::isVirtualRegister(Reg) && "Illegal VirtReg!");
Chris Lattnerbfa53192003-01-13 00:25:40 +000091 Reg -= MRegisterInfo::FirstVirtualRegister;
92 if (VirtRegModified.size() <= Reg) VirtRegModified.resize(Reg+1);
93 VirtRegModified[Reg] = Val;
94 }
95
96 bool isVirtRegModified(unsigned Reg) const {
Chris Lattnerc330b982004-01-31 21:27:19 +000097 assert(MRegisterInfo::isVirtualRegister(Reg) && "Illegal VirtReg!");
Chris Lattnerbfa53192003-01-13 00:25:40 +000098 assert(Reg - MRegisterInfo::FirstVirtualRegister < VirtRegModified.size()
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +000099 && "Illegal virtual register!");
Chris Lattnerbfa53192003-01-13 00:25:40 +0000100 return VirtRegModified[Reg - MRegisterInfo::FirstVirtualRegister];
101 }
Chris Lattnerd4627092002-12-18 08:14:26 +0000102
Chris Lattner101b8cd2002-12-16 16:15:28 +0000103 void MarkPhysRegRecentlyUsed(unsigned Reg) {
Chris Lattnerd4627092002-12-18 08:14:26 +0000104 assert(!PhysRegsUseOrder.empty() && "No registers used!");
Chris Lattner763729c52002-12-24 00:04:55 +0000105 if (PhysRegsUseOrder.back() == Reg) return; // Already most recently used
106
107 for (unsigned i = PhysRegsUseOrder.size(); i != 0; --i)
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +0000108 if (areRegsEqual(Reg, PhysRegsUseOrder[i-1])) {
109 unsigned RegMatch = PhysRegsUseOrder[i-1]; // remove from middle
110 PhysRegsUseOrder.erase(PhysRegsUseOrder.begin()+i-1);
111 // Add it to the end of the list
112 PhysRegsUseOrder.push_back(RegMatch);
113 if (RegMatch == Reg)
114 return; // Found an exact match, exit early
115 }
Chris Lattner101b8cd2002-12-16 16:15:28 +0000116 }
117
118 public:
Chris Lattner101b8cd2002-12-16 16:15:28 +0000119 virtual const char *getPassName() const {
120 return "Local Register Allocator";
121 }
122
Chris Lattnerbfa53192003-01-13 00:25:40 +0000123 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
124 if (!DisableKill)
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +0000125 AU.addRequired<LiveVariables>();
Chris Lattnerbfa53192003-01-13 00:25:40 +0000126 AU.addRequiredID(PHIEliminationID);
Alkis Evlogimenos71390902003-12-18 22:40:24 +0000127 AU.addRequiredID(TwoAddressInstructionPassID);
Chris Lattnerbfa53192003-01-13 00:25:40 +0000128 MachineFunctionPass::getAnalysisUsage(AU);
129 }
130
Chris Lattner101b8cd2002-12-16 16:15:28 +0000131 private:
132 /// runOnMachineFunction - Register allocate the whole function
133 bool runOnMachineFunction(MachineFunction &Fn);
134
135 /// AllocateBasicBlock - Register allocate the specified basic block.
136 void AllocateBasicBlock(MachineBasicBlock &MBB);
137
Chris Lattnerd4627092002-12-18 08:14:26 +0000138
Chris Lattnerd4627092002-12-18 08:14:26 +0000139 /// areRegsEqual - This method returns true if the specified registers are
140 /// related to each other. To do this, it checks to see if they are equal
141 /// or if the first register is in the alias set of the second register.
142 ///
143 bool areRegsEqual(unsigned R1, unsigned R2) const {
144 if (R1 == R2) return true;
Alkis Evlogimenos5f1f3372003-10-08 05:20:08 +0000145 for (const unsigned *AliasSet = RegInfo->getAliasSet(R2);
146 *AliasSet; ++AliasSet) {
147 if (*AliasSet == R1) return true;
148 }
Chris Lattnerd4627092002-12-18 08:14:26 +0000149 return false;
150 }
151
Chris Lattnerb4e41112002-12-28 20:40:43 +0000152 /// getStackSpaceFor - This returns the frame index of the specified virtual
Chris Lattner815b85e2003-08-04 23:36:39 +0000153 /// register on the stack, allocating space if necessary.
Chris Lattnerb4e41112002-12-28 20:40:43 +0000154 int getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass *RC);
Chris Lattner101b8cd2002-12-16 16:15:28 +0000155
Chris Lattner815b85e2003-08-04 23:36:39 +0000156 /// removePhysReg - This method marks the specified physical register as no
157 /// longer being in use.
158 ///
Chris Lattnerd4627092002-12-18 08:14:26 +0000159 void removePhysReg(unsigned PhysReg);
Chris Lattner101b8cd2002-12-16 16:15:28 +0000160
161 /// spillVirtReg - This method spills the value specified by PhysReg into
162 /// the virtual register slot specified by VirtReg. It then updates the RA
163 /// data structures to indicate the fact that PhysReg is now available.
164 ///
Chris Lattnerddedac52004-02-17 03:57:19 +0000165 void spillVirtReg(MachineBasicBlock &MBB, MachineInstr *MI,
Chris Lattner101b8cd2002-12-16 16:15:28 +0000166 unsigned VirtReg, unsigned PhysReg);
167
Chris Lattner0129b862002-12-16 17:44:42 +0000168 /// spillPhysReg - This method spills the specified physical register into
Chris Lattner931947d2003-08-17 18:01:15 +0000169 /// the virtual register slot associated with it. If OnlyVirtRegs is set to
170 /// true, then the request is ignored if the physical register does not
171 /// contain a virtual register.
Chris Lattnerbfa53192003-01-13 00:25:40 +0000172 ///
Chris Lattnerddedac52004-02-17 03:57:19 +0000173 void spillPhysReg(MachineBasicBlock &MBB, MachineInstr *I,
Chris Lattner931947d2003-08-17 18:01:15 +0000174 unsigned PhysReg, bool OnlyVirtRegs = false);
Chris Lattner0129b862002-12-16 17:44:42 +0000175
Chris Lattnerbfa53192003-01-13 00:25:40 +0000176 /// assignVirtToPhysReg - This method updates local state so that we know
177 /// that PhysReg is the proper container for VirtReg now. The physical
178 /// register must not be used for anything else when this is called.
179 ///
180 void assignVirtToPhysReg(unsigned VirtReg, unsigned PhysReg);
181
182 /// liberatePhysReg - Make sure the specified physical register is available
183 /// for use. If there is currently a value in it, it is either moved out of
184 /// the way or spilled to memory.
185 ///
186 void liberatePhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator &I,
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +0000187 unsigned PhysReg);
Chris Lattner101b8cd2002-12-16 16:15:28 +0000188
Chris Lattner4664bd52002-12-17 02:50:10 +0000189 /// isPhysRegAvailable - Return true if the specified physical register is
190 /// free and available for use. This also includes checking to see if
191 /// aliased registers are all free...
192 ///
Chris Lattnerd4627092002-12-18 08:14:26 +0000193 bool isPhysRegAvailable(unsigned PhysReg) const;
Chris Lattnerbfa53192003-01-13 00:25:40 +0000194
195 /// getFreeReg - Look to see if there is a free register available in the
196 /// specified register class. If not, return 0.
197 ///
198 unsigned getFreeReg(const TargetRegisterClass *RC);
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +0000199
Chris Lattnerbfa53192003-01-13 00:25:40 +0000200 /// getReg - Find a physical register to hold the specified virtual
Chris Lattner101b8cd2002-12-16 16:15:28 +0000201 /// register. If all compatible physical registers are used, this method
202 /// spills the last used virtual register to the stack, and uses that
203 /// register.
204 ///
Chris Lattnerddedac52004-02-17 03:57:19 +0000205 unsigned getReg(MachineBasicBlock &MBB, MachineInstr *MI,
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +0000206 unsigned VirtReg);
Chris Lattner101b8cd2002-12-16 16:15:28 +0000207
Chris Lattnerddedac52004-02-17 03:57:19 +0000208 /// reloadVirtReg - This method transforms the specified specified virtual
209 /// register use to refer to a physical register. This method may do this
210 /// in one of several ways: if the register is available in a physical
211 /// register already, it uses that physical register. If the value is not
212 /// in a physical register, and if there are physical registers available,
213 /// it loads it into a register. If register pressure is high, and it is
214 /// possible, it tries to fold the load of the virtual register into the
215 /// instruction itself. It avoids doing this if register pressure is low to
216 /// improve the chance that subsequent instructions can use the reloaded
217 /// value. This method returns the modified instruction.
Chris Lattner101b8cd2002-12-16 16:15:28 +0000218 ///
Chris Lattnerddedac52004-02-17 03:57:19 +0000219 MachineInstr *reloadVirtReg(MachineBasicBlock &MBB, MachineInstr *MI,
220 unsigned OpNum);
221
Chris Lattner815b85e2003-08-04 23:36:39 +0000222
223 void reloadPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator &I,
224 unsigned PhysReg);
Chris Lattner101b8cd2002-12-16 16:15:28 +0000225 };
Chris Lattner101b8cd2002-12-16 16:15:28 +0000226}
227
Chris Lattner815b85e2003-08-04 23:36:39 +0000228/// getStackSpaceFor - This allocates space for the specified virtual register
229/// to be held on the stack.
230int RA::getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass *RC) {
231 // Find the location Reg would belong...
232 std::map<unsigned, int>::iterator I =StackSlotForVirtReg.lower_bound(VirtReg);
Chris Lattner101b8cd2002-12-16 16:15:28 +0000233
Chris Lattnerb4e41112002-12-28 20:40:43 +0000234 if (I != StackSlotForVirtReg.end() && I->first == VirtReg)
Chris Lattner101b8cd2002-12-16 16:15:28 +0000235 return I->second; // Already has space allocated?
236
Chris Lattnerb4e41112002-12-28 20:40:43 +0000237 // Allocate a new stack object for this spill location...
Chris Lattnerbfa53192003-01-13 00:25:40 +0000238 int FrameIdx = MF->getFrameInfo()->CreateStackObject(RC);
Chris Lattner101b8cd2002-12-16 16:15:28 +0000239
Chris Lattner101b8cd2002-12-16 16:15:28 +0000240 // Assign the slot...
Chris Lattnerb4e41112002-12-28 20:40:43 +0000241 StackSlotForVirtReg.insert(I, std::make_pair(VirtReg, FrameIdx));
242 return FrameIdx;
Chris Lattner101b8cd2002-12-16 16:15:28 +0000243}
244
Chris Lattner4664bd52002-12-17 02:50:10 +0000245
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +0000246/// removePhysReg - This method marks the specified physical register as no
Chris Lattnerd4627092002-12-18 08:14:26 +0000247/// longer being in use.
248///
249void RA::removePhysReg(unsigned PhysReg) {
Chris Lattner490627a2004-02-09 01:26:13 +0000250 PhysRegsUsed[PhysReg] = -1; // PhyReg no longer used
Chris Lattnerd4627092002-12-18 08:14:26 +0000251
252 std::vector<unsigned>::iterator It =
253 std::find(PhysRegsUseOrder.begin(), PhysRegsUseOrder.end(), PhysReg);
Alkis Evlogimenosebbd66c2004-01-13 06:24:30 +0000254 if (It != PhysRegsUseOrder.end())
255 PhysRegsUseOrder.erase(It);
Chris Lattnerd4627092002-12-18 08:14:26 +0000256}
257
Chris Lattnerbfa53192003-01-13 00:25:40 +0000258
Chris Lattner101b8cd2002-12-16 16:15:28 +0000259/// spillVirtReg - This method spills the value specified by PhysReg into the
260/// virtual register slot specified by VirtReg. It then updates the RA data
261/// structures to indicate the fact that PhysReg is now available.
262///
Chris Lattnerddedac52004-02-17 03:57:19 +0000263void RA::spillVirtReg(MachineBasicBlock &MBB, MachineInstr *I,
Chris Lattner101b8cd2002-12-16 16:15:28 +0000264 unsigned VirtReg, unsigned PhysReg) {
Chris Lattner92a199d2003-08-05 04:13:58 +0000265 if (!VirtReg && DisableKill) return;
266 assert(VirtReg && "Spilling a physical register is illegal!"
Chris Lattner506fa682003-08-05 00:49:09 +0000267 " Must not have appropriate kill for the register or use exists beyond"
268 " the intended one.");
269 DEBUG(std::cerr << " Spilling register " << RegInfo->getName(PhysReg);
270 std::cerr << " containing %reg" << VirtReg;
271 if (!isVirtRegModified(VirtReg))
272 std::cerr << " which has not been modified, so no store necessary!");
Chris Lattner101b8cd2002-12-16 16:15:28 +0000273
Chris Lattner506fa682003-08-05 00:49:09 +0000274 // Otherwise, there is a virtual register corresponding to this physical
275 // register. We only need to spill it into its stack slot if it has been
276 // modified.
277 if (isVirtRegModified(VirtReg)) {
278 const TargetRegisterClass *RC = MF->getSSARegMap()->getRegClass(VirtReg);
279 int FrameIndex = getStackSpaceFor(VirtReg, RC);
280 DEBUG(std::cerr << " to stack slot #" << FrameIndex);
281 RegInfo->storeRegToStackSlot(MBB, I, PhysReg, FrameIndex, RC);
282 ++NumSpilled; // Update statistics
Chris Lattner101b8cd2002-12-16 16:15:28 +0000283 }
Chris Lattner80cbed42004-02-09 02:12:04 +0000284
285 getVirt2PhysRegMapSlot(VirtReg) = 0; // VirtReg no longer available
Chris Lattner101b8cd2002-12-16 16:15:28 +0000286
Chris Lattner815b85e2003-08-04 23:36:39 +0000287 DEBUG(std::cerr << "\n");
Chris Lattnerd4627092002-12-18 08:14:26 +0000288 removePhysReg(PhysReg);
Chris Lattner101b8cd2002-12-16 16:15:28 +0000289}
290
Chris Lattner4664bd52002-12-17 02:50:10 +0000291
Chris Lattnerbfa53192003-01-13 00:25:40 +0000292/// spillPhysReg - This method spills the specified physical register into the
Chris Lattner931947d2003-08-17 18:01:15 +0000293/// virtual register slot associated with it. If OnlyVirtRegs is set to true,
294/// then the request is ignored if the physical register does not contain a
295/// virtual register.
Chris Lattnerbfa53192003-01-13 00:25:40 +0000296///
Chris Lattnerddedac52004-02-17 03:57:19 +0000297void RA::spillPhysReg(MachineBasicBlock &MBB, MachineInstr *I,
Chris Lattner931947d2003-08-17 18:01:15 +0000298 unsigned PhysReg, bool OnlyVirtRegs) {
Chris Lattner490627a2004-02-09 01:26:13 +0000299 if (PhysRegsUsed[PhysReg] != -1) { // Only spill it if it's used!
300 if (PhysRegsUsed[PhysReg] || !OnlyVirtRegs)
301 spillVirtReg(MBB, I, PhysRegsUsed[PhysReg], PhysReg);
Alkis Evlogimenos5f1f3372003-10-08 05:20:08 +0000302 } else {
Chris Lattnerbfa53192003-01-13 00:25:40 +0000303 // If the selected register aliases any other registers, we must make
304 // sure that one of the aliases isn't alive...
Alkis Evlogimenos5f1f3372003-10-08 05:20:08 +0000305 for (const unsigned *AliasSet = RegInfo->getAliasSet(PhysReg);
Chris Lattner490627a2004-02-09 01:26:13 +0000306 *AliasSet; ++AliasSet)
307 if (PhysRegsUsed[*AliasSet] != -1) // Spill aliased register...
308 if (PhysRegsUsed[*AliasSet] || !OnlyVirtRegs)
309 spillVirtReg(MBB, I, PhysRegsUsed[*AliasSet], *AliasSet);
Chris Lattnerbfa53192003-01-13 00:25:40 +0000310 }
311}
312
313
314/// assignVirtToPhysReg - This method updates local state so that we know
315/// that PhysReg is the proper container for VirtReg now. The physical
316/// register must not be used for anything else when this is called.
317///
318void RA::assignVirtToPhysReg(unsigned VirtReg, unsigned PhysReg) {
Chris Lattner490627a2004-02-09 01:26:13 +0000319 assert(PhysRegsUsed[PhysReg] == -1 && "Phys reg already assigned!");
Chris Lattnerbfa53192003-01-13 00:25:40 +0000320 // Update information to note the fact that this register was just used, and
321 // it holds VirtReg.
322 PhysRegsUsed[PhysReg] = VirtReg;
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +0000323 getVirt2PhysRegMapSlot(VirtReg) = PhysReg;
Chris Lattnerbfa53192003-01-13 00:25:40 +0000324 PhysRegsUseOrder.push_back(PhysReg); // New use of PhysReg
325}
326
327
Chris Lattner4664bd52002-12-17 02:50:10 +0000328/// isPhysRegAvailable - Return true if the specified physical register is free
329/// and available for use. This also includes checking to see if aliased
330/// registers are all free...
331///
332bool RA::isPhysRegAvailable(unsigned PhysReg) const {
Chris Lattner490627a2004-02-09 01:26:13 +0000333 if (PhysRegsUsed[PhysReg] != -1) return false;
Chris Lattner4664bd52002-12-17 02:50:10 +0000334
335 // If the selected register aliases any other allocated registers, it is
336 // not free!
Alkis Evlogimenos5f1f3372003-10-08 05:20:08 +0000337 for (const unsigned *AliasSet = RegInfo->getAliasSet(PhysReg);
338 *AliasSet; ++AliasSet)
Chris Lattner490627a2004-02-09 01:26:13 +0000339 if (PhysRegsUsed[*AliasSet] != -1) // Aliased register in use?
Alkis Evlogimenos5f1f3372003-10-08 05:20:08 +0000340 return false; // Can't use this reg then.
Chris Lattner4664bd52002-12-17 02:50:10 +0000341 return true;
342}
343
344
Chris Lattnerbfa53192003-01-13 00:25:40 +0000345/// getFreeReg - Look to see if there is a free register available in the
346/// specified register class. If not, return 0.
Chris Lattner101b8cd2002-12-16 16:15:28 +0000347///
Chris Lattnerbfa53192003-01-13 00:25:40 +0000348unsigned RA::getFreeReg(const TargetRegisterClass *RC) {
Chris Lattnerb4e41112002-12-28 20:40:43 +0000349 // Get iterators defining the range of registers that are valid to allocate in
350 // this class, which also specifies the preferred allocation order.
351 TargetRegisterClass::iterator RI = RC->allocation_order_begin(*MF);
352 TargetRegisterClass::iterator RE = RC->allocation_order_end(*MF);
Chris Lattner4664bd52002-12-17 02:50:10 +0000353
Chris Lattnerbfa53192003-01-13 00:25:40 +0000354 for (; RI != RE; ++RI)
355 if (isPhysRegAvailable(*RI)) { // Is reg unused?
356 assert(*RI != 0 && "Cannot use register!");
357 return *RI; // Found an unused register!
358 }
359 return 0;
360}
361
362
363/// liberatePhysReg - Make sure the specified physical register is available for
364/// use. If there is currently a value in it, it is either moved out of the way
365/// or spilled to memory.
366///
367void RA::liberatePhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator &I,
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +0000368 unsigned PhysReg) {
Chris Lattnerbfa53192003-01-13 00:25:40 +0000369 // FIXME: This code checks to see if a register is available, but it really
370 // wants to know if a reg is available BEFORE the instruction executes. If
371 // called after killed operands are freed, it runs the risk of reallocating a
372 // used operand...
373#if 0
374 if (isPhysRegAvailable(PhysReg)) return; // Already available...
375
376 // Check to see if the register is directly used, not indirectly used through
377 // aliases. If aliased registers are the ones actually used, we cannot be
378 // sure that we will be able to save the whole thing if we do a reg-reg copy.
Chris Lattner490627a2004-02-09 01:26:13 +0000379 if (PhysRegsUsed[PhysReg] != -1) {
380 // The virtual register held...
381 unsigned VirtReg = PhysRegsUsed[PhysReg]->second;
Chris Lattnerbfa53192003-01-13 00:25:40 +0000382
383 // Check to see if there is a compatible register available. If so, we can
384 // move the value into the new register...
385 //
386 const TargetRegisterClass *RC = RegInfo->getRegClass(PhysReg);
387 if (unsigned NewReg = getFreeReg(RC)) {
388 // Emit the code to copy the value...
389 RegInfo->copyRegToReg(MBB, I, NewReg, PhysReg, RC);
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +0000390
Chris Lattnerbfa53192003-01-13 00:25:40 +0000391 // Update our internal state to indicate that PhysReg is available and Reg
392 // isn't.
Chris Lattner80cbed42004-02-09 02:12:04 +0000393 getVirt2PhysRegMapSlot[VirtReg] = 0;
Chris Lattnerbfa53192003-01-13 00:25:40 +0000394 removePhysReg(PhysReg); // Free the physreg
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +0000395
Chris Lattnerbfa53192003-01-13 00:25:40 +0000396 // Move reference over to new register...
397 assignVirtToPhysReg(VirtReg, NewReg);
398 return;
Chris Lattner4664bd52002-12-17 02:50:10 +0000399 }
Chris Lattner101b8cd2002-12-16 16:15:28 +0000400 }
Chris Lattnerbfa53192003-01-13 00:25:40 +0000401#endif
402 spillPhysReg(MBB, I, PhysReg);
403}
404
405
406/// getReg - Find a physical register to hold the specified virtual
407/// register. If all compatible physical registers are used, this method spills
408/// the last used virtual register to the stack, and uses that register.
409///
Chris Lattnerddedac52004-02-17 03:57:19 +0000410unsigned RA::getReg(MachineBasicBlock &MBB, MachineInstr *I,
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +0000411 unsigned VirtReg) {
Chris Lattnerbfa53192003-01-13 00:25:40 +0000412 const TargetRegisterClass *RC = MF->getSSARegMap()->getRegClass(VirtReg);
413
414 // First check to see if we have a free register of the requested type...
415 unsigned PhysReg = getFreeReg(RC);
Chris Lattner101b8cd2002-12-16 16:15:28 +0000416
Chris Lattner4664bd52002-12-17 02:50:10 +0000417 // If we didn't find an unused register, scavenge one now!
Chris Lattner101b8cd2002-12-16 16:15:28 +0000418 if (PhysReg == 0) {
Chris Lattner0129b862002-12-16 17:44:42 +0000419 assert(!PhysRegsUseOrder.empty() && "No allocated registers??");
Chris Lattner4664bd52002-12-17 02:50:10 +0000420
421 // Loop over all of the preallocated registers from the least recently used
422 // to the most recently used. When we find one that is capable of holding
423 // our register, use it.
424 for (unsigned i = 0; PhysReg == 0; ++i) {
Chris Lattner101b8cd2002-12-16 16:15:28 +0000425 assert(i != PhysRegsUseOrder.size() &&
426 "Couldn't find a register of the appropriate class!");
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +0000427
Chris Lattner4664bd52002-12-17 02:50:10 +0000428 unsigned R = PhysRegsUseOrder[i];
Chris Lattnere6235442003-08-23 23:49:42 +0000429
430 // We can only use this register if it holds a virtual register (ie, it
431 // can be spilled). Do not use it if it is an explicitly allocated
432 // physical register!
Chris Lattner490627a2004-02-09 01:26:13 +0000433 assert(PhysRegsUsed[R] != -1 &&
Chris Lattnere6235442003-08-23 23:49:42 +0000434 "PhysReg in PhysRegsUseOrder, but is not allocated?");
435 if (PhysRegsUsed[R]) {
436 // If the current register is compatible, use it.
437 if (RegInfo->getRegClass(R) == RC) {
438 PhysReg = R;
439 break;
440 } else {
441 // If one of the registers aliased to the current register is
442 // compatible, use it.
Alkis Evlogimenos5f1f3372003-10-08 05:20:08 +0000443 for (const unsigned *AliasSet = RegInfo->getAliasSet(R);
444 *AliasSet; ++AliasSet) {
445 if (RegInfo->getRegClass(*AliasSet) == RC) {
446 PhysReg = *AliasSet; // Take an aliased register
447 break;
448 }
449 }
Chris Lattnere6235442003-08-23 23:49:42 +0000450 }
Chris Lattner4664bd52002-12-17 02:50:10 +0000451 }
Chris Lattner101b8cd2002-12-16 16:15:28 +0000452 }
453
Chris Lattner4664bd52002-12-17 02:50:10 +0000454 assert(PhysReg && "Physical register not assigned!?!?");
455
Chris Lattner101b8cd2002-12-16 16:15:28 +0000456 // At this point PhysRegsUseOrder[i] is the least recently used register of
457 // compatible register class. Spill it to memory and reap its remains.
Chris Lattner0129b862002-12-16 17:44:42 +0000458 spillPhysReg(MBB, I, PhysReg);
Chris Lattner101b8cd2002-12-16 16:15:28 +0000459 }
460
461 // Now that we know which register we need to assign this to, do it now!
Chris Lattnerbfa53192003-01-13 00:25:40 +0000462 assignVirtToPhysReg(VirtReg, PhysReg);
Chris Lattner101b8cd2002-12-16 16:15:28 +0000463 return PhysReg;
464}
465
Chris Lattner4664bd52002-12-17 02:50:10 +0000466
Chris Lattnerddedac52004-02-17 03:57:19 +0000467/// reloadVirtReg - This method transforms the specified specified virtual
468/// register use to refer to a physical register. This method may do this in
469/// one of several ways: if the register is available in a physical register
470/// already, it uses that physical register. If the value is not in a physical
471/// register, and if there are physical registers available, it loads it into a
472/// register. If register pressure is high, and it is possible, it tries to
473/// fold the load of the virtual register into the instruction itself. It
474/// avoids doing this if register pressure is low to improve the chance that
475/// subsequent instructions can use the reloaded value. This method returns the
476/// modified instruction.
Chris Lattner101b8cd2002-12-16 16:15:28 +0000477///
Chris Lattnerddedac52004-02-17 03:57:19 +0000478MachineInstr *RA::reloadVirtReg(MachineBasicBlock &MBB, MachineInstr *MI,
479 unsigned OpNum) {
480 unsigned VirtReg = MI->getOperand(OpNum).getReg();
481
482 // If the virtual register is already available, just update the instruction
483 // and return.
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +0000484 if (unsigned PR = getVirt2PhysRegMapSlot(VirtReg)) {
Chris Lattnerddedac52004-02-17 03:57:19 +0000485 MarkPhysRegRecentlyUsed(PR); // Already have this value available!
486 MI->SetMachineOperandReg(OpNum, PR); // Assign the input register
487 return MI;
Chris Lattner101b8cd2002-12-16 16:15:28 +0000488 }
489
Chris Lattnerba9e3e22004-02-17 04:08:37 +0000490 // Otherwise, we need to fold it into the current instruction, or reload it.
491 // If we have registers available to hold the value, use them.
Chris Lattner42714ec2002-12-25 05:05:46 +0000492 const TargetRegisterClass *RC = MF->getSSARegMap()->getRegClass(VirtReg);
Chris Lattnerba9e3e22004-02-17 04:08:37 +0000493 unsigned PhysReg = getFreeReg(RC);
494
495 if (PhysReg == 0) { // No registers available...
496 /// If we can fold this spill into this instruction, do so now.
497 if (0) {
498 // TODO
499 return MI;
500 }
501
502 // It looks like we can't fold this virtual register load into this
503 // instruction. Force some poor hapless value out of the register file to
504 // make room for the new register, and reload it.
505 PhysReg = getReg(MBB, MI, VirtReg);
506 }
507
Chris Lattnerb4e41112002-12-28 20:40:43 +0000508 int FrameIndex = getStackSpaceFor(VirtReg, RC);
Chris Lattner101b8cd2002-12-16 16:15:28 +0000509
Chris Lattnerbfa53192003-01-13 00:25:40 +0000510 markVirtRegModified(VirtReg, false); // Note that this reg was just reloaded
511
Chris Lattner815b85e2003-08-04 23:36:39 +0000512 DEBUG(std::cerr << " Reloading %reg" << VirtReg << " into "
513 << RegInfo->getName(PhysReg) << "\n");
514
Chris Lattner101b8cd2002-12-16 16:15:28 +0000515 // Add move instruction(s)
Chris Lattnerddedac52004-02-17 03:57:19 +0000516 RegInfo->loadRegFromStackSlot(MBB, MI, PhysReg, FrameIndex, RC);
Chris Lattner101b8cd2002-12-16 16:15:28 +0000517 ++NumReloaded; // Update statistics
Chris Lattnerddedac52004-02-17 03:57:19 +0000518
519 MI->SetMachineOperandReg(OpNum, PhysReg); // Assign the input register
520 return MI;
Chris Lattner101b8cd2002-12-16 16:15:28 +0000521}
522
Chris Lattner815b85e2003-08-04 23:36:39 +0000523
524
Chris Lattner101b8cd2002-12-16 16:15:28 +0000525void RA::AllocateBasicBlock(MachineBasicBlock &MBB) {
526 // loop over each instruction
Alkis Evlogimenos80da8652004-02-12 02:27:10 +0000527 MachineBasicBlock::iterator MI = MBB.begin();
528 for (; MI != MBB.end(); ++MI) {
Chris Lattnerb4d58d72003-01-14 22:00:31 +0000529 const TargetInstrDescriptor &TID = TM->getInstrInfo().get(MI->getOpcode());
Chris Lattner815b85e2003-08-04 23:36:39 +0000530 DEBUG(std::cerr << "\nStarting RegAlloc of: " << *MI;
531 std::cerr << " Regs have values: ";
Chris Lattner490627a2004-02-09 01:26:13 +0000532 for (unsigned i = 0; i != RegInfo->getNumRegs(); ++i)
533 if (PhysRegsUsed[i] != -1)
534 std::cerr << "[" << RegInfo->getName(i)
535 << ",%reg" << PhysRegsUsed[i] << "] ";
Chris Lattner815b85e2003-08-04 23:36:39 +0000536 std::cerr << "\n");
Chris Lattner101b8cd2002-12-16 16:15:28 +0000537
Chris Lattner4664bd52002-12-17 02:50:10 +0000538 // Loop over the implicit uses, making sure that they are at the head of the
539 // use order list, so they don't get reallocated.
Alkis Evlogimenos5f1f3372003-10-08 05:20:08 +0000540 for (const unsigned *ImplicitUses = TID.ImplicitUses;
541 *ImplicitUses; ++ImplicitUses)
Chris Lattner80cbed42004-02-09 02:12:04 +0000542 MarkPhysRegRecentlyUsed(*ImplicitUses);
Chris Lattner101b8cd2002-12-16 16:15:28 +0000543
Brian Gaeke91e16e72003-08-15 21:19:25 +0000544 // Get the used operands into registers. This has the potential to spill
Chris Lattner815b85e2003-08-04 23:36:39 +0000545 // incoming values if we are out of registers. Note that we completely
546 // ignore physical register uses here. We assume that if an explicit
547 // physical register is referenced by the instruction, that it is guaranteed
548 // to be live-in, or the input is badly hosed.
Chris Lattner101b8cd2002-12-16 16:15:28 +0000549 //
Chris Lattnerddedac52004-02-17 03:57:19 +0000550 for (unsigned i = 0; i != MI->getNumOperands(); ++i)
Alkis Evlogimenosaaba4632003-12-14 13:24:17 +0000551 if (MI->getOperand(i).isUse() &&
Chris Lattner5dd5be32004-02-10 21:12:22 +0000552 !MI->getOperand(i).isDef() && MI->getOperand(i).isRegister() &&
Chris Lattnerddedac52004-02-17 03:57:19 +0000553 MRegisterInfo::isVirtualRegister(MI->getOperand(i).getReg()))
554 MI = reloadVirtReg(MBB, MI, i);
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +0000555
Chris Lattnerbfa53192003-01-13 00:25:40 +0000556 if (!DisableKill) {
557 // If this instruction is the last user of anything in registers, kill the
558 // value, freeing the register being used, so it doesn't need to be
559 // spilled to memory.
560 //
561 for (LiveVariables::killed_iterator KI = LV->killed_begin(MI),
Chris Lattner5a78ee82003-05-12 03:54:14 +0000562 KE = LV->killed_end(MI); KI != KE; ++KI) {
Chris Lattnerbfa53192003-01-13 00:25:40 +0000563 unsigned VirtReg = KI->second;
Chris Lattner5a78ee82003-05-12 03:54:14 +0000564 unsigned PhysReg = VirtReg;
Chris Lattnerc330b982004-01-31 21:27:19 +0000565 if (MRegisterInfo::isVirtualRegister(VirtReg)) {
Chris Lattner80cbed42004-02-09 02:12:04 +0000566 unsigned &PhysRegSlot = getVirt2PhysRegMapSlot(VirtReg);
567 PhysReg = PhysRegSlot;
568 assert(PhysReg != 0);
569 PhysRegSlot = 0;
Chris Lattner5a78ee82003-05-12 03:54:14 +0000570 }
Chris Lattnerbfa53192003-01-13 00:25:40 +0000571
Chris Lattner5a78ee82003-05-12 03:54:14 +0000572 if (PhysReg) {
Chris Lattner815b85e2003-08-04 23:36:39 +0000573 DEBUG(std::cerr << " Last use of " << RegInfo->getName(PhysReg)
574 << "[%reg" << VirtReg <<"], removing it from live set\n");
Chris Lattner506fa682003-08-05 00:49:09 +0000575 removePhysReg(PhysReg);
Chris Lattner5a78ee82003-05-12 03:54:14 +0000576 }
Chris Lattnerbfa53192003-01-13 00:25:40 +0000577 }
578 }
579
580 // Loop over all of the operands of the instruction, spilling registers that
581 // are defined, and marking explicit destinations in the PhysRegsUsed map.
582 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i)
Chris Lattner373fba52004-02-10 20:41:10 +0000583 if (MI->getOperand(i).isDef() && MI->getOperand(i).isRegister() &&
584 MRegisterInfo::isPhysicalRegister(MI->getOperand(i).getReg())) {
Alkis Evlogimenos8cdd0212004-02-13 21:01:20 +0000585 unsigned Reg = MI->getOperand(i).getReg();
Alkis Evlogimenos80da8652004-02-12 02:27:10 +0000586 spillPhysReg(MBB, MI, Reg, true); // Spill any existing value in the reg
Chris Lattnerbfa53192003-01-13 00:25:40 +0000587 PhysRegsUsed[Reg] = 0; // It is free and reserved now
588 PhysRegsUseOrder.push_back(Reg);
Alkis Evlogimenosebbd66c2004-01-13 06:24:30 +0000589 for (const unsigned *AliasSet = RegInfo->getAliasSet(Reg);
590 *AliasSet; ++AliasSet) {
Chris Lattner80cbed42004-02-09 02:12:04 +0000591 PhysRegsUseOrder.push_back(*AliasSet);
592 PhysRegsUsed[*AliasSet] = 0; // It is free and reserved now
Alkis Evlogimenosebbd66c2004-01-13 06:24:30 +0000593 }
Chris Lattnerbfa53192003-01-13 00:25:40 +0000594 }
595
596 // Loop over the implicit defs, spilling them as well.
Alkis Evlogimenos9bced942003-12-13 01:20:58 +0000597 for (const unsigned *ImplicitDefs = TID.ImplicitDefs;
598 *ImplicitDefs; ++ImplicitDefs) {
599 unsigned Reg = *ImplicitDefs;
Alkis Evlogimenos80da8652004-02-12 02:27:10 +0000600 spillPhysReg(MBB, MI, Reg);
Alkis Evlogimenos9bced942003-12-13 01:20:58 +0000601 PhysRegsUseOrder.push_back(Reg);
602 PhysRegsUsed[Reg] = 0; // It is free and reserved now
Alkis Evlogimenosebbd66c2004-01-13 06:24:30 +0000603 for (const unsigned *AliasSet = RegInfo->getAliasSet(Reg);
604 *AliasSet; ++AliasSet) {
Chris Lattner80cbed42004-02-09 02:12:04 +0000605 PhysRegsUseOrder.push_back(*AliasSet);
606 PhysRegsUsed[*AliasSet] = 0; // It is free and reserved now
Alkis Evlogimenosebbd66c2004-01-13 06:24:30 +0000607 }
Alkis Evlogimenos9bced942003-12-13 01:20:58 +0000608 }
Chris Lattnerbfa53192003-01-13 00:25:40 +0000609
Chris Lattner101b8cd2002-12-16 16:15:28 +0000610 // Okay, we have allocated all of the source operands and spilled any values
611 // that would be destroyed by defs of this instruction. Loop over the
Chris Lattnerbfa53192003-01-13 00:25:40 +0000612 // implicit defs and assign them to a register, spilling incoming values if
613 // we need to scavenge a register.
Chris Lattnerd4627092002-12-18 08:14:26 +0000614 //
Chris Lattner101b8cd2002-12-16 16:15:28 +0000615 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i)
Chris Lattner5dd5be32004-02-10 21:12:22 +0000616 if (MI->getOperand(i).isDef() && MI->getOperand(i).isRegister() &&
617 MRegisterInfo::isVirtualRegister(MI->getOperand(i).getReg())) {
Alkis Evlogimenos8cdd0212004-02-13 21:01:20 +0000618 unsigned DestVirtReg = MI->getOperand(i).getReg();
Chris Lattner101b8cd2002-12-16 16:15:28 +0000619 unsigned DestPhysReg;
620
Alkis Evlogimenosc17d57b2003-12-18 13:08:52 +0000621 // If DestVirtReg already has a value, use it.
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +0000622 if (!(DestPhysReg = getVirt2PhysRegMapSlot(DestVirtReg)))
Alkis Evlogimenos80da8652004-02-12 02:27:10 +0000623 DestPhysReg = getReg(MBB, MI, DestVirtReg);
Chris Lattner5a78ee82003-05-12 03:54:14 +0000624 markVirtRegModified(DestVirtReg);
Chris Lattner101b8cd2002-12-16 16:15:28 +0000625 MI->SetMachineOperandReg(i, DestPhysReg); // Assign the output register
626 }
Chris Lattnerd4627092002-12-18 08:14:26 +0000627
628 if (!DisableKill) {
Chris Lattnerbfa53192003-01-13 00:25:40 +0000629 // If this instruction defines any registers that are immediately dead,
630 // kill them now.
631 //
632 for (LiveVariables::killed_iterator KI = LV->dead_begin(MI),
Chris Lattner5a78ee82003-05-12 03:54:14 +0000633 KE = LV->dead_end(MI); KI != KE; ++KI) {
Chris Lattnerbfa53192003-01-13 00:25:40 +0000634 unsigned VirtReg = KI->second;
Chris Lattner5a78ee82003-05-12 03:54:14 +0000635 unsigned PhysReg = VirtReg;
Chris Lattnerc330b982004-01-31 21:27:19 +0000636 if (MRegisterInfo::isVirtualRegister(VirtReg)) {
Chris Lattner80cbed42004-02-09 02:12:04 +0000637 unsigned &PhysRegSlot = getVirt2PhysRegMapSlot(VirtReg);
638 PhysReg = PhysRegSlot;
639 assert(PhysReg != 0);
640 PhysRegSlot = 0;
Chris Lattner5a78ee82003-05-12 03:54:14 +0000641 }
Chris Lattnerbfa53192003-01-13 00:25:40 +0000642
Chris Lattner5a78ee82003-05-12 03:54:14 +0000643 if (PhysReg) {
Chris Lattner815b85e2003-08-04 23:36:39 +0000644 DEBUG(std::cerr << " Register " << RegInfo->getName(PhysReg)
645 << " [%reg" << VirtReg
646 << "] is never used, removing it frame live list\n");
Chris Lattner5a78ee82003-05-12 03:54:14 +0000647 removePhysReg(PhysReg);
648 }
Chris Lattnerd4627092002-12-18 08:14:26 +0000649 }
650 }
Chris Lattner101b8cd2002-12-16 16:15:28 +0000651 }
652
653 // Rewind the iterator to point to the first flow control instruction...
Chris Lattnerb4d58d72003-01-14 22:00:31 +0000654 const TargetInstrInfo &TII = TM->getInstrInfo();
Alkis Evlogimenos80da8652004-02-12 02:27:10 +0000655 MI = MBB.end();
656 while (MI != MBB.begin() && TII.isTerminatorInstr((--MI)->getOpcode()));
657 ++MI;
Chris Lattner101b8cd2002-12-16 16:15:28 +0000658
659 // Spill all physical registers holding virtual registers now.
Chris Lattner490627a2004-02-09 01:26:13 +0000660 for (unsigned i = 0, e = RegInfo->getNumRegs(); i != e; ++i)
661 if (PhysRegsUsed[i] != -1)
662 if (unsigned VirtReg = PhysRegsUsed[i])
Alkis Evlogimenos80da8652004-02-12 02:27:10 +0000663 spillVirtReg(MBB, MI, VirtReg, i);
Chris Lattner490627a2004-02-09 01:26:13 +0000664 else
665 removePhysReg(i);
Chris Lattner101b8cd2002-12-16 16:15:28 +0000666
Chris Lattner80cbed42004-02-09 02:12:04 +0000667#ifndef NDEBUG
668 bool AllOk = true;
669 for (unsigned i = 0, e = Virt2PhysRegMap.size(); i != e; ++i)
670 if (unsigned PR = Virt2PhysRegMap[i]) {
671 std::cerr << "Register still mapped: " << i << " -> " << PR << "\n";
672 AllOk = false;
673 }
674 assert(AllOk && "Virtual registers still in phys regs?");
675#endif
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +0000676
Chris Lattner931947d2003-08-17 18:01:15 +0000677 // Clear any physical register which appear live at the end of the basic
678 // block, but which do not hold any virtual registers. e.g., the stack
679 // pointer.
680 PhysRegsUseOrder.clear();
Chris Lattner101b8cd2002-12-16 16:15:28 +0000681}
682
Chris Lattner0ea32b82002-12-17 03:16:10 +0000683
Chris Lattner101b8cd2002-12-16 16:15:28 +0000684/// runOnMachineFunction - Register allocate the whole function
685///
686bool RA::runOnMachineFunction(MachineFunction &Fn) {
687 DEBUG(std::cerr << "Machine Function " << "\n");
688 MF = &Fn;
Chris Lattnerb4e41112002-12-28 20:40:43 +0000689 TM = &Fn.getTarget();
690 RegInfo = TM->getRegisterInfo();
Chris Lattner101b8cd2002-12-16 16:15:28 +0000691
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +0000692 PhysRegsUsed.assign(RegInfo->getNumRegs(), -1);
Chris Lattner490627a2004-02-09 01:26:13 +0000693
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +0000694 // initialize the virtual->physical register map to have a 'null'
695 // mapping for all virtual registers
696 Virt2PhysRegMap.assign(MF->getSSARegMap()->getNumVirtualRegs(), 0);
Chris Lattner80cbed42004-02-09 02:12:04 +0000697
Chris Lattnerd4627092002-12-18 08:14:26 +0000698 if (!DisableKill)
Chris Lattnerbfa53192003-01-13 00:25:40 +0000699 LV = &getAnalysis<LiveVariables>();
Chris Lattnerd4627092002-12-18 08:14:26 +0000700
Chris Lattner101b8cd2002-12-16 16:15:28 +0000701 // Loop over all of the basic blocks, eliminating virtual register references
702 for (MachineFunction::iterator MBB = Fn.begin(), MBBe = Fn.end();
703 MBB != MBBe; ++MBB)
704 AllocateBasicBlock(*MBB);
705
Chris Lattnerb4e41112002-12-28 20:40:43 +0000706 StackSlotForVirtReg.clear();
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +0000707 PhysRegsUsed.clear();
Chris Lattnerbfa53192003-01-13 00:25:40 +0000708 VirtRegModified.clear();
Chris Lattner80cbed42004-02-09 02:12:04 +0000709 Virt2PhysRegMap.clear();
Chris Lattner101b8cd2002-12-16 16:15:28 +0000710 return true;
711}
712
Chris Lattnerc330b982004-01-31 21:27:19 +0000713FunctionPass *llvm::createLocalRegisterAllocator() {
Chris Lattnerb4e41112002-12-28 20:40:43 +0000714 return new RA();
Chris Lattner101b8cd2002-12-16 16:15:28 +0000715}