blob: 3654efd22bd0980e95b22d70765b8b0b08b52169 [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 Lattner91a452b2003-01-13 00:25:40 +000017#include "llvm/CodeGen/Passes.h"
Chris Lattner580f9be2002-12-28 20:40:43 +000018#include "llvm/CodeGen/MachineFunctionPass.h"
Chris Lattnerb74e83c2002-12-16 16:15:28 +000019#include "llvm/CodeGen/MachineInstr.h"
Chris Lattnereb24db92002-12-28 21:08:26 +000020#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000021#include "llvm/CodeGen/MachineRegisterInfo.h"
Chris Lattner91a452b2003-01-13 00:25:40 +000022#include "llvm/CodeGen/LiveVariables.h"
Jim Laskeyeb577ba2006-08-02 12:30:23 +000023#include "llvm/CodeGen/RegAllocRegistry.h"
Chris Lattner3501fea2003-01-14 22:00:31 +000024#include "llvm/Target/TargetInstrInfo.h"
Chris Lattnerb74e83c2002-12-16 16:15:28 +000025#include "llvm/Target/TargetMachine.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000026#include "llvm/Support/CommandLine.h"
27#include "llvm/Support/Debug.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000028#include "llvm/Support/Compiler.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"
Chris Lattner27f29162004-10-26 15:35:58 +000032#include <algorithm>
Chris Lattneref09c632004-01-31 21:27:19 +000033using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000034
Chris Lattnercd3245a2006-12-19 22:41:21 +000035STATISTIC(NumStores, "Number of stores added");
36STATISTIC(NumLoads , "Number of loads added");
37STATISTIC(NumFolded, "Number of loads/stores folded into instructions");
Jim Laskey13ec7022006-08-01 14:21:23 +000038
Chris Lattnercd3245a2006-12-19 22:41:21 +000039namespace {
Jim Laskey13ec7022006-08-01 14:21:23 +000040 static RegisterRegAlloc
41 localRegAlloc("local", " local register allocator",
42 createLocalRegisterAllocator);
43
44
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;
Chris Lattner84bc5422007-12-31 04:13:23 +000052 const MRegisterInfo *MRI;
Owen Anderson6425f8b2008-01-07 01:35:56 +000053 const TargetInstrInfo *TII;
Chris Lattner91a452b2003-01-13 00:25:40 +000054 LiveVariables *LV;
Chris Lattnerff863ba2002-12-25 05:05:46 +000055
Chris Lattnerb8822ad2003-08-04 23:36:39 +000056 // StackSlotForVirtReg - Maps virtual regs to the frame index where these
57 // values are spilled.
Chris Lattner580f9be2002-12-28 20:40:43 +000058 std::map<unsigned, int> StackSlotForVirtReg;
Chris Lattnerb74e83c2002-12-16 16:15:28 +000059
60 // Virt2PhysRegMap - This map contains entries for each virtual register
Alkis Evlogimenos4d0d8642004-02-25 21:55:45 +000061 // that is currently available in a physical register.
Chris Lattner94c002a2007-02-01 05:32:05 +000062 IndexedMap<unsigned, VirtReg2IndexFunctor> Virt2PhysRegMap;
Chris Lattnerecea5632004-02-09 02:12:04 +000063
64 unsigned &getVirt2PhysRegMapSlot(unsigned VirtReg) {
Alkis Evlogimenos4d0d8642004-02-25 21:55:45 +000065 return Virt2PhysRegMap[VirtReg];
Chris Lattnerecea5632004-02-09 02:12:04 +000066 }
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +000067
Chris Lattner64667b62004-02-09 01:26:13 +000068 // PhysRegsUsed - This array is effectively a map, containing entries for
69 // each physical register that currently has a value (ie, it is in
70 // Virt2PhysRegMap). The value mapped to is the virtual register
71 // corresponding to the physical register (the inverse of the
72 // Virt2PhysRegMap), or 0. The value is set to 0 if this register is pinned
Chris Lattner45d57882006-09-08 19:03:30 +000073 // because it is used by a future instruction, and to -2 if it is not
74 // allocatable. If the entry for a physical register is -1, then the
75 // physical register is "not in the map".
Chris Lattnerb74e83c2002-12-16 16:15:28 +000076 //
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +000077 std::vector<int> PhysRegsUsed;
Chris Lattnerb74e83c2002-12-16 16:15:28 +000078
79 // PhysRegsUseOrder - This contains a list of the physical registers that
80 // currently have a virtual register value in them. This list provides an
81 // ordering of registers, imposing a reallocation order. This list is only
82 // used if all registers are allocated and we have to spill one, in which
83 // case we spill the least recently used register. Entries at the front of
84 // the list are the least recently used registers, entries at the back are
85 // the most recently used.
86 //
87 std::vector<unsigned> PhysRegsUseOrder;
88
Chris Lattner91a452b2003-01-13 00:25:40 +000089 // VirtRegModified - This bitset contains information about which virtual
90 // registers need to be spilled back to memory when their registers are
91 // scavenged. If a virtual register has simply been rematerialized, there
92 // is no reason to spill it to memory when we need the register back.
Chris Lattner82bee0f2002-12-18 08:14:26 +000093 //
Evan Cheng644340a2008-01-17 00:35:26 +000094 BitVector VirtRegModified;
Chris Lattner91a452b2003-01-13 00:25:40 +000095
96 void markVirtRegModified(unsigned Reg, bool Val = true) {
Chris Lattneref09c632004-01-31 21:27:19 +000097 assert(MRegisterInfo::isVirtualRegister(Reg) && "Illegal VirtReg!");
Chris Lattner91a452b2003-01-13 00:25:40 +000098 Reg -= MRegisterInfo::FirstVirtualRegister;
Evan Cheng644340a2008-01-17 00:35:26 +000099 if (Val)
100 VirtRegModified.set(Reg);
101 else
102 VirtRegModified.reset(Reg);
Chris Lattner91a452b2003-01-13 00:25:40 +0000103 }
104
105 bool isVirtRegModified(unsigned Reg) const {
Chris Lattneref09c632004-01-31 21:27:19 +0000106 assert(MRegisterInfo::isVirtualRegister(Reg) && "Illegal VirtReg!");
Chris Lattner91a452b2003-01-13 00:25:40 +0000107 assert(Reg - MRegisterInfo::FirstVirtualRegister < VirtRegModified.size()
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000108 && "Illegal virtual register!");
Chris Lattner91a452b2003-01-13 00:25:40 +0000109 return VirtRegModified[Reg - MRegisterInfo::FirstVirtualRegister];
110 }
Chris Lattner82bee0f2002-12-18 08:14:26 +0000111
Evan Cheng7ac19af2007-06-26 21:05:13 +0000112 void AddToPhysRegsUseOrder(unsigned Reg) {
113 std::vector<unsigned>::iterator It =
114 std::find(PhysRegsUseOrder.begin(), PhysRegsUseOrder.end(), Reg);
115 if (It != PhysRegsUseOrder.end())
116 PhysRegsUseOrder.erase(It);
117 PhysRegsUseOrder.push_back(Reg);
118 }
119
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000120 void MarkPhysRegRecentlyUsed(unsigned Reg) {
Chris Lattner5e503492006-09-03 07:15:37 +0000121 if (PhysRegsUseOrder.empty() ||
122 PhysRegsUseOrder.back() == Reg) return; // Already most recently used
Chris Lattner0eb172c2002-12-24 00:04:55 +0000123
124 for (unsigned i = PhysRegsUseOrder.size(); i != 0; --i)
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000125 if (areRegsEqual(Reg, PhysRegsUseOrder[i-1])) {
126 unsigned RegMatch = PhysRegsUseOrder[i-1]; // remove from middle
127 PhysRegsUseOrder.erase(PhysRegsUseOrder.begin()+i-1);
128 // Add it to the end of the list
129 PhysRegsUseOrder.push_back(RegMatch);
130 if (RegMatch == Reg)
131 return; // Found an exact match, exit early
132 }
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000133 }
134
135 public:
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000136 virtual const char *getPassName() const {
137 return "Local Register Allocator";
138 }
139
Chris Lattner91a452b2003-01-13 00:25:40 +0000140 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattner56ddada2004-02-17 17:49:10 +0000141 AU.addRequired<LiveVariables>();
Chris Lattner91a452b2003-01-13 00:25:40 +0000142 AU.addRequiredID(PHIEliminationID);
Alkis Evlogimenos4c080862003-12-18 22:40:24 +0000143 AU.addRequiredID(TwoAddressInstructionPassID);
Chris Lattner91a452b2003-01-13 00:25:40 +0000144 MachineFunctionPass::getAnalysisUsage(AU);
145 }
146
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000147 private:
148 /// runOnMachineFunction - Register allocate the whole function
149 bool runOnMachineFunction(MachineFunction &Fn);
150
151 /// AllocateBasicBlock - Register allocate the specified basic block.
152 void AllocateBasicBlock(MachineBasicBlock &MBB);
153
Chris Lattner82bee0f2002-12-18 08:14:26 +0000154
Chris Lattner82bee0f2002-12-18 08:14:26 +0000155 /// areRegsEqual - This method returns true if the specified registers are
156 /// related to each other. To do this, it checks to see if they are equal
157 /// or if the first register is in the alias set of the second register.
158 ///
159 bool areRegsEqual(unsigned R1, unsigned R2) const {
160 if (R1 == R2) return true;
Chris Lattner84bc5422007-12-31 04:13:23 +0000161 for (const unsigned *AliasSet = MRI->getAliasSet(R2);
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000162 *AliasSet; ++AliasSet) {
163 if (*AliasSet == R1) return true;
164 }
Chris Lattner82bee0f2002-12-18 08:14:26 +0000165 return false;
166 }
167
Chris Lattner580f9be2002-12-28 20:40:43 +0000168 /// getStackSpaceFor - This returns the frame index of the specified virtual
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000169 /// register on the stack, allocating space if necessary.
Chris Lattner580f9be2002-12-28 20:40:43 +0000170 int getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass *RC);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000171
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000172 /// removePhysReg - This method marks the specified physical register as no
173 /// longer being in use.
174 ///
Chris Lattner82bee0f2002-12-18 08:14:26 +0000175 void removePhysReg(unsigned PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000176
177 /// spillVirtReg - This method spills the value specified by PhysReg into
178 /// the virtual register slot specified by VirtReg. It then updates the RA
179 /// data structures to indicate the fact that PhysReg is now available.
180 ///
Chris Lattner688c8252004-02-22 19:08:15 +0000181 void spillVirtReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI,
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000182 unsigned VirtReg, unsigned PhysReg);
183
Chris Lattnerc21be922002-12-16 17:44:42 +0000184 /// spillPhysReg - This method spills the specified physical register into
Chris Lattner128c2aa2003-08-17 18:01:15 +0000185 /// the virtual register slot associated with it. If OnlyVirtRegs is set to
186 /// true, then the request is ignored if the physical register does not
187 /// contain a virtual register.
Chris Lattner91a452b2003-01-13 00:25:40 +0000188 ///
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000189 void spillPhysReg(MachineBasicBlock &MBB, MachineInstr *I,
Chris Lattner128c2aa2003-08-17 18:01:15 +0000190 unsigned PhysReg, bool OnlyVirtRegs = false);
Chris Lattnerc21be922002-12-16 17:44:42 +0000191
Chris Lattner91a452b2003-01-13 00:25:40 +0000192 /// assignVirtToPhysReg - This method updates local state so that we know
193 /// that PhysReg is the proper container for VirtReg now. The physical
194 /// register must not be used for anything else when this is called.
195 ///
196 void assignVirtToPhysReg(unsigned VirtReg, unsigned PhysReg);
197
Chris Lattnerae640432002-12-17 02:50:10 +0000198 /// isPhysRegAvailable - Return true if the specified physical register is
199 /// free and available for use. This also includes checking to see if
200 /// aliased registers are all free...
201 ///
Chris Lattner82bee0f2002-12-18 08:14:26 +0000202 bool isPhysRegAvailable(unsigned PhysReg) const;
Chris Lattner91a452b2003-01-13 00:25:40 +0000203
204 /// getFreeReg - Look to see if there is a free register available in the
205 /// specified register class. If not, return 0.
206 ///
207 unsigned getFreeReg(const TargetRegisterClass *RC);
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000208
Chris Lattner91a452b2003-01-13 00:25:40 +0000209 /// getReg - Find a physical register to hold the specified virtual
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000210 /// register. If all compatible physical registers are used, this method
211 /// spills the last used virtual register to the stack, and uses that
212 /// register.
213 ///
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000214 unsigned getReg(MachineBasicBlock &MBB, MachineInstr *MI,
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000215 unsigned VirtReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000216
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000217 /// reloadVirtReg - This method transforms the specified specified virtual
218 /// register use to refer to a physical register. This method may do this
219 /// in one of several ways: if the register is available in a physical
220 /// register already, it uses that physical register. If the value is not
221 /// in a physical register, and if there are physical registers available,
222 /// it loads it into a register. If register pressure is high, and it is
223 /// possible, it tries to fold the load of the virtual register into the
224 /// instruction itself. It avoids doing this if register pressure is low to
225 /// improve the chance that subsequent instructions can use the reloaded
226 /// value. This method returns the modified instruction.
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000227 ///
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000228 MachineInstr *reloadVirtReg(MachineBasicBlock &MBB, MachineInstr *MI,
229 unsigned OpNum);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000230
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000231
232 void reloadPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator &I,
233 unsigned PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000234 };
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000235 char RALocal::ID = 0;
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000236}
237
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000238/// getStackSpaceFor - This allocates space for the specified virtual register
239/// to be held on the stack.
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000240int RALocal::getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass *RC) {
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000241 // Find the location Reg would belong...
242 std::map<unsigned, int>::iterator I =StackSlotForVirtReg.lower_bound(VirtReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000243
Chris Lattner580f9be2002-12-28 20:40:43 +0000244 if (I != StackSlotForVirtReg.end() && I->first == VirtReg)
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000245 return I->second; // Already has space allocated?
246
Chris Lattner580f9be2002-12-28 20:40:43 +0000247 // Allocate a new stack object for this spill location...
Chris Lattner26eb14b2004-08-15 22:02:22 +0000248 int FrameIdx = MF->getFrameInfo()->CreateStackObject(RC->getSize(),
249 RC->getAlignment());
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000250
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000251 // Assign the slot...
Chris Lattner580f9be2002-12-28 20:40:43 +0000252 StackSlotForVirtReg.insert(I, std::make_pair(VirtReg, FrameIdx));
253 return FrameIdx;
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000254}
255
Chris Lattnerae640432002-12-17 02:50:10 +0000256
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000257/// removePhysReg - This method marks the specified physical register as no
Chris Lattner82bee0f2002-12-18 08:14:26 +0000258/// longer being in use.
259///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000260void RALocal::removePhysReg(unsigned PhysReg) {
Chris Lattner64667b62004-02-09 01:26:13 +0000261 PhysRegsUsed[PhysReg] = -1; // PhyReg no longer used
Chris Lattner82bee0f2002-12-18 08:14:26 +0000262
263 std::vector<unsigned>::iterator It =
264 std::find(PhysRegsUseOrder.begin(), PhysRegsUseOrder.end(), PhysReg);
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000265 if (It != PhysRegsUseOrder.end())
266 PhysRegsUseOrder.erase(It);
Chris Lattner82bee0f2002-12-18 08:14:26 +0000267}
268
Chris Lattner91a452b2003-01-13 00:25:40 +0000269
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000270/// spillVirtReg - This method spills the value specified by PhysReg into the
271/// virtual register slot specified by VirtReg. It then updates the RA data
272/// structures to indicate the fact that PhysReg is now available.
273///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000274void RALocal::spillVirtReg(MachineBasicBlock &MBB,
275 MachineBasicBlock::iterator I,
276 unsigned VirtReg, unsigned PhysReg) {
Chris Lattner8c819452003-08-05 04:13:58 +0000277 assert(VirtReg && "Spilling a physical register is illegal!"
Chris Lattnerd9ac6a72003-08-05 00:49:09 +0000278 " Must not have appropriate kill for the register or use exists beyond"
279 " the intended one.");
Chris Lattner84bc5422007-12-31 04:13:23 +0000280 DOUT << " Spilling register " << MRI->getName(PhysReg)
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000281 << " containing %reg" << VirtReg;
Owen Andersonf6372aa2008-01-01 21:11:32 +0000282
283 const TargetInstrInfo* TII = MBB.getParent()->getTarget().getInstrInfo();
284
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000285 if (!isVirtRegModified(VirtReg))
286 DOUT << " which has not been modified, so no store necessary!";
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000287
Chris Lattnerd9ac6a72003-08-05 00:49:09 +0000288 // Otherwise, there is a virtual register corresponding to this physical
289 // register. We only need to spill it into its stack slot if it has been
290 // modified.
291 if (isVirtRegModified(VirtReg)) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000292 const TargetRegisterClass *RC = MF->getRegInfo().getRegClass(VirtReg);
Chris Lattnerd9ac6a72003-08-05 00:49:09 +0000293 int FrameIndex = getStackSpaceFor(VirtReg, RC);
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000294 DOUT << " to stack slot #" << FrameIndex;
Owen Andersonf6372aa2008-01-01 21:11:32 +0000295 TII->storeRegToStackSlot(MBB, I, PhysReg, true, FrameIndex, RC);
Alkis Evlogimenos2acef2d2004-02-19 06:19:09 +0000296 ++NumStores; // Update statistics
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000297 }
Chris Lattnerecea5632004-02-09 02:12:04 +0000298
299 getVirt2PhysRegMapSlot(VirtReg) = 0; // VirtReg no longer available
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000300
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000301 DOUT << "\n";
Chris Lattner82bee0f2002-12-18 08:14:26 +0000302 removePhysReg(PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000303}
304
Chris Lattnerae640432002-12-17 02:50:10 +0000305
Chris Lattner91a452b2003-01-13 00:25:40 +0000306/// spillPhysReg - This method spills the specified physical register into the
Chris Lattner128c2aa2003-08-17 18:01:15 +0000307/// virtual register slot associated with it. If OnlyVirtRegs is set to true,
308/// then the request is ignored if the physical register does not contain a
309/// virtual register.
Chris Lattner91a452b2003-01-13 00:25:40 +0000310///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000311void RALocal::spillPhysReg(MachineBasicBlock &MBB, MachineInstr *I,
312 unsigned PhysReg, bool OnlyVirtRegs) {
Chris Lattner64667b62004-02-09 01:26:13 +0000313 if (PhysRegsUsed[PhysReg] != -1) { // Only spill it if it's used!
Chris Lattner45d57882006-09-08 19:03:30 +0000314 assert(PhysRegsUsed[PhysReg] != -2 && "Non allocable reg used!");
Chris Lattner64667b62004-02-09 01:26:13 +0000315 if (PhysRegsUsed[PhysReg] || !OnlyVirtRegs)
316 spillVirtReg(MBB, I, PhysRegsUsed[PhysReg], PhysReg);
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000317 } else {
Chris Lattner91a452b2003-01-13 00:25:40 +0000318 // If the selected register aliases any other registers, we must make
Chris Lattner45d57882006-09-08 19:03:30 +0000319 // sure that one of the aliases isn't alive.
Chris Lattner84bc5422007-12-31 04:13:23 +0000320 for (const unsigned *AliasSet = MRI->getAliasSet(PhysReg);
Chris Lattner64667b62004-02-09 01:26:13 +0000321 *AliasSet; ++AliasSet)
Chris Lattner45d57882006-09-08 19:03:30 +0000322 if (PhysRegsUsed[*AliasSet] != -1 && // Spill aliased register.
323 PhysRegsUsed[*AliasSet] != -2) // If allocatable.
Evan Cheng7ac19af2007-06-26 21:05:13 +0000324 if (PhysRegsUsed[*AliasSet])
325 spillVirtReg(MBB, I, PhysRegsUsed[*AliasSet], *AliasSet);
Chris Lattner91a452b2003-01-13 00:25:40 +0000326 }
327}
328
329
330/// assignVirtToPhysReg - This method updates local state so that we know
331/// that PhysReg is the proper container for VirtReg now. The physical
332/// register must not be used for anything else when this is called.
333///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000334void RALocal::assignVirtToPhysReg(unsigned VirtReg, unsigned PhysReg) {
Chris Lattner64667b62004-02-09 01:26:13 +0000335 assert(PhysRegsUsed[PhysReg] == -1 && "Phys reg already assigned!");
Chris Lattner91a452b2003-01-13 00:25:40 +0000336 // Update information to note the fact that this register was just used, and
337 // it holds VirtReg.
338 PhysRegsUsed[PhysReg] = VirtReg;
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000339 getVirt2PhysRegMapSlot(VirtReg) = PhysReg;
Evan Cheng7ac19af2007-06-26 21:05:13 +0000340 AddToPhysRegsUseOrder(PhysReg); // New use of PhysReg
Chris Lattner91a452b2003-01-13 00:25:40 +0000341}
342
343
Chris Lattnerae640432002-12-17 02:50:10 +0000344/// isPhysRegAvailable - Return true if the specified physical register is free
345/// and available for use. This also includes checking to see if aliased
346/// registers are all free...
347///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000348bool RALocal::isPhysRegAvailable(unsigned PhysReg) const {
Chris Lattner64667b62004-02-09 01:26:13 +0000349 if (PhysRegsUsed[PhysReg] != -1) return false;
Chris Lattnerae640432002-12-17 02:50:10 +0000350
351 // If the selected register aliases any other allocated registers, it is
352 // not free!
Chris Lattner84bc5422007-12-31 04:13:23 +0000353 for (const unsigned *AliasSet = MRI->getAliasSet(PhysReg);
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000354 *AliasSet; ++AliasSet)
Chris Lattner64667b62004-02-09 01:26:13 +0000355 if (PhysRegsUsed[*AliasSet] != -1) // Aliased register in use?
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000356 return false; // Can't use this reg then.
Chris Lattnerae640432002-12-17 02:50:10 +0000357 return true;
358}
359
360
Chris Lattner91a452b2003-01-13 00:25:40 +0000361/// getFreeReg - Look to see if there is a free register available in the
362/// specified register class. If not, return 0.
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000363///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000364unsigned RALocal::getFreeReg(const TargetRegisterClass *RC) {
Chris Lattner580f9be2002-12-28 20:40:43 +0000365 // Get iterators defining the range of registers that are valid to allocate in
366 // this class, which also specifies the preferred allocation order.
367 TargetRegisterClass::iterator RI = RC->allocation_order_begin(*MF);
368 TargetRegisterClass::iterator RE = RC->allocation_order_end(*MF);
Chris Lattnerae640432002-12-17 02:50:10 +0000369
Chris Lattner91a452b2003-01-13 00:25:40 +0000370 for (; RI != RE; ++RI)
371 if (isPhysRegAvailable(*RI)) { // Is reg unused?
372 assert(*RI != 0 && "Cannot use register!");
373 return *RI; // Found an unused register!
374 }
375 return 0;
376}
377
378
Chris Lattner91a452b2003-01-13 00:25:40 +0000379/// getReg - Find a physical register to hold the specified virtual
380/// register. If all compatible physical registers are used, this method spills
381/// the last used virtual register to the stack, and uses that register.
382///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000383unsigned RALocal::getReg(MachineBasicBlock &MBB, MachineInstr *I,
384 unsigned VirtReg) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000385 const TargetRegisterClass *RC = MF->getRegInfo().getRegClass(VirtReg);
Chris Lattner91a452b2003-01-13 00:25:40 +0000386
387 // First check to see if we have a free register of the requested type...
388 unsigned PhysReg = getFreeReg(RC);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000389
Chris Lattnerae640432002-12-17 02:50:10 +0000390 // If we didn't find an unused register, scavenge one now!
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000391 if (PhysReg == 0) {
Chris Lattnerc21be922002-12-16 17:44:42 +0000392 assert(!PhysRegsUseOrder.empty() && "No allocated registers??");
Chris Lattnerae640432002-12-17 02:50:10 +0000393
394 // Loop over all of the preallocated registers from the least recently used
395 // to the most recently used. When we find one that is capable of holding
396 // our register, use it.
397 for (unsigned i = 0; PhysReg == 0; ++i) {
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000398 assert(i != PhysRegsUseOrder.size() &&
399 "Couldn't find a register of the appropriate class!");
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000400
Chris Lattnerae640432002-12-17 02:50:10 +0000401 unsigned R = PhysRegsUseOrder[i];
Chris Lattner41822c72003-08-23 23:49:42 +0000402
403 // We can only use this register if it holds a virtual register (ie, it
404 // can be spilled). Do not use it if it is an explicitly allocated
405 // physical register!
Chris Lattner64667b62004-02-09 01:26:13 +0000406 assert(PhysRegsUsed[R] != -1 &&
Chris Lattner41822c72003-08-23 23:49:42 +0000407 "PhysReg in PhysRegsUseOrder, but is not allocated?");
Chris Lattner45d57882006-09-08 19:03:30 +0000408 if (PhysRegsUsed[R] && PhysRegsUsed[R] != -2) {
Chris Lattner41822c72003-08-23 23:49:42 +0000409 // If the current register is compatible, use it.
Chris Lattner3bba0262004-08-15 22:23:09 +0000410 if (RC->contains(R)) {
Chris Lattner41822c72003-08-23 23:49:42 +0000411 PhysReg = R;
412 break;
413 } else {
414 // If one of the registers aliased to the current register is
415 // compatible, use it.
Chris Lattner84bc5422007-12-31 04:13:23 +0000416 for (const unsigned *AliasIt = MRI->getAliasSet(R);
Chris Lattner5e503492006-09-03 07:15:37 +0000417 *AliasIt; ++AliasIt) {
418 if (RC->contains(*AliasIt) &&
419 // If this is pinned down for some reason, don't use it. For
420 // example, if CL is pinned, and we run across CH, don't use
421 // CH as justification for using scavenging ECX (which will
422 // fail).
Chris Lattner45d57882006-09-08 19:03:30 +0000423 PhysRegsUsed[*AliasIt] != 0 &&
424
425 // Make sure the register is allocatable. Don't allocate SIL on
426 // x86-32.
427 PhysRegsUsed[*AliasIt] != -2) {
Chris Lattner5e503492006-09-03 07:15:37 +0000428 PhysReg = *AliasIt; // Take an aliased register
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000429 break;
430 }
431 }
Chris Lattner41822c72003-08-23 23:49:42 +0000432 }
Chris Lattnerae640432002-12-17 02:50:10 +0000433 }
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000434 }
435
Chris Lattnerae640432002-12-17 02:50:10 +0000436 assert(PhysReg && "Physical register not assigned!?!?");
437
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000438 // At this point PhysRegsUseOrder[i] is the least recently used register of
439 // compatible register class. Spill it to memory and reap its remains.
Chris Lattnerc21be922002-12-16 17:44:42 +0000440 spillPhysReg(MBB, I, PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000441 }
442
443 // Now that we know which register we need to assign this to, do it now!
Chris Lattner91a452b2003-01-13 00:25:40 +0000444 assignVirtToPhysReg(VirtReg, PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000445 return PhysReg;
446}
447
Chris Lattnerae640432002-12-17 02:50:10 +0000448
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000449/// reloadVirtReg - This method transforms the specified specified virtual
450/// register use to refer to a physical register. This method may do this in
451/// one of several ways: if the register is available in a physical register
452/// already, it uses that physical register. If the value is not in a physical
453/// register, and if there are physical registers available, it loads it into a
454/// register. If register pressure is high, and it is possible, it tries to
455/// fold the load of the virtual register into the instruction itself. It
456/// avoids doing this if register pressure is low to improve the chance that
457/// subsequent instructions can use the reloaded value. This method returns the
458/// modified instruction.
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000459///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000460MachineInstr *RALocal::reloadVirtReg(MachineBasicBlock &MBB, MachineInstr *MI,
461 unsigned OpNum) {
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000462 unsigned VirtReg = MI->getOperand(OpNum).getReg();
463
464 // If the virtual register is already available, just update the instruction
465 // and return.
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000466 if (unsigned PR = getVirt2PhysRegMapSlot(VirtReg)) {
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000467 MarkPhysRegRecentlyUsed(PR); // Already have this value available!
Chris Lattnere53f4a02006-05-04 17:52:23 +0000468 MI->getOperand(OpNum).setReg(PR); // Assign the input register
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000469 return MI;
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000470 }
471
Chris Lattner1e3812c2004-02-17 04:08:37 +0000472 // Otherwise, we need to fold it into the current instruction, or reload it.
473 // If we have registers available to hold the value, use them.
Chris Lattner84bc5422007-12-31 04:13:23 +0000474 const TargetRegisterClass *RC = MF->getRegInfo().getRegClass(VirtReg);
Chris Lattner1e3812c2004-02-17 04:08:37 +0000475 unsigned PhysReg = getFreeReg(RC);
Chris Lattner11390e72004-02-17 08:09:40 +0000476 int FrameIndex = getStackSpaceFor(VirtReg, RC);
Chris Lattner1e3812c2004-02-17 04:08:37 +0000477
Chris Lattner11390e72004-02-17 08:09:40 +0000478 if (PhysReg) { // Register is available, allocate it!
479 assignVirtToPhysReg(VirtReg, PhysReg);
480 } else { // No registers available.
481 // If we can fold this spill into this instruction, do so now.
Evan Chengaee4af62007-12-02 08:30:39 +0000482 SmallVector<unsigned, 2> Ops;
483 Ops.push_back(OpNum);
Owen Anderson6425f8b2008-01-07 01:35:56 +0000484 if (MachineInstr* FMI = TII->foldMemoryOperand(MI, Ops, FrameIndex)) {
Alkis Evlogimenosd6f6d1a2004-02-21 18:07:33 +0000485 ++NumFolded;
Chris Lattnerd368c612004-02-19 18:34:02 +0000486 // Since we changed the address of MI, make sure to update live variables
487 // to know that the new instruction has the properties of the old one.
Alkis Evlogimenos39354c92004-03-14 07:19:51 +0000488 LV->instructionChanged(MI, FMI);
489 return MBB.insert(MBB.erase(MI), FMI);
Chris Lattner1e3812c2004-02-17 04:08:37 +0000490 }
491
492 // It looks like we can't fold this virtual register load into this
493 // instruction. Force some poor hapless value out of the register file to
494 // make room for the new register, and reload it.
495 PhysReg = getReg(MBB, MI, VirtReg);
496 }
497
Chris Lattner91a452b2003-01-13 00:25:40 +0000498 markVirtRegModified(VirtReg, false); // Note that this reg was just reloaded
499
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000500 DOUT << " Reloading %reg" << VirtReg << " into "
Chris Lattner84bc5422007-12-31 04:13:23 +0000501 << MRI->getName(PhysReg) << "\n";
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000502
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000503 // Add move instruction(s)
Owen Andersonf6372aa2008-01-01 21:11:32 +0000504 const TargetInstrInfo* TII = MBB.getParent()->getTarget().getInstrInfo();
505 TII->loadRegFromStackSlot(MBB, MI, PhysReg, FrameIndex, RC);
Alkis Evlogimenos2acef2d2004-02-19 06:19:09 +0000506 ++NumLoads; // Update statistics
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000507
Chris Lattner84bc5422007-12-31 04:13:23 +0000508 MF->getRegInfo().setPhysRegUsed(PhysReg);
Chris Lattnere53f4a02006-05-04 17:52:23 +0000509 MI->getOperand(OpNum).setReg(PhysReg); // Assign the input register
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000510 return MI;
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000511}
512
Evan Cheng7ac19af2007-06-26 21:05:13 +0000513/// isReadModWriteImplicitKill - True if this is an implicit kill for a
514/// read/mod/write register, i.e. update partial register.
515static bool isReadModWriteImplicitKill(MachineInstr *MI, unsigned Reg) {
516 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
517 MachineOperand& MO = MI->getOperand(i);
518 if (MO.isRegister() && MO.getReg() == Reg && MO.isImplicit() &&
519 MO.isDef() && !MO.isDead())
520 return true;
521 }
522 return false;
523}
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000524
Evan Cheng7ac19af2007-06-26 21:05:13 +0000525/// isReadModWriteImplicitDef - True if this is an implicit def for a
526/// read/mod/write register, i.e. update partial register.
527static bool isReadModWriteImplicitDef(MachineInstr *MI, unsigned Reg) {
528 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
529 MachineOperand& MO = MI->getOperand(i);
530 if (MO.isRegister() && MO.getReg() == Reg && MO.isImplicit() &&
531 !MO.isDef() && MO.isKill())
532 return true;
533 }
534 return false;
535}
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000536
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000537void RALocal::AllocateBasicBlock(MachineBasicBlock &MBB) {
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000538 // loop over each instruction
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000539 MachineBasicBlock::iterator MII = MBB.begin();
540 const TargetInstrInfo &TII = *TM->getInstrInfo();
Chris Lattner44500e32006-06-15 22:21:53 +0000541
Evan Chengddee8422006-11-15 20:55:15 +0000542 DEBUG(const BasicBlock *LBB = MBB.getBasicBlock();
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000543 if (LBB) DOUT << "\nStarting RegAlloc of BB: " << LBB->getName());
Evan Chengddee8422006-11-15 20:55:15 +0000544
Chris Lattner44500e32006-06-15 22:21:53 +0000545 // If this is the first basic block in the machine function, add live-in
546 // registers as active.
547 if (&MBB == &*MF->begin()) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000548 for (MachineRegisterInfo::livein_iterator I=MF->getRegInfo().livein_begin(),
549 E = MF->getRegInfo().livein_end(); I != E; ++I) {
Chris Lattner44500e32006-06-15 22:21:53 +0000550 unsigned Reg = I->first;
Chris Lattner84bc5422007-12-31 04:13:23 +0000551 MF->getRegInfo().setPhysRegUsed(Reg);
Chris Lattner44500e32006-06-15 22:21:53 +0000552 PhysRegsUsed[Reg] = 0; // It is free and reserved now
Evan Cheng7ac19af2007-06-26 21:05:13 +0000553 AddToPhysRegsUseOrder(Reg);
Chris Lattner84bc5422007-12-31 04:13:23 +0000554 for (const unsigned *AliasSet = MRI->getSubRegisters(Reg);
Chris Lattner44500e32006-06-15 22:21:53 +0000555 *AliasSet; ++AliasSet) {
Chris Lattner45d57882006-09-08 19:03:30 +0000556 if (PhysRegsUsed[*AliasSet] != -2) {
Evan Cheng7ac19af2007-06-26 21:05:13 +0000557 AddToPhysRegsUseOrder(*AliasSet);
Chris Lattner45d57882006-09-08 19:03:30 +0000558 PhysRegsUsed[*AliasSet] = 0; // It is free and reserved now
Chris Lattner84bc5422007-12-31 04:13:23 +0000559 MF->getRegInfo().setPhysRegUsed(*AliasSet);
Chris Lattner45d57882006-09-08 19:03:30 +0000560 }
Chris Lattner44500e32006-06-15 22:21:53 +0000561 }
562 }
563 }
564
565 // Otherwise, sequentially allocate each instruction in the MBB.
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000566 while (MII != MBB.end()) {
567 MachineInstr *MI = MII++;
Chris Lattner749c6f62008-01-07 07:27:27 +0000568 const TargetInstrDesc &TID = MI->getDesc();
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000569 DEBUG(DOUT << "\nStarting RegAlloc of: " << *MI;
570 DOUT << " Regs have values: ";
Chris Lattner84bc5422007-12-31 04:13:23 +0000571 for (unsigned i = 0; i != MRI->getNumRegs(); ++i)
Chris Lattner45d57882006-09-08 19:03:30 +0000572 if (PhysRegsUsed[i] != -1 && PhysRegsUsed[i] != -2)
Chris Lattner84bc5422007-12-31 04:13:23 +0000573 DOUT << "[" << MRI->getName(i)
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000574 << ",%reg" << PhysRegsUsed[i] << "] ";
575 DOUT << "\n");
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000576
Chris Lattnerae640432002-12-17 02:50:10 +0000577 // Loop over the implicit uses, making sure that they are at the head of the
578 // use order list, so they don't get reallocated.
Jim Laskeycd4317e2006-07-21 21:15:20 +0000579 if (TID.ImplicitUses) {
580 for (const unsigned *ImplicitUses = TID.ImplicitUses;
581 *ImplicitUses; ++ImplicitUses)
582 MarkPhysRegRecentlyUsed(*ImplicitUses);
583 }
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000584
Evan Chengddee8422006-11-15 20:55:15 +0000585 SmallVector<unsigned, 8> Kills;
586 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
587 MachineOperand& MO = MI->getOperand(i);
Evan Cheng7ac19af2007-06-26 21:05:13 +0000588 if (MO.isRegister() && MO.isKill()) {
589 if (!MO.isImplicit())
590 Kills.push_back(MO.getReg());
591 else if (!isReadModWriteImplicitKill(MI, MO.getReg()))
592 // These are extra physical register kills when a sub-register
593 // is defined (def of a sub-register is a read/mod/write of the
594 // larger registers). Ignore.
595 Kills.push_back(MO.getReg());
596 }
Evan Chengddee8422006-11-15 20:55:15 +0000597 }
598
Brian Gaeke53b99a02003-08-15 21:19:25 +0000599 // Get the used operands into registers. This has the potential to spill
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000600 // incoming values if we are out of registers. Note that we completely
601 // ignore physical register uses here. We assume that if an explicit
602 // physical register is referenced by the instruction, that it is guaranteed
603 // to be live-in, or the input is badly hosed.
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000604 //
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000605 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
606 MachineOperand& MO = MI->getOperand(i);
607 // here we are looking for only used operands (never def&use)
Evan Chengddee8422006-11-15 20:55:15 +0000608 if (MO.isRegister() && !MO.isDef() && MO.getReg() && !MO.isImplicit() &&
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000609 MRegisterInfo::isVirtualRegister(MO.getReg()))
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000610 MI = reloadVirtReg(MBB, MI, i);
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000611 }
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000612
Evan Chengddee8422006-11-15 20:55:15 +0000613 // If this instruction is the last user of this register, kill the
Chris Lattner56ddada2004-02-17 17:49:10 +0000614 // value, freeing the register being used, so it doesn't need to be
615 // spilled to memory.
616 //
Evan Chengddee8422006-11-15 20:55:15 +0000617 for (unsigned i = 0, e = Kills.size(); i != e; ++i) {
618 unsigned VirtReg = Kills[i];
Chris Lattner56ddada2004-02-17 17:49:10 +0000619 unsigned PhysReg = VirtReg;
620 if (MRegisterInfo::isVirtualRegister(VirtReg)) {
621 // If the virtual register was never materialized into a register, it
622 // might not be in the map, but it won't hurt to zero it out anyway.
623 unsigned &PhysRegSlot = getVirt2PhysRegMapSlot(VirtReg);
624 PhysReg = PhysRegSlot;
625 PhysRegSlot = 0;
Chris Lattner0c5b8da2006-09-08 20:21:31 +0000626 } else if (PhysRegsUsed[PhysReg] == -2) {
627 // Unallocatable register dead, ignore.
628 continue;
Evan Cheng7ac19af2007-06-26 21:05:13 +0000629 } else {
Evan Cheng76500d52007-10-22 19:42:28 +0000630 assert((!PhysRegsUsed[PhysReg] || PhysRegsUsed[PhysReg] == -1) &&
Evan Cheng7ac19af2007-06-26 21:05:13 +0000631 "Silently clearing a virtual register?");
Chris Lattner56ddada2004-02-17 17:49:10 +0000632 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000633
Chris Lattner56ddada2004-02-17 17:49:10 +0000634 if (PhysReg) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000635 DOUT << " Last use of " << MRI->getName(PhysReg)
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000636 << "[%reg" << VirtReg <<"], removing it from live set\n";
Chris Lattner56ddada2004-02-17 17:49:10 +0000637 removePhysReg(PhysReg);
Chris Lattner84bc5422007-12-31 04:13:23 +0000638 for (const unsigned *AliasSet = MRI->getSubRegisters(PhysReg);
Evan Chengddee8422006-11-15 20:55:15 +0000639 *AliasSet; ++AliasSet) {
640 if (PhysRegsUsed[*AliasSet] != -2) {
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000641 DOUT << " Last use of "
Chris Lattner84bc5422007-12-31 04:13:23 +0000642 << MRI->getName(*AliasSet)
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000643 << "[%reg" << VirtReg <<"], removing it from live set\n";
Evan Chengddee8422006-11-15 20:55:15 +0000644 removePhysReg(*AliasSet);
645 }
646 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000647 }
648 }
649
650 // Loop over all of the operands of the instruction, spilling registers that
651 // are defined, and marking explicit destinations in the PhysRegsUsed map.
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000652 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
653 MachineOperand& MO = MI->getOperand(i);
Evan Cheng438f7bc2006-11-10 08:43:01 +0000654 if (MO.isRegister() && MO.isDef() && !MO.isImplicit() && MO.getReg() &&
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000655 MRegisterInfo::isPhysicalRegister(MO.getReg())) {
656 unsigned Reg = MO.getReg();
Chris Lattnercc406322006-09-08 19:11:11 +0000657 if (PhysRegsUsed[Reg] == -2) continue; // Something like ESP.
Evan Cheng7ac19af2007-06-26 21:05:13 +0000658 // These are extra physical register defs when a sub-register
659 // is defined (def of a sub-register is a read/mod/write of the
660 // larger registers). Ignore.
661 if (isReadModWriteImplicitDef(MI, MO.getReg())) continue;
662
Chris Lattner84bc5422007-12-31 04:13:23 +0000663 MF->getRegInfo().setPhysRegUsed(Reg);
Evan Chengddee8422006-11-15 20:55:15 +0000664 spillPhysReg(MBB, MI, Reg, true); // Spill any existing value in reg
Chris Lattner91a452b2003-01-13 00:25:40 +0000665 PhysRegsUsed[Reg] = 0; // It is free and reserved now
Evan Cheng7ac19af2007-06-26 21:05:13 +0000666 AddToPhysRegsUseOrder(Reg);
667
Chris Lattner84bc5422007-12-31 04:13:23 +0000668 for (const unsigned *AliasSet = MRI->getSubRegisters(Reg);
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000669 *AliasSet; ++AliasSet) {
Chris Lattner45d57882006-09-08 19:03:30 +0000670 if (PhysRegsUsed[*AliasSet] != -2) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000671 MF->getRegInfo().setPhysRegUsed(*AliasSet);
Evan Cheng7ac19af2007-06-26 21:05:13 +0000672 PhysRegsUsed[*AliasSet] = 0; // It is free and reserved now
673 AddToPhysRegsUseOrder(*AliasSet);
Chris Lattner45d57882006-09-08 19:03:30 +0000674 }
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000675 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000676 }
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000677 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000678
679 // Loop over the implicit defs, spilling them as well.
Jim Laskeycd4317e2006-07-21 21:15:20 +0000680 if (TID.ImplicitDefs) {
681 for (const unsigned *ImplicitDefs = TID.ImplicitDefs;
682 *ImplicitDefs; ++ImplicitDefs) {
683 unsigned Reg = *ImplicitDefs;
Evan Cheng7ac19af2007-06-26 21:05:13 +0000684 if (PhysRegsUsed[Reg] != -2) {
Chris Lattner2b41b8e2006-09-19 18:02:01 +0000685 spillPhysReg(MBB, MI, Reg, true);
Evan Cheng7ac19af2007-06-26 21:05:13 +0000686 AddToPhysRegsUseOrder(Reg);
Chris Lattner2b41b8e2006-09-19 18:02:01 +0000687 PhysRegsUsed[Reg] = 0; // It is free and reserved now
688 }
Chris Lattner84bc5422007-12-31 04:13:23 +0000689 MF->getRegInfo().setPhysRegUsed(Reg);
690 for (const unsigned *AliasSet = MRI->getSubRegisters(Reg);
Jim Laskeycd4317e2006-07-21 21:15:20 +0000691 *AliasSet; ++AliasSet) {
Chris Lattner45d57882006-09-08 19:03:30 +0000692 if (PhysRegsUsed[*AliasSet] != -2) {
Evan Cheng7ac19af2007-06-26 21:05:13 +0000693 AddToPhysRegsUseOrder(*AliasSet);
694 PhysRegsUsed[*AliasSet] = 0; // It is free and reserved now
Chris Lattner84bc5422007-12-31 04:13:23 +0000695 MF->getRegInfo().setPhysRegUsed(*AliasSet);
Chris Lattner45d57882006-09-08 19:03:30 +0000696 }
Jim Laskeycd4317e2006-07-21 21:15:20 +0000697 }
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000698 }
Alkis Evlogimenosefe995a2003-12-13 01:20:58 +0000699 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000700
Evan Chengddee8422006-11-15 20:55:15 +0000701 SmallVector<unsigned, 8> DeadDefs;
702 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
703 MachineOperand& MO = MI->getOperand(i);
704 if (MO.isRegister() && MO.isDead())
705 DeadDefs.push_back(MO.getReg());
706 }
707
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000708 // Okay, we have allocated all of the source operands and spilled any values
709 // that would be destroyed by defs of this instruction. Loop over the
Chris Lattner0648b162005-01-23 22:51:56 +0000710 // explicit defs and assign them to a register, spilling incoming values if
Chris Lattner91a452b2003-01-13 00:25:40 +0000711 // we need to scavenge a register.
Chris Lattner82bee0f2002-12-18 08:14:26 +0000712 //
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000713 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
714 MachineOperand& MO = MI->getOperand(i);
Evan Cheng5d8062b2006-09-05 20:32:06 +0000715 if (MO.isRegister() && MO.isDef() && MO.getReg() &&
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000716 MRegisterInfo::isVirtualRegister(MO.getReg())) {
717 unsigned DestVirtReg = MO.getReg();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000718 unsigned DestPhysReg;
719
Alkis Evlogimenos9af9dbd2003-12-18 13:08:52 +0000720 // If DestVirtReg already has a value, use it.
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000721 if (!(DestPhysReg = getVirt2PhysRegMapSlot(DestVirtReg)))
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000722 DestPhysReg = getReg(MBB, MI, DestVirtReg);
Chris Lattner84bc5422007-12-31 04:13:23 +0000723 MF->getRegInfo().setPhysRegUsed(DestPhysReg);
Chris Lattnerd5725632003-05-12 03:54:14 +0000724 markVirtRegModified(DestVirtReg);
Chris Lattnere53f4a02006-05-04 17:52:23 +0000725 MI->getOperand(i).setReg(DestPhysReg); // Assign the output register
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000726 }
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000727 }
Chris Lattner82bee0f2002-12-18 08:14:26 +0000728
Chris Lattner56ddada2004-02-17 17:49:10 +0000729 // If this instruction defines any registers that are immediately dead,
730 // kill them now.
731 //
Evan Chengddee8422006-11-15 20:55:15 +0000732 for (unsigned i = 0, e = DeadDefs.size(); i != e; ++i) {
733 unsigned VirtReg = DeadDefs[i];
Chris Lattner56ddada2004-02-17 17:49:10 +0000734 unsigned PhysReg = VirtReg;
735 if (MRegisterInfo::isVirtualRegister(VirtReg)) {
736 unsigned &PhysRegSlot = getVirt2PhysRegMapSlot(VirtReg);
737 PhysReg = PhysRegSlot;
738 assert(PhysReg != 0);
739 PhysRegSlot = 0;
Chris Lattner0c5b8da2006-09-08 20:21:31 +0000740 } else if (PhysRegsUsed[PhysReg] == -2) {
741 // Unallocatable register dead, ignore.
742 continue;
Chris Lattner56ddada2004-02-17 17:49:10 +0000743 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000744
Chris Lattner56ddada2004-02-17 17:49:10 +0000745 if (PhysReg) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000746 DOUT << " Register " << MRI->getName(PhysReg)
Chris Lattner56ddada2004-02-17 17:49:10 +0000747 << " [%reg" << VirtReg
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000748 << "] is never used, removing it frame live list\n";
Chris Lattner56ddada2004-02-17 17:49:10 +0000749 removePhysReg(PhysReg);
Chris Lattner84bc5422007-12-31 04:13:23 +0000750 for (const unsigned *AliasSet = MRI->getAliasSet(PhysReg);
Evan Chengddee8422006-11-15 20:55:15 +0000751 *AliasSet; ++AliasSet) {
752 if (PhysRegsUsed[*AliasSet] != -2) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000753 DOUT << " Register " << MRI->getName(*AliasSet)
Evan Chengddee8422006-11-15 20:55:15 +0000754 << " [%reg" << *AliasSet
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000755 << "] is never used, removing it frame live list\n";
Evan Chengddee8422006-11-15 20:55:15 +0000756 removePhysReg(*AliasSet);
757 }
758 }
Chris Lattner82bee0f2002-12-18 08:14:26 +0000759 }
760 }
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000761
762 // Finally, if this is a noop copy instruction, zap it.
763 unsigned SrcReg, DstReg;
Chris Lattner2ac0d432006-09-03 00:06:08 +0000764 if (TII.isMoveInstr(*MI, SrcReg, DstReg) && SrcReg == DstReg) {
765 LV->removeVirtualRegistersKilled(MI);
766 LV->removeVirtualRegistersDead(MI);
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000767 MBB.erase(MI);
Chris Lattner2ac0d432006-09-03 00:06:08 +0000768 }
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000769 }
770
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000771 MachineBasicBlock::iterator MI = MBB.getFirstTerminator();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000772
773 // Spill all physical registers holding virtual registers now.
Chris Lattner84bc5422007-12-31 04:13:23 +0000774 for (unsigned i = 0, e = MRI->getNumRegs(); i != e; ++i)
Chris Lattner45d57882006-09-08 19:03:30 +0000775 if (PhysRegsUsed[i] != -1 && PhysRegsUsed[i] != -2)
Chris Lattner64667b62004-02-09 01:26:13 +0000776 if (unsigned VirtReg = PhysRegsUsed[i])
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000777 spillVirtReg(MBB, MI, VirtReg, i);
Chris Lattner64667b62004-02-09 01:26:13 +0000778 else
779 removePhysReg(i);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000780
Chris Lattner9a5ef202005-11-09 05:28:45 +0000781#if 0
782 // This checking code is very expensive.
Chris Lattnerecea5632004-02-09 02:12:04 +0000783 bool AllOk = true;
Alkis Evlogimenos4d0d8642004-02-25 21:55:45 +0000784 for (unsigned i = MRegisterInfo::FirstVirtualRegister,
Chris Lattner84bc5422007-12-31 04:13:23 +0000785 e = MF->getRegInfo().getLastVirtReg(); i <= e; ++i)
Chris Lattnerecea5632004-02-09 02:12:04 +0000786 if (unsigned PR = Virt2PhysRegMap[i]) {
Bill Wendling832171c2006-12-07 20:04:42 +0000787 cerr << "Register still mapped: " << i << " -> " << PR << "\n";
Chris Lattnerecea5632004-02-09 02:12:04 +0000788 AllOk = false;
789 }
790 assert(AllOk && "Virtual registers still in phys regs?");
791#endif
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000792
Chris Lattner128c2aa2003-08-17 18:01:15 +0000793 // Clear any physical register which appear live at the end of the basic
794 // block, but which do not hold any virtual registers. e.g., the stack
795 // pointer.
796 PhysRegsUseOrder.clear();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000797}
798
Chris Lattner86c69a62002-12-17 03:16:10 +0000799
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000800/// runOnMachineFunction - Register allocate the whole function
801///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000802bool RALocal::runOnMachineFunction(MachineFunction &Fn) {
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000803 DOUT << "Machine Function " << "\n";
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000804 MF = &Fn;
Chris Lattner580f9be2002-12-28 20:40:43 +0000805 TM = &Fn.getTarget();
Chris Lattner84bc5422007-12-31 04:13:23 +0000806 MRI = TM->getRegisterInfo();
Owen Anderson6425f8b2008-01-07 01:35:56 +0000807 TII = TM->getInstrInfo();
Chris Lattner56ddada2004-02-17 17:49:10 +0000808 LV = &getAnalysis<LiveVariables>();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000809
Chris Lattner84bc5422007-12-31 04:13:23 +0000810 PhysRegsUsed.assign(MRI->getNumRegs(), -1);
Chris Lattner45d57882006-09-08 19:03:30 +0000811
812 // At various places we want to efficiently check to see whether a register
813 // is allocatable. To handle this, we mark all unallocatable registers as
814 // being pinned down, permanently.
815 {
Chris Lattner84bc5422007-12-31 04:13:23 +0000816 BitVector Allocable = MRI->getAllocatableSet(Fn);
Chris Lattner45d57882006-09-08 19:03:30 +0000817 for (unsigned i = 0, e = Allocable.size(); i != e; ++i)
818 if (!Allocable[i])
819 PhysRegsUsed[i] = -2; // Mark the reg unallocable.
820 }
Chris Lattner64667b62004-02-09 01:26:13 +0000821
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000822 // initialize the virtual->physical register map to have a 'null'
823 // mapping for all virtual registers
Evan Cheng644340a2008-01-17 00:35:26 +0000824 unsigned LastVirtReg = MF->getRegInfo().getLastVirtReg();
825 Virt2PhysRegMap.grow(LastVirtReg);
826 VirtRegModified.resize(LastVirtReg-MRegisterInfo::FirstVirtualRegister);
Chris Lattnerecea5632004-02-09 02:12:04 +0000827
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000828 // Loop over all of the basic blocks, eliminating virtual register references
829 for (MachineFunction::iterator MBB = Fn.begin(), MBBe = Fn.end();
830 MBB != MBBe; ++MBB)
831 AllocateBasicBlock(*MBB);
832
Chris Lattner580f9be2002-12-28 20:40:43 +0000833 StackSlotForVirtReg.clear();
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000834 PhysRegsUsed.clear();
Chris Lattner91a452b2003-01-13 00:25:40 +0000835 VirtRegModified.clear();
Chris Lattnerecea5632004-02-09 02:12:04 +0000836 Virt2PhysRegMap.clear();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000837 return true;
838}
839
Chris Lattneref09c632004-01-31 21:27:19 +0000840FunctionPass *llvm::createLocalRegisterAllocator() {
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000841 return new RALocal();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000842}