blob: e1cc20cf4fb112801a67e939a07558250829496b [file] [log] [blame]
Chris Lattnerb74e83c2002-12-16 16:15:28 +00001//===-- RegAllocLocal.cpp - A BasicBlock generic register allocator -------===//
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattnerb74e83c2002-12-16 16:15:28 +00009//
10// This register allocator allocates registers to a basic block at a time,
11// attempting to keep values in registers and reusing registers as appropriate.
12//
13//===----------------------------------------------------------------------===//
14
Chris Lattner4cc662b2003-08-03 21:47:31 +000015#define DEBUG_TYPE "regalloc"
Evan Chengddee8422006-11-15 20:55:15 +000016#include "llvm/BasicBlock.h"
Chris Lattner580f9be2002-12-28 20:40:43 +000017#include "llvm/CodeGen/MachineFunctionPass.h"
Chris Lattnerb74e83c2002-12-16 16:15:28 +000018#include "llvm/CodeGen/MachineInstr.h"
Chris Lattnereb24db92002-12-28 21:08:26 +000019#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000020#include "llvm/CodeGen/MachineRegisterInfo.h"
Evan Cheng22ff3ee2008-02-06 08:00:32 +000021#include "llvm/CodeGen/Passes.h"
Jim Laskeyeb577ba2006-08-02 12:30:23 +000022#include "llvm/CodeGen/RegAllocRegistry.h"
Chris Lattner3501fea2003-01-14 22:00:31 +000023#include "llvm/Target/TargetInstrInfo.h"
Chris Lattnerb74e83c2002-12-16 16:15:28 +000024#include "llvm/Target/TargetMachine.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000025#include "llvm/Support/CommandLine.h"
26#include "llvm/Support/Debug.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000027#include "llvm/Support/Compiler.h"
Owen Anderson743a1e62008-07-10 01:56:35 +000028#include "llvm/ADT/DenseMap.h"
Chris Lattner94c002a2007-02-01 05:32:05 +000029#include "llvm/ADT/IndexedMap.h"
Evan Cheng5a3c6a82009-01-29 02:20:59 +000030#include "llvm/ADT/SmallSet.h"
Evan Chengddee8422006-11-15 20:55:15 +000031#include "llvm/ADT/SmallVector.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000032#include "llvm/ADT/Statistic.h"
Evan Cheng2fc628d2008-02-06 19:16:53 +000033#include "llvm/ADT/STLExtras.h"
Chris Lattner27f29162004-10-26 15:35:58 +000034#include <algorithm>
Chris Lattneref09c632004-01-31 21:27:19 +000035using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000036
Chris Lattnercd3245a2006-12-19 22:41:21 +000037STATISTIC(NumStores, "Number of stores added");
38STATISTIC(NumLoads , "Number of loads added");
Jim Laskey13ec7022006-08-01 14:21:23 +000039
Dan Gohman844731a2008-05-13 00:00:25 +000040static RegisterRegAlloc
Dan Gohmanb8cab922008-10-14 20:25:08 +000041 localRegAlloc("local", "local register allocator",
Dan Gohman844731a2008-05-13 00:00:25 +000042 createLocalRegisterAllocator);
43
Chris Lattnercd3245a2006-12-19 22:41:21 +000044namespace {
Bill Wendlinge23e00d2007-05-08 19:02:46 +000045 class VISIBILITY_HIDDEN RALocal : public MachineFunctionPass {
Devang Patel794fd752007-05-01 21:15:47 +000046 public:
Devang Patel19974732007-05-03 01:11:54 +000047 static char ID;
Dan Gohmanae73dc12008-09-04 17:05:41 +000048 RALocal() : MachineFunctionPass(&ID), StackSlotForVirtReg(-1) {}
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.
Evan Chengbdb10fe2008-07-10 18:23:23 +000057 IndexedMap<int, VirtReg2IndexFunctor> StackSlotForVirtReg;
Chris Lattnerb74e83c2002-12-16 16:15:28 +000058
59 // Virt2PhysRegMap - This map contains entries for each virtual register
Alkis Evlogimenos4d0d8642004-02-25 21:55:45 +000060 // that is currently available in a physical register.
Chris Lattner94c002a2007-02-01 05:32:05 +000061 IndexedMap<unsigned, VirtReg2IndexFunctor> Virt2PhysRegMap;
Chris Lattnerecea5632004-02-09 02:12:04 +000062
63 unsigned &getVirt2PhysRegMapSlot(unsigned VirtReg) {
Alkis Evlogimenos4d0d8642004-02-25 21:55:45 +000064 return Virt2PhysRegMap[VirtReg];
Chris Lattnerecea5632004-02-09 02:12:04 +000065 }
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +000066
Chris Lattner64667b62004-02-09 01:26:13 +000067 // PhysRegsUsed - This array is effectively a map, containing entries for
68 // each physical register that currently has a value (ie, it is in
69 // Virt2PhysRegMap). The value mapped to is the virtual register
70 // corresponding to the physical register (the inverse of the
71 // Virt2PhysRegMap), or 0. The value is set to 0 if this register is pinned
Chris Lattner45d57882006-09-08 19:03:30 +000072 // because it is used by a future instruction, and to -2 if it is not
73 // allocatable. If the entry for a physical register is -1, then the
74 // physical register is "not in the map".
Chris Lattnerb74e83c2002-12-16 16:15:28 +000075 //
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +000076 std::vector<int> PhysRegsUsed;
Chris Lattnerb74e83c2002-12-16 16:15:28 +000077
78 // PhysRegsUseOrder - This contains a list of the physical registers that
79 // currently have a virtual register value in them. This list provides an
80 // ordering of registers, imposing a reallocation order. This list is only
81 // used if all registers are allocated and we have to spill one, in which
82 // case we spill the least recently used register. Entries at the front of
83 // the list are the least recently used registers, entries at the back are
84 // the most recently used.
85 //
86 std::vector<unsigned> PhysRegsUseOrder;
87
Evan Cheng839b7592008-01-17 02:08:17 +000088 // Virt2LastUseMap - This maps each virtual register to its last use
89 // (MachineInstr*, operand index pair).
90 IndexedMap<std::pair<MachineInstr*, unsigned>, VirtReg2IndexFunctor>
91 Virt2LastUseMap;
92
93 std::pair<MachineInstr*,unsigned>& getVirtRegLastUse(unsigned Reg) {
Dan Gohman6f0d0242008-02-10 18:45:23 +000094 assert(TargetRegisterInfo::isVirtualRegister(Reg) && "Illegal VirtReg!");
Evan Cheng839b7592008-01-17 02:08:17 +000095 return Virt2LastUseMap[Reg];
96 }
97
Chris Lattner91a452b2003-01-13 00:25:40 +000098 // VirtRegModified - This bitset contains information about which virtual
99 // registers need to be spilled back to memory when their registers are
100 // scavenged. If a virtual register has simply been rematerialized, there
101 // is no reason to spill it to memory when we need the register back.
Chris Lattner82bee0f2002-12-18 08:14:26 +0000102 //
Evan Cheng644340a2008-01-17 00:35:26 +0000103 BitVector VirtRegModified;
Owen Anderson491fccc2008-07-08 22:24:50 +0000104
105 // UsedInMultipleBlocks - Tracks whether a particular register is used in
106 // more than one block.
107 BitVector UsedInMultipleBlocks;
Chris Lattner91a452b2003-01-13 00:25:40 +0000108
109 void markVirtRegModified(unsigned Reg, bool Val = true) {
Dan Gohman6f0d0242008-02-10 18:45:23 +0000110 assert(TargetRegisterInfo::isVirtualRegister(Reg) && "Illegal VirtReg!");
111 Reg -= TargetRegisterInfo::FirstVirtualRegister;
Evan Cheng644340a2008-01-17 00:35:26 +0000112 if (Val)
113 VirtRegModified.set(Reg);
114 else
115 VirtRegModified.reset(Reg);
Chris Lattner91a452b2003-01-13 00:25:40 +0000116 }
117
118 bool isVirtRegModified(unsigned Reg) const {
Dan Gohman6f0d0242008-02-10 18:45:23 +0000119 assert(TargetRegisterInfo::isVirtualRegister(Reg) && "Illegal VirtReg!");
120 assert(Reg - TargetRegisterInfo::FirstVirtualRegister < VirtRegModified.size()
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000121 && "Illegal virtual register!");
Dan Gohman6f0d0242008-02-10 18:45:23 +0000122 return VirtRegModified[Reg - TargetRegisterInfo::FirstVirtualRegister];
Chris Lattner91a452b2003-01-13 00:25:40 +0000123 }
Chris Lattner82bee0f2002-12-18 08:14:26 +0000124
Evan Cheng7ac19af2007-06-26 21:05:13 +0000125 void AddToPhysRegsUseOrder(unsigned Reg) {
126 std::vector<unsigned>::iterator It =
127 std::find(PhysRegsUseOrder.begin(), PhysRegsUseOrder.end(), Reg);
128 if (It != PhysRegsUseOrder.end())
129 PhysRegsUseOrder.erase(It);
130 PhysRegsUseOrder.push_back(Reg);
131 }
132
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000133 void MarkPhysRegRecentlyUsed(unsigned Reg) {
Chris Lattner5e503492006-09-03 07:15:37 +0000134 if (PhysRegsUseOrder.empty() ||
135 PhysRegsUseOrder.back() == Reg) return; // Already most recently used
Chris Lattner0eb172c2002-12-24 00:04:55 +0000136
137 for (unsigned i = PhysRegsUseOrder.size(); i != 0; --i)
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000138 if (areRegsEqual(Reg, PhysRegsUseOrder[i-1])) {
139 unsigned RegMatch = PhysRegsUseOrder[i-1]; // remove from middle
140 PhysRegsUseOrder.erase(PhysRegsUseOrder.begin()+i-1);
141 // Add it to the end of the list
142 PhysRegsUseOrder.push_back(RegMatch);
143 if (RegMatch == Reg)
144 return; // Found an exact match, exit early
145 }
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000146 }
147
148 public:
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000149 virtual const char *getPassName() const {
150 return "Local Register Allocator";
151 }
152
Chris Lattner91a452b2003-01-13 00:25:40 +0000153 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattner91a452b2003-01-13 00:25:40 +0000154 AU.addRequiredID(PHIEliminationID);
Alkis Evlogimenos4c080862003-12-18 22:40:24 +0000155 AU.addRequiredID(TwoAddressInstructionPassID);
Chris Lattner91a452b2003-01-13 00:25:40 +0000156 MachineFunctionPass::getAnalysisUsage(AU);
157 }
158
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000159 private:
160 /// runOnMachineFunction - Register allocate the whole function
161 bool runOnMachineFunction(MachineFunction &Fn);
162
163 /// AllocateBasicBlock - Register allocate the specified basic block.
164 void AllocateBasicBlock(MachineBasicBlock &MBB);
165
Chris Lattner82bee0f2002-12-18 08:14:26 +0000166
Chris Lattner82bee0f2002-12-18 08:14:26 +0000167 /// areRegsEqual - This method returns true if the specified registers are
168 /// related to each other. To do this, it checks to see if they are equal
169 /// or if the first register is in the alias set of the second register.
170 ///
171 bool areRegsEqual(unsigned R1, unsigned R2) const {
172 if (R1 == R2) return true;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000173 for (const unsigned *AliasSet = TRI->getAliasSet(R2);
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000174 *AliasSet; ++AliasSet) {
175 if (*AliasSet == R1) return true;
176 }
Chris Lattner82bee0f2002-12-18 08:14:26 +0000177 return false;
178 }
179
Chris Lattner580f9be2002-12-28 20:40:43 +0000180 /// getStackSpaceFor - This returns the frame index of the specified virtual
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000181 /// register on the stack, allocating space if necessary.
Chris Lattner580f9be2002-12-28 20:40:43 +0000182 int getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass *RC);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000183
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000184 /// removePhysReg - This method marks the specified physical register as no
185 /// longer being in use.
186 ///
Chris Lattner82bee0f2002-12-18 08:14:26 +0000187 void removePhysReg(unsigned PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000188
189 /// spillVirtReg - This method spills the value specified by PhysReg into
190 /// the virtual register slot specified by VirtReg. It then updates the RA
191 /// data structures to indicate the fact that PhysReg is now available.
192 ///
Chris Lattner688c8252004-02-22 19:08:15 +0000193 void spillVirtReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI,
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000194 unsigned VirtReg, unsigned PhysReg);
195
Chris Lattnerc21be922002-12-16 17:44:42 +0000196 /// spillPhysReg - This method spills the specified physical register into
Chris Lattner128c2aa2003-08-17 18:01:15 +0000197 /// the virtual register slot associated with it. If OnlyVirtRegs is set to
198 /// true, then the request is ignored if the physical register does not
199 /// contain a virtual register.
Chris Lattner91a452b2003-01-13 00:25:40 +0000200 ///
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000201 void spillPhysReg(MachineBasicBlock &MBB, MachineInstr *I,
Chris Lattner128c2aa2003-08-17 18:01:15 +0000202 unsigned PhysReg, bool OnlyVirtRegs = false);
Chris Lattnerc21be922002-12-16 17:44:42 +0000203
Chris Lattner91a452b2003-01-13 00:25:40 +0000204 /// assignVirtToPhysReg - This method updates local state so that we know
205 /// that PhysReg is the proper container for VirtReg now. The physical
206 /// register must not be used for anything else when this is called.
207 ///
208 void assignVirtToPhysReg(unsigned VirtReg, unsigned PhysReg);
209
Chris Lattnerae640432002-12-17 02:50:10 +0000210 /// isPhysRegAvailable - Return true if the specified physical register is
211 /// free and available for use. This also includes checking to see if
212 /// aliased registers are all free...
213 ///
Chris Lattner82bee0f2002-12-18 08:14:26 +0000214 bool isPhysRegAvailable(unsigned PhysReg) const;
Chris Lattner91a452b2003-01-13 00:25:40 +0000215
216 /// getFreeReg - Look to see if there is a free register available in the
217 /// specified register class. If not, return 0.
218 ///
219 unsigned getFreeReg(const TargetRegisterClass *RC);
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000220
Chris Lattner91a452b2003-01-13 00:25:40 +0000221 /// getReg - Find a physical register to hold the specified virtual
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000222 /// register. If all compatible physical registers are used, this method
223 /// spills the last used virtual register to the stack, and uses that
Evan Cheng7ddee0a2009-01-29 01:13:00 +0000224 /// register. If NoFree is true, that means the caller knows there isn't
225 /// a free register, do not call getFreeReg().
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000226 unsigned getReg(MachineBasicBlock &MBB, MachineInstr *MI,
Evan Cheng7ddee0a2009-01-29 01:13:00 +0000227 unsigned VirtReg, bool NoFree = false);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000228
Bob Wilsone0f745b2009-05-07 21:19:45 +0000229 /// reloadVirtReg - This method transforms the specified virtual
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000230 /// register use to refer to a physical register. This method may do this
231 /// in one of several ways: if the register is available in a physical
232 /// register already, it uses that physical register. If the value is not
233 /// in a physical register, and if there are physical registers available,
234 /// it loads it into a register. If register pressure is high, and it is
235 /// possible, it tries to fold the load of the virtual register into the
236 /// instruction itself. It avoids doing this if register pressure is low to
237 /// improve the chance that subsequent instructions can use the reloaded
238 /// value. This method returns the modified instruction.
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000239 ///
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000240 MachineInstr *reloadVirtReg(MachineBasicBlock &MBB, MachineInstr *MI,
Evan Cheng5a3c6a82009-01-29 02:20:59 +0000241 unsigned OpNum, SmallSet<unsigned, 4> &RRegs);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000242
Owen Anderson9094db12008-07-09 20:14:53 +0000243 /// ComputeLocalLiveness - Computes liveness of registers within a basic
244 /// block, setting the killed/dead flags as appropriate.
245 void ComputeLocalLiveness(MachineBasicBlock& MBB);
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000246
247 void reloadPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator &I,
248 unsigned PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000249 };
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000250 char RALocal::ID = 0;
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000251}
252
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000253/// getStackSpaceFor - This allocates space for the specified virtual register
254/// to be held on the stack.
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000255int RALocal::getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass *RC) {
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000256 // Find the location Reg would belong...
Evan Chengbdb10fe2008-07-10 18:23:23 +0000257 int SS = StackSlotForVirtReg[VirtReg];
258 if (SS != -1)
259 return SS; // Already has space allocated?
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000260
Chris Lattner580f9be2002-12-28 20:40:43 +0000261 // Allocate a new stack object for this spill location...
Chris Lattner26eb14b2004-08-15 22:02:22 +0000262 int FrameIdx = MF->getFrameInfo()->CreateStackObject(RC->getSize(),
263 RC->getAlignment());
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000264
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000265 // Assign the slot...
Evan Chengbdb10fe2008-07-10 18:23:23 +0000266 StackSlotForVirtReg[VirtReg] = FrameIdx;
Chris Lattner580f9be2002-12-28 20:40:43 +0000267 return FrameIdx;
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000268}
269
Chris Lattnerae640432002-12-17 02:50:10 +0000270
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000271/// removePhysReg - This method marks the specified physical register as no
Chris Lattner82bee0f2002-12-18 08:14:26 +0000272/// longer being in use.
273///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000274void RALocal::removePhysReg(unsigned PhysReg) {
Chris Lattner64667b62004-02-09 01:26:13 +0000275 PhysRegsUsed[PhysReg] = -1; // PhyReg no longer used
Chris Lattner82bee0f2002-12-18 08:14:26 +0000276
277 std::vector<unsigned>::iterator It =
278 std::find(PhysRegsUseOrder.begin(), PhysRegsUseOrder.end(), PhysReg);
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000279 if (It != PhysRegsUseOrder.end())
280 PhysRegsUseOrder.erase(It);
Chris Lattner82bee0f2002-12-18 08:14:26 +0000281}
282
Chris Lattner91a452b2003-01-13 00:25:40 +0000283
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000284/// spillVirtReg - This method spills the value specified by PhysReg into the
285/// virtual register slot specified by VirtReg. It then updates the RA data
286/// structures to indicate the fact that PhysReg is now available.
287///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000288void RALocal::spillVirtReg(MachineBasicBlock &MBB,
289 MachineBasicBlock::iterator I,
290 unsigned VirtReg, unsigned PhysReg) {
Chris Lattner8c819452003-08-05 04:13:58 +0000291 assert(VirtReg && "Spilling a physical register is illegal!"
Chris Lattnerd9ac6a72003-08-05 00:49:09 +0000292 " Must not have appropriate kill for the register or use exists beyond"
293 " the intended one.");
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000294 DOUT << " Spilling register " << TRI->getName(PhysReg)
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000295 << " containing %reg" << VirtReg;
Owen Andersonf6372aa2008-01-01 21:11:32 +0000296
Evan Cheng839b7592008-01-17 02:08:17 +0000297 if (!isVirtRegModified(VirtReg)) {
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000298 DOUT << " which has not been modified, so no store necessary!";
Evan Cheng839b7592008-01-17 02:08:17 +0000299 std::pair<MachineInstr*, unsigned> &LastUse = getVirtRegLastUse(VirtReg);
300 if (LastUse.first)
301 LastUse.first->getOperand(LastUse.second).setIsKill();
Evan Cheng2fc628d2008-02-06 19:16:53 +0000302 } else {
303 // Otherwise, there is a virtual register corresponding to this physical
304 // register. We only need to spill it into its stack slot if it has been
305 // modified.
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;
Evan Cheng2fc628d2008-02-06 19:16:53 +0000309 // If the instruction reads the register that's spilled, (e.g. this can
310 // happen if it is a move to a physical register), then the spill
311 // instruction is not a kill.
Evan Cheng6130f662008-03-05 00:59:57 +0000312 bool isKill = !(I != MBB.end() && I->readsRegister(PhysReg));
Evan Cheng431bfcb2008-02-11 08:30:52 +0000313 TII->storeRegToStackSlot(MBB, I, PhysReg, isKill, FrameIndex, RC);
Alkis Evlogimenos2acef2d2004-02-19 06:19:09 +0000314 ++NumStores; // Update statistics
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000315 }
Chris Lattnerecea5632004-02-09 02:12:04 +0000316
317 getVirt2PhysRegMapSlot(VirtReg) = 0; // VirtReg no longer available
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000318
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000319 DOUT << "\n";
Chris Lattner82bee0f2002-12-18 08:14:26 +0000320 removePhysReg(PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000321}
322
Chris Lattnerae640432002-12-17 02:50:10 +0000323
Chris Lattner91a452b2003-01-13 00:25:40 +0000324/// spillPhysReg - This method spills the specified physical register into the
Chris Lattner128c2aa2003-08-17 18:01:15 +0000325/// virtual register slot associated with it. If OnlyVirtRegs is set to true,
326/// then the request is ignored if the physical register does not contain a
327/// virtual register.
Chris Lattner91a452b2003-01-13 00:25:40 +0000328///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000329void RALocal::spillPhysReg(MachineBasicBlock &MBB, MachineInstr *I,
330 unsigned PhysReg, bool OnlyVirtRegs) {
Chris Lattner64667b62004-02-09 01:26:13 +0000331 if (PhysRegsUsed[PhysReg] != -1) { // Only spill it if it's used!
Chris Lattner45d57882006-09-08 19:03:30 +0000332 assert(PhysRegsUsed[PhysReg] != -2 && "Non allocable reg used!");
Chris Lattner64667b62004-02-09 01:26:13 +0000333 if (PhysRegsUsed[PhysReg] || !OnlyVirtRegs)
334 spillVirtReg(MBB, I, PhysRegsUsed[PhysReg], PhysReg);
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000335 } else {
Chris Lattner91a452b2003-01-13 00:25:40 +0000336 // If the selected register aliases any other registers, we must make
Chris Lattner45d57882006-09-08 19:03:30 +0000337 // sure that one of the aliases isn't alive.
Dan Gohman6f0d0242008-02-10 18:45:23 +0000338 for (const unsigned *AliasSet = TRI->getAliasSet(PhysReg);
Chris Lattner64667b62004-02-09 01:26:13 +0000339 *AliasSet; ++AliasSet)
Chris Lattner45d57882006-09-08 19:03:30 +0000340 if (PhysRegsUsed[*AliasSet] != -1 && // Spill aliased register.
341 PhysRegsUsed[*AliasSet] != -2) // If allocatable.
Evan Cheng7ac19af2007-06-26 21:05:13 +0000342 if (PhysRegsUsed[*AliasSet])
343 spillVirtReg(MBB, I, PhysRegsUsed[*AliasSet], *AliasSet);
Chris Lattner91a452b2003-01-13 00:25:40 +0000344 }
345}
346
347
348/// assignVirtToPhysReg - This method updates local state so that we know
349/// that PhysReg is the proper container for VirtReg now. The physical
350/// register must not be used for anything else when this is called.
351///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000352void RALocal::assignVirtToPhysReg(unsigned VirtReg, unsigned PhysReg) {
Chris Lattner64667b62004-02-09 01:26:13 +0000353 assert(PhysRegsUsed[PhysReg] == -1 && "Phys reg already assigned!");
Chris Lattner91a452b2003-01-13 00:25:40 +0000354 // Update information to note the fact that this register was just used, and
355 // it holds VirtReg.
356 PhysRegsUsed[PhysReg] = VirtReg;
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000357 getVirt2PhysRegMapSlot(VirtReg) = PhysReg;
Evan Cheng7ac19af2007-06-26 21:05:13 +0000358 AddToPhysRegsUseOrder(PhysReg); // New use of PhysReg
Chris Lattner91a452b2003-01-13 00:25:40 +0000359}
360
361
Chris Lattnerae640432002-12-17 02:50:10 +0000362/// isPhysRegAvailable - Return true if the specified physical register is free
363/// and available for use. This also includes checking to see if aliased
364/// registers are all free...
365///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000366bool RALocal::isPhysRegAvailable(unsigned PhysReg) const {
Chris Lattner64667b62004-02-09 01:26:13 +0000367 if (PhysRegsUsed[PhysReg] != -1) return false;
Chris Lattnerae640432002-12-17 02:50:10 +0000368
369 // If the selected register aliases any other allocated registers, it is
370 // not free!
Dan Gohman6f0d0242008-02-10 18:45:23 +0000371 for (const unsigned *AliasSet = TRI->getAliasSet(PhysReg);
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000372 *AliasSet; ++AliasSet)
Evan Chengbcfa1ca2008-02-22 20:30:53 +0000373 if (PhysRegsUsed[*AliasSet] >= 0) // Aliased register in use?
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000374 return false; // Can't use this reg then.
Chris Lattnerae640432002-12-17 02:50:10 +0000375 return true;
376}
377
378
Chris Lattner91a452b2003-01-13 00:25:40 +0000379/// getFreeReg - Look to see if there is a free register available in the
380/// specified register class. If not, return 0.
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000381///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000382unsigned RALocal::getFreeReg(const TargetRegisterClass *RC) {
Chris Lattner580f9be2002-12-28 20:40:43 +0000383 // Get iterators defining the range of registers that are valid to allocate in
384 // this class, which also specifies the preferred allocation order.
385 TargetRegisterClass::iterator RI = RC->allocation_order_begin(*MF);
386 TargetRegisterClass::iterator RE = RC->allocation_order_end(*MF);
Chris Lattnerae640432002-12-17 02:50:10 +0000387
Chris Lattner91a452b2003-01-13 00:25:40 +0000388 for (; RI != RE; ++RI)
389 if (isPhysRegAvailable(*RI)) { // Is reg unused?
390 assert(*RI != 0 && "Cannot use register!");
391 return *RI; // Found an unused register!
392 }
393 return 0;
394}
395
396
Chris Lattner91a452b2003-01-13 00:25:40 +0000397/// getReg - Find a physical register to hold the specified virtual
398/// register. If all compatible physical registers are used, this method spills
399/// the last used virtual register to the stack, and uses that register.
400///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000401unsigned RALocal::getReg(MachineBasicBlock &MBB, MachineInstr *I,
Evan Cheng7ddee0a2009-01-29 01:13:00 +0000402 unsigned VirtReg, bool NoFree) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000403 const TargetRegisterClass *RC = MF->getRegInfo().getRegClass(VirtReg);
Chris Lattner91a452b2003-01-13 00:25:40 +0000404
405 // First check to see if we have a free register of the requested type...
Evan Cheng7ddee0a2009-01-29 01:13:00 +0000406 unsigned PhysReg = NoFree ? 0 : getFreeReg(RC);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000407
Chris Lattnerae640432002-12-17 02:50:10 +0000408 // If we didn't find an unused register, scavenge one now!
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000409 if (PhysReg == 0) {
Chris Lattnerc21be922002-12-16 17:44:42 +0000410 assert(!PhysRegsUseOrder.empty() && "No allocated registers??");
Chris Lattnerae640432002-12-17 02:50:10 +0000411
412 // Loop over all of the preallocated registers from the least recently used
413 // to the most recently used. When we find one that is capable of holding
414 // our register, use it.
415 for (unsigned i = 0; PhysReg == 0; ++i) {
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000416 assert(i != PhysRegsUseOrder.size() &&
417 "Couldn't find a register of the appropriate class!");
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000418
Chris Lattnerae640432002-12-17 02:50:10 +0000419 unsigned R = PhysRegsUseOrder[i];
Chris Lattner41822c72003-08-23 23:49:42 +0000420
421 // We can only use this register if it holds a virtual register (ie, it
422 // can be spilled). Do not use it if it is an explicitly allocated
423 // physical register!
Chris Lattner64667b62004-02-09 01:26:13 +0000424 assert(PhysRegsUsed[R] != -1 &&
Chris Lattner41822c72003-08-23 23:49:42 +0000425 "PhysReg in PhysRegsUseOrder, but is not allocated?");
Chris Lattner45d57882006-09-08 19:03:30 +0000426 if (PhysRegsUsed[R] && PhysRegsUsed[R] != -2) {
Chris Lattner41822c72003-08-23 23:49:42 +0000427 // If the current register is compatible, use it.
Chris Lattner3bba0262004-08-15 22:23:09 +0000428 if (RC->contains(R)) {
Chris Lattner41822c72003-08-23 23:49:42 +0000429 PhysReg = R;
430 break;
431 } else {
432 // If one of the registers aliased to the current register is
433 // compatible, use it.
Dan Gohman6f0d0242008-02-10 18:45:23 +0000434 for (const unsigned *AliasIt = TRI->getAliasSet(R);
Chris Lattner5e503492006-09-03 07:15:37 +0000435 *AliasIt; ++AliasIt) {
436 if (RC->contains(*AliasIt) &&
437 // If this is pinned down for some reason, don't use it. For
438 // example, if CL is pinned, and we run across CH, don't use
439 // CH as justification for using scavenging ECX (which will
440 // fail).
Chris Lattner45d57882006-09-08 19:03:30 +0000441 PhysRegsUsed[*AliasIt] != 0 &&
442
443 // Make sure the register is allocatable. Don't allocate SIL on
444 // x86-32.
445 PhysRegsUsed[*AliasIt] != -2) {
Chris Lattner5e503492006-09-03 07:15:37 +0000446 PhysReg = *AliasIt; // Take an aliased register
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000447 break;
448 }
449 }
Chris Lattner41822c72003-08-23 23:49:42 +0000450 }
Chris Lattnerae640432002-12-17 02:50:10 +0000451 }
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000452 }
453
Chris Lattnerae640432002-12-17 02:50:10 +0000454 assert(PhysReg && "Physical register not assigned!?!?");
455
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000456 // At this point PhysRegsUseOrder[i] is the least recently used register of
457 // compatible register class. Spill it to memory and reap its remains.
Chris Lattnerc21be922002-12-16 17:44:42 +0000458 spillPhysReg(MBB, I, PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000459 }
460
461 // Now that we know which register we need to assign this to, do it now!
Chris Lattner91a452b2003-01-13 00:25:40 +0000462 assignVirtToPhysReg(VirtReg, PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000463 return PhysReg;
464}
465
Chris Lattnerae640432002-12-17 02:50:10 +0000466
Bob Wilson8d24f412009-05-07 21:20:42 +0000467/// reloadVirtReg - This method transforms the specified virtual
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000468/// register use to refer to a physical register. This method may do this in
469/// one of several ways: if the register is available in a physical register
470/// already, it uses that physical register. If the value is not in a physical
471/// register, and if there are physical registers available, it loads it into a
472/// register. If register pressure is high, and it is possible, it tries to
473/// fold the load of the virtual register into the instruction itself. It
474/// avoids doing this if register pressure is low to improve the chance that
475/// subsequent instructions can use the reloaded value. This method returns the
476/// modified instruction.
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000477///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000478MachineInstr *RALocal::reloadVirtReg(MachineBasicBlock &MBB, MachineInstr *MI,
Evan Cheng5a3c6a82009-01-29 02:20:59 +0000479 unsigned OpNum,
480 SmallSet<unsigned, 4> &ReloadedRegs) {
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000481 unsigned VirtReg = MI->getOperand(OpNum).getReg();
482
483 // If the virtual register is already available, just update the instruction
484 // and return.
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000485 if (unsigned PR = getVirt2PhysRegMapSlot(VirtReg)) {
Bill Wendling97e3c012008-02-29 18:52:01 +0000486 MarkPhysRegRecentlyUsed(PR); // Already have this value available!
Chris Lattnere53f4a02006-05-04 17:52:23 +0000487 MI->getOperand(OpNum).setReg(PR); // Assign the input register
Bill Wendling97e3c012008-02-29 18:52:01 +0000488 getVirtRegLastUse(VirtReg) = std::make_pair(MI, OpNum);
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000489 return MI;
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000490 }
491
Chris Lattner1e3812c2004-02-17 04:08:37 +0000492 // Otherwise, we need to fold it into the current instruction, or reload it.
493 // If we have registers available to hold the value, use them.
Chris Lattner84bc5422007-12-31 04:13:23 +0000494 const TargetRegisterClass *RC = MF->getRegInfo().getRegClass(VirtReg);
Chris Lattner1e3812c2004-02-17 04:08:37 +0000495 unsigned PhysReg = getFreeReg(RC);
Chris Lattner11390e72004-02-17 08:09:40 +0000496 int FrameIndex = getStackSpaceFor(VirtReg, RC);
Chris Lattner1e3812c2004-02-17 04:08:37 +0000497
Chris Lattner11390e72004-02-17 08:09:40 +0000498 if (PhysReg) { // Register is available, allocate it!
499 assignVirtToPhysReg(VirtReg, PhysReg);
500 } else { // No registers available.
Evan Cheng27240c72008-02-07 19:46:55 +0000501 // Force some poor hapless value out of the register file to
Chris Lattner1e3812c2004-02-17 04:08:37 +0000502 // make room for the new register, and reload it.
Evan Cheng7ddee0a2009-01-29 01:13:00 +0000503 PhysReg = getReg(MBB, MI, VirtReg, true);
Chris Lattner1e3812c2004-02-17 04:08:37 +0000504 }
505
Chris Lattner91a452b2003-01-13 00:25:40 +0000506 markVirtRegModified(VirtReg, false); // Note that this reg was just reloaded
507
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000508 DOUT << " Reloading %reg" << VirtReg << " into "
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000509 << TRI->getName(PhysReg) << "\n";
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000510
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000511 // Add move instruction(s)
Owen Andersonf6372aa2008-01-01 21:11:32 +0000512 TII->loadRegFromStackSlot(MBB, MI, PhysReg, FrameIndex, RC);
Alkis Evlogimenos2acef2d2004-02-19 06:19:09 +0000513 ++NumLoads; // Update statistics
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000514
Chris Lattner84bc5422007-12-31 04:13:23 +0000515 MF->getRegInfo().setPhysRegUsed(PhysReg);
Chris Lattnere53f4a02006-05-04 17:52:23 +0000516 MI->getOperand(OpNum).setReg(PhysReg); // Assign the input register
Evan Cheng839b7592008-01-17 02:08:17 +0000517 getVirtRegLastUse(VirtReg) = std::make_pair(MI, OpNum);
Evan Cheng5a3c6a82009-01-29 02:20:59 +0000518
519 if (!ReloadedRegs.insert(PhysReg)) {
520 cerr << "Ran out of registers during register allocation!\n";
521 if (MI->getOpcode() == TargetInstrInfo::INLINEASM) {
522 cerr << "Please check your inline asm statement for invalid "
523 << "constraints:\n";
524 MI->print(cerr.stream(), TM);
525 }
526 exit(1);
527 }
528 for (const unsigned *SubRegs = TRI->getSubRegisters(PhysReg);
529 *SubRegs; ++SubRegs) {
530 if (!ReloadedRegs.insert(*SubRegs)) {
531 cerr << "Ran out of registers during register allocation!\n";
532 if (MI->getOpcode() == TargetInstrInfo::INLINEASM) {
533 cerr << "Please check your inline asm statement for invalid "
534 << "constraints:\n";
535 MI->print(cerr.stream(), TM);
536 }
537 exit(1);
538 }
539 }
540
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000541 return MI;
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000542}
543
Evan Cheng7ac19af2007-06-26 21:05:13 +0000544/// isReadModWriteImplicitKill - True if this is an implicit kill for a
545/// read/mod/write register, i.e. update partial register.
546static bool isReadModWriteImplicitKill(MachineInstr *MI, unsigned Reg) {
547 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
548 MachineOperand& MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000549 if (MO.isReg() && MO.getReg() == Reg && MO.isImplicit() &&
Evan Cheng7ac19af2007-06-26 21:05:13 +0000550 MO.isDef() && !MO.isDead())
551 return true;
552 }
553 return false;
554}
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000555
Evan Cheng7ac19af2007-06-26 21:05:13 +0000556/// isReadModWriteImplicitDef - True if this is an implicit def for a
557/// read/mod/write register, i.e. update partial register.
558static bool isReadModWriteImplicitDef(MachineInstr *MI, unsigned Reg) {
559 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
560 MachineOperand& MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000561 if (MO.isReg() && MO.getReg() == Reg && MO.isImplicit() &&
Evan Cheng7ac19af2007-06-26 21:05:13 +0000562 !MO.isDef() && MO.isKill())
563 return true;
564 }
565 return false;
566}
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000567
Owen Anderson491fccc2008-07-08 22:24:50 +0000568// precedes - Helper function to determine with MachineInstr A
569// precedes MachineInstr B within the same MBB.
570static bool precedes(MachineBasicBlock::iterator A,
571 MachineBasicBlock::iterator B) {
572 if (A == B)
573 return false;
574
575 MachineBasicBlock::iterator I = A->getParent()->begin();
576 while (I != A->getParent()->end()) {
577 if (I == A)
578 return true;
579 else if (I == B)
580 return false;
581
582 ++I;
583 }
584
585 return false;
586}
587
Owen Anderson9094db12008-07-09 20:14:53 +0000588/// ComputeLocalLiveness - Computes liveness of registers within a basic
589/// block, setting the killed/dead flags as appropriate.
590void RALocal::ComputeLocalLiveness(MachineBasicBlock& MBB) {
Owen Anderson491fccc2008-07-08 22:24:50 +0000591 MachineRegisterInfo& MRI = MBB.getParent()->getRegInfo();
592 // Keep track of the most recently seen previous use or def of each reg,
593 // so that we can update them with dead/kill markers.
Owen Anderson743a1e62008-07-10 01:56:35 +0000594 DenseMap<unsigned, std::pair<MachineInstr*, unsigned> > LastUseDef;
Owen Anderson491fccc2008-07-08 22:24:50 +0000595 for (MachineBasicBlock::iterator I = MBB.begin(), E = MBB.end();
596 I != E; ++I) {
597 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
598 MachineOperand& MO = I->getOperand(i);
599 // Uses don't trigger any flags, but we need to save
600 // them for later. Also, we have to process these
601 // _before_ processing the defs, since an instr
602 // uses regs before it defs them.
Owen Anderson04764de2008-10-08 04:30:51 +0000603 if (MO.isReg() && MO.getReg() && MO.isUse()) {
Owen Anderson491fccc2008-07-08 22:24:50 +0000604 LastUseDef[MO.getReg()] = std::make_pair(I, i);
Owen Anderson04764de2008-10-08 04:30:51 +0000605
606
607 if (TargetRegisterInfo::isVirtualRegister(MO.getReg())) continue;
608
Evan Cheng5a3c6a82009-01-29 02:20:59 +0000609 const unsigned* Aliases = TRI->getAliasSet(MO.getReg());
610 if (Aliases) {
611 while (*Aliases) {
Owen Anderson04764de2008-10-08 04:30:51 +0000612 DenseMap<unsigned, std::pair<MachineInstr*, unsigned> >::iterator
Evan Cheng5a3c6a82009-01-29 02:20:59 +0000613 alias = LastUseDef.find(*Aliases);
Owen Anderson04764de2008-10-08 04:30:51 +0000614
Evan Cheng5a3c6a82009-01-29 02:20:59 +0000615 if (alias != LastUseDef.end() && alias->second.first != I)
616 LastUseDef[*Aliases] = std::make_pair(I, i);
Owen Anderson04764de2008-10-08 04:30:51 +0000617
Evan Cheng5a3c6a82009-01-29 02:20:59 +0000618 ++Aliases;
Owen Anderson04764de2008-10-08 04:30:51 +0000619 }
620 }
621 }
Owen Anderson491fccc2008-07-08 22:24:50 +0000622 }
623
624 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
625 MachineOperand& MO = I->getOperand(i);
626 // Defs others than 2-addr redefs _do_ trigger flag changes:
627 // - A def followed by a def is dead
628 // - A use followed by a def is a kill
Dan Gohmand735b802008-10-03 15:45:36 +0000629 if (MO.isReg() && MO.getReg() && MO.isDef()) {
Owen Anderson743a1e62008-07-10 01:56:35 +0000630 DenseMap<unsigned, std::pair<MachineInstr*, unsigned> >::iterator
Owen Anderson491fccc2008-07-08 22:24:50 +0000631 last = LastUseDef.find(MO.getReg());
632 if (last != LastUseDef.end()) {
Owen Andersonecee36e2008-07-10 01:53:01 +0000633 // Check if this is a two address instruction. If so, then
634 // the def does not kill the use.
Evan Chengef0732d2008-07-10 07:35:43 +0000635 if (last->second.first == I &&
Bob Wilsond9df5012009-04-09 17:16:43 +0000636 I->isRegTiedToUseOperand(i))
Evan Chengef0732d2008-07-10 07:35:43 +0000637 continue;
Owen Andersondd4b47c2008-07-09 21:15:10 +0000638
Owen Anderson491fccc2008-07-08 22:24:50 +0000639 MachineOperand& lastUD =
640 last->second.first->getOperand(last->second.second);
641 if (lastUD.isDef())
642 lastUD.setIsDead(true);
Evan Chengef0732d2008-07-10 07:35:43 +0000643 else
Owen Anderson491fccc2008-07-08 22:24:50 +0000644 lastUD.setIsKill(true);
645 }
646
647 LastUseDef[MO.getReg()] = std::make_pair(I, i);
648 }
649 }
650 }
651
652 // Live-out (of the function) registers contain return values of the function,
653 // so we need to make sure they are alive at return time.
654 if (!MBB.empty() && MBB.back().getDesc().isReturn()) {
655 MachineInstr* Ret = &MBB.back();
656 for (MachineRegisterInfo::liveout_iterator
657 I = MF->getRegInfo().liveout_begin(),
658 E = MF->getRegInfo().liveout_end(); I != E; ++I)
659 if (!Ret->readsRegister(*I)) {
660 Ret->addOperand(MachineOperand::CreateReg(*I, false, true));
661 LastUseDef[*I] = std::make_pair(Ret, Ret->getNumOperands()-1);
662 }
663 }
664
665 // Finally, loop over the final use/def of each reg
666 // in the block and determine if it is dead.
Owen Anderson743a1e62008-07-10 01:56:35 +0000667 for (DenseMap<unsigned, std::pair<MachineInstr*, unsigned> >::iterator
Owen Anderson491fccc2008-07-08 22:24:50 +0000668 I = LastUseDef.begin(), E = LastUseDef.end(); I != E; ++I) {
669 MachineInstr* MI = I->second.first;
670 unsigned idx = I->second.second;
671 MachineOperand& MO = MI->getOperand(idx);
672
673 bool isPhysReg = TargetRegisterInfo::isPhysicalRegister(MO.getReg());
674
675 // A crude approximation of "live-out" calculation
676 bool usedOutsideBlock = isPhysReg ? false :
677 UsedInMultipleBlocks.test(MO.getReg() -
678 TargetRegisterInfo::FirstVirtualRegister);
679 if (!isPhysReg && !usedOutsideBlock)
680 for (MachineRegisterInfo::reg_iterator UI = MRI.reg_begin(MO.getReg()),
681 UE = MRI.reg_end(); UI != UE; ++UI)
682 // Two cases:
683 // - used in another block
684 // - used in the same block before it is defined (loop)
685 if (UI->getParent() != &MBB ||
Owen Anderson0966f0f2008-07-08 23:36:37 +0000686 (MO.isDef() && UI.getOperand().isUse() && precedes(&*UI, MI))) {
Owen Anderson491fccc2008-07-08 22:24:50 +0000687 UsedInMultipleBlocks.set(MO.getReg() -
688 TargetRegisterInfo::FirstVirtualRegister);
689 usedOutsideBlock = true;
690 break;
691 }
692
693 // Physical registers and those that are not live-out of the block
694 // are killed/dead at their last use/def within this block.
695 if (isPhysReg || !usedOutsideBlock) {
Dan Gohman022b21f2008-10-04 00:31:14 +0000696 if (MO.isUse()) {
697 // Don't mark uses that are tied to defs as kills.
Evan Chenga24752f2009-03-19 20:30:06 +0000698 if (!MI->isRegTiedToDefOperand(idx))
Dan Gohman022b21f2008-10-04 00:31:14 +0000699 MO.setIsKill(true);
700 } else
Owen Anderson491fccc2008-07-08 22:24:50 +0000701 MO.setIsDead(true);
702 }
703 }
Owen Anderson9094db12008-07-09 20:14:53 +0000704}
705
706void RALocal::AllocateBasicBlock(MachineBasicBlock &MBB) {
707 // loop over each instruction
708 MachineBasicBlock::iterator MII = MBB.begin();
709
710 DEBUG(const BasicBlock *LBB = MBB.getBasicBlock();
711 if (LBB) DOUT << "\nStarting RegAlloc of BB: " << LBB->getName());
712
Evan Chengd5a48022009-01-29 18:37:30 +0000713 // Add live-in registers as active.
714 for (MachineBasicBlock::livein_iterator I = MBB.livein_begin(),
Owen Anderson9094db12008-07-09 20:14:53 +0000715 E = MBB.livein_end(); I != E; ++I) {
Evan Chengd5a48022009-01-29 18:37:30 +0000716 unsigned Reg = *I;
717 MF->getRegInfo().setPhysRegUsed(Reg);
718 PhysRegsUsed[Reg] = 0; // It is free and reserved now
719 AddToPhysRegsUseOrder(Reg);
720 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
721 *SubRegs; ++SubRegs) {
722 if (PhysRegsUsed[*SubRegs] != -2) {
723 AddToPhysRegsUseOrder(*SubRegs);
724 PhysRegsUsed[*SubRegs] = 0; // It is free and reserved now
725 MF->getRegInfo().setPhysRegUsed(*SubRegs);
Owen Anderson9094db12008-07-09 20:14:53 +0000726 }
Evan Chengd5a48022009-01-29 18:37:30 +0000727 }
Owen Anderson9094db12008-07-09 20:14:53 +0000728 }
729
730 ComputeLocalLiveness(MBB);
Owen Anderson491fccc2008-07-08 22:24:50 +0000731
Chris Lattner44500e32006-06-15 22:21:53 +0000732 // Otherwise, sequentially allocate each instruction in the MBB.
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000733 while (MII != MBB.end()) {
734 MachineInstr *MI = MII++;
Chris Lattner749c6f62008-01-07 07:27:27 +0000735 const TargetInstrDesc &TID = MI->getDesc();
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000736 DEBUG(DOUT << "\nStarting RegAlloc of: " << *MI;
737 DOUT << " Regs have values: ";
Dan Gohman6f0d0242008-02-10 18:45:23 +0000738 for (unsigned i = 0; i != TRI->getNumRegs(); ++i)
Chris Lattner45d57882006-09-08 19:03:30 +0000739 if (PhysRegsUsed[i] != -1 && PhysRegsUsed[i] != -2)
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000740 DOUT << "[" << TRI->getName(i)
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000741 << ",%reg" << PhysRegsUsed[i] << "] ";
742 DOUT << "\n");
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000743
Chris Lattnerae640432002-12-17 02:50:10 +0000744 // Loop over the implicit uses, making sure that they are at the head of the
745 // use order list, so they don't get reallocated.
Jim Laskeycd4317e2006-07-21 21:15:20 +0000746 if (TID.ImplicitUses) {
747 for (const unsigned *ImplicitUses = TID.ImplicitUses;
748 *ImplicitUses; ++ImplicitUses)
749 MarkPhysRegRecentlyUsed(*ImplicitUses);
750 }
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000751
Evan Chengddee8422006-11-15 20:55:15 +0000752 SmallVector<unsigned, 8> Kills;
753 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
754 MachineOperand& MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000755 if (MO.isReg() && MO.isKill()) {
Evan Cheng7ac19af2007-06-26 21:05:13 +0000756 if (!MO.isImplicit())
757 Kills.push_back(MO.getReg());
758 else if (!isReadModWriteImplicitKill(MI, MO.getReg()))
759 // These are extra physical register kills when a sub-register
760 // is defined (def of a sub-register is a read/mod/write of the
761 // larger registers). Ignore.
762 Kills.push_back(MO.getReg());
763 }
Evan Chengddee8422006-11-15 20:55:15 +0000764 }
765
Dale Johannesen8e3455b2008-09-24 23:13:09 +0000766 // If any physical regs are earlyclobber, spill any value they might
767 // have in them, then mark them unallocatable.
768 // If any virtual regs are earlyclobber, allocate them now (before
769 // freeing inputs that are killed).
770 if (MI->getOpcode()==TargetInstrInfo::INLINEASM) {
771 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
772 MachineOperand& MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000773 if (MO.isReg() && MO.isDef() && MO.isEarlyClobber() &&
Dale Johannesen8e3455b2008-09-24 23:13:09 +0000774 MO.getReg()) {
775 if (TargetRegisterInfo::isVirtualRegister(MO.getReg())) {
776 unsigned DestVirtReg = MO.getReg();
777 unsigned DestPhysReg;
778
779 // If DestVirtReg already has a value, use it.
780 if (!(DestPhysReg = getVirt2PhysRegMapSlot(DestVirtReg)))
781 DestPhysReg = getReg(MBB, MI, DestVirtReg);
782 MF->getRegInfo().setPhysRegUsed(DestPhysReg);
783 markVirtRegModified(DestVirtReg);
784 getVirtRegLastUse(DestVirtReg) =
785 std::make_pair((MachineInstr*)0, 0);
786 DOUT << " Assigning " << TRI->getName(DestPhysReg)
787 << " to %reg" << DestVirtReg << "\n";
788 MO.setReg(DestPhysReg); // Assign the earlyclobber register
789 } else {
790 unsigned Reg = MO.getReg();
791 if (PhysRegsUsed[Reg] == -2) continue; // Something like ESP.
792 // These are extra physical register defs when a sub-register
793 // is defined (def of a sub-register is a read/mod/write of the
794 // larger registers). Ignore.
795 if (isReadModWriteImplicitDef(MI, MO.getReg())) continue;
796
797 MF->getRegInfo().setPhysRegUsed(Reg);
798 spillPhysReg(MBB, MI, Reg, true); // Spill any existing value in reg
799 PhysRegsUsed[Reg] = 0; // It is free and reserved now
800 AddToPhysRegsUseOrder(Reg);
801
Evan Cheng5a3c6a82009-01-29 02:20:59 +0000802 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
803 *SubRegs; ++SubRegs) {
804 if (PhysRegsUsed[*SubRegs] != -2) {
805 MF->getRegInfo().setPhysRegUsed(*SubRegs);
806 PhysRegsUsed[*SubRegs] = 0; // It is free and reserved now
807 AddToPhysRegsUseOrder(*SubRegs);
Dale Johannesen8e3455b2008-09-24 23:13:09 +0000808 }
809 }
810 }
811 }
812 }
813 }
814
Brian Gaeke53b99a02003-08-15 21:19:25 +0000815 // Get the used operands into registers. This has the potential to spill
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000816 // incoming values if we are out of registers. Note that we completely
817 // ignore physical register uses here. We assume that if an explicit
818 // physical register is referenced by the instruction, that it is guaranteed
819 // to be live-in, or the input is badly hosed.
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000820 //
Evan Cheng5a3c6a82009-01-29 02:20:59 +0000821 SmallSet<unsigned, 4> ReloadedRegs;
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000822 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
823 MachineOperand& MO = MI->getOperand(i);
824 // here we are looking for only used operands (never def&use)
Dan Gohmand735b802008-10-03 15:45:36 +0000825 if (MO.isReg() && !MO.isDef() && MO.getReg() && !MO.isImplicit() &&
Dan Gohman6f0d0242008-02-10 18:45:23 +0000826 TargetRegisterInfo::isVirtualRegister(MO.getReg()))
Evan Cheng5a3c6a82009-01-29 02:20:59 +0000827 MI = reloadVirtReg(MBB, MI, i, ReloadedRegs);
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000828 }
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000829
Evan Chengddee8422006-11-15 20:55:15 +0000830 // If this instruction is the last user of this register, kill the
Chris Lattner56ddada2004-02-17 17:49:10 +0000831 // value, freeing the register being used, so it doesn't need to be
832 // spilled to memory.
833 //
Evan Chengddee8422006-11-15 20:55:15 +0000834 for (unsigned i = 0, e = Kills.size(); i != e; ++i) {
835 unsigned VirtReg = Kills[i];
Chris Lattner56ddada2004-02-17 17:49:10 +0000836 unsigned PhysReg = VirtReg;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000837 if (TargetRegisterInfo::isVirtualRegister(VirtReg)) {
Chris Lattner56ddada2004-02-17 17:49:10 +0000838 // If the virtual register was never materialized into a register, it
839 // might not be in the map, but it won't hurt to zero it out anyway.
840 unsigned &PhysRegSlot = getVirt2PhysRegMapSlot(VirtReg);
841 PhysReg = PhysRegSlot;
842 PhysRegSlot = 0;
Chris Lattner0c5b8da2006-09-08 20:21:31 +0000843 } else if (PhysRegsUsed[PhysReg] == -2) {
844 // Unallocatable register dead, ignore.
845 continue;
Evan Cheng7ac19af2007-06-26 21:05:13 +0000846 } else {
Evan Cheng76500d52007-10-22 19:42:28 +0000847 assert((!PhysRegsUsed[PhysReg] || PhysRegsUsed[PhysReg] == -1) &&
Evan Cheng7ac19af2007-06-26 21:05:13 +0000848 "Silently clearing a virtual register?");
Chris Lattner56ddada2004-02-17 17:49:10 +0000849 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000850
Chris Lattner56ddada2004-02-17 17:49:10 +0000851 if (PhysReg) {
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000852 DOUT << " Last use of " << TRI->getName(PhysReg)
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000853 << "[%reg" << VirtReg <<"], removing it from live set\n";
Chris Lattner56ddada2004-02-17 17:49:10 +0000854 removePhysReg(PhysReg);
Evan Cheng5a3c6a82009-01-29 02:20:59 +0000855 for (const unsigned *SubRegs = TRI->getSubRegisters(PhysReg);
856 *SubRegs; ++SubRegs) {
857 if (PhysRegsUsed[*SubRegs] != -2) {
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000858 DOUT << " Last use of "
Evan Cheng5a3c6a82009-01-29 02:20:59 +0000859 << TRI->getName(*SubRegs)
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000860 << "[%reg" << VirtReg <<"], removing it from live set\n";
Evan Cheng5a3c6a82009-01-29 02:20:59 +0000861 removePhysReg(*SubRegs);
Evan Chengddee8422006-11-15 20:55:15 +0000862 }
863 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000864 }
865 }
866
867 // Loop over all of the operands of the instruction, spilling registers that
868 // are defined, and marking explicit destinations in the PhysRegsUsed map.
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000869 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
870 MachineOperand& MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000871 if (MO.isReg() && MO.isDef() && !MO.isImplicit() && MO.getReg() &&
Dale Johannesen8e3455b2008-09-24 23:13:09 +0000872 !MO.isEarlyClobber() &&
Dan Gohman6f0d0242008-02-10 18:45:23 +0000873 TargetRegisterInfo::isPhysicalRegister(MO.getReg())) {
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000874 unsigned Reg = MO.getReg();
Chris Lattnercc406322006-09-08 19:11:11 +0000875 if (PhysRegsUsed[Reg] == -2) continue; // Something like ESP.
Evan Cheng7ac19af2007-06-26 21:05:13 +0000876 // These are extra physical register defs when a sub-register
877 // is defined (def of a sub-register is a read/mod/write of the
878 // larger registers). Ignore.
879 if (isReadModWriteImplicitDef(MI, MO.getReg())) continue;
880
Chris Lattner84bc5422007-12-31 04:13:23 +0000881 MF->getRegInfo().setPhysRegUsed(Reg);
Evan Chengddee8422006-11-15 20:55:15 +0000882 spillPhysReg(MBB, MI, Reg, true); // Spill any existing value in reg
Chris Lattner91a452b2003-01-13 00:25:40 +0000883 PhysRegsUsed[Reg] = 0; // It is free and reserved now
Evan Cheng7ac19af2007-06-26 21:05:13 +0000884 AddToPhysRegsUseOrder(Reg);
885
Evan Cheng5a3c6a82009-01-29 02:20:59 +0000886 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
887 *SubRegs; ++SubRegs) {
888 if (PhysRegsUsed[*SubRegs] != -2) {
889 MF->getRegInfo().setPhysRegUsed(*SubRegs);
890 PhysRegsUsed[*SubRegs] = 0; // It is free and reserved now
891 AddToPhysRegsUseOrder(*SubRegs);
Chris Lattner45d57882006-09-08 19:03:30 +0000892 }
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000893 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000894 }
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000895 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000896
897 // Loop over the implicit defs, spilling them as well.
Jim Laskeycd4317e2006-07-21 21:15:20 +0000898 if (TID.ImplicitDefs) {
899 for (const unsigned *ImplicitDefs = TID.ImplicitDefs;
900 *ImplicitDefs; ++ImplicitDefs) {
901 unsigned Reg = *ImplicitDefs;
Evan Cheng7ac19af2007-06-26 21:05:13 +0000902 if (PhysRegsUsed[Reg] != -2) {
Chris Lattner2b41b8e2006-09-19 18:02:01 +0000903 spillPhysReg(MBB, MI, Reg, true);
Evan Cheng7ac19af2007-06-26 21:05:13 +0000904 AddToPhysRegsUseOrder(Reg);
Chris Lattner2b41b8e2006-09-19 18:02:01 +0000905 PhysRegsUsed[Reg] = 0; // It is free and reserved now
906 }
Chris Lattner84bc5422007-12-31 04:13:23 +0000907 MF->getRegInfo().setPhysRegUsed(Reg);
Evan Cheng5a3c6a82009-01-29 02:20:59 +0000908 for (const unsigned *SubRegs = TRI->getSubRegisters(Reg);
909 *SubRegs; ++SubRegs) {
910 if (PhysRegsUsed[*SubRegs] != -2) {
911 AddToPhysRegsUseOrder(*SubRegs);
912 PhysRegsUsed[*SubRegs] = 0; // It is free and reserved now
913 MF->getRegInfo().setPhysRegUsed(*SubRegs);
Chris Lattner45d57882006-09-08 19:03:30 +0000914 }
Jim Laskeycd4317e2006-07-21 21:15:20 +0000915 }
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000916 }
Alkis Evlogimenosefe995a2003-12-13 01:20:58 +0000917 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000918
Evan Chengddee8422006-11-15 20:55:15 +0000919 SmallVector<unsigned, 8> DeadDefs;
920 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
921 MachineOperand& MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000922 if (MO.isReg() && MO.isDead())
Evan Chengddee8422006-11-15 20:55:15 +0000923 DeadDefs.push_back(MO.getReg());
924 }
925
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000926 // Okay, we have allocated all of the source operands and spilled any values
927 // that would be destroyed by defs of this instruction. Loop over the
Chris Lattner0648b162005-01-23 22:51:56 +0000928 // explicit defs and assign them to a register, spilling incoming values if
Chris Lattner91a452b2003-01-13 00:25:40 +0000929 // we need to scavenge a register.
Chris Lattner82bee0f2002-12-18 08:14:26 +0000930 //
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000931 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
932 MachineOperand& MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000933 if (MO.isReg() && MO.isDef() && MO.getReg() &&
Dale Johannesen8e3455b2008-09-24 23:13:09 +0000934 !MO.isEarlyClobber() &&
Dan Gohman6f0d0242008-02-10 18:45:23 +0000935 TargetRegisterInfo::isVirtualRegister(MO.getReg())) {
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000936 unsigned DestVirtReg = MO.getReg();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000937 unsigned DestPhysReg;
938
Alkis Evlogimenos9af9dbd2003-12-18 13:08:52 +0000939 // If DestVirtReg already has a value, use it.
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000940 if (!(DestPhysReg = getVirt2PhysRegMapSlot(DestVirtReg)))
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000941 DestPhysReg = getReg(MBB, MI, DestVirtReg);
Chris Lattner84bc5422007-12-31 04:13:23 +0000942 MF->getRegInfo().setPhysRegUsed(DestPhysReg);
Chris Lattnerd5725632003-05-12 03:54:14 +0000943 markVirtRegModified(DestVirtReg);
Evan Cheng839b7592008-01-17 02:08:17 +0000944 getVirtRegLastUse(DestVirtReg) = std::make_pair((MachineInstr*)0, 0);
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000945 DOUT << " Assigning " << TRI->getName(DestPhysReg)
Evan Cheng9af70902008-02-22 19:57:06 +0000946 << " to %reg" << DestVirtReg << "\n";
Dan Gohman85e68152008-07-09 20:12:26 +0000947 MO.setReg(DestPhysReg); // Assign the output register
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000948 }
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000949 }
Chris Lattner82bee0f2002-12-18 08:14:26 +0000950
Chris Lattner56ddada2004-02-17 17:49:10 +0000951 // If this instruction defines any registers that are immediately dead,
952 // kill them now.
953 //
Evan Chengddee8422006-11-15 20:55:15 +0000954 for (unsigned i = 0, e = DeadDefs.size(); i != e; ++i) {
955 unsigned VirtReg = DeadDefs[i];
Chris Lattner56ddada2004-02-17 17:49:10 +0000956 unsigned PhysReg = VirtReg;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000957 if (TargetRegisterInfo::isVirtualRegister(VirtReg)) {
Chris Lattner56ddada2004-02-17 17:49:10 +0000958 unsigned &PhysRegSlot = getVirt2PhysRegMapSlot(VirtReg);
959 PhysReg = PhysRegSlot;
960 assert(PhysReg != 0);
961 PhysRegSlot = 0;
Chris Lattner0c5b8da2006-09-08 20:21:31 +0000962 } else if (PhysRegsUsed[PhysReg] == -2) {
963 // Unallocatable register dead, ignore.
964 continue;
Chris Lattner56ddada2004-02-17 17:49:10 +0000965 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000966
Chris Lattner56ddada2004-02-17 17:49:10 +0000967 if (PhysReg) {
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000968 DOUT << " Register " << TRI->getName(PhysReg)
Chris Lattner56ddada2004-02-17 17:49:10 +0000969 << " [%reg" << VirtReg
Matthijs Kooijmanfaa3d822008-11-24 16:01:21 +0000970 << "] is never used, removing it from live set\n";
Chris Lattner56ddada2004-02-17 17:49:10 +0000971 removePhysReg(PhysReg);
Dan Gohman6f0d0242008-02-10 18:45:23 +0000972 for (const unsigned *AliasSet = TRI->getAliasSet(PhysReg);
Evan Chengddee8422006-11-15 20:55:15 +0000973 *AliasSet; ++AliasSet) {
974 if (PhysRegsUsed[*AliasSet] != -2) {
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000975 DOUT << " Register " << TRI->getName(*AliasSet)
Evan Chengddee8422006-11-15 20:55:15 +0000976 << " [%reg" << *AliasSet
Matthijs Kooijmanfaa3d822008-11-24 16:01:21 +0000977 << "] is never used, removing it from live set\n";
Evan Chengddee8422006-11-15 20:55:15 +0000978 removePhysReg(*AliasSet);
979 }
980 }
Chris Lattner82bee0f2002-12-18 08:14:26 +0000981 }
982 }
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000983
Bob Wilson9d928c22009-05-07 23:47:03 +0000984 // Finally, if this is a noop copy instruction, zap it. (Except that if
985 // the copy is dead, it must be kept to avoid messing up liveness info for
986 // the register scavenger. See pr4100.)
Evan Cheng04ee5a12009-01-20 19:12:24 +0000987 unsigned SrcReg, DstReg, SrcSubReg, DstSubReg;
988 if (TII->isMoveInstr(*MI, SrcReg, DstReg, SrcSubReg, DstSubReg) &&
Bob Wilson9d928c22009-05-07 23:47:03 +0000989 SrcReg == DstReg && DeadDefs.empty())
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000990 MBB.erase(MI);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000991 }
992
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000993 MachineBasicBlock::iterator MI = MBB.getFirstTerminator();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000994
995 // Spill all physical registers holding virtual registers now.
Dan Gohman6f0d0242008-02-10 18:45:23 +0000996 for (unsigned i = 0, e = TRI->getNumRegs(); i != e; ++i)
Anton Korobeynikov4aefd6b2008-02-20 12:07:57 +0000997 if (PhysRegsUsed[i] != -1 && PhysRegsUsed[i] != -2) {
Chris Lattner64667b62004-02-09 01:26:13 +0000998 if (unsigned VirtReg = PhysRegsUsed[i])
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000999 spillVirtReg(MBB, MI, VirtReg, i);
Chris Lattner64667b62004-02-09 01:26:13 +00001000 else
1001 removePhysReg(i);
Anton Korobeynikov4aefd6b2008-02-20 12:07:57 +00001002 }
Chris Lattnerb74e83c2002-12-16 16:15:28 +00001003
Chris Lattner9a5ef202005-11-09 05:28:45 +00001004#if 0
1005 // This checking code is very expensive.
Chris Lattnerecea5632004-02-09 02:12:04 +00001006 bool AllOk = true;
Dan Gohman6f0d0242008-02-10 18:45:23 +00001007 for (unsigned i = TargetRegisterInfo::FirstVirtualRegister,
Chris Lattner84bc5422007-12-31 04:13:23 +00001008 e = MF->getRegInfo().getLastVirtReg(); i <= e; ++i)
Chris Lattnerecea5632004-02-09 02:12:04 +00001009 if (unsigned PR = Virt2PhysRegMap[i]) {
Bill Wendling832171c2006-12-07 20:04:42 +00001010 cerr << "Register still mapped: " << i << " -> " << PR << "\n";
Chris Lattnerecea5632004-02-09 02:12:04 +00001011 AllOk = false;
1012 }
1013 assert(AllOk && "Virtual registers still in phys regs?");
1014#endif
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +00001015
Chris Lattner128c2aa2003-08-17 18:01:15 +00001016 // Clear any physical register which appear live at the end of the basic
1017 // block, but which do not hold any virtual registers. e.g., the stack
1018 // pointer.
1019 PhysRegsUseOrder.clear();
Chris Lattnerb74e83c2002-12-16 16:15:28 +00001020}
1021
1022/// runOnMachineFunction - Register allocate the whole function
1023///
Bill Wendlinge23e00d2007-05-08 19:02:46 +00001024bool RALocal::runOnMachineFunction(MachineFunction &Fn) {
Bill Wendlingb2b9c202006-11-17 02:09:07 +00001025 DOUT << "Machine Function " << "\n";
Chris Lattnerb74e83c2002-12-16 16:15:28 +00001026 MF = &Fn;
Chris Lattner580f9be2002-12-28 20:40:43 +00001027 TM = &Fn.getTarget();
Dan Gohman6f0d0242008-02-10 18:45:23 +00001028 TRI = TM->getRegisterInfo();
Owen Anderson6425f8b2008-01-07 01:35:56 +00001029 TII = TM->getInstrInfo();
Chris Lattnerb74e83c2002-12-16 16:15:28 +00001030
Dan Gohman6f0d0242008-02-10 18:45:23 +00001031 PhysRegsUsed.assign(TRI->getNumRegs(), -1);
Chris Lattner45d57882006-09-08 19:03:30 +00001032
1033 // At various places we want to efficiently check to see whether a register
1034 // is allocatable. To handle this, we mark all unallocatable registers as
1035 // being pinned down, permanently.
1036 {
Dan Gohman6f0d0242008-02-10 18:45:23 +00001037 BitVector Allocable = TRI->getAllocatableSet(Fn);
Chris Lattner45d57882006-09-08 19:03:30 +00001038 for (unsigned i = 0, e = Allocable.size(); i != e; ++i)
1039 if (!Allocable[i])
1040 PhysRegsUsed[i] = -2; // Mark the reg unallocable.
1041 }
Chris Lattner64667b62004-02-09 01:26:13 +00001042
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +00001043 // initialize the virtual->physical register map to have a 'null'
1044 // mapping for all virtual registers
Evan Cheng644340a2008-01-17 00:35:26 +00001045 unsigned LastVirtReg = MF->getRegInfo().getLastVirtReg();
Evan Chengbdb10fe2008-07-10 18:23:23 +00001046 StackSlotForVirtReg.grow(LastVirtReg);
Evan Cheng644340a2008-01-17 00:35:26 +00001047 Virt2PhysRegMap.grow(LastVirtReg);
Evan Cheng839b7592008-01-17 02:08:17 +00001048 Virt2LastUseMap.grow(LastVirtReg);
Dan Gohman6f0d0242008-02-10 18:45:23 +00001049 VirtRegModified.resize(LastVirtReg+1-TargetRegisterInfo::FirstVirtualRegister);
Owen Anderson491fccc2008-07-08 22:24:50 +00001050 UsedInMultipleBlocks.resize(LastVirtReg+1-TargetRegisterInfo::FirstVirtualRegister);
1051
Chris Lattnerb74e83c2002-12-16 16:15:28 +00001052 // Loop over all of the basic blocks, eliminating virtual register references
1053 for (MachineFunction::iterator MBB = Fn.begin(), MBBe = Fn.end();
1054 MBB != MBBe; ++MBB)
1055 AllocateBasicBlock(*MBB);
1056
Chris Lattner580f9be2002-12-28 20:40:43 +00001057 StackSlotForVirtReg.clear();
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +00001058 PhysRegsUsed.clear();
Chris Lattner91a452b2003-01-13 00:25:40 +00001059 VirtRegModified.clear();
Owen Anderson491fccc2008-07-08 22:24:50 +00001060 UsedInMultipleBlocks.clear();
Chris Lattnerecea5632004-02-09 02:12:04 +00001061 Virt2PhysRegMap.clear();
Evan Cheng839b7592008-01-17 02:08:17 +00001062 Virt2LastUseMap.clear();
Chris Lattnerb74e83c2002-12-16 16:15:28 +00001063 return true;
1064}
1065
Chris Lattneref09c632004-01-31 21:27:19 +00001066FunctionPass *llvm::createLocalRegisterAllocator() {
Bill Wendlinge23e00d2007-05-08 19:02:46 +00001067 return new RALocal();
Chris Lattnerb74e83c2002-12-16 16:15:28 +00001068}