blob: 99fc6c9028ab7ba4a6d9b3e55c8af02570ba3e2e [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"
Evan Cheng22ff3ee2008-02-06 08:00:32 +000017#include "llvm/CodeGen/LiveVariables.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"
Evan Cheng22ff3ee2008-02-06 08:00:32 +000022#include "llvm/CodeGen/Passes.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"
Evan Cheng2fc628d2008-02-06 19:16:53 +000032#include "llvm/ADT/STLExtras.h"
Chris Lattner27f29162004-10-26 15:35:58 +000033#include <algorithm>
Chris Lattneref09c632004-01-31 21:27:19 +000034using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000035
Chris Lattnercd3245a2006-12-19 22:41:21 +000036STATISTIC(NumStores, "Number of stores added");
37STATISTIC(NumLoads , "Number of loads added");
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;
Dan Gohman6f0d0242008-02-10 18:45:23 +000052 const TargetRegisterInfo *TRI;
Owen Anderson6425f8b2008-01-07 01:35:56 +000053 const TargetInstrInfo *TII;
Chris Lattnerff863ba2002-12-25 05:05:46 +000054
Chris Lattnerb8822ad2003-08-04 23:36:39 +000055 // StackSlotForVirtReg - Maps virtual regs to the frame index where these
56 // values are spilled.
Chris Lattner580f9be2002-12-28 20:40:43 +000057 std::map<unsigned, int> StackSlotForVirtReg;
Chris Lattnerb74e83c2002-12-16 16:15:28 +000058
59 // Virt2PhysRegMap - This map contains entries for each virtual register
Alkis Evlogimenos4d0d8642004-02-25 21:55:45 +000060 // that is currently available in a physical register.
Chris Lattner94c002a2007-02-01 05:32:05 +000061 IndexedMap<unsigned, VirtReg2IndexFunctor> Virt2PhysRegMap;
Chris Lattnerecea5632004-02-09 02:12:04 +000062
63 unsigned &getVirt2PhysRegMapSlot(unsigned VirtReg) {
Alkis Evlogimenos4d0d8642004-02-25 21:55:45 +000064 return Virt2PhysRegMap[VirtReg];
Chris Lattnerecea5632004-02-09 02:12:04 +000065 }
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +000066
Chris Lattner64667b62004-02-09 01:26:13 +000067 // PhysRegsUsed - This array is effectively a map, containing entries for
68 // each physical register that currently has a value (ie, it is in
69 // Virt2PhysRegMap). The value mapped to is the virtual register
70 // corresponding to the physical register (the inverse of the
71 // Virt2PhysRegMap), or 0. The value is set to 0 if this register is pinned
Chris Lattner45d57882006-09-08 19:03:30 +000072 // because it is used by a future instruction, and to -2 if it is not
73 // allocatable. If the entry for a physical register is -1, then the
74 // physical register is "not in the map".
Chris Lattnerb74e83c2002-12-16 16:15:28 +000075 //
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +000076 std::vector<int> PhysRegsUsed;
Chris Lattnerb74e83c2002-12-16 16:15:28 +000077
78 // PhysRegsUseOrder - This contains a list of the physical registers that
79 // currently have a virtual register value in them. This list provides an
80 // ordering of registers, imposing a reallocation order. This list is only
81 // used if all registers are allocated and we have to spill one, in which
82 // case we spill the least recently used register. Entries at the front of
83 // the list are the least recently used registers, entries at the back are
84 // the most recently used.
85 //
86 std::vector<unsigned> PhysRegsUseOrder;
87
Evan Cheng839b7592008-01-17 02:08:17 +000088 // Virt2LastUseMap - This maps each virtual register to its last use
89 // (MachineInstr*, operand index pair).
90 IndexedMap<std::pair<MachineInstr*, unsigned>, VirtReg2IndexFunctor>
91 Virt2LastUseMap;
92
93 std::pair<MachineInstr*,unsigned>& getVirtRegLastUse(unsigned Reg) {
Dan Gohman6f0d0242008-02-10 18:45:23 +000094 assert(TargetRegisterInfo::isVirtualRegister(Reg) && "Illegal VirtReg!");
Evan Cheng839b7592008-01-17 02:08:17 +000095 return Virt2LastUseMap[Reg];
96 }
97
Chris Lattner91a452b2003-01-13 00:25:40 +000098 // VirtRegModified - This bitset contains information about which virtual
99 // registers need to be spilled back to memory when their registers are
100 // scavenged. If a virtual register has simply been rematerialized, there
101 // is no reason to spill it to memory when we need the register back.
Chris Lattner82bee0f2002-12-18 08:14:26 +0000102 //
Evan Cheng644340a2008-01-17 00:35:26 +0000103 BitVector VirtRegModified;
Chris Lattner91a452b2003-01-13 00:25:40 +0000104
105 void markVirtRegModified(unsigned Reg, bool Val = true) {
Dan Gohman6f0d0242008-02-10 18:45:23 +0000106 assert(TargetRegisterInfo::isVirtualRegister(Reg) && "Illegal VirtReg!");
107 Reg -= TargetRegisterInfo::FirstVirtualRegister;
Evan Cheng644340a2008-01-17 00:35:26 +0000108 if (Val)
109 VirtRegModified.set(Reg);
110 else
111 VirtRegModified.reset(Reg);
Chris Lattner91a452b2003-01-13 00:25:40 +0000112 }
113
114 bool isVirtRegModified(unsigned Reg) const {
Dan Gohman6f0d0242008-02-10 18:45:23 +0000115 assert(TargetRegisterInfo::isVirtualRegister(Reg) && "Illegal VirtReg!");
116 assert(Reg - TargetRegisterInfo::FirstVirtualRegister < VirtRegModified.size()
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000117 && "Illegal virtual register!");
Dan Gohman6f0d0242008-02-10 18:45:23 +0000118 return VirtRegModified[Reg - TargetRegisterInfo::FirstVirtualRegister];
Chris Lattner91a452b2003-01-13 00:25:40 +0000119 }
Chris Lattner82bee0f2002-12-18 08:14:26 +0000120
Evan Cheng7ac19af2007-06-26 21:05:13 +0000121 void AddToPhysRegsUseOrder(unsigned Reg) {
122 std::vector<unsigned>::iterator It =
123 std::find(PhysRegsUseOrder.begin(), PhysRegsUseOrder.end(), Reg);
124 if (It != PhysRegsUseOrder.end())
125 PhysRegsUseOrder.erase(It);
126 PhysRegsUseOrder.push_back(Reg);
127 }
128
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000129 void MarkPhysRegRecentlyUsed(unsigned Reg) {
Chris Lattner5e503492006-09-03 07:15:37 +0000130 if (PhysRegsUseOrder.empty() ||
131 PhysRegsUseOrder.back() == Reg) return; // Already most recently used
Chris Lattner0eb172c2002-12-24 00:04:55 +0000132
133 for (unsigned i = PhysRegsUseOrder.size(); i != 0; --i)
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000134 if (areRegsEqual(Reg, PhysRegsUseOrder[i-1])) {
135 unsigned RegMatch = PhysRegsUseOrder[i-1]; // remove from middle
136 PhysRegsUseOrder.erase(PhysRegsUseOrder.begin()+i-1);
137 // Add it to the end of the list
138 PhysRegsUseOrder.push_back(RegMatch);
139 if (RegMatch == Reg)
140 return; // Found an exact match, exit early
141 }
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000142 }
143
144 public:
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000145 virtual const char *getPassName() const {
146 return "Local Register Allocator";
147 }
148
Chris Lattner91a452b2003-01-13 00:25:40 +0000149 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Evan Cheng22ff3ee2008-02-06 08:00:32 +0000150 AU.addRequired<LiveVariables>();
Chris Lattner91a452b2003-01-13 00:25:40 +0000151 AU.addRequiredID(PHIEliminationID);
Alkis Evlogimenos4c080862003-12-18 22:40:24 +0000152 AU.addRequiredID(TwoAddressInstructionPassID);
Chris Lattner91a452b2003-01-13 00:25:40 +0000153 MachineFunctionPass::getAnalysisUsage(AU);
154 }
155
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000156 private:
157 /// runOnMachineFunction - Register allocate the whole function
158 bool runOnMachineFunction(MachineFunction &Fn);
159
160 /// AllocateBasicBlock - Register allocate the specified basic block.
161 void AllocateBasicBlock(MachineBasicBlock &MBB);
162
Chris Lattner82bee0f2002-12-18 08:14:26 +0000163
Chris Lattner82bee0f2002-12-18 08:14:26 +0000164 /// areRegsEqual - This method returns true if the specified registers are
165 /// related to each other. To do this, it checks to see if they are equal
166 /// or if the first register is in the alias set of the second register.
167 ///
168 bool areRegsEqual(unsigned R1, unsigned R2) const {
169 if (R1 == R2) return true;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000170 for (const unsigned *AliasSet = TRI->getAliasSet(R2);
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000171 *AliasSet; ++AliasSet) {
172 if (*AliasSet == R1) return true;
173 }
Chris Lattner82bee0f2002-12-18 08:14:26 +0000174 return false;
175 }
176
Chris Lattner580f9be2002-12-28 20:40:43 +0000177 /// getStackSpaceFor - This returns the frame index of the specified virtual
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000178 /// register on the stack, allocating space if necessary.
Chris Lattner580f9be2002-12-28 20:40:43 +0000179 int getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass *RC);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000180
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000181 /// removePhysReg - This method marks the specified physical register as no
182 /// longer being in use.
183 ///
Chris Lattner82bee0f2002-12-18 08:14:26 +0000184 void removePhysReg(unsigned PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000185
186 /// spillVirtReg - This method spills the value specified by PhysReg into
187 /// the virtual register slot specified by VirtReg. It then updates the RA
188 /// data structures to indicate the fact that PhysReg is now available.
189 ///
Chris Lattner688c8252004-02-22 19:08:15 +0000190 void spillVirtReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI,
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000191 unsigned VirtReg, unsigned PhysReg);
192
Chris Lattnerc21be922002-12-16 17:44:42 +0000193 /// spillPhysReg - This method spills the specified physical register into
Chris Lattner128c2aa2003-08-17 18:01:15 +0000194 /// the virtual register slot associated with it. If OnlyVirtRegs is set to
195 /// true, then the request is ignored if the physical register does not
196 /// contain a virtual register.
Chris Lattner91a452b2003-01-13 00:25:40 +0000197 ///
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000198 void spillPhysReg(MachineBasicBlock &MBB, MachineInstr *I,
Chris Lattner128c2aa2003-08-17 18:01:15 +0000199 unsigned PhysReg, bool OnlyVirtRegs = false);
Chris Lattnerc21be922002-12-16 17:44:42 +0000200
Chris Lattner91a452b2003-01-13 00:25:40 +0000201 /// assignVirtToPhysReg - This method updates local state so that we know
202 /// that PhysReg is the proper container for VirtReg now. The physical
203 /// register must not be used for anything else when this is called.
204 ///
205 void assignVirtToPhysReg(unsigned VirtReg, unsigned PhysReg);
206
Chris Lattnerae640432002-12-17 02:50:10 +0000207 /// isPhysRegAvailable - Return true if the specified physical register is
208 /// free and available for use. This also includes checking to see if
209 /// aliased registers are all free...
210 ///
Chris Lattner82bee0f2002-12-18 08:14:26 +0000211 bool isPhysRegAvailable(unsigned PhysReg) const;
Chris Lattner91a452b2003-01-13 00:25:40 +0000212
213 /// getFreeReg - Look to see if there is a free register available in the
214 /// specified register class. If not, return 0.
215 ///
216 unsigned getFreeReg(const TargetRegisterClass *RC);
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000217
Chris Lattner91a452b2003-01-13 00:25:40 +0000218 /// getReg - Find a physical register to hold the specified virtual
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000219 /// register. If all compatible physical registers are used, this method
220 /// spills the last used virtual register to the stack, and uses that
221 /// register.
222 ///
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000223 unsigned getReg(MachineBasicBlock &MBB, MachineInstr *MI,
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000224 unsigned VirtReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000225
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000226 /// reloadVirtReg - This method transforms the specified specified virtual
227 /// register use to refer to a physical register. This method may do this
228 /// in one of several ways: if the register is available in a physical
229 /// register already, it uses that physical register. If the value is not
230 /// in a physical register, and if there are physical registers available,
231 /// it loads it into a register. If register pressure is high, and it is
232 /// possible, it tries to fold the load of the virtual register into the
233 /// instruction itself. It avoids doing this if register pressure is low to
234 /// improve the chance that subsequent instructions can use the reloaded
235 /// value. This method returns the modified instruction.
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000236 ///
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000237 MachineInstr *reloadVirtReg(MachineBasicBlock &MBB, MachineInstr *MI,
238 unsigned OpNum);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000239
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000240
241 void reloadPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator &I,
242 unsigned PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000243 };
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000244 char RALocal::ID = 0;
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000245}
246
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000247/// getStackSpaceFor - This allocates space for the specified virtual register
248/// to be held on the stack.
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000249int RALocal::getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass *RC) {
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000250 // Find the location Reg would belong...
251 std::map<unsigned, int>::iterator I =StackSlotForVirtReg.lower_bound(VirtReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000252
Chris Lattner580f9be2002-12-28 20:40:43 +0000253 if (I != StackSlotForVirtReg.end() && I->first == VirtReg)
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000254 return I->second; // Already has space allocated?
255
Chris Lattner580f9be2002-12-28 20:40:43 +0000256 // Allocate a new stack object for this spill location...
Chris Lattner26eb14b2004-08-15 22:02:22 +0000257 int FrameIdx = MF->getFrameInfo()->CreateStackObject(RC->getSize(),
258 RC->getAlignment());
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000259
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000260 // Assign the slot...
Chris Lattner580f9be2002-12-28 20:40:43 +0000261 StackSlotForVirtReg.insert(I, std::make_pair(VirtReg, FrameIdx));
262 return FrameIdx;
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000263}
264
Chris Lattnerae640432002-12-17 02:50:10 +0000265
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000266/// removePhysReg - This method marks the specified physical register as no
Chris Lattner82bee0f2002-12-18 08:14:26 +0000267/// longer being in use.
268///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000269void RALocal::removePhysReg(unsigned PhysReg) {
Chris Lattner64667b62004-02-09 01:26:13 +0000270 PhysRegsUsed[PhysReg] = -1; // PhyReg no longer used
Chris Lattner82bee0f2002-12-18 08:14:26 +0000271
272 std::vector<unsigned>::iterator It =
273 std::find(PhysRegsUseOrder.begin(), PhysRegsUseOrder.end(), PhysReg);
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000274 if (It != PhysRegsUseOrder.end())
275 PhysRegsUseOrder.erase(It);
Chris Lattner82bee0f2002-12-18 08:14:26 +0000276}
277
Chris Lattner91a452b2003-01-13 00:25:40 +0000278
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000279/// spillVirtReg - This method spills the value specified by PhysReg into the
280/// virtual register slot specified by VirtReg. It then updates the RA data
281/// structures to indicate the fact that PhysReg is now available.
282///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000283void RALocal::spillVirtReg(MachineBasicBlock &MBB,
284 MachineBasicBlock::iterator I,
285 unsigned VirtReg, unsigned PhysReg) {
Chris Lattner8c819452003-08-05 04:13:58 +0000286 assert(VirtReg && "Spilling a physical register is illegal!"
Chris Lattnerd9ac6a72003-08-05 00:49:09 +0000287 " Must not have appropriate kill for the register or use exists beyond"
288 " the intended one.");
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000289 DOUT << " Spilling register " << TRI->getName(PhysReg)
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000290 << " containing %reg" << VirtReg;
Owen Andersonf6372aa2008-01-01 21:11:32 +0000291
292 const TargetInstrInfo* TII = MBB.getParent()->getTarget().getInstrInfo();
293
Evan Cheng839b7592008-01-17 02:08:17 +0000294 if (!isVirtRegModified(VirtReg)) {
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000295 DOUT << " which has not been modified, so no store necessary!";
Evan Cheng839b7592008-01-17 02:08:17 +0000296 std::pair<MachineInstr*, unsigned> &LastUse = getVirtRegLastUse(VirtReg);
297 if (LastUse.first)
298 LastUse.first->getOperand(LastUse.second).setIsKill();
Evan Cheng2fc628d2008-02-06 19:16:53 +0000299 } else {
300 // Otherwise, there is a virtual register corresponding to this physical
301 // register. We only need to spill it into its stack slot if it has been
302 // modified.
Chris Lattner84bc5422007-12-31 04:13:23 +0000303 const TargetRegisterClass *RC = MF->getRegInfo().getRegClass(VirtReg);
Chris Lattnerd9ac6a72003-08-05 00:49:09 +0000304 int FrameIndex = getStackSpaceFor(VirtReg, RC);
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000305 DOUT << " to stack slot #" << FrameIndex;
Evan Cheng2fc628d2008-02-06 19:16:53 +0000306 // If the instruction reads the register that's spilled, (e.g. this can
307 // happen if it is a move to a physical register), then the spill
308 // instruction is not a kill.
Evan Cheng431bfcb2008-02-11 08:30:52 +0000309 bool isKill = !(I != MBB.end() &&
310 I->findRegisterUseOperandIdx(PhysReg) != -1);
311 TII->storeRegToStackSlot(MBB, I, PhysReg, isKill, FrameIndex, RC);
Alkis Evlogimenos2acef2d2004-02-19 06:19:09 +0000312 ++NumStores; // Update statistics
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000313 }
Chris Lattnerecea5632004-02-09 02:12:04 +0000314
315 getVirt2PhysRegMapSlot(VirtReg) = 0; // VirtReg no longer available
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000316
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000317 DOUT << "\n";
Chris Lattner82bee0f2002-12-18 08:14:26 +0000318 removePhysReg(PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000319}
320
Chris Lattnerae640432002-12-17 02:50:10 +0000321
Chris Lattner91a452b2003-01-13 00:25:40 +0000322/// spillPhysReg - This method spills the specified physical register into the
Chris Lattner128c2aa2003-08-17 18:01:15 +0000323/// virtual register slot associated with it. If OnlyVirtRegs is set to true,
324/// then the request is ignored if the physical register does not contain a
325/// virtual register.
Chris Lattner91a452b2003-01-13 00:25:40 +0000326///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000327void RALocal::spillPhysReg(MachineBasicBlock &MBB, MachineInstr *I,
328 unsigned PhysReg, bool OnlyVirtRegs) {
Chris Lattner64667b62004-02-09 01:26:13 +0000329 if (PhysRegsUsed[PhysReg] != -1) { // Only spill it if it's used!
Chris Lattner45d57882006-09-08 19:03:30 +0000330 assert(PhysRegsUsed[PhysReg] != -2 && "Non allocable reg used!");
Chris Lattner64667b62004-02-09 01:26:13 +0000331 if (PhysRegsUsed[PhysReg] || !OnlyVirtRegs)
332 spillVirtReg(MBB, I, PhysRegsUsed[PhysReg], PhysReg);
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000333 } else {
Chris Lattner91a452b2003-01-13 00:25:40 +0000334 // If the selected register aliases any other registers, we must make
Chris Lattner45d57882006-09-08 19:03:30 +0000335 // sure that one of the aliases isn't alive.
Dan Gohman6f0d0242008-02-10 18:45:23 +0000336 for (const unsigned *AliasSet = TRI->getAliasSet(PhysReg);
Chris Lattner64667b62004-02-09 01:26:13 +0000337 *AliasSet; ++AliasSet)
Chris Lattner45d57882006-09-08 19:03:30 +0000338 if (PhysRegsUsed[*AliasSet] != -1 && // Spill aliased register.
339 PhysRegsUsed[*AliasSet] != -2) // If allocatable.
Evan Cheng7ac19af2007-06-26 21:05:13 +0000340 if (PhysRegsUsed[*AliasSet])
341 spillVirtReg(MBB, I, PhysRegsUsed[*AliasSet], *AliasSet);
Chris Lattner91a452b2003-01-13 00:25:40 +0000342 }
343}
344
345
346/// assignVirtToPhysReg - This method updates local state so that we know
347/// that PhysReg is the proper container for VirtReg now. The physical
348/// register must not be used for anything else when this is called.
349///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000350void RALocal::assignVirtToPhysReg(unsigned VirtReg, unsigned PhysReg) {
Chris Lattner64667b62004-02-09 01:26:13 +0000351 assert(PhysRegsUsed[PhysReg] == -1 && "Phys reg already assigned!");
Chris Lattner91a452b2003-01-13 00:25:40 +0000352 // Update information to note the fact that this register was just used, and
353 // it holds VirtReg.
354 PhysRegsUsed[PhysReg] = VirtReg;
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000355 getVirt2PhysRegMapSlot(VirtReg) = PhysReg;
Evan Cheng7ac19af2007-06-26 21:05:13 +0000356 AddToPhysRegsUseOrder(PhysReg); // New use of PhysReg
Chris Lattner91a452b2003-01-13 00:25:40 +0000357}
358
359
Chris Lattnerae640432002-12-17 02:50:10 +0000360/// isPhysRegAvailable - Return true if the specified physical register is free
361/// and available for use. This also includes checking to see if aliased
362/// registers are all free...
363///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000364bool RALocal::isPhysRegAvailable(unsigned PhysReg) const {
Chris Lattner64667b62004-02-09 01:26:13 +0000365 if (PhysRegsUsed[PhysReg] != -1) return false;
Chris Lattnerae640432002-12-17 02:50:10 +0000366
367 // If the selected register aliases any other allocated registers, it is
368 // not free!
Dan Gohman6f0d0242008-02-10 18:45:23 +0000369 for (const unsigned *AliasSet = TRI->getAliasSet(PhysReg);
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000370 *AliasSet; ++AliasSet)
Evan Chengbcfa1ca2008-02-22 20:30:53 +0000371 if (PhysRegsUsed[*AliasSet] >= 0) // Aliased register in use?
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000372 return false; // Can't use this reg then.
Chris Lattnerae640432002-12-17 02:50:10 +0000373 return true;
374}
375
376
Chris Lattner91a452b2003-01-13 00:25:40 +0000377/// getFreeReg - Look to see if there is a free register available in the
378/// specified register class. If not, return 0.
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000379///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000380unsigned RALocal::getFreeReg(const TargetRegisterClass *RC) {
Chris Lattner580f9be2002-12-28 20:40:43 +0000381 // Get iterators defining the range of registers that are valid to allocate in
382 // this class, which also specifies the preferred allocation order.
383 TargetRegisterClass::iterator RI = RC->allocation_order_begin(*MF);
384 TargetRegisterClass::iterator RE = RC->allocation_order_end(*MF);
Chris Lattnerae640432002-12-17 02:50:10 +0000385
Chris Lattner91a452b2003-01-13 00:25:40 +0000386 for (; RI != RE; ++RI)
387 if (isPhysRegAvailable(*RI)) { // Is reg unused?
388 assert(*RI != 0 && "Cannot use register!");
389 return *RI; // Found an unused register!
390 }
391 return 0;
392}
393
394
Chris Lattner91a452b2003-01-13 00:25:40 +0000395/// getReg - Find a physical register to hold the specified virtual
396/// register. If all compatible physical registers are used, this method spills
397/// the last used virtual register to the stack, and uses that register.
398///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000399unsigned RALocal::getReg(MachineBasicBlock &MBB, MachineInstr *I,
400 unsigned VirtReg) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000401 const TargetRegisterClass *RC = MF->getRegInfo().getRegClass(VirtReg);
Chris Lattner91a452b2003-01-13 00:25:40 +0000402
403 // First check to see if we have a free register of the requested type...
404 unsigned PhysReg = getFreeReg(RC);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000405
Chris Lattnerae640432002-12-17 02:50:10 +0000406 // If we didn't find an unused register, scavenge one now!
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000407 if (PhysReg == 0) {
Chris Lattnerc21be922002-12-16 17:44:42 +0000408 assert(!PhysRegsUseOrder.empty() && "No allocated registers??");
Chris Lattnerae640432002-12-17 02:50:10 +0000409
410 // Loop over all of the preallocated registers from the least recently used
411 // to the most recently used. When we find one that is capable of holding
412 // our register, use it.
413 for (unsigned i = 0; PhysReg == 0; ++i) {
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000414 assert(i != PhysRegsUseOrder.size() &&
415 "Couldn't find a register of the appropriate class!");
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000416
Chris Lattnerae640432002-12-17 02:50:10 +0000417 unsigned R = PhysRegsUseOrder[i];
Chris Lattner41822c72003-08-23 23:49:42 +0000418
419 // We can only use this register if it holds a virtual register (ie, it
420 // can be spilled). Do not use it if it is an explicitly allocated
421 // physical register!
Chris Lattner64667b62004-02-09 01:26:13 +0000422 assert(PhysRegsUsed[R] != -1 &&
Chris Lattner41822c72003-08-23 23:49:42 +0000423 "PhysReg in PhysRegsUseOrder, but is not allocated?");
Chris Lattner45d57882006-09-08 19:03:30 +0000424 if (PhysRegsUsed[R] && PhysRegsUsed[R] != -2) {
Chris Lattner41822c72003-08-23 23:49:42 +0000425 // If the current register is compatible, use it.
Chris Lattner3bba0262004-08-15 22:23:09 +0000426 if (RC->contains(R)) {
Chris Lattner41822c72003-08-23 23:49:42 +0000427 PhysReg = R;
428 break;
429 } else {
430 // If one of the registers aliased to the current register is
431 // compatible, use it.
Dan Gohman6f0d0242008-02-10 18:45:23 +0000432 for (const unsigned *AliasIt = TRI->getAliasSet(R);
Chris Lattner5e503492006-09-03 07:15:37 +0000433 *AliasIt; ++AliasIt) {
434 if (RC->contains(*AliasIt) &&
435 // If this is pinned down for some reason, don't use it. For
436 // example, if CL is pinned, and we run across CH, don't use
437 // CH as justification for using scavenging ECX (which will
438 // fail).
Chris Lattner45d57882006-09-08 19:03:30 +0000439 PhysRegsUsed[*AliasIt] != 0 &&
440
441 // Make sure the register is allocatable. Don't allocate SIL on
442 // x86-32.
443 PhysRegsUsed[*AliasIt] != -2) {
Chris Lattner5e503492006-09-03 07:15:37 +0000444 PhysReg = *AliasIt; // Take an aliased register
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000445 break;
446 }
447 }
Chris Lattner41822c72003-08-23 23:49:42 +0000448 }
Chris Lattnerae640432002-12-17 02:50:10 +0000449 }
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000450 }
451
Chris Lattnerae640432002-12-17 02:50:10 +0000452 assert(PhysReg && "Physical register not assigned!?!?");
453
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000454 // At this point PhysRegsUseOrder[i] is the least recently used register of
455 // compatible register class. Spill it to memory and reap its remains.
Chris Lattnerc21be922002-12-16 17:44:42 +0000456 spillPhysReg(MBB, I, PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000457 }
458
459 // Now that we know which register we need to assign this to, do it now!
Chris Lattner91a452b2003-01-13 00:25:40 +0000460 assignVirtToPhysReg(VirtReg, PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000461 return PhysReg;
462}
463
Chris Lattnerae640432002-12-17 02:50:10 +0000464
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000465/// reloadVirtReg - This method transforms the specified specified virtual
466/// register use to refer to a physical register. This method may do this in
467/// one of several ways: if the register is available in a physical register
468/// already, it uses that physical register. If the value is not in a physical
469/// register, and if there are physical registers available, it loads it into a
470/// register. If register pressure is high, and it is possible, it tries to
471/// fold the load of the virtual register into the instruction itself. It
472/// avoids doing this if register pressure is low to improve the chance that
473/// subsequent instructions can use the reloaded value. This method returns the
474/// modified instruction.
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000475///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000476MachineInstr *RALocal::reloadVirtReg(MachineBasicBlock &MBB, MachineInstr *MI,
477 unsigned OpNum) {
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000478 unsigned VirtReg = MI->getOperand(OpNum).getReg();
479
480 // If the virtual register is already available, just update the instruction
481 // and return.
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000482 if (unsigned PR = getVirt2PhysRegMapSlot(VirtReg)) {
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000483 MarkPhysRegRecentlyUsed(PR); // Already have this value available!
Chris Lattnere53f4a02006-05-04 17:52:23 +0000484 MI->getOperand(OpNum).setReg(PR); // Assign the input register
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000485 return MI;
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000486 }
487
Chris Lattner1e3812c2004-02-17 04:08:37 +0000488 // Otherwise, we need to fold it into the current instruction, or reload it.
489 // If we have registers available to hold the value, use them.
Chris Lattner84bc5422007-12-31 04:13:23 +0000490 const TargetRegisterClass *RC = MF->getRegInfo().getRegClass(VirtReg);
Chris Lattner1e3812c2004-02-17 04:08:37 +0000491 unsigned PhysReg = getFreeReg(RC);
Chris Lattner11390e72004-02-17 08:09:40 +0000492 int FrameIndex = getStackSpaceFor(VirtReg, RC);
Chris Lattner1e3812c2004-02-17 04:08:37 +0000493
Chris Lattner11390e72004-02-17 08:09:40 +0000494 if (PhysReg) { // Register is available, allocate it!
495 assignVirtToPhysReg(VirtReg, PhysReg);
496 } else { // No registers available.
Evan Cheng27240c72008-02-07 19:46:55 +0000497 // Force some poor hapless value out of the register file to
Chris Lattner1e3812c2004-02-17 04:08:37 +0000498 // make room for the new register, and reload it.
499 PhysReg = getReg(MBB, MI, VirtReg);
500 }
501
Chris Lattner91a452b2003-01-13 00:25:40 +0000502 markVirtRegModified(VirtReg, false); // Note that this reg was just reloaded
503
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000504 DOUT << " Reloading %reg" << VirtReg << " into "
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000505 << TRI->getName(PhysReg) << "\n";
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000506
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000507 // Add move instruction(s)
Owen Andersonf6372aa2008-01-01 21:11:32 +0000508 const TargetInstrInfo* TII = MBB.getParent()->getTarget().getInstrInfo();
509 TII->loadRegFromStackSlot(MBB, MI, PhysReg, FrameIndex, RC);
Alkis Evlogimenos2acef2d2004-02-19 06:19:09 +0000510 ++NumLoads; // Update statistics
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000511
Chris Lattner84bc5422007-12-31 04:13:23 +0000512 MF->getRegInfo().setPhysRegUsed(PhysReg);
Chris Lattnere53f4a02006-05-04 17:52:23 +0000513 MI->getOperand(OpNum).setReg(PhysReg); // Assign the input register
Evan Cheng839b7592008-01-17 02:08:17 +0000514 getVirtRegLastUse(VirtReg) = std::make_pair(MI, OpNum);
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000515 return MI;
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000516}
517
Evan Cheng7ac19af2007-06-26 21:05:13 +0000518/// isReadModWriteImplicitKill - True if this is an implicit kill for a
519/// read/mod/write register, i.e. update partial register.
520static bool isReadModWriteImplicitKill(MachineInstr *MI, unsigned Reg) {
521 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
522 MachineOperand& MO = MI->getOperand(i);
523 if (MO.isRegister() && MO.getReg() == Reg && MO.isImplicit() &&
524 MO.isDef() && !MO.isDead())
525 return true;
526 }
527 return false;
528}
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000529
Evan Cheng7ac19af2007-06-26 21:05:13 +0000530/// isReadModWriteImplicitDef - True if this is an implicit def for a
531/// read/mod/write register, i.e. update partial register.
532static bool isReadModWriteImplicitDef(MachineInstr *MI, unsigned Reg) {
533 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
534 MachineOperand& MO = MI->getOperand(i);
535 if (MO.isRegister() && MO.getReg() == Reg && MO.isImplicit() &&
536 !MO.isDef() && MO.isKill())
537 return true;
538 }
539 return false;
540}
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000541
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000542void RALocal::AllocateBasicBlock(MachineBasicBlock &MBB) {
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000543 // loop over each instruction
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000544 MachineBasicBlock::iterator MII = MBB.begin();
545 const TargetInstrInfo &TII = *TM->getInstrInfo();
Chris Lattner44500e32006-06-15 22:21:53 +0000546
Evan Chengddee8422006-11-15 20:55:15 +0000547 DEBUG(const BasicBlock *LBB = MBB.getBasicBlock();
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000548 if (LBB) DOUT << "\nStarting RegAlloc of BB: " << LBB->getName());
Evan Chengddee8422006-11-15 20:55:15 +0000549
Chris Lattner44500e32006-06-15 22:21:53 +0000550 // If this is the first basic block in the machine function, add live-in
551 // registers as active.
552 if (&MBB == &*MF->begin()) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000553 for (MachineRegisterInfo::livein_iterator I=MF->getRegInfo().livein_begin(),
554 E = MF->getRegInfo().livein_end(); I != E; ++I) {
Chris Lattner44500e32006-06-15 22:21:53 +0000555 unsigned Reg = I->first;
Chris Lattner84bc5422007-12-31 04:13:23 +0000556 MF->getRegInfo().setPhysRegUsed(Reg);
Chris Lattner44500e32006-06-15 22:21:53 +0000557 PhysRegsUsed[Reg] = 0; // It is free and reserved now
Evan Cheng7ac19af2007-06-26 21:05:13 +0000558 AddToPhysRegsUseOrder(Reg);
Dan Gohman6f0d0242008-02-10 18:45:23 +0000559 for (const unsigned *AliasSet = TRI->getSubRegisters(Reg);
Chris Lattner44500e32006-06-15 22:21:53 +0000560 *AliasSet; ++AliasSet) {
Chris Lattner45d57882006-09-08 19:03:30 +0000561 if (PhysRegsUsed[*AliasSet] != -2) {
Evan Cheng7ac19af2007-06-26 21:05:13 +0000562 AddToPhysRegsUseOrder(*AliasSet);
Chris Lattner45d57882006-09-08 19:03:30 +0000563 PhysRegsUsed[*AliasSet] = 0; // It is free and reserved now
Chris Lattner84bc5422007-12-31 04:13:23 +0000564 MF->getRegInfo().setPhysRegUsed(*AliasSet);
Chris Lattner45d57882006-09-08 19:03:30 +0000565 }
Chris Lattner44500e32006-06-15 22:21:53 +0000566 }
567 }
568 }
569
570 // Otherwise, sequentially allocate each instruction in the MBB.
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000571 while (MII != MBB.end()) {
572 MachineInstr *MI = MII++;
Chris Lattner749c6f62008-01-07 07:27:27 +0000573 const TargetInstrDesc &TID = MI->getDesc();
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000574 DEBUG(DOUT << "\nStarting RegAlloc of: " << *MI;
575 DOUT << " Regs have values: ";
Dan Gohman6f0d0242008-02-10 18:45:23 +0000576 for (unsigned i = 0; i != TRI->getNumRegs(); ++i)
Chris Lattner45d57882006-09-08 19:03:30 +0000577 if (PhysRegsUsed[i] != -1 && PhysRegsUsed[i] != -2)
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000578 DOUT << "[" << TRI->getName(i)
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000579 << ",%reg" << PhysRegsUsed[i] << "] ";
580 DOUT << "\n");
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000581
Chris Lattnerae640432002-12-17 02:50:10 +0000582 // Loop over the implicit uses, making sure that they are at the head of the
583 // use order list, so they don't get reallocated.
Jim Laskeycd4317e2006-07-21 21:15:20 +0000584 if (TID.ImplicitUses) {
585 for (const unsigned *ImplicitUses = TID.ImplicitUses;
586 *ImplicitUses; ++ImplicitUses)
587 MarkPhysRegRecentlyUsed(*ImplicitUses);
588 }
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000589
Evan Chengddee8422006-11-15 20:55:15 +0000590 SmallVector<unsigned, 8> Kills;
591 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
592 MachineOperand& MO = MI->getOperand(i);
Evan Cheng7ac19af2007-06-26 21:05:13 +0000593 if (MO.isRegister() && MO.isKill()) {
594 if (!MO.isImplicit())
595 Kills.push_back(MO.getReg());
596 else if (!isReadModWriteImplicitKill(MI, MO.getReg()))
597 // These are extra physical register kills when a sub-register
598 // is defined (def of a sub-register is a read/mod/write of the
599 // larger registers). Ignore.
600 Kills.push_back(MO.getReg());
601 }
Evan Chengddee8422006-11-15 20:55:15 +0000602 }
603
Brian Gaeke53b99a02003-08-15 21:19:25 +0000604 // Get the used operands into registers. This has the potential to spill
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000605 // incoming values if we are out of registers. Note that we completely
606 // ignore physical register uses here. We assume that if an explicit
607 // physical register is referenced by the instruction, that it is guaranteed
608 // to be live-in, or the input is badly hosed.
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000609 //
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000610 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
611 MachineOperand& MO = MI->getOperand(i);
612 // here we are looking for only used operands (never def&use)
Evan Chengddee8422006-11-15 20:55:15 +0000613 if (MO.isRegister() && !MO.isDef() && MO.getReg() && !MO.isImplicit() &&
Dan Gohman6f0d0242008-02-10 18:45:23 +0000614 TargetRegisterInfo::isVirtualRegister(MO.getReg()))
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000615 MI = reloadVirtReg(MBB, MI, i);
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000616 }
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000617
Evan Chengddee8422006-11-15 20:55:15 +0000618 // If this instruction is the last user of this register, kill the
Chris Lattner56ddada2004-02-17 17:49:10 +0000619 // value, freeing the register being used, so it doesn't need to be
620 // spilled to memory.
621 //
Evan Chengddee8422006-11-15 20:55:15 +0000622 for (unsigned i = 0, e = Kills.size(); i != e; ++i) {
623 unsigned VirtReg = Kills[i];
Chris Lattner56ddada2004-02-17 17:49:10 +0000624 unsigned PhysReg = VirtReg;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000625 if (TargetRegisterInfo::isVirtualRegister(VirtReg)) {
Chris Lattner56ddada2004-02-17 17:49:10 +0000626 // If the virtual register was never materialized into a register, it
627 // might not be in the map, but it won't hurt to zero it out anyway.
628 unsigned &PhysRegSlot = getVirt2PhysRegMapSlot(VirtReg);
629 PhysReg = PhysRegSlot;
630 PhysRegSlot = 0;
Chris Lattner0c5b8da2006-09-08 20:21:31 +0000631 } else if (PhysRegsUsed[PhysReg] == -2) {
632 // Unallocatable register dead, ignore.
633 continue;
Evan Cheng7ac19af2007-06-26 21:05:13 +0000634 } else {
Evan Cheng76500d52007-10-22 19:42:28 +0000635 assert((!PhysRegsUsed[PhysReg] || PhysRegsUsed[PhysReg] == -1) &&
Evan Cheng7ac19af2007-06-26 21:05:13 +0000636 "Silently clearing a virtual register?");
Chris Lattner56ddada2004-02-17 17:49:10 +0000637 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000638
Chris Lattner56ddada2004-02-17 17:49:10 +0000639 if (PhysReg) {
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000640 DOUT << " Last use of " << TRI->getName(PhysReg)
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000641 << "[%reg" << VirtReg <<"], removing it from live set\n";
Chris Lattner56ddada2004-02-17 17:49:10 +0000642 removePhysReg(PhysReg);
Dan Gohman6f0d0242008-02-10 18:45:23 +0000643 for (const unsigned *AliasSet = TRI->getSubRegisters(PhysReg);
Evan Chengddee8422006-11-15 20:55:15 +0000644 *AliasSet; ++AliasSet) {
645 if (PhysRegsUsed[*AliasSet] != -2) {
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000646 DOUT << " Last use of "
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000647 << TRI->getName(*AliasSet)
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000648 << "[%reg" << VirtReg <<"], removing it from live set\n";
Evan Chengddee8422006-11-15 20:55:15 +0000649 removePhysReg(*AliasSet);
650 }
651 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000652 }
653 }
654
655 // Loop over all of the operands of the instruction, spilling registers that
656 // are defined, and marking explicit destinations in the PhysRegsUsed map.
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000657 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
658 MachineOperand& MO = MI->getOperand(i);
Evan Cheng438f7bc2006-11-10 08:43:01 +0000659 if (MO.isRegister() && MO.isDef() && !MO.isImplicit() && MO.getReg() &&
Dan Gohman6f0d0242008-02-10 18:45:23 +0000660 TargetRegisterInfo::isPhysicalRegister(MO.getReg())) {
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000661 unsigned Reg = MO.getReg();
Chris Lattnercc406322006-09-08 19:11:11 +0000662 if (PhysRegsUsed[Reg] == -2) continue; // Something like ESP.
Evan Cheng7ac19af2007-06-26 21:05:13 +0000663 // These are extra physical register defs when a sub-register
664 // is defined (def of a sub-register is a read/mod/write of the
665 // larger registers). Ignore.
666 if (isReadModWriteImplicitDef(MI, MO.getReg())) continue;
667
Chris Lattner84bc5422007-12-31 04:13:23 +0000668 MF->getRegInfo().setPhysRegUsed(Reg);
Evan Chengddee8422006-11-15 20:55:15 +0000669 spillPhysReg(MBB, MI, Reg, true); // Spill any existing value in reg
Chris Lattner91a452b2003-01-13 00:25:40 +0000670 PhysRegsUsed[Reg] = 0; // It is free and reserved now
Evan Cheng7ac19af2007-06-26 21:05:13 +0000671 AddToPhysRegsUseOrder(Reg);
672
Dan Gohman6f0d0242008-02-10 18:45:23 +0000673 for (const unsigned *AliasSet = TRI->getSubRegisters(Reg);
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000674 *AliasSet; ++AliasSet) {
Chris Lattner45d57882006-09-08 19:03:30 +0000675 if (PhysRegsUsed[*AliasSet] != -2) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000676 MF->getRegInfo().setPhysRegUsed(*AliasSet);
Evan Cheng7ac19af2007-06-26 21:05:13 +0000677 PhysRegsUsed[*AliasSet] = 0; // It is free and reserved now
678 AddToPhysRegsUseOrder(*AliasSet);
Chris Lattner45d57882006-09-08 19:03:30 +0000679 }
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000680 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000681 }
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000682 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000683
684 // Loop over the implicit defs, spilling them as well.
Jim Laskeycd4317e2006-07-21 21:15:20 +0000685 if (TID.ImplicitDefs) {
686 for (const unsigned *ImplicitDefs = TID.ImplicitDefs;
687 *ImplicitDefs; ++ImplicitDefs) {
688 unsigned Reg = *ImplicitDefs;
Evan Cheng7ac19af2007-06-26 21:05:13 +0000689 if (PhysRegsUsed[Reg] != -2) {
Chris Lattner2b41b8e2006-09-19 18:02:01 +0000690 spillPhysReg(MBB, MI, Reg, true);
Evan Cheng7ac19af2007-06-26 21:05:13 +0000691 AddToPhysRegsUseOrder(Reg);
Chris Lattner2b41b8e2006-09-19 18:02:01 +0000692 PhysRegsUsed[Reg] = 0; // It is free and reserved now
693 }
Chris Lattner84bc5422007-12-31 04:13:23 +0000694 MF->getRegInfo().setPhysRegUsed(Reg);
Dan Gohman6f0d0242008-02-10 18:45:23 +0000695 for (const unsigned *AliasSet = TRI->getSubRegisters(Reg);
Jim Laskeycd4317e2006-07-21 21:15:20 +0000696 *AliasSet; ++AliasSet) {
Chris Lattner45d57882006-09-08 19:03:30 +0000697 if (PhysRegsUsed[*AliasSet] != -2) {
Evan Cheng7ac19af2007-06-26 21:05:13 +0000698 AddToPhysRegsUseOrder(*AliasSet);
699 PhysRegsUsed[*AliasSet] = 0; // It is free and reserved now
Chris Lattner84bc5422007-12-31 04:13:23 +0000700 MF->getRegInfo().setPhysRegUsed(*AliasSet);
Chris Lattner45d57882006-09-08 19:03:30 +0000701 }
Jim Laskeycd4317e2006-07-21 21:15:20 +0000702 }
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000703 }
Alkis Evlogimenosefe995a2003-12-13 01:20:58 +0000704 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000705
Evan Chengddee8422006-11-15 20:55:15 +0000706 SmallVector<unsigned, 8> DeadDefs;
707 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
708 MachineOperand& MO = MI->getOperand(i);
709 if (MO.isRegister() && MO.isDead())
710 DeadDefs.push_back(MO.getReg());
711 }
712
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000713 // Okay, we have allocated all of the source operands and spilled any values
714 // that would be destroyed by defs of this instruction. Loop over the
Chris Lattner0648b162005-01-23 22:51:56 +0000715 // explicit defs and assign them to a register, spilling incoming values if
Chris Lattner91a452b2003-01-13 00:25:40 +0000716 // we need to scavenge a register.
Chris Lattner82bee0f2002-12-18 08:14:26 +0000717 //
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000718 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
719 MachineOperand& MO = MI->getOperand(i);
Evan Cheng5d8062b2006-09-05 20:32:06 +0000720 if (MO.isRegister() && MO.isDef() && MO.getReg() &&
Dan Gohman6f0d0242008-02-10 18:45:23 +0000721 TargetRegisterInfo::isVirtualRegister(MO.getReg())) {
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000722 unsigned DestVirtReg = MO.getReg();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000723 unsigned DestPhysReg;
724
Alkis Evlogimenos9af9dbd2003-12-18 13:08:52 +0000725 // If DestVirtReg already has a value, use it.
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000726 if (!(DestPhysReg = getVirt2PhysRegMapSlot(DestVirtReg)))
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000727 DestPhysReg = getReg(MBB, MI, DestVirtReg);
Chris Lattner84bc5422007-12-31 04:13:23 +0000728 MF->getRegInfo().setPhysRegUsed(DestPhysReg);
Chris Lattnerd5725632003-05-12 03:54:14 +0000729 markVirtRegModified(DestVirtReg);
Evan Cheng839b7592008-01-17 02:08:17 +0000730 getVirtRegLastUse(DestVirtReg) = std::make_pair((MachineInstr*)0, 0);
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000731 DOUT << " Assigning " << TRI->getName(DestPhysReg)
Evan Cheng9af70902008-02-22 19:57:06 +0000732 << " to %reg" << DestVirtReg << "\n";
Chris Lattnere53f4a02006-05-04 17:52:23 +0000733 MI->getOperand(i).setReg(DestPhysReg); // Assign the output register
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000734 }
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000735 }
Chris Lattner82bee0f2002-12-18 08:14:26 +0000736
Chris Lattner56ddada2004-02-17 17:49:10 +0000737 // If this instruction defines any registers that are immediately dead,
738 // kill them now.
739 //
Evan Chengddee8422006-11-15 20:55:15 +0000740 for (unsigned i = 0, e = DeadDefs.size(); i != e; ++i) {
741 unsigned VirtReg = DeadDefs[i];
Chris Lattner56ddada2004-02-17 17:49:10 +0000742 unsigned PhysReg = VirtReg;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000743 if (TargetRegisterInfo::isVirtualRegister(VirtReg)) {
Chris Lattner56ddada2004-02-17 17:49:10 +0000744 unsigned &PhysRegSlot = getVirt2PhysRegMapSlot(VirtReg);
745 PhysReg = PhysRegSlot;
746 assert(PhysReg != 0);
747 PhysRegSlot = 0;
Chris Lattner0c5b8da2006-09-08 20:21:31 +0000748 } else if (PhysRegsUsed[PhysReg] == -2) {
749 // Unallocatable register dead, ignore.
750 continue;
Chris Lattner56ddada2004-02-17 17:49:10 +0000751 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000752
Chris Lattner56ddada2004-02-17 17:49:10 +0000753 if (PhysReg) {
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000754 DOUT << " Register " << TRI->getName(PhysReg)
Chris Lattner56ddada2004-02-17 17:49:10 +0000755 << " [%reg" << VirtReg
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000756 << "] is never used, removing it frame live list\n";
Chris Lattner56ddada2004-02-17 17:49:10 +0000757 removePhysReg(PhysReg);
Dan Gohman6f0d0242008-02-10 18:45:23 +0000758 for (const unsigned *AliasSet = TRI->getAliasSet(PhysReg);
Evan Chengddee8422006-11-15 20:55:15 +0000759 *AliasSet; ++AliasSet) {
760 if (PhysRegsUsed[*AliasSet] != -2) {
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000761 DOUT << " Register " << TRI->getName(*AliasSet)
Evan Chengddee8422006-11-15 20:55:15 +0000762 << " [%reg" << *AliasSet
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000763 << "] is never used, removing it frame live list\n";
Evan Chengddee8422006-11-15 20:55:15 +0000764 removePhysReg(*AliasSet);
765 }
766 }
Chris Lattner82bee0f2002-12-18 08:14:26 +0000767 }
768 }
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000769
770 // Finally, if this is a noop copy instruction, zap it.
771 unsigned SrcReg, DstReg;
Evan Cheng2fc628d2008-02-06 19:16:53 +0000772 if (TII.isMoveInstr(*MI, SrcReg, DstReg) && SrcReg == DstReg)
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000773 MBB.erase(MI);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000774 }
775
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000776 MachineBasicBlock::iterator MI = MBB.getFirstTerminator();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000777
778 // Spill all physical registers holding virtual registers now.
Dan Gohman6f0d0242008-02-10 18:45:23 +0000779 for (unsigned i = 0, e = TRI->getNumRegs(); i != e; ++i)
Anton Korobeynikov4aefd6b2008-02-20 12:07:57 +0000780 if (PhysRegsUsed[i] != -1 && PhysRegsUsed[i] != -2) {
Chris Lattner64667b62004-02-09 01:26:13 +0000781 if (unsigned VirtReg = PhysRegsUsed[i])
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000782 spillVirtReg(MBB, MI, VirtReg, i);
Chris Lattner64667b62004-02-09 01:26:13 +0000783 else
784 removePhysReg(i);
Anton Korobeynikov4aefd6b2008-02-20 12:07:57 +0000785 }
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000786
Chris Lattner9a5ef202005-11-09 05:28:45 +0000787#if 0
788 // This checking code is very expensive.
Chris Lattnerecea5632004-02-09 02:12:04 +0000789 bool AllOk = true;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000790 for (unsigned i = TargetRegisterInfo::FirstVirtualRegister,
Chris Lattner84bc5422007-12-31 04:13:23 +0000791 e = MF->getRegInfo().getLastVirtReg(); i <= e; ++i)
Chris Lattnerecea5632004-02-09 02:12:04 +0000792 if (unsigned PR = Virt2PhysRegMap[i]) {
Bill Wendling832171c2006-12-07 20:04:42 +0000793 cerr << "Register still mapped: " << i << " -> " << PR << "\n";
Chris Lattnerecea5632004-02-09 02:12:04 +0000794 AllOk = false;
795 }
796 assert(AllOk && "Virtual registers still in phys regs?");
797#endif
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000798
Chris Lattner128c2aa2003-08-17 18:01:15 +0000799 // Clear any physical register which appear live at the end of the basic
800 // block, but which do not hold any virtual registers. e.g., the stack
801 // pointer.
802 PhysRegsUseOrder.clear();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000803}
804
Chris Lattner86c69a62002-12-17 03:16:10 +0000805
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000806/// runOnMachineFunction - Register allocate the whole function
807///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000808bool RALocal::runOnMachineFunction(MachineFunction &Fn) {
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000809 DOUT << "Machine Function " << "\n";
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000810 MF = &Fn;
Chris Lattner580f9be2002-12-28 20:40:43 +0000811 TM = &Fn.getTarget();
Dan Gohman6f0d0242008-02-10 18:45:23 +0000812 TRI = TM->getRegisterInfo();
Owen Anderson6425f8b2008-01-07 01:35:56 +0000813 TII = TM->getInstrInfo();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000814
Dan Gohman6f0d0242008-02-10 18:45:23 +0000815 PhysRegsUsed.assign(TRI->getNumRegs(), -1);
Chris Lattner45d57882006-09-08 19:03:30 +0000816
817 // At various places we want to efficiently check to see whether a register
818 // is allocatable. To handle this, we mark all unallocatable registers as
819 // being pinned down, permanently.
820 {
Dan Gohman6f0d0242008-02-10 18:45:23 +0000821 BitVector Allocable = TRI->getAllocatableSet(Fn);
Chris Lattner45d57882006-09-08 19:03:30 +0000822 for (unsigned i = 0, e = Allocable.size(); i != e; ++i)
823 if (!Allocable[i])
824 PhysRegsUsed[i] = -2; // Mark the reg unallocable.
825 }
Chris Lattner64667b62004-02-09 01:26:13 +0000826
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000827 // initialize the virtual->physical register map to have a 'null'
828 // mapping for all virtual registers
Evan Cheng644340a2008-01-17 00:35:26 +0000829 unsigned LastVirtReg = MF->getRegInfo().getLastVirtReg();
830 Virt2PhysRegMap.grow(LastVirtReg);
Evan Cheng839b7592008-01-17 02:08:17 +0000831 Virt2LastUseMap.grow(LastVirtReg);
Dan Gohman6f0d0242008-02-10 18:45:23 +0000832 VirtRegModified.resize(LastVirtReg+1-TargetRegisterInfo::FirstVirtualRegister);
Chris Lattnerecea5632004-02-09 02:12:04 +0000833
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000834 // Loop over all of the basic blocks, eliminating virtual register references
835 for (MachineFunction::iterator MBB = Fn.begin(), MBBe = Fn.end();
836 MBB != MBBe; ++MBB)
837 AllocateBasicBlock(*MBB);
838
Chris Lattner580f9be2002-12-28 20:40:43 +0000839 StackSlotForVirtReg.clear();
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000840 PhysRegsUsed.clear();
Chris Lattner91a452b2003-01-13 00:25:40 +0000841 VirtRegModified.clear();
Chris Lattnerecea5632004-02-09 02:12:04 +0000842 Virt2PhysRegMap.clear();
Evan Cheng839b7592008-01-17 02:08:17 +0000843 Virt2LastUseMap.clear();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000844 return true;
845}
846
Chris Lattneref09c632004-01-31 21:27:19 +0000847FunctionPass *llvm::createLocalRegisterAllocator() {
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000848 return new RALocal();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000849}