blob: 4ed1849be606c8e7d82380b131a05dc3626e0151 [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
Evan Cheng839b7592008-01-17 02:08:17 +000089 // Virt2LastUseMap - This maps each virtual register to its last use
90 // (MachineInstr*, operand index pair).
91 IndexedMap<std::pair<MachineInstr*, unsigned>, VirtReg2IndexFunctor>
92 Virt2LastUseMap;
93
94 std::pair<MachineInstr*,unsigned>& getVirtRegLastUse(unsigned Reg) {
95 assert(MRegisterInfo::isVirtualRegister(Reg) && "Illegal VirtReg!");
96 return Virt2LastUseMap[Reg];
97 }
98
Chris Lattner91a452b2003-01-13 00:25:40 +000099 // VirtRegModified - This bitset contains information about which virtual
100 // registers need to be spilled back to memory when their registers are
101 // scavenged. If a virtual register has simply been rematerialized, there
102 // is no reason to spill it to memory when we need the register back.
Chris Lattner82bee0f2002-12-18 08:14:26 +0000103 //
Evan Cheng644340a2008-01-17 00:35:26 +0000104 BitVector VirtRegModified;
Chris Lattner91a452b2003-01-13 00:25:40 +0000105
106 void markVirtRegModified(unsigned Reg, bool Val = true) {
Chris Lattneref09c632004-01-31 21:27:19 +0000107 assert(MRegisterInfo::isVirtualRegister(Reg) && "Illegal VirtReg!");
Chris Lattner91a452b2003-01-13 00:25:40 +0000108 Reg -= MRegisterInfo::FirstVirtualRegister;
Evan Cheng644340a2008-01-17 00:35:26 +0000109 if (Val)
110 VirtRegModified.set(Reg);
111 else
112 VirtRegModified.reset(Reg);
Chris Lattner91a452b2003-01-13 00:25:40 +0000113 }
114
115 bool isVirtRegModified(unsigned Reg) const {
Chris Lattneref09c632004-01-31 21:27:19 +0000116 assert(MRegisterInfo::isVirtualRegister(Reg) && "Illegal VirtReg!");
Chris Lattner91a452b2003-01-13 00:25:40 +0000117 assert(Reg - MRegisterInfo::FirstVirtualRegister < VirtRegModified.size()
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000118 && "Illegal virtual register!");
Chris Lattner91a452b2003-01-13 00:25:40 +0000119 return VirtRegModified[Reg - MRegisterInfo::FirstVirtualRegister];
120 }
Chris Lattner82bee0f2002-12-18 08:14:26 +0000121
Evan Cheng7ac19af2007-06-26 21:05:13 +0000122 void AddToPhysRegsUseOrder(unsigned Reg) {
123 std::vector<unsigned>::iterator It =
124 std::find(PhysRegsUseOrder.begin(), PhysRegsUseOrder.end(), Reg);
125 if (It != PhysRegsUseOrder.end())
126 PhysRegsUseOrder.erase(It);
127 PhysRegsUseOrder.push_back(Reg);
128 }
129
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000130 void MarkPhysRegRecentlyUsed(unsigned Reg) {
Chris Lattner5e503492006-09-03 07:15:37 +0000131 if (PhysRegsUseOrder.empty() ||
132 PhysRegsUseOrder.back() == Reg) return; // Already most recently used
Chris Lattner0eb172c2002-12-24 00:04:55 +0000133
134 for (unsigned i = PhysRegsUseOrder.size(); i != 0; --i)
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000135 if (areRegsEqual(Reg, PhysRegsUseOrder[i-1])) {
136 unsigned RegMatch = PhysRegsUseOrder[i-1]; // remove from middle
137 PhysRegsUseOrder.erase(PhysRegsUseOrder.begin()+i-1);
138 // Add it to the end of the list
139 PhysRegsUseOrder.push_back(RegMatch);
140 if (RegMatch == Reg)
141 return; // Found an exact match, exit early
142 }
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000143 }
144
145 public:
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000146 virtual const char *getPassName() const {
147 return "Local Register Allocator";
148 }
149
Chris Lattner91a452b2003-01-13 00:25:40 +0000150 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattner56ddada2004-02-17 17:49:10 +0000151 AU.addRequired<LiveVariables>();
Chris Lattner91a452b2003-01-13 00:25:40 +0000152 AU.addRequiredID(PHIEliminationID);
Alkis Evlogimenos4c080862003-12-18 22:40:24 +0000153 AU.addRequiredID(TwoAddressInstructionPassID);
Chris Lattner91a452b2003-01-13 00:25:40 +0000154 MachineFunctionPass::getAnalysisUsage(AU);
155 }
156
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000157 private:
158 /// runOnMachineFunction - Register allocate the whole function
159 bool runOnMachineFunction(MachineFunction &Fn);
160
161 /// AllocateBasicBlock - Register allocate the specified basic block.
162 void AllocateBasicBlock(MachineBasicBlock &MBB);
163
Chris Lattner82bee0f2002-12-18 08:14:26 +0000164
Chris Lattner82bee0f2002-12-18 08:14:26 +0000165 /// areRegsEqual - This method returns true if the specified registers are
166 /// related to each other. To do this, it checks to see if they are equal
167 /// or if the first register is in the alias set of the second register.
168 ///
169 bool areRegsEqual(unsigned R1, unsigned R2) const {
170 if (R1 == R2) return true;
Chris Lattner84bc5422007-12-31 04:13:23 +0000171 for (const unsigned *AliasSet = MRI->getAliasSet(R2);
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000172 *AliasSet; ++AliasSet) {
173 if (*AliasSet == R1) return true;
174 }
Chris Lattner82bee0f2002-12-18 08:14:26 +0000175 return false;
176 }
177
Chris Lattner580f9be2002-12-28 20:40:43 +0000178 /// getStackSpaceFor - This returns the frame index of the specified virtual
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000179 /// register on the stack, allocating space if necessary.
Chris Lattner580f9be2002-12-28 20:40:43 +0000180 int getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass *RC);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000181
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000182 /// removePhysReg - This method marks the specified physical register as no
183 /// longer being in use.
184 ///
Chris Lattner82bee0f2002-12-18 08:14:26 +0000185 void removePhysReg(unsigned PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000186
187 /// spillVirtReg - This method spills the value specified by PhysReg into
188 /// the virtual register slot specified by VirtReg. It then updates the RA
189 /// data structures to indicate the fact that PhysReg is now available.
190 ///
Chris Lattner688c8252004-02-22 19:08:15 +0000191 void spillVirtReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI,
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000192 unsigned VirtReg, unsigned PhysReg);
193
Chris Lattnerc21be922002-12-16 17:44:42 +0000194 /// spillPhysReg - This method spills the specified physical register into
Chris Lattner128c2aa2003-08-17 18:01:15 +0000195 /// the virtual register slot associated with it. If OnlyVirtRegs is set to
196 /// true, then the request is ignored if the physical register does not
197 /// contain a virtual register.
Chris Lattner91a452b2003-01-13 00:25:40 +0000198 ///
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000199 void spillPhysReg(MachineBasicBlock &MBB, MachineInstr *I,
Chris Lattner128c2aa2003-08-17 18:01:15 +0000200 unsigned PhysReg, bool OnlyVirtRegs = false);
Chris Lattnerc21be922002-12-16 17:44:42 +0000201
Chris Lattner91a452b2003-01-13 00:25:40 +0000202 /// assignVirtToPhysReg - This method updates local state so that we know
203 /// that PhysReg is the proper container for VirtReg now. The physical
204 /// register must not be used for anything else when this is called.
205 ///
206 void assignVirtToPhysReg(unsigned VirtReg, unsigned PhysReg);
207
Chris Lattnerae640432002-12-17 02:50:10 +0000208 /// isPhysRegAvailable - Return true if the specified physical register is
209 /// free and available for use. This also includes checking to see if
210 /// aliased registers are all free...
211 ///
Chris Lattner82bee0f2002-12-18 08:14:26 +0000212 bool isPhysRegAvailable(unsigned PhysReg) const;
Chris Lattner91a452b2003-01-13 00:25:40 +0000213
214 /// getFreeReg - Look to see if there is a free register available in the
215 /// specified register class. If not, return 0.
216 ///
217 unsigned getFreeReg(const TargetRegisterClass *RC);
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000218
Chris Lattner91a452b2003-01-13 00:25:40 +0000219 /// getReg - Find a physical register to hold the specified virtual
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000220 /// register. If all compatible physical registers are used, this method
221 /// spills the last used virtual register to the stack, and uses that
222 /// register.
223 ///
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000224 unsigned getReg(MachineBasicBlock &MBB, MachineInstr *MI,
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000225 unsigned VirtReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000226
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000227 /// reloadVirtReg - This method transforms the specified specified virtual
228 /// register use to refer to a physical register. This method may do this
229 /// in one of several ways: if the register is available in a physical
230 /// register already, it uses that physical register. If the value is not
231 /// in a physical register, and if there are physical registers available,
232 /// it loads it into a register. If register pressure is high, and it is
233 /// possible, it tries to fold the load of the virtual register into the
234 /// instruction itself. It avoids doing this if register pressure is low to
235 /// improve the chance that subsequent instructions can use the reloaded
236 /// value. This method returns the modified instruction.
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000237 ///
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000238 MachineInstr *reloadVirtReg(MachineBasicBlock &MBB, MachineInstr *MI,
239 unsigned OpNum);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000240
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000241
242 void reloadPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator &I,
243 unsigned PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000244 };
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000245 char RALocal::ID = 0;
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000246}
247
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000248/// getStackSpaceFor - This allocates space for the specified virtual register
249/// to be held on the stack.
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000250int RALocal::getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass *RC) {
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000251 // Find the location Reg would belong...
252 std::map<unsigned, int>::iterator I =StackSlotForVirtReg.lower_bound(VirtReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000253
Chris Lattner580f9be2002-12-28 20:40:43 +0000254 if (I != StackSlotForVirtReg.end() && I->first == VirtReg)
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000255 return I->second; // Already has space allocated?
256
Chris Lattner580f9be2002-12-28 20:40:43 +0000257 // Allocate a new stack object for this spill location...
Chris Lattner26eb14b2004-08-15 22:02:22 +0000258 int FrameIdx = MF->getFrameInfo()->CreateStackObject(RC->getSize(),
259 RC->getAlignment());
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000260
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000261 // Assign the slot...
Chris Lattner580f9be2002-12-28 20:40:43 +0000262 StackSlotForVirtReg.insert(I, std::make_pair(VirtReg, FrameIdx));
263 return FrameIdx;
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000264}
265
Chris Lattnerae640432002-12-17 02:50:10 +0000266
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000267/// removePhysReg - This method marks the specified physical register as no
Chris Lattner82bee0f2002-12-18 08:14:26 +0000268/// longer being in use.
269///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000270void RALocal::removePhysReg(unsigned PhysReg) {
Chris Lattner64667b62004-02-09 01:26:13 +0000271 PhysRegsUsed[PhysReg] = -1; // PhyReg no longer used
Chris Lattner82bee0f2002-12-18 08:14:26 +0000272
273 std::vector<unsigned>::iterator It =
274 std::find(PhysRegsUseOrder.begin(), PhysRegsUseOrder.end(), PhysReg);
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000275 if (It != PhysRegsUseOrder.end())
276 PhysRegsUseOrder.erase(It);
Chris Lattner82bee0f2002-12-18 08:14:26 +0000277}
278
Chris Lattner91a452b2003-01-13 00:25:40 +0000279
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000280/// spillVirtReg - This method spills the value specified by PhysReg into the
281/// virtual register slot specified by VirtReg. It then updates the RA data
282/// structures to indicate the fact that PhysReg is now available.
283///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000284void RALocal::spillVirtReg(MachineBasicBlock &MBB,
285 MachineBasicBlock::iterator I,
286 unsigned VirtReg, unsigned PhysReg) {
Chris Lattner8c819452003-08-05 04:13:58 +0000287 assert(VirtReg && "Spilling a physical register is illegal!"
Chris Lattnerd9ac6a72003-08-05 00:49:09 +0000288 " Must not have appropriate kill for the register or use exists beyond"
289 " the intended one.");
Chris Lattner84bc5422007-12-31 04:13:23 +0000290 DOUT << " Spilling register " << MRI->getName(PhysReg)
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000291 << " containing %reg" << VirtReg;
Owen Andersonf6372aa2008-01-01 21:11:32 +0000292
293 const TargetInstrInfo* TII = MBB.getParent()->getTarget().getInstrInfo();
294
Evan Cheng839b7592008-01-17 02:08:17 +0000295 if (!isVirtRegModified(VirtReg)) {
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000296 DOUT << " which has not been modified, so no store necessary!";
Evan Cheng839b7592008-01-17 02:08:17 +0000297 std::pair<MachineInstr*, unsigned> &LastUse = getVirtRegLastUse(VirtReg);
298 if (LastUse.first)
299 LastUse.first->getOperand(LastUse.second).setIsKill();
300 }
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000301
Chris Lattnerd9ac6a72003-08-05 00:49:09 +0000302 // Otherwise, there is a virtual register corresponding to this physical
303 // register. We only need to spill it into its stack slot if it has been
304 // modified.
305 if (isVirtRegModified(VirtReg)) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000306 const TargetRegisterClass *RC = MF->getRegInfo().getRegClass(VirtReg);
Chris Lattnerd9ac6a72003-08-05 00:49:09 +0000307 int FrameIndex = getStackSpaceFor(VirtReg, RC);
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000308 DOUT << " to stack slot #" << FrameIndex;
Owen Andersonf6372aa2008-01-01 21:11:32 +0000309 TII->storeRegToStackSlot(MBB, I, PhysReg, true, FrameIndex, RC);
Alkis Evlogimenos2acef2d2004-02-19 06:19:09 +0000310 ++NumStores; // Update statistics
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000311 }
Chris Lattnerecea5632004-02-09 02:12:04 +0000312
313 getVirt2PhysRegMapSlot(VirtReg) = 0; // VirtReg no longer available
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000314
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000315 DOUT << "\n";
Chris Lattner82bee0f2002-12-18 08:14:26 +0000316 removePhysReg(PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000317}
318
Chris Lattnerae640432002-12-17 02:50:10 +0000319
Chris Lattner91a452b2003-01-13 00:25:40 +0000320/// spillPhysReg - This method spills the specified physical register into the
Chris Lattner128c2aa2003-08-17 18:01:15 +0000321/// virtual register slot associated with it. If OnlyVirtRegs is set to true,
322/// then the request is ignored if the physical register does not contain a
323/// virtual register.
Chris Lattner91a452b2003-01-13 00:25:40 +0000324///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000325void RALocal::spillPhysReg(MachineBasicBlock &MBB, MachineInstr *I,
326 unsigned PhysReg, bool OnlyVirtRegs) {
Chris Lattner64667b62004-02-09 01:26:13 +0000327 if (PhysRegsUsed[PhysReg] != -1) { // Only spill it if it's used!
Chris Lattner45d57882006-09-08 19:03:30 +0000328 assert(PhysRegsUsed[PhysReg] != -2 && "Non allocable reg used!");
Chris Lattner64667b62004-02-09 01:26:13 +0000329 if (PhysRegsUsed[PhysReg] || !OnlyVirtRegs)
330 spillVirtReg(MBB, I, PhysRegsUsed[PhysReg], PhysReg);
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000331 } else {
Chris Lattner91a452b2003-01-13 00:25:40 +0000332 // If the selected register aliases any other registers, we must make
Chris Lattner45d57882006-09-08 19:03:30 +0000333 // sure that one of the aliases isn't alive.
Chris Lattner84bc5422007-12-31 04:13:23 +0000334 for (const unsigned *AliasSet = MRI->getAliasSet(PhysReg);
Chris Lattner64667b62004-02-09 01:26:13 +0000335 *AliasSet; ++AliasSet)
Chris Lattner45d57882006-09-08 19:03:30 +0000336 if (PhysRegsUsed[*AliasSet] != -1 && // Spill aliased register.
337 PhysRegsUsed[*AliasSet] != -2) // If allocatable.
Evan Cheng7ac19af2007-06-26 21:05:13 +0000338 if (PhysRegsUsed[*AliasSet])
339 spillVirtReg(MBB, I, PhysRegsUsed[*AliasSet], *AliasSet);
Chris Lattner91a452b2003-01-13 00:25:40 +0000340 }
341}
342
343
344/// assignVirtToPhysReg - This method updates local state so that we know
345/// that PhysReg is the proper container for VirtReg now. The physical
346/// register must not be used for anything else when this is called.
347///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000348void RALocal::assignVirtToPhysReg(unsigned VirtReg, unsigned PhysReg) {
Chris Lattner64667b62004-02-09 01:26:13 +0000349 assert(PhysRegsUsed[PhysReg] == -1 && "Phys reg already assigned!");
Chris Lattner91a452b2003-01-13 00:25:40 +0000350 // Update information to note the fact that this register was just used, and
351 // it holds VirtReg.
352 PhysRegsUsed[PhysReg] = VirtReg;
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000353 getVirt2PhysRegMapSlot(VirtReg) = PhysReg;
Evan Cheng7ac19af2007-06-26 21:05:13 +0000354 AddToPhysRegsUseOrder(PhysReg); // New use of PhysReg
Chris Lattner91a452b2003-01-13 00:25:40 +0000355}
356
357
Chris Lattnerae640432002-12-17 02:50:10 +0000358/// isPhysRegAvailable - Return true if the specified physical register is free
359/// and available for use. This also includes checking to see if aliased
360/// registers are all free...
361///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000362bool RALocal::isPhysRegAvailable(unsigned PhysReg) const {
Chris Lattner64667b62004-02-09 01:26:13 +0000363 if (PhysRegsUsed[PhysReg] != -1) return false;
Chris Lattnerae640432002-12-17 02:50:10 +0000364
365 // If the selected register aliases any other allocated registers, it is
366 // not free!
Chris Lattner84bc5422007-12-31 04:13:23 +0000367 for (const unsigned *AliasSet = MRI->getAliasSet(PhysReg);
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000368 *AliasSet; ++AliasSet)
Chris Lattner64667b62004-02-09 01:26:13 +0000369 if (PhysRegsUsed[*AliasSet] != -1) // Aliased register in use?
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000370 return false; // Can't use this reg then.
Chris Lattnerae640432002-12-17 02:50:10 +0000371 return true;
372}
373
374
Chris Lattner91a452b2003-01-13 00:25:40 +0000375/// getFreeReg - Look to see if there is a free register available in the
376/// specified register class. If not, return 0.
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000377///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000378unsigned RALocal::getFreeReg(const TargetRegisterClass *RC) {
Chris Lattner580f9be2002-12-28 20:40:43 +0000379 // Get iterators defining the range of registers that are valid to allocate in
380 // this class, which also specifies the preferred allocation order.
381 TargetRegisterClass::iterator RI = RC->allocation_order_begin(*MF);
382 TargetRegisterClass::iterator RE = RC->allocation_order_end(*MF);
Chris Lattnerae640432002-12-17 02:50:10 +0000383
Chris Lattner91a452b2003-01-13 00:25:40 +0000384 for (; RI != RE; ++RI)
385 if (isPhysRegAvailable(*RI)) { // Is reg unused?
386 assert(*RI != 0 && "Cannot use register!");
387 return *RI; // Found an unused register!
388 }
389 return 0;
390}
391
392
Chris Lattner91a452b2003-01-13 00:25:40 +0000393/// getReg - Find a physical register to hold the specified virtual
394/// register. If all compatible physical registers are used, this method spills
395/// the last used virtual register to the stack, and uses that register.
396///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000397unsigned RALocal::getReg(MachineBasicBlock &MBB, MachineInstr *I,
398 unsigned VirtReg) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000399 const TargetRegisterClass *RC = MF->getRegInfo().getRegClass(VirtReg);
Chris Lattner91a452b2003-01-13 00:25:40 +0000400
401 // First check to see if we have a free register of the requested type...
402 unsigned PhysReg = getFreeReg(RC);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000403
Chris Lattnerae640432002-12-17 02:50:10 +0000404 // If we didn't find an unused register, scavenge one now!
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000405 if (PhysReg == 0) {
Chris Lattnerc21be922002-12-16 17:44:42 +0000406 assert(!PhysRegsUseOrder.empty() && "No allocated registers??");
Chris Lattnerae640432002-12-17 02:50:10 +0000407
408 // Loop over all of the preallocated registers from the least recently used
409 // to the most recently used. When we find one that is capable of holding
410 // our register, use it.
411 for (unsigned i = 0; PhysReg == 0; ++i) {
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000412 assert(i != PhysRegsUseOrder.size() &&
413 "Couldn't find a register of the appropriate class!");
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000414
Chris Lattnerae640432002-12-17 02:50:10 +0000415 unsigned R = PhysRegsUseOrder[i];
Chris Lattner41822c72003-08-23 23:49:42 +0000416
417 // We can only use this register if it holds a virtual register (ie, it
418 // can be spilled). Do not use it if it is an explicitly allocated
419 // physical register!
Chris Lattner64667b62004-02-09 01:26:13 +0000420 assert(PhysRegsUsed[R] != -1 &&
Chris Lattner41822c72003-08-23 23:49:42 +0000421 "PhysReg in PhysRegsUseOrder, but is not allocated?");
Chris Lattner45d57882006-09-08 19:03:30 +0000422 if (PhysRegsUsed[R] && PhysRegsUsed[R] != -2) {
Chris Lattner41822c72003-08-23 23:49:42 +0000423 // If the current register is compatible, use it.
Chris Lattner3bba0262004-08-15 22:23:09 +0000424 if (RC->contains(R)) {
Chris Lattner41822c72003-08-23 23:49:42 +0000425 PhysReg = R;
426 break;
427 } else {
428 // If one of the registers aliased to the current register is
429 // compatible, use it.
Chris Lattner84bc5422007-12-31 04:13:23 +0000430 for (const unsigned *AliasIt = MRI->getAliasSet(R);
Chris Lattner5e503492006-09-03 07:15:37 +0000431 *AliasIt; ++AliasIt) {
432 if (RC->contains(*AliasIt) &&
433 // If this is pinned down for some reason, don't use it. For
434 // example, if CL is pinned, and we run across CH, don't use
435 // CH as justification for using scavenging ECX (which will
436 // fail).
Chris Lattner45d57882006-09-08 19:03:30 +0000437 PhysRegsUsed[*AliasIt] != 0 &&
438
439 // Make sure the register is allocatable. Don't allocate SIL on
440 // x86-32.
441 PhysRegsUsed[*AliasIt] != -2) {
Chris Lattner5e503492006-09-03 07:15:37 +0000442 PhysReg = *AliasIt; // Take an aliased register
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000443 break;
444 }
445 }
Chris Lattner41822c72003-08-23 23:49:42 +0000446 }
Chris Lattnerae640432002-12-17 02:50:10 +0000447 }
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000448 }
449
Chris Lattnerae640432002-12-17 02:50:10 +0000450 assert(PhysReg && "Physical register not assigned!?!?");
451
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000452 // At this point PhysRegsUseOrder[i] is the least recently used register of
453 // compatible register class. Spill it to memory and reap its remains.
Chris Lattnerc21be922002-12-16 17:44:42 +0000454 spillPhysReg(MBB, I, PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000455 }
456
457 // Now that we know which register we need to assign this to, do it now!
Chris Lattner91a452b2003-01-13 00:25:40 +0000458 assignVirtToPhysReg(VirtReg, PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000459 return PhysReg;
460}
461
Chris Lattnerae640432002-12-17 02:50:10 +0000462
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000463/// reloadVirtReg - This method transforms the specified specified virtual
464/// register use to refer to a physical register. This method may do this in
465/// one of several ways: if the register is available in a physical register
466/// already, it uses that physical register. If the value is not in a physical
467/// register, and if there are physical registers available, it loads it into a
468/// register. If register pressure is high, and it is possible, it tries to
469/// fold the load of the virtual register into the instruction itself. It
470/// avoids doing this if register pressure is low to improve the chance that
471/// subsequent instructions can use the reloaded value. This method returns the
472/// modified instruction.
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000473///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000474MachineInstr *RALocal::reloadVirtReg(MachineBasicBlock &MBB, MachineInstr *MI,
475 unsigned OpNum) {
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000476 unsigned VirtReg = MI->getOperand(OpNum).getReg();
477
478 // If the virtual register is already available, just update the instruction
479 // and return.
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000480 if (unsigned PR = getVirt2PhysRegMapSlot(VirtReg)) {
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000481 MarkPhysRegRecentlyUsed(PR); // Already have this value available!
Chris Lattnere53f4a02006-05-04 17:52:23 +0000482 MI->getOperand(OpNum).setReg(PR); // Assign the input register
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000483 return MI;
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000484 }
485
Chris Lattner1e3812c2004-02-17 04:08:37 +0000486 // Otherwise, we need to fold it into the current instruction, or reload it.
487 // If we have registers available to hold the value, use them.
Chris Lattner84bc5422007-12-31 04:13:23 +0000488 const TargetRegisterClass *RC = MF->getRegInfo().getRegClass(VirtReg);
Chris Lattner1e3812c2004-02-17 04:08:37 +0000489 unsigned PhysReg = getFreeReg(RC);
Chris Lattner11390e72004-02-17 08:09:40 +0000490 int FrameIndex = getStackSpaceFor(VirtReg, RC);
Chris Lattner1e3812c2004-02-17 04:08:37 +0000491
Chris Lattner11390e72004-02-17 08:09:40 +0000492 if (PhysReg) { // Register is available, allocate it!
493 assignVirtToPhysReg(VirtReg, PhysReg);
494 } else { // No registers available.
495 // If we can fold this spill into this instruction, do so now.
Evan Chengaee4af62007-12-02 08:30:39 +0000496 SmallVector<unsigned, 2> Ops;
497 Ops.push_back(OpNum);
Owen Anderson6425f8b2008-01-07 01:35:56 +0000498 if (MachineInstr* FMI = TII->foldMemoryOperand(MI, Ops, FrameIndex)) {
Alkis Evlogimenosd6f6d1a2004-02-21 18:07:33 +0000499 ++NumFolded;
Chris Lattnerd368c612004-02-19 18:34:02 +0000500 // Since we changed the address of MI, make sure to update live variables
501 // to know that the new instruction has the properties of the old one.
Alkis Evlogimenos39354c92004-03-14 07:19:51 +0000502 LV->instructionChanged(MI, FMI);
503 return MBB.insert(MBB.erase(MI), FMI);
Chris Lattner1e3812c2004-02-17 04:08:37 +0000504 }
505
506 // It looks like we can't fold this virtual register load into this
507 // instruction. Force some poor hapless value out of the register file to
508 // make room for the new register, and reload it.
509 PhysReg = getReg(MBB, MI, VirtReg);
510 }
511
Chris Lattner91a452b2003-01-13 00:25:40 +0000512 markVirtRegModified(VirtReg, false); // Note that this reg was just reloaded
513
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000514 DOUT << " Reloading %reg" << VirtReg << " into "
Chris Lattner84bc5422007-12-31 04:13:23 +0000515 << MRI->getName(PhysReg) << "\n";
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000516
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000517 // Add move instruction(s)
Owen Andersonf6372aa2008-01-01 21:11:32 +0000518 const TargetInstrInfo* TII = MBB.getParent()->getTarget().getInstrInfo();
519 TII->loadRegFromStackSlot(MBB, MI, PhysReg, FrameIndex, RC);
Alkis Evlogimenos2acef2d2004-02-19 06:19:09 +0000520 ++NumLoads; // Update statistics
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000521
Chris Lattner84bc5422007-12-31 04:13:23 +0000522 MF->getRegInfo().setPhysRegUsed(PhysReg);
Chris Lattnere53f4a02006-05-04 17:52:23 +0000523 MI->getOperand(OpNum).setReg(PhysReg); // Assign the input register
Evan Cheng839b7592008-01-17 02:08:17 +0000524 getVirtRegLastUse(VirtReg) = std::make_pair(MI, OpNum);
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000525 return MI;
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000526}
527
Evan Cheng7ac19af2007-06-26 21:05:13 +0000528/// isReadModWriteImplicitKill - True if this is an implicit kill for a
529/// read/mod/write register, i.e. update partial register.
530static bool isReadModWriteImplicitKill(MachineInstr *MI, unsigned Reg) {
531 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
532 MachineOperand& MO = MI->getOperand(i);
533 if (MO.isRegister() && MO.getReg() == Reg && MO.isImplicit() &&
534 MO.isDef() && !MO.isDead())
535 return true;
536 }
537 return false;
538}
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000539
Evan Cheng7ac19af2007-06-26 21:05:13 +0000540/// isReadModWriteImplicitDef - True if this is an implicit def for a
541/// read/mod/write register, i.e. update partial register.
542static bool isReadModWriteImplicitDef(MachineInstr *MI, unsigned Reg) {
543 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
544 MachineOperand& MO = MI->getOperand(i);
545 if (MO.isRegister() && MO.getReg() == Reg && MO.isImplicit() &&
546 !MO.isDef() && MO.isKill())
547 return true;
548 }
549 return false;
550}
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000551
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000552void RALocal::AllocateBasicBlock(MachineBasicBlock &MBB) {
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000553 // loop over each instruction
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000554 MachineBasicBlock::iterator MII = MBB.begin();
555 const TargetInstrInfo &TII = *TM->getInstrInfo();
Chris Lattner44500e32006-06-15 22:21:53 +0000556
Evan Chengddee8422006-11-15 20:55:15 +0000557 DEBUG(const BasicBlock *LBB = MBB.getBasicBlock();
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000558 if (LBB) DOUT << "\nStarting RegAlloc of BB: " << LBB->getName());
Evan Chengddee8422006-11-15 20:55:15 +0000559
Chris Lattner44500e32006-06-15 22:21:53 +0000560 // If this is the first basic block in the machine function, add live-in
561 // registers as active.
562 if (&MBB == &*MF->begin()) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000563 for (MachineRegisterInfo::livein_iterator I=MF->getRegInfo().livein_begin(),
564 E = MF->getRegInfo().livein_end(); I != E; ++I) {
Chris Lattner44500e32006-06-15 22:21:53 +0000565 unsigned Reg = I->first;
Chris Lattner84bc5422007-12-31 04:13:23 +0000566 MF->getRegInfo().setPhysRegUsed(Reg);
Chris Lattner44500e32006-06-15 22:21:53 +0000567 PhysRegsUsed[Reg] = 0; // It is free and reserved now
Evan Cheng7ac19af2007-06-26 21:05:13 +0000568 AddToPhysRegsUseOrder(Reg);
Chris Lattner84bc5422007-12-31 04:13:23 +0000569 for (const unsigned *AliasSet = MRI->getSubRegisters(Reg);
Chris Lattner44500e32006-06-15 22:21:53 +0000570 *AliasSet; ++AliasSet) {
Chris Lattner45d57882006-09-08 19:03:30 +0000571 if (PhysRegsUsed[*AliasSet] != -2) {
Evan Cheng7ac19af2007-06-26 21:05:13 +0000572 AddToPhysRegsUseOrder(*AliasSet);
Chris Lattner45d57882006-09-08 19:03:30 +0000573 PhysRegsUsed[*AliasSet] = 0; // It is free and reserved now
Chris Lattner84bc5422007-12-31 04:13:23 +0000574 MF->getRegInfo().setPhysRegUsed(*AliasSet);
Chris Lattner45d57882006-09-08 19:03:30 +0000575 }
Chris Lattner44500e32006-06-15 22:21:53 +0000576 }
577 }
578 }
579
580 // Otherwise, sequentially allocate each instruction in the MBB.
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000581 while (MII != MBB.end()) {
582 MachineInstr *MI = MII++;
Chris Lattner749c6f62008-01-07 07:27:27 +0000583 const TargetInstrDesc &TID = MI->getDesc();
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000584 DEBUG(DOUT << "\nStarting RegAlloc of: " << *MI;
585 DOUT << " Regs have values: ";
Chris Lattner84bc5422007-12-31 04:13:23 +0000586 for (unsigned i = 0; i != MRI->getNumRegs(); ++i)
Chris Lattner45d57882006-09-08 19:03:30 +0000587 if (PhysRegsUsed[i] != -1 && PhysRegsUsed[i] != -2)
Chris Lattner84bc5422007-12-31 04:13:23 +0000588 DOUT << "[" << MRI->getName(i)
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000589 << ",%reg" << PhysRegsUsed[i] << "] ";
590 DOUT << "\n");
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000591
Chris Lattnerae640432002-12-17 02:50:10 +0000592 // Loop over the implicit uses, making sure that they are at the head of the
593 // use order list, so they don't get reallocated.
Jim Laskeycd4317e2006-07-21 21:15:20 +0000594 if (TID.ImplicitUses) {
595 for (const unsigned *ImplicitUses = TID.ImplicitUses;
596 *ImplicitUses; ++ImplicitUses)
597 MarkPhysRegRecentlyUsed(*ImplicitUses);
598 }
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000599
Evan Chengddee8422006-11-15 20:55:15 +0000600 SmallVector<unsigned, 8> Kills;
601 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
602 MachineOperand& MO = MI->getOperand(i);
Evan Cheng7ac19af2007-06-26 21:05:13 +0000603 if (MO.isRegister() && MO.isKill()) {
604 if (!MO.isImplicit())
605 Kills.push_back(MO.getReg());
606 else if (!isReadModWriteImplicitKill(MI, MO.getReg()))
607 // These are extra physical register kills when a sub-register
608 // is defined (def of a sub-register is a read/mod/write of the
609 // larger registers). Ignore.
610 Kills.push_back(MO.getReg());
611 }
Evan Chengddee8422006-11-15 20:55:15 +0000612 }
613
Brian Gaeke53b99a02003-08-15 21:19:25 +0000614 // Get the used operands into registers. This has the potential to spill
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000615 // incoming values if we are out of registers. Note that we completely
616 // ignore physical register uses here. We assume that if an explicit
617 // physical register is referenced by the instruction, that it is guaranteed
618 // to be live-in, or the input is badly hosed.
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000619 //
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000620 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
621 MachineOperand& MO = MI->getOperand(i);
622 // here we are looking for only used operands (never def&use)
Evan Chengddee8422006-11-15 20:55:15 +0000623 if (MO.isRegister() && !MO.isDef() && MO.getReg() && !MO.isImplicit() &&
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000624 MRegisterInfo::isVirtualRegister(MO.getReg()))
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000625 MI = reloadVirtReg(MBB, MI, i);
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000626 }
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000627
Evan Chengddee8422006-11-15 20:55:15 +0000628 // If this instruction is the last user of this register, kill the
Chris Lattner56ddada2004-02-17 17:49:10 +0000629 // value, freeing the register being used, so it doesn't need to be
630 // spilled to memory.
631 //
Evan Chengddee8422006-11-15 20:55:15 +0000632 for (unsigned i = 0, e = Kills.size(); i != e; ++i) {
633 unsigned VirtReg = Kills[i];
Chris Lattner56ddada2004-02-17 17:49:10 +0000634 unsigned PhysReg = VirtReg;
635 if (MRegisterInfo::isVirtualRegister(VirtReg)) {
636 // If the virtual register was never materialized into a register, it
637 // might not be in the map, but it won't hurt to zero it out anyway.
638 unsigned &PhysRegSlot = getVirt2PhysRegMapSlot(VirtReg);
639 PhysReg = PhysRegSlot;
640 PhysRegSlot = 0;
Chris Lattner0c5b8da2006-09-08 20:21:31 +0000641 } else if (PhysRegsUsed[PhysReg] == -2) {
642 // Unallocatable register dead, ignore.
643 continue;
Evan Cheng7ac19af2007-06-26 21:05:13 +0000644 } else {
Evan Cheng76500d52007-10-22 19:42:28 +0000645 assert((!PhysRegsUsed[PhysReg] || PhysRegsUsed[PhysReg] == -1) &&
Evan Cheng7ac19af2007-06-26 21:05:13 +0000646 "Silently clearing a virtual register?");
Chris Lattner56ddada2004-02-17 17:49:10 +0000647 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000648
Chris Lattner56ddada2004-02-17 17:49:10 +0000649 if (PhysReg) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000650 DOUT << " Last use of " << MRI->getName(PhysReg)
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000651 << "[%reg" << VirtReg <<"], removing it from live set\n";
Chris Lattner56ddada2004-02-17 17:49:10 +0000652 removePhysReg(PhysReg);
Chris Lattner84bc5422007-12-31 04:13:23 +0000653 for (const unsigned *AliasSet = MRI->getSubRegisters(PhysReg);
Evan Chengddee8422006-11-15 20:55:15 +0000654 *AliasSet; ++AliasSet) {
655 if (PhysRegsUsed[*AliasSet] != -2) {
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000656 DOUT << " Last use of "
Chris Lattner84bc5422007-12-31 04:13:23 +0000657 << MRI->getName(*AliasSet)
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000658 << "[%reg" << VirtReg <<"], removing it from live set\n";
Evan Chengddee8422006-11-15 20:55:15 +0000659 removePhysReg(*AliasSet);
660 }
661 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000662 }
663 }
664
665 // Loop over all of the operands of the instruction, spilling registers that
666 // are defined, and marking explicit destinations in the PhysRegsUsed map.
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000667 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
668 MachineOperand& MO = MI->getOperand(i);
Evan Cheng438f7bc2006-11-10 08:43:01 +0000669 if (MO.isRegister() && MO.isDef() && !MO.isImplicit() && MO.getReg() &&
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000670 MRegisterInfo::isPhysicalRegister(MO.getReg())) {
671 unsigned Reg = MO.getReg();
Chris Lattnercc406322006-09-08 19:11:11 +0000672 if (PhysRegsUsed[Reg] == -2) continue; // Something like ESP.
Evan Cheng7ac19af2007-06-26 21:05:13 +0000673 // These are extra physical register defs when a sub-register
674 // is defined (def of a sub-register is a read/mod/write of the
675 // larger registers). Ignore.
676 if (isReadModWriteImplicitDef(MI, MO.getReg())) continue;
677
Chris Lattner84bc5422007-12-31 04:13:23 +0000678 MF->getRegInfo().setPhysRegUsed(Reg);
Evan Chengddee8422006-11-15 20:55:15 +0000679 spillPhysReg(MBB, MI, Reg, true); // Spill any existing value in reg
Chris Lattner91a452b2003-01-13 00:25:40 +0000680 PhysRegsUsed[Reg] = 0; // It is free and reserved now
Evan Cheng7ac19af2007-06-26 21:05:13 +0000681 AddToPhysRegsUseOrder(Reg);
682
Chris Lattner84bc5422007-12-31 04:13:23 +0000683 for (const unsigned *AliasSet = MRI->getSubRegisters(Reg);
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000684 *AliasSet; ++AliasSet) {
Chris Lattner45d57882006-09-08 19:03:30 +0000685 if (PhysRegsUsed[*AliasSet] != -2) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000686 MF->getRegInfo().setPhysRegUsed(*AliasSet);
Evan Cheng7ac19af2007-06-26 21:05:13 +0000687 PhysRegsUsed[*AliasSet] = 0; // It is free and reserved now
688 AddToPhysRegsUseOrder(*AliasSet);
Chris Lattner45d57882006-09-08 19:03:30 +0000689 }
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000690 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000691 }
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000692 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000693
694 // Loop over the implicit defs, spilling them as well.
Jim Laskeycd4317e2006-07-21 21:15:20 +0000695 if (TID.ImplicitDefs) {
696 for (const unsigned *ImplicitDefs = TID.ImplicitDefs;
697 *ImplicitDefs; ++ImplicitDefs) {
698 unsigned Reg = *ImplicitDefs;
Evan Cheng7ac19af2007-06-26 21:05:13 +0000699 if (PhysRegsUsed[Reg] != -2) {
Chris Lattner2b41b8e2006-09-19 18:02:01 +0000700 spillPhysReg(MBB, MI, Reg, true);
Evan Cheng7ac19af2007-06-26 21:05:13 +0000701 AddToPhysRegsUseOrder(Reg);
Chris Lattner2b41b8e2006-09-19 18:02:01 +0000702 PhysRegsUsed[Reg] = 0; // It is free and reserved now
703 }
Chris Lattner84bc5422007-12-31 04:13:23 +0000704 MF->getRegInfo().setPhysRegUsed(Reg);
705 for (const unsigned *AliasSet = MRI->getSubRegisters(Reg);
Jim Laskeycd4317e2006-07-21 21:15:20 +0000706 *AliasSet; ++AliasSet) {
Chris Lattner45d57882006-09-08 19:03:30 +0000707 if (PhysRegsUsed[*AliasSet] != -2) {
Evan Cheng7ac19af2007-06-26 21:05:13 +0000708 AddToPhysRegsUseOrder(*AliasSet);
709 PhysRegsUsed[*AliasSet] = 0; // It is free and reserved now
Chris Lattner84bc5422007-12-31 04:13:23 +0000710 MF->getRegInfo().setPhysRegUsed(*AliasSet);
Chris Lattner45d57882006-09-08 19:03:30 +0000711 }
Jim Laskeycd4317e2006-07-21 21:15:20 +0000712 }
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000713 }
Alkis Evlogimenosefe995a2003-12-13 01:20:58 +0000714 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000715
Evan Chengddee8422006-11-15 20:55:15 +0000716 SmallVector<unsigned, 8> DeadDefs;
717 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
718 MachineOperand& MO = MI->getOperand(i);
719 if (MO.isRegister() && MO.isDead())
720 DeadDefs.push_back(MO.getReg());
721 }
722
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000723 // Okay, we have allocated all of the source operands and spilled any values
724 // that would be destroyed by defs of this instruction. Loop over the
Chris Lattner0648b162005-01-23 22:51:56 +0000725 // explicit defs and assign them to a register, spilling incoming values if
Chris Lattner91a452b2003-01-13 00:25:40 +0000726 // we need to scavenge a register.
Chris Lattner82bee0f2002-12-18 08:14:26 +0000727 //
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000728 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
729 MachineOperand& MO = MI->getOperand(i);
Evan Cheng5d8062b2006-09-05 20:32:06 +0000730 if (MO.isRegister() && MO.isDef() && MO.getReg() &&
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000731 MRegisterInfo::isVirtualRegister(MO.getReg())) {
732 unsigned DestVirtReg = MO.getReg();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000733 unsigned DestPhysReg;
734
Alkis Evlogimenos9af9dbd2003-12-18 13:08:52 +0000735 // If DestVirtReg already has a value, use it.
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000736 if (!(DestPhysReg = getVirt2PhysRegMapSlot(DestVirtReg)))
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000737 DestPhysReg = getReg(MBB, MI, DestVirtReg);
Chris Lattner84bc5422007-12-31 04:13:23 +0000738 MF->getRegInfo().setPhysRegUsed(DestPhysReg);
Chris Lattnerd5725632003-05-12 03:54:14 +0000739 markVirtRegModified(DestVirtReg);
Evan Cheng839b7592008-01-17 02:08:17 +0000740 getVirtRegLastUse(DestVirtReg) = std::make_pair((MachineInstr*)0, 0);
Chris Lattnere53f4a02006-05-04 17:52:23 +0000741 MI->getOperand(i).setReg(DestPhysReg); // Assign the output register
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000742 }
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000743 }
Chris Lattner82bee0f2002-12-18 08:14:26 +0000744
Chris Lattner56ddada2004-02-17 17:49:10 +0000745 // If this instruction defines any registers that are immediately dead,
746 // kill them now.
747 //
Evan Chengddee8422006-11-15 20:55:15 +0000748 for (unsigned i = 0, e = DeadDefs.size(); i != e; ++i) {
749 unsigned VirtReg = DeadDefs[i];
Chris Lattner56ddada2004-02-17 17:49:10 +0000750 unsigned PhysReg = VirtReg;
751 if (MRegisterInfo::isVirtualRegister(VirtReg)) {
752 unsigned &PhysRegSlot = getVirt2PhysRegMapSlot(VirtReg);
753 PhysReg = PhysRegSlot;
754 assert(PhysReg != 0);
755 PhysRegSlot = 0;
Chris Lattner0c5b8da2006-09-08 20:21:31 +0000756 } else if (PhysRegsUsed[PhysReg] == -2) {
757 // Unallocatable register dead, ignore.
758 continue;
Chris Lattner56ddada2004-02-17 17:49:10 +0000759 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000760
Chris Lattner56ddada2004-02-17 17:49:10 +0000761 if (PhysReg) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000762 DOUT << " Register " << MRI->getName(PhysReg)
Chris Lattner56ddada2004-02-17 17:49:10 +0000763 << " [%reg" << VirtReg
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000764 << "] is never used, removing it frame live list\n";
Chris Lattner56ddada2004-02-17 17:49:10 +0000765 removePhysReg(PhysReg);
Chris Lattner84bc5422007-12-31 04:13:23 +0000766 for (const unsigned *AliasSet = MRI->getAliasSet(PhysReg);
Evan Chengddee8422006-11-15 20:55:15 +0000767 *AliasSet; ++AliasSet) {
768 if (PhysRegsUsed[*AliasSet] != -2) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000769 DOUT << " Register " << MRI->getName(*AliasSet)
Evan Chengddee8422006-11-15 20:55:15 +0000770 << " [%reg" << *AliasSet
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000771 << "] is never used, removing it frame live list\n";
Evan Chengddee8422006-11-15 20:55:15 +0000772 removePhysReg(*AliasSet);
773 }
774 }
Chris Lattner82bee0f2002-12-18 08:14:26 +0000775 }
776 }
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000777
778 // Finally, if this is a noop copy instruction, zap it.
779 unsigned SrcReg, DstReg;
Chris Lattner2ac0d432006-09-03 00:06:08 +0000780 if (TII.isMoveInstr(*MI, SrcReg, DstReg) && SrcReg == DstReg) {
781 LV->removeVirtualRegistersKilled(MI);
782 LV->removeVirtualRegistersDead(MI);
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000783 MBB.erase(MI);
Chris Lattner2ac0d432006-09-03 00:06:08 +0000784 }
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000785 }
786
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000787 MachineBasicBlock::iterator MI = MBB.getFirstTerminator();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000788
789 // Spill all physical registers holding virtual registers now.
Chris Lattner84bc5422007-12-31 04:13:23 +0000790 for (unsigned i = 0, e = MRI->getNumRegs(); i != e; ++i)
Chris Lattner45d57882006-09-08 19:03:30 +0000791 if (PhysRegsUsed[i] != -1 && PhysRegsUsed[i] != -2)
Chris Lattner64667b62004-02-09 01:26:13 +0000792 if (unsigned VirtReg = PhysRegsUsed[i])
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000793 spillVirtReg(MBB, MI, VirtReg, i);
Chris Lattner64667b62004-02-09 01:26:13 +0000794 else
795 removePhysReg(i);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000796
Chris Lattner9a5ef202005-11-09 05:28:45 +0000797#if 0
798 // This checking code is very expensive.
Chris Lattnerecea5632004-02-09 02:12:04 +0000799 bool AllOk = true;
Alkis Evlogimenos4d0d8642004-02-25 21:55:45 +0000800 for (unsigned i = MRegisterInfo::FirstVirtualRegister,
Chris Lattner84bc5422007-12-31 04:13:23 +0000801 e = MF->getRegInfo().getLastVirtReg(); i <= e; ++i)
Chris Lattnerecea5632004-02-09 02:12:04 +0000802 if (unsigned PR = Virt2PhysRegMap[i]) {
Bill Wendling832171c2006-12-07 20:04:42 +0000803 cerr << "Register still mapped: " << i << " -> " << PR << "\n";
Chris Lattnerecea5632004-02-09 02:12:04 +0000804 AllOk = false;
805 }
806 assert(AllOk && "Virtual registers still in phys regs?");
807#endif
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000808
Chris Lattner128c2aa2003-08-17 18:01:15 +0000809 // Clear any physical register which appear live at the end of the basic
810 // block, but which do not hold any virtual registers. e.g., the stack
811 // pointer.
812 PhysRegsUseOrder.clear();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000813}
814
Chris Lattner86c69a62002-12-17 03:16:10 +0000815
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000816/// runOnMachineFunction - Register allocate the whole function
817///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000818bool RALocal::runOnMachineFunction(MachineFunction &Fn) {
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000819 DOUT << "Machine Function " << "\n";
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000820 MF = &Fn;
Chris Lattner580f9be2002-12-28 20:40:43 +0000821 TM = &Fn.getTarget();
Chris Lattner84bc5422007-12-31 04:13:23 +0000822 MRI = TM->getRegisterInfo();
Owen Anderson6425f8b2008-01-07 01:35:56 +0000823 TII = TM->getInstrInfo();
Chris Lattner56ddada2004-02-17 17:49:10 +0000824 LV = &getAnalysis<LiveVariables>();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000825
Chris Lattner84bc5422007-12-31 04:13:23 +0000826 PhysRegsUsed.assign(MRI->getNumRegs(), -1);
Chris Lattner45d57882006-09-08 19:03:30 +0000827
828 // At various places we want to efficiently check to see whether a register
829 // is allocatable. To handle this, we mark all unallocatable registers as
830 // being pinned down, permanently.
831 {
Chris Lattner84bc5422007-12-31 04:13:23 +0000832 BitVector Allocable = MRI->getAllocatableSet(Fn);
Chris Lattner45d57882006-09-08 19:03:30 +0000833 for (unsigned i = 0, e = Allocable.size(); i != e; ++i)
834 if (!Allocable[i])
835 PhysRegsUsed[i] = -2; // Mark the reg unallocable.
836 }
Chris Lattner64667b62004-02-09 01:26:13 +0000837
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000838 // initialize the virtual->physical register map to have a 'null'
839 // mapping for all virtual registers
Evan Cheng644340a2008-01-17 00:35:26 +0000840 unsigned LastVirtReg = MF->getRegInfo().getLastVirtReg();
841 Virt2PhysRegMap.grow(LastVirtReg);
Evan Cheng839b7592008-01-17 02:08:17 +0000842 Virt2LastUseMap.grow(LastVirtReg);
843 VirtRegModified.resize(LastVirtReg+1-MRegisterInfo::FirstVirtualRegister);
Chris Lattnerecea5632004-02-09 02:12:04 +0000844
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000845 // Loop over all of the basic blocks, eliminating virtual register references
846 for (MachineFunction::iterator MBB = Fn.begin(), MBBe = Fn.end();
847 MBB != MBBe; ++MBB)
848 AllocateBasicBlock(*MBB);
849
Chris Lattner580f9be2002-12-28 20:40:43 +0000850 StackSlotForVirtReg.clear();
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000851 PhysRegsUsed.clear();
Chris Lattner91a452b2003-01-13 00:25:40 +0000852 VirtRegModified.clear();
Chris Lattnerecea5632004-02-09 02:12:04 +0000853 Virt2PhysRegMap.clear();
Evan Cheng839b7592008-01-17 02:08:17 +0000854 Virt2LastUseMap.clear();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000855 return true;
856}
857
Chris Lattneref09c632004-01-31 21:27:19 +0000858FunctionPass *llvm::createLocalRegisterAllocator() {
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000859 return new RALocal();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000860}