blob: 382197255545658c0073adba32c74a471475f7a3 [file] [log] [blame]
Chris Lattnerb74e83c2002-12-16 16:15:28 +00001//===-- RegAllocLocal.cpp - A BasicBlock generic register allocator -------===//
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattnerb74e83c2002-12-16 16:15:28 +00009//
10// This register allocator allocates registers to a basic block at a time,
11// attempting to keep values in registers and reusing registers as appropriate.
12//
13//===----------------------------------------------------------------------===//
14
Chris Lattner4cc662b2003-08-03 21:47:31 +000015#define DEBUG_TYPE "regalloc"
Evan Chengddee8422006-11-15 20:55:15 +000016#include "llvm/BasicBlock.h"
Chris Lattner91a452b2003-01-13 00:25:40 +000017#include "llvm/CodeGen/Passes.h"
Chris Lattner580f9be2002-12-28 20:40:43 +000018#include "llvm/CodeGen/MachineFunctionPass.h"
Chris Lattnerb74e83c2002-12-16 16:15:28 +000019#include "llvm/CodeGen/MachineInstr.h"
Chris Lattnereb24db92002-12-28 21:08:26 +000020#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000021#include "llvm/CodeGen/MachineRegisterInfo.h"
Chris Lattner91a452b2003-01-13 00:25:40 +000022#include "llvm/CodeGen/LiveVariables.h"
Jim Laskeyeb577ba2006-08-02 12:30:23 +000023#include "llvm/CodeGen/RegAllocRegistry.h"
Chris Lattner3501fea2003-01-14 22:00:31 +000024#include "llvm/Target/TargetInstrInfo.h"
Chris Lattnerb74e83c2002-12-16 16:15:28 +000025#include "llvm/Target/TargetMachine.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000026#include "llvm/Support/CommandLine.h"
27#include "llvm/Support/Debug.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000028#include "llvm/Support/Compiler.h"
Chris Lattner94c002a2007-02-01 05:32:05 +000029#include "llvm/ADT/IndexedMap.h"
Evan Chengddee8422006-11-15 20:55:15 +000030#include "llvm/ADT/SmallVector.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000031#include "llvm/ADT/Statistic.h"
Chris Lattner27f29162004-10-26 15:35:58 +000032#include <algorithm>
Chris Lattneref09c632004-01-31 21:27:19 +000033using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000034
Chris Lattnercd3245a2006-12-19 22:41:21 +000035STATISTIC(NumStores, "Number of stores added");
36STATISTIC(NumLoads , "Number of loads added");
37STATISTIC(NumFolded, "Number of loads/stores folded into instructions");
Jim Laskey13ec7022006-08-01 14:21:23 +000038
Chris Lattnercd3245a2006-12-19 22:41:21 +000039namespace {
Jim Laskey13ec7022006-08-01 14:21:23 +000040 static RegisterRegAlloc
41 localRegAlloc("local", " local register allocator",
42 createLocalRegisterAllocator);
43
44
Bill Wendlinge23e00d2007-05-08 19:02:46 +000045 class VISIBILITY_HIDDEN RALocal : public MachineFunctionPass {
Devang Patel794fd752007-05-01 21:15:47 +000046 public:
Devang Patel19974732007-05-03 01:11:54 +000047 static char ID;
Bill Wendlinge23e00d2007-05-08 19:02:46 +000048 RALocal() : MachineFunctionPass((intptr_t)&ID) {}
Devang Patel794fd752007-05-01 21:15:47 +000049 private:
Chris Lattner580f9be2002-12-28 20:40:43 +000050 const TargetMachine *TM;
Chris Lattnerb74e83c2002-12-16 16:15:28 +000051 MachineFunction *MF;
Chris Lattner84bc5422007-12-31 04:13:23 +000052 const MRegisterInfo *MRI;
Owen Anderson6425f8b2008-01-07 01:35:56 +000053 const TargetInstrInfo *TII;
Chris Lattner91a452b2003-01-13 00:25:40 +000054 LiveVariables *LV;
Chris Lattnerff863ba2002-12-25 05:05:46 +000055
Chris Lattnerb8822ad2003-08-04 23:36:39 +000056 // StackSlotForVirtReg - Maps virtual regs to the frame index where these
57 // values are spilled.
Chris Lattner580f9be2002-12-28 20:40:43 +000058 std::map<unsigned, int> StackSlotForVirtReg;
Chris Lattnerb74e83c2002-12-16 16:15:28 +000059
60 // Virt2PhysRegMap - This map contains entries for each virtual register
Alkis Evlogimenos4d0d8642004-02-25 21:55:45 +000061 // that is currently available in a physical register.
Chris Lattner94c002a2007-02-01 05:32:05 +000062 IndexedMap<unsigned, VirtReg2IndexFunctor> Virt2PhysRegMap;
Chris Lattnerecea5632004-02-09 02:12:04 +000063
64 unsigned &getVirt2PhysRegMapSlot(unsigned VirtReg) {
Alkis Evlogimenos4d0d8642004-02-25 21:55:45 +000065 return Virt2PhysRegMap[VirtReg];
Chris Lattnerecea5632004-02-09 02:12:04 +000066 }
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +000067
Chris Lattner64667b62004-02-09 01:26:13 +000068 // PhysRegsUsed - This array is effectively a map, containing entries for
69 // each physical register that currently has a value (ie, it is in
70 // Virt2PhysRegMap). The value mapped to is the virtual register
71 // corresponding to the physical register (the inverse of the
72 // Virt2PhysRegMap), or 0. The value is set to 0 if this register is pinned
Chris Lattner45d57882006-09-08 19:03:30 +000073 // because it is used by a future instruction, and to -2 if it is not
74 // allocatable. If the entry for a physical register is -1, then the
75 // physical register is "not in the map".
Chris Lattnerb74e83c2002-12-16 16:15:28 +000076 //
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +000077 std::vector<int> PhysRegsUsed;
Chris Lattnerb74e83c2002-12-16 16:15:28 +000078
79 // PhysRegsUseOrder - This contains a list of the physical registers that
80 // currently have a virtual register value in them. This list provides an
81 // ordering of registers, imposing a reallocation order. This list is only
82 // used if all registers are allocated and we have to spill one, in which
83 // case we spill the least recently used register. Entries at the front of
84 // the list are the least recently used registers, entries at the back are
85 // the most recently used.
86 //
87 std::vector<unsigned> PhysRegsUseOrder;
88
Chris Lattner91a452b2003-01-13 00:25:40 +000089 // VirtRegModified - This bitset contains information about which virtual
90 // registers need to be spilled back to memory when their registers are
91 // scavenged. If a virtual register has simply been rematerialized, there
92 // is no reason to spill it to memory when we need the register back.
Chris Lattner82bee0f2002-12-18 08:14:26 +000093 //
Chris Lattner91a452b2003-01-13 00:25:40 +000094 std::vector<bool> VirtRegModified;
95
96 void markVirtRegModified(unsigned Reg, bool Val = true) {
Chris Lattneref09c632004-01-31 21:27:19 +000097 assert(MRegisterInfo::isVirtualRegister(Reg) && "Illegal VirtReg!");
Chris Lattner91a452b2003-01-13 00:25:40 +000098 Reg -= MRegisterInfo::FirstVirtualRegister;
99 if (VirtRegModified.size() <= Reg) VirtRegModified.resize(Reg+1);
100 VirtRegModified[Reg] = Val;
101 }
102
103 bool isVirtRegModified(unsigned Reg) const {
Chris Lattneref09c632004-01-31 21:27:19 +0000104 assert(MRegisterInfo::isVirtualRegister(Reg) && "Illegal VirtReg!");
Chris Lattner91a452b2003-01-13 00:25:40 +0000105 assert(Reg - MRegisterInfo::FirstVirtualRegister < VirtRegModified.size()
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000106 && "Illegal virtual register!");
Chris Lattner91a452b2003-01-13 00:25:40 +0000107 return VirtRegModified[Reg - MRegisterInfo::FirstVirtualRegister];
108 }
Chris Lattner82bee0f2002-12-18 08:14:26 +0000109
Evan Cheng7ac19af2007-06-26 21:05:13 +0000110 void AddToPhysRegsUseOrder(unsigned Reg) {
111 std::vector<unsigned>::iterator It =
112 std::find(PhysRegsUseOrder.begin(), PhysRegsUseOrder.end(), Reg);
113 if (It != PhysRegsUseOrder.end())
114 PhysRegsUseOrder.erase(It);
115 PhysRegsUseOrder.push_back(Reg);
116 }
117
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000118 void MarkPhysRegRecentlyUsed(unsigned Reg) {
Chris Lattner5e503492006-09-03 07:15:37 +0000119 if (PhysRegsUseOrder.empty() ||
120 PhysRegsUseOrder.back() == Reg) return; // Already most recently used
Chris Lattner0eb172c2002-12-24 00:04:55 +0000121
122 for (unsigned i = PhysRegsUseOrder.size(); i != 0; --i)
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000123 if (areRegsEqual(Reg, PhysRegsUseOrder[i-1])) {
124 unsigned RegMatch = PhysRegsUseOrder[i-1]; // remove from middle
125 PhysRegsUseOrder.erase(PhysRegsUseOrder.begin()+i-1);
126 // Add it to the end of the list
127 PhysRegsUseOrder.push_back(RegMatch);
128 if (RegMatch == Reg)
129 return; // Found an exact match, exit early
130 }
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000131 }
132
133 public:
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000134 virtual const char *getPassName() const {
135 return "Local Register Allocator";
136 }
137
Chris Lattner91a452b2003-01-13 00:25:40 +0000138 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattner56ddada2004-02-17 17:49:10 +0000139 AU.addRequired<LiveVariables>();
Chris Lattner91a452b2003-01-13 00:25:40 +0000140 AU.addRequiredID(PHIEliminationID);
Alkis Evlogimenos4c080862003-12-18 22:40:24 +0000141 AU.addRequiredID(TwoAddressInstructionPassID);
Chris Lattner91a452b2003-01-13 00:25:40 +0000142 MachineFunctionPass::getAnalysisUsage(AU);
143 }
144
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000145 private:
146 /// runOnMachineFunction - Register allocate the whole function
147 bool runOnMachineFunction(MachineFunction &Fn);
148
149 /// AllocateBasicBlock - Register allocate the specified basic block.
150 void AllocateBasicBlock(MachineBasicBlock &MBB);
151
Chris Lattner82bee0f2002-12-18 08:14:26 +0000152
Chris Lattner82bee0f2002-12-18 08:14:26 +0000153 /// areRegsEqual - This method returns true if the specified registers are
154 /// related to each other. To do this, it checks to see if they are equal
155 /// or if the first register is in the alias set of the second register.
156 ///
157 bool areRegsEqual(unsigned R1, unsigned R2) const {
158 if (R1 == R2) return true;
Chris Lattner84bc5422007-12-31 04:13:23 +0000159 for (const unsigned *AliasSet = MRI->getAliasSet(R2);
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000160 *AliasSet; ++AliasSet) {
161 if (*AliasSet == R1) return true;
162 }
Chris Lattner82bee0f2002-12-18 08:14:26 +0000163 return false;
164 }
165
Chris Lattner580f9be2002-12-28 20:40:43 +0000166 /// getStackSpaceFor - This returns the frame index of the specified virtual
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000167 /// register on the stack, allocating space if necessary.
Chris Lattner580f9be2002-12-28 20:40:43 +0000168 int getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass *RC);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000169
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000170 /// removePhysReg - This method marks the specified physical register as no
171 /// longer being in use.
172 ///
Chris Lattner82bee0f2002-12-18 08:14:26 +0000173 void removePhysReg(unsigned PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000174
175 /// spillVirtReg - This method spills the value specified by PhysReg into
176 /// the virtual register slot specified by VirtReg. It then updates the RA
177 /// data structures to indicate the fact that PhysReg is now available.
178 ///
Chris Lattner688c8252004-02-22 19:08:15 +0000179 void spillVirtReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI,
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000180 unsigned VirtReg, unsigned PhysReg);
181
Chris Lattnerc21be922002-12-16 17:44:42 +0000182 /// spillPhysReg - This method spills the specified physical register into
Chris Lattner128c2aa2003-08-17 18:01:15 +0000183 /// the virtual register slot associated with it. If OnlyVirtRegs is set to
184 /// true, then the request is ignored if the physical register does not
185 /// contain a virtual register.
Chris Lattner91a452b2003-01-13 00:25:40 +0000186 ///
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000187 void spillPhysReg(MachineBasicBlock &MBB, MachineInstr *I,
Chris Lattner128c2aa2003-08-17 18:01:15 +0000188 unsigned PhysReg, bool OnlyVirtRegs = false);
Chris Lattnerc21be922002-12-16 17:44:42 +0000189
Chris Lattner91a452b2003-01-13 00:25:40 +0000190 /// assignVirtToPhysReg - This method updates local state so that we know
191 /// that PhysReg is the proper container for VirtReg now. The physical
192 /// register must not be used for anything else when this is called.
193 ///
194 void assignVirtToPhysReg(unsigned VirtReg, unsigned PhysReg);
195
Chris Lattnerae640432002-12-17 02:50:10 +0000196 /// isPhysRegAvailable - Return true if the specified physical register is
197 /// free and available for use. This also includes checking to see if
198 /// aliased registers are all free...
199 ///
Chris Lattner82bee0f2002-12-18 08:14:26 +0000200 bool isPhysRegAvailable(unsigned PhysReg) const;
Chris Lattner91a452b2003-01-13 00:25:40 +0000201
202 /// getFreeReg - Look to see if there is a free register available in the
203 /// specified register class. If not, return 0.
204 ///
205 unsigned getFreeReg(const TargetRegisterClass *RC);
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000206
Chris Lattner91a452b2003-01-13 00:25:40 +0000207 /// getReg - Find a physical register to hold the specified virtual
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000208 /// register. If all compatible physical registers are used, this method
209 /// spills the last used virtual register to the stack, and uses that
210 /// register.
211 ///
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000212 unsigned getReg(MachineBasicBlock &MBB, MachineInstr *MI,
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000213 unsigned VirtReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000214
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000215 /// reloadVirtReg - This method transforms the specified specified virtual
216 /// register use to refer to a physical register. This method may do this
217 /// in one of several ways: if the register is available in a physical
218 /// register already, it uses that physical register. If the value is not
219 /// in a physical register, and if there are physical registers available,
220 /// it loads it into a register. If register pressure is high, and it is
221 /// possible, it tries to fold the load of the virtual register into the
222 /// instruction itself. It avoids doing this if register pressure is low to
223 /// improve the chance that subsequent instructions can use the reloaded
224 /// value. This method returns the modified instruction.
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000225 ///
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000226 MachineInstr *reloadVirtReg(MachineBasicBlock &MBB, MachineInstr *MI,
227 unsigned OpNum);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000228
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000229
230 void reloadPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator &I,
231 unsigned PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000232 };
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000233 char RALocal::ID = 0;
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000234}
235
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000236/// getStackSpaceFor - This allocates space for the specified virtual register
237/// to be held on the stack.
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000238int RALocal::getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass *RC) {
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000239 // Find the location Reg would belong...
240 std::map<unsigned, int>::iterator I =StackSlotForVirtReg.lower_bound(VirtReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000241
Chris Lattner580f9be2002-12-28 20:40:43 +0000242 if (I != StackSlotForVirtReg.end() && I->first == VirtReg)
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000243 return I->second; // Already has space allocated?
244
Chris Lattner580f9be2002-12-28 20:40:43 +0000245 // Allocate a new stack object for this spill location...
Chris Lattner26eb14b2004-08-15 22:02:22 +0000246 int FrameIdx = MF->getFrameInfo()->CreateStackObject(RC->getSize(),
247 RC->getAlignment());
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000248
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000249 // Assign the slot...
Chris Lattner580f9be2002-12-28 20:40:43 +0000250 StackSlotForVirtReg.insert(I, std::make_pair(VirtReg, FrameIdx));
251 return FrameIdx;
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000252}
253
Chris Lattnerae640432002-12-17 02:50:10 +0000254
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000255/// removePhysReg - This method marks the specified physical register as no
Chris Lattner82bee0f2002-12-18 08:14:26 +0000256/// longer being in use.
257///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000258void RALocal::removePhysReg(unsigned PhysReg) {
Chris Lattner64667b62004-02-09 01:26:13 +0000259 PhysRegsUsed[PhysReg] = -1; // PhyReg no longer used
Chris Lattner82bee0f2002-12-18 08:14:26 +0000260
261 std::vector<unsigned>::iterator It =
262 std::find(PhysRegsUseOrder.begin(), PhysRegsUseOrder.end(), PhysReg);
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000263 if (It != PhysRegsUseOrder.end())
264 PhysRegsUseOrder.erase(It);
Chris Lattner82bee0f2002-12-18 08:14:26 +0000265}
266
Chris Lattner91a452b2003-01-13 00:25:40 +0000267
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000268/// spillVirtReg - This method spills the value specified by PhysReg into the
269/// virtual register slot specified by VirtReg. It then updates the RA data
270/// structures to indicate the fact that PhysReg is now available.
271///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000272void RALocal::spillVirtReg(MachineBasicBlock &MBB,
273 MachineBasicBlock::iterator I,
274 unsigned VirtReg, unsigned PhysReg) {
Chris Lattner8c819452003-08-05 04:13:58 +0000275 assert(VirtReg && "Spilling a physical register is illegal!"
Chris Lattnerd9ac6a72003-08-05 00:49:09 +0000276 " Must not have appropriate kill for the register or use exists beyond"
277 " the intended one.");
Chris Lattner84bc5422007-12-31 04:13:23 +0000278 DOUT << " Spilling register " << MRI->getName(PhysReg)
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000279 << " containing %reg" << VirtReg;
Owen Andersonf6372aa2008-01-01 21:11:32 +0000280
281 const TargetInstrInfo* TII = MBB.getParent()->getTarget().getInstrInfo();
282
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000283 if (!isVirtRegModified(VirtReg))
284 DOUT << " which has not been modified, so no store necessary!";
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000285
Chris Lattnerd9ac6a72003-08-05 00:49:09 +0000286 // Otherwise, there is a virtual register corresponding to this physical
287 // register. We only need to spill it into its stack slot if it has been
288 // modified.
289 if (isVirtRegModified(VirtReg)) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000290 const TargetRegisterClass *RC = MF->getRegInfo().getRegClass(VirtReg);
Chris Lattnerd9ac6a72003-08-05 00:49:09 +0000291 int FrameIndex = getStackSpaceFor(VirtReg, RC);
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000292 DOUT << " to stack slot #" << FrameIndex;
Owen Andersonf6372aa2008-01-01 21:11:32 +0000293 TII->storeRegToStackSlot(MBB, I, PhysReg, true, FrameIndex, RC);
Alkis Evlogimenos2acef2d2004-02-19 06:19:09 +0000294 ++NumStores; // Update statistics
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000295 }
Chris Lattnerecea5632004-02-09 02:12:04 +0000296
297 getVirt2PhysRegMapSlot(VirtReg) = 0; // VirtReg no longer available
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000298
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000299 DOUT << "\n";
Chris Lattner82bee0f2002-12-18 08:14:26 +0000300 removePhysReg(PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000301}
302
Chris Lattnerae640432002-12-17 02:50:10 +0000303
Chris Lattner91a452b2003-01-13 00:25:40 +0000304/// spillPhysReg - This method spills the specified physical register into the
Chris Lattner128c2aa2003-08-17 18:01:15 +0000305/// virtual register slot associated with it. If OnlyVirtRegs is set to true,
306/// then the request is ignored if the physical register does not contain a
307/// virtual register.
Chris Lattner91a452b2003-01-13 00:25:40 +0000308///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000309void RALocal::spillPhysReg(MachineBasicBlock &MBB, MachineInstr *I,
310 unsigned PhysReg, bool OnlyVirtRegs) {
Chris Lattner64667b62004-02-09 01:26:13 +0000311 if (PhysRegsUsed[PhysReg] != -1) { // Only spill it if it's used!
Chris Lattner45d57882006-09-08 19:03:30 +0000312 assert(PhysRegsUsed[PhysReg] != -2 && "Non allocable reg used!");
Chris Lattner64667b62004-02-09 01:26:13 +0000313 if (PhysRegsUsed[PhysReg] || !OnlyVirtRegs)
314 spillVirtReg(MBB, I, PhysRegsUsed[PhysReg], PhysReg);
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000315 } else {
Chris Lattner91a452b2003-01-13 00:25:40 +0000316 // If the selected register aliases any other registers, we must make
Chris Lattner45d57882006-09-08 19:03:30 +0000317 // sure that one of the aliases isn't alive.
Chris Lattner84bc5422007-12-31 04:13:23 +0000318 for (const unsigned *AliasSet = MRI->getAliasSet(PhysReg);
Chris Lattner64667b62004-02-09 01:26:13 +0000319 *AliasSet; ++AliasSet)
Chris Lattner45d57882006-09-08 19:03:30 +0000320 if (PhysRegsUsed[*AliasSet] != -1 && // Spill aliased register.
321 PhysRegsUsed[*AliasSet] != -2) // If allocatable.
Evan Cheng7ac19af2007-06-26 21:05:13 +0000322 if (PhysRegsUsed[*AliasSet])
323 spillVirtReg(MBB, I, PhysRegsUsed[*AliasSet], *AliasSet);
Chris Lattner91a452b2003-01-13 00:25:40 +0000324 }
325}
326
327
328/// assignVirtToPhysReg - This method updates local state so that we know
329/// that PhysReg is the proper container for VirtReg now. The physical
330/// register must not be used for anything else when this is called.
331///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000332void RALocal::assignVirtToPhysReg(unsigned VirtReg, unsigned PhysReg) {
Chris Lattner64667b62004-02-09 01:26:13 +0000333 assert(PhysRegsUsed[PhysReg] == -1 && "Phys reg already assigned!");
Chris Lattner91a452b2003-01-13 00:25:40 +0000334 // Update information to note the fact that this register was just used, and
335 // it holds VirtReg.
336 PhysRegsUsed[PhysReg] = VirtReg;
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000337 getVirt2PhysRegMapSlot(VirtReg) = PhysReg;
Evan Cheng7ac19af2007-06-26 21:05:13 +0000338 AddToPhysRegsUseOrder(PhysReg); // New use of PhysReg
Chris Lattner91a452b2003-01-13 00:25:40 +0000339}
340
341
Chris Lattnerae640432002-12-17 02:50:10 +0000342/// isPhysRegAvailable - Return true if the specified physical register is free
343/// and available for use. This also includes checking to see if aliased
344/// registers are all free...
345///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000346bool RALocal::isPhysRegAvailable(unsigned PhysReg) const {
Chris Lattner64667b62004-02-09 01:26:13 +0000347 if (PhysRegsUsed[PhysReg] != -1) return false;
Chris Lattnerae640432002-12-17 02:50:10 +0000348
349 // If the selected register aliases any other allocated registers, it is
350 // not free!
Chris Lattner84bc5422007-12-31 04:13:23 +0000351 for (const unsigned *AliasSet = MRI->getAliasSet(PhysReg);
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000352 *AliasSet; ++AliasSet)
Chris Lattner64667b62004-02-09 01:26:13 +0000353 if (PhysRegsUsed[*AliasSet] != -1) // Aliased register in use?
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000354 return false; // Can't use this reg then.
Chris Lattnerae640432002-12-17 02:50:10 +0000355 return true;
356}
357
358
Chris Lattner91a452b2003-01-13 00:25:40 +0000359/// getFreeReg - Look to see if there is a free register available in the
360/// specified register class. If not, return 0.
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000361///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000362unsigned RALocal::getFreeReg(const TargetRegisterClass *RC) {
Chris Lattner580f9be2002-12-28 20:40:43 +0000363 // Get iterators defining the range of registers that are valid to allocate in
364 // this class, which also specifies the preferred allocation order.
365 TargetRegisterClass::iterator RI = RC->allocation_order_begin(*MF);
366 TargetRegisterClass::iterator RE = RC->allocation_order_end(*MF);
Chris Lattnerae640432002-12-17 02:50:10 +0000367
Chris Lattner91a452b2003-01-13 00:25:40 +0000368 for (; RI != RE; ++RI)
369 if (isPhysRegAvailable(*RI)) { // Is reg unused?
370 assert(*RI != 0 && "Cannot use register!");
371 return *RI; // Found an unused register!
372 }
373 return 0;
374}
375
376
Chris Lattner91a452b2003-01-13 00:25:40 +0000377/// getReg - Find a physical register to hold the specified virtual
378/// register. If all compatible physical registers are used, this method spills
379/// the last used virtual register to the stack, and uses that register.
380///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000381unsigned RALocal::getReg(MachineBasicBlock &MBB, MachineInstr *I,
382 unsigned VirtReg) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000383 const TargetRegisterClass *RC = MF->getRegInfo().getRegClass(VirtReg);
Chris Lattner91a452b2003-01-13 00:25:40 +0000384
385 // First check to see if we have a free register of the requested type...
386 unsigned PhysReg = getFreeReg(RC);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000387
Chris Lattnerae640432002-12-17 02:50:10 +0000388 // If we didn't find an unused register, scavenge one now!
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000389 if (PhysReg == 0) {
Chris Lattnerc21be922002-12-16 17:44:42 +0000390 assert(!PhysRegsUseOrder.empty() && "No allocated registers??");
Chris Lattnerae640432002-12-17 02:50:10 +0000391
392 // Loop over all of the preallocated registers from the least recently used
393 // to the most recently used. When we find one that is capable of holding
394 // our register, use it.
395 for (unsigned i = 0; PhysReg == 0; ++i) {
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000396 assert(i != PhysRegsUseOrder.size() &&
397 "Couldn't find a register of the appropriate class!");
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000398
Chris Lattnerae640432002-12-17 02:50:10 +0000399 unsigned R = PhysRegsUseOrder[i];
Chris Lattner41822c72003-08-23 23:49:42 +0000400
401 // We can only use this register if it holds a virtual register (ie, it
402 // can be spilled). Do not use it if it is an explicitly allocated
403 // physical register!
Chris Lattner64667b62004-02-09 01:26:13 +0000404 assert(PhysRegsUsed[R] != -1 &&
Chris Lattner41822c72003-08-23 23:49:42 +0000405 "PhysReg in PhysRegsUseOrder, but is not allocated?");
Chris Lattner45d57882006-09-08 19:03:30 +0000406 if (PhysRegsUsed[R] && PhysRegsUsed[R] != -2) {
Chris Lattner41822c72003-08-23 23:49:42 +0000407 // If the current register is compatible, use it.
Chris Lattner3bba0262004-08-15 22:23:09 +0000408 if (RC->contains(R)) {
Chris Lattner41822c72003-08-23 23:49:42 +0000409 PhysReg = R;
410 break;
411 } else {
412 // If one of the registers aliased to the current register is
413 // compatible, use it.
Chris Lattner84bc5422007-12-31 04:13:23 +0000414 for (const unsigned *AliasIt = MRI->getAliasSet(R);
Chris Lattner5e503492006-09-03 07:15:37 +0000415 *AliasIt; ++AliasIt) {
416 if (RC->contains(*AliasIt) &&
417 // If this is pinned down for some reason, don't use it. For
418 // example, if CL is pinned, and we run across CH, don't use
419 // CH as justification for using scavenging ECX (which will
420 // fail).
Chris Lattner45d57882006-09-08 19:03:30 +0000421 PhysRegsUsed[*AliasIt] != 0 &&
422
423 // Make sure the register is allocatable. Don't allocate SIL on
424 // x86-32.
425 PhysRegsUsed[*AliasIt] != -2) {
Chris Lattner5e503492006-09-03 07:15:37 +0000426 PhysReg = *AliasIt; // Take an aliased register
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000427 break;
428 }
429 }
Chris Lattner41822c72003-08-23 23:49:42 +0000430 }
Chris Lattnerae640432002-12-17 02:50:10 +0000431 }
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000432 }
433
Chris Lattnerae640432002-12-17 02:50:10 +0000434 assert(PhysReg && "Physical register not assigned!?!?");
435
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000436 // At this point PhysRegsUseOrder[i] is the least recently used register of
437 // compatible register class. Spill it to memory and reap its remains.
Chris Lattnerc21be922002-12-16 17:44:42 +0000438 spillPhysReg(MBB, I, PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000439 }
440
441 // Now that we know which register we need to assign this to, do it now!
Chris Lattner91a452b2003-01-13 00:25:40 +0000442 assignVirtToPhysReg(VirtReg, PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000443 return PhysReg;
444}
445
Chris Lattnerae640432002-12-17 02:50:10 +0000446
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000447/// reloadVirtReg - This method transforms the specified specified virtual
448/// register use to refer to a physical register. This method may do this in
449/// one of several ways: if the register is available in a physical register
450/// already, it uses that physical register. If the value is not in a physical
451/// register, and if there are physical registers available, it loads it into a
452/// register. If register pressure is high, and it is possible, it tries to
453/// fold the load of the virtual register into the instruction itself. It
454/// avoids doing this if register pressure is low to improve the chance that
455/// subsequent instructions can use the reloaded value. This method returns the
456/// modified instruction.
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000457///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000458MachineInstr *RALocal::reloadVirtReg(MachineBasicBlock &MBB, MachineInstr *MI,
459 unsigned OpNum) {
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000460 unsigned VirtReg = MI->getOperand(OpNum).getReg();
461
462 // If the virtual register is already available, just update the instruction
463 // and return.
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000464 if (unsigned PR = getVirt2PhysRegMapSlot(VirtReg)) {
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000465 MarkPhysRegRecentlyUsed(PR); // Already have this value available!
Chris Lattnere53f4a02006-05-04 17:52:23 +0000466 MI->getOperand(OpNum).setReg(PR); // Assign the input register
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000467 return MI;
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000468 }
469
Chris Lattner1e3812c2004-02-17 04:08:37 +0000470 // Otherwise, we need to fold it into the current instruction, or reload it.
471 // If we have registers available to hold the value, use them.
Chris Lattner84bc5422007-12-31 04:13:23 +0000472 const TargetRegisterClass *RC = MF->getRegInfo().getRegClass(VirtReg);
Chris Lattner1e3812c2004-02-17 04:08:37 +0000473 unsigned PhysReg = getFreeReg(RC);
Chris Lattner11390e72004-02-17 08:09:40 +0000474 int FrameIndex = getStackSpaceFor(VirtReg, RC);
Chris Lattner1e3812c2004-02-17 04:08:37 +0000475
Chris Lattner11390e72004-02-17 08:09:40 +0000476 if (PhysReg) { // Register is available, allocate it!
477 assignVirtToPhysReg(VirtReg, PhysReg);
478 } else { // No registers available.
479 // If we can fold this spill into this instruction, do so now.
Evan Chengaee4af62007-12-02 08:30:39 +0000480 SmallVector<unsigned, 2> Ops;
481 Ops.push_back(OpNum);
Owen Anderson6425f8b2008-01-07 01:35:56 +0000482 if (MachineInstr* FMI = TII->foldMemoryOperand(MI, Ops, FrameIndex)) {
Alkis Evlogimenosd6f6d1a2004-02-21 18:07:33 +0000483 ++NumFolded;
Chris Lattnerd368c612004-02-19 18:34:02 +0000484 // Since we changed the address of MI, make sure to update live variables
485 // to know that the new instruction has the properties of the old one.
Alkis Evlogimenos39354c92004-03-14 07:19:51 +0000486 LV->instructionChanged(MI, FMI);
487 return MBB.insert(MBB.erase(MI), FMI);
Chris Lattner1e3812c2004-02-17 04:08:37 +0000488 }
489
490 // It looks like we can't fold this virtual register load into this
491 // instruction. Force some poor hapless value out of the register file to
492 // make room for the new register, and reload it.
493 PhysReg = getReg(MBB, MI, VirtReg);
494 }
495
Chris Lattner91a452b2003-01-13 00:25:40 +0000496 markVirtRegModified(VirtReg, false); // Note that this reg was just reloaded
497
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000498 DOUT << " Reloading %reg" << VirtReg << " into "
Chris Lattner84bc5422007-12-31 04:13:23 +0000499 << MRI->getName(PhysReg) << "\n";
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000500
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000501 // Add move instruction(s)
Owen Andersonf6372aa2008-01-01 21:11:32 +0000502 const TargetInstrInfo* TII = MBB.getParent()->getTarget().getInstrInfo();
503 TII->loadRegFromStackSlot(MBB, MI, PhysReg, FrameIndex, RC);
Alkis Evlogimenos2acef2d2004-02-19 06:19:09 +0000504 ++NumLoads; // Update statistics
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000505
Chris Lattner84bc5422007-12-31 04:13:23 +0000506 MF->getRegInfo().setPhysRegUsed(PhysReg);
Chris Lattnere53f4a02006-05-04 17:52:23 +0000507 MI->getOperand(OpNum).setReg(PhysReg); // Assign the input register
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000508 return MI;
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000509}
510
Evan Cheng7ac19af2007-06-26 21:05:13 +0000511/// isReadModWriteImplicitKill - True if this is an implicit kill for a
512/// read/mod/write register, i.e. update partial register.
513static bool isReadModWriteImplicitKill(MachineInstr *MI, unsigned Reg) {
514 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
515 MachineOperand& MO = MI->getOperand(i);
516 if (MO.isRegister() && MO.getReg() == Reg && MO.isImplicit() &&
517 MO.isDef() && !MO.isDead())
518 return true;
519 }
520 return false;
521}
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000522
Evan Cheng7ac19af2007-06-26 21:05:13 +0000523/// isReadModWriteImplicitDef - True if this is an implicit def for a
524/// read/mod/write register, i.e. update partial register.
525static bool isReadModWriteImplicitDef(MachineInstr *MI, unsigned Reg) {
526 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
527 MachineOperand& MO = MI->getOperand(i);
528 if (MO.isRegister() && MO.getReg() == Reg && MO.isImplicit() &&
529 !MO.isDef() && MO.isKill())
530 return true;
531 }
532 return false;
533}
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000534
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000535void RALocal::AllocateBasicBlock(MachineBasicBlock &MBB) {
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000536 // loop over each instruction
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000537 MachineBasicBlock::iterator MII = MBB.begin();
538 const TargetInstrInfo &TII = *TM->getInstrInfo();
Chris Lattner44500e32006-06-15 22:21:53 +0000539
Evan Chengddee8422006-11-15 20:55:15 +0000540 DEBUG(const BasicBlock *LBB = MBB.getBasicBlock();
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000541 if (LBB) DOUT << "\nStarting RegAlloc of BB: " << LBB->getName());
Evan Chengddee8422006-11-15 20:55:15 +0000542
Chris Lattner44500e32006-06-15 22:21:53 +0000543 // If this is the first basic block in the machine function, add live-in
544 // registers as active.
545 if (&MBB == &*MF->begin()) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000546 for (MachineRegisterInfo::livein_iterator I=MF->getRegInfo().livein_begin(),
547 E = MF->getRegInfo().livein_end(); I != E; ++I) {
Chris Lattner44500e32006-06-15 22:21:53 +0000548 unsigned Reg = I->first;
Chris Lattner84bc5422007-12-31 04:13:23 +0000549 MF->getRegInfo().setPhysRegUsed(Reg);
Chris Lattner44500e32006-06-15 22:21:53 +0000550 PhysRegsUsed[Reg] = 0; // It is free and reserved now
Evan Cheng7ac19af2007-06-26 21:05:13 +0000551 AddToPhysRegsUseOrder(Reg);
Chris Lattner84bc5422007-12-31 04:13:23 +0000552 for (const unsigned *AliasSet = MRI->getSubRegisters(Reg);
Chris Lattner44500e32006-06-15 22:21:53 +0000553 *AliasSet; ++AliasSet) {
Chris Lattner45d57882006-09-08 19:03:30 +0000554 if (PhysRegsUsed[*AliasSet] != -2) {
Evan Cheng7ac19af2007-06-26 21:05:13 +0000555 AddToPhysRegsUseOrder(*AliasSet);
Chris Lattner45d57882006-09-08 19:03:30 +0000556 PhysRegsUsed[*AliasSet] = 0; // It is free and reserved now
Chris Lattner84bc5422007-12-31 04:13:23 +0000557 MF->getRegInfo().setPhysRegUsed(*AliasSet);
Chris Lattner45d57882006-09-08 19:03:30 +0000558 }
Chris Lattner44500e32006-06-15 22:21:53 +0000559 }
560 }
561 }
562
563 // Otherwise, sequentially allocate each instruction in the MBB.
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000564 while (MII != MBB.end()) {
565 MachineInstr *MI = MII++;
566 const TargetInstrDescriptor &TID = TII.get(MI->getOpcode());
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000567 DEBUG(DOUT << "\nStarting RegAlloc of: " << *MI;
568 DOUT << " Regs have values: ";
Chris Lattner84bc5422007-12-31 04:13:23 +0000569 for (unsigned i = 0; i != MRI->getNumRegs(); ++i)
Chris Lattner45d57882006-09-08 19:03:30 +0000570 if (PhysRegsUsed[i] != -1 && PhysRegsUsed[i] != -2)
Chris Lattner84bc5422007-12-31 04:13:23 +0000571 DOUT << "[" << MRI->getName(i)
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000572 << ",%reg" << PhysRegsUsed[i] << "] ";
573 DOUT << "\n");
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000574
Chris Lattnerae640432002-12-17 02:50:10 +0000575 // Loop over the implicit uses, making sure that they are at the head of the
576 // use order list, so they don't get reallocated.
Jim Laskeycd4317e2006-07-21 21:15:20 +0000577 if (TID.ImplicitUses) {
578 for (const unsigned *ImplicitUses = TID.ImplicitUses;
579 *ImplicitUses; ++ImplicitUses)
580 MarkPhysRegRecentlyUsed(*ImplicitUses);
581 }
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000582
Evan Chengddee8422006-11-15 20:55:15 +0000583 SmallVector<unsigned, 8> Kills;
584 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
585 MachineOperand& MO = MI->getOperand(i);
Evan Cheng7ac19af2007-06-26 21:05:13 +0000586 if (MO.isRegister() && MO.isKill()) {
587 if (!MO.isImplicit())
588 Kills.push_back(MO.getReg());
589 else if (!isReadModWriteImplicitKill(MI, MO.getReg()))
590 // These are extra physical register kills when a sub-register
591 // is defined (def of a sub-register is a read/mod/write of the
592 // larger registers). Ignore.
593 Kills.push_back(MO.getReg());
594 }
Evan Chengddee8422006-11-15 20:55:15 +0000595 }
596
Brian Gaeke53b99a02003-08-15 21:19:25 +0000597 // Get the used operands into registers. This has the potential to spill
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000598 // incoming values if we are out of registers. Note that we completely
599 // ignore physical register uses here. We assume that if an explicit
600 // physical register is referenced by the instruction, that it is guaranteed
601 // to be live-in, or the input is badly hosed.
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000602 //
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000603 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
604 MachineOperand& MO = MI->getOperand(i);
605 // here we are looking for only used operands (never def&use)
Evan Chengddee8422006-11-15 20:55:15 +0000606 if (MO.isRegister() && !MO.isDef() && MO.getReg() && !MO.isImplicit() &&
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000607 MRegisterInfo::isVirtualRegister(MO.getReg()))
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000608 MI = reloadVirtReg(MBB, MI, i);
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000609 }
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000610
Evan Chengddee8422006-11-15 20:55:15 +0000611 // If this instruction is the last user of this register, kill the
Chris Lattner56ddada2004-02-17 17:49:10 +0000612 // value, freeing the register being used, so it doesn't need to be
613 // spilled to memory.
614 //
Evan Chengddee8422006-11-15 20:55:15 +0000615 for (unsigned i = 0, e = Kills.size(); i != e; ++i) {
616 unsigned VirtReg = Kills[i];
Chris Lattner56ddada2004-02-17 17:49:10 +0000617 unsigned PhysReg = VirtReg;
618 if (MRegisterInfo::isVirtualRegister(VirtReg)) {
619 // If the virtual register was never materialized into a register, it
620 // might not be in the map, but it won't hurt to zero it out anyway.
621 unsigned &PhysRegSlot = getVirt2PhysRegMapSlot(VirtReg);
622 PhysReg = PhysRegSlot;
623 PhysRegSlot = 0;
Chris Lattner0c5b8da2006-09-08 20:21:31 +0000624 } else if (PhysRegsUsed[PhysReg] == -2) {
625 // Unallocatable register dead, ignore.
626 continue;
Evan Cheng7ac19af2007-06-26 21:05:13 +0000627 } else {
Evan Cheng76500d52007-10-22 19:42:28 +0000628 assert((!PhysRegsUsed[PhysReg] || PhysRegsUsed[PhysReg] == -1) &&
Evan Cheng7ac19af2007-06-26 21:05:13 +0000629 "Silently clearing a virtual register?");
Chris Lattner56ddada2004-02-17 17:49:10 +0000630 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000631
Chris Lattner56ddada2004-02-17 17:49:10 +0000632 if (PhysReg) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000633 DOUT << " Last use of " << MRI->getName(PhysReg)
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000634 << "[%reg" << VirtReg <<"], removing it from live set\n";
Chris Lattner56ddada2004-02-17 17:49:10 +0000635 removePhysReg(PhysReg);
Chris Lattner84bc5422007-12-31 04:13:23 +0000636 for (const unsigned *AliasSet = MRI->getSubRegisters(PhysReg);
Evan Chengddee8422006-11-15 20:55:15 +0000637 *AliasSet; ++AliasSet) {
638 if (PhysRegsUsed[*AliasSet] != -2) {
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000639 DOUT << " Last use of "
Chris Lattner84bc5422007-12-31 04:13:23 +0000640 << MRI->getName(*AliasSet)
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000641 << "[%reg" << VirtReg <<"], removing it from live set\n";
Evan Chengddee8422006-11-15 20:55:15 +0000642 removePhysReg(*AliasSet);
643 }
644 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000645 }
646 }
647
648 // Loop over all of the operands of the instruction, spilling registers that
649 // are defined, and marking explicit destinations in the PhysRegsUsed map.
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000650 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
651 MachineOperand& MO = MI->getOperand(i);
Evan Cheng438f7bc2006-11-10 08:43:01 +0000652 if (MO.isRegister() && MO.isDef() && !MO.isImplicit() && MO.getReg() &&
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000653 MRegisterInfo::isPhysicalRegister(MO.getReg())) {
654 unsigned Reg = MO.getReg();
Chris Lattnercc406322006-09-08 19:11:11 +0000655 if (PhysRegsUsed[Reg] == -2) continue; // Something like ESP.
Evan Cheng7ac19af2007-06-26 21:05:13 +0000656 // These are extra physical register defs when a sub-register
657 // is defined (def of a sub-register is a read/mod/write of the
658 // larger registers). Ignore.
659 if (isReadModWriteImplicitDef(MI, MO.getReg())) continue;
660
Chris Lattner84bc5422007-12-31 04:13:23 +0000661 MF->getRegInfo().setPhysRegUsed(Reg);
Evan Chengddee8422006-11-15 20:55:15 +0000662 spillPhysReg(MBB, MI, Reg, true); // Spill any existing value in reg
Chris Lattner91a452b2003-01-13 00:25:40 +0000663 PhysRegsUsed[Reg] = 0; // It is free and reserved now
Evan Cheng7ac19af2007-06-26 21:05:13 +0000664 AddToPhysRegsUseOrder(Reg);
665
Chris Lattner84bc5422007-12-31 04:13:23 +0000666 for (const unsigned *AliasSet = MRI->getSubRegisters(Reg);
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000667 *AliasSet; ++AliasSet) {
Chris Lattner45d57882006-09-08 19:03:30 +0000668 if (PhysRegsUsed[*AliasSet] != -2) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000669 MF->getRegInfo().setPhysRegUsed(*AliasSet);
Evan Cheng7ac19af2007-06-26 21:05:13 +0000670 PhysRegsUsed[*AliasSet] = 0; // It is free and reserved now
671 AddToPhysRegsUseOrder(*AliasSet);
Chris Lattner45d57882006-09-08 19:03:30 +0000672 }
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000673 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000674 }
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000675 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000676
677 // Loop over the implicit defs, spilling them as well.
Jim Laskeycd4317e2006-07-21 21:15:20 +0000678 if (TID.ImplicitDefs) {
679 for (const unsigned *ImplicitDefs = TID.ImplicitDefs;
680 *ImplicitDefs; ++ImplicitDefs) {
681 unsigned Reg = *ImplicitDefs;
Evan Cheng7ac19af2007-06-26 21:05:13 +0000682 if (PhysRegsUsed[Reg] != -2) {
Chris Lattner2b41b8e2006-09-19 18:02:01 +0000683 spillPhysReg(MBB, MI, Reg, true);
Evan Cheng7ac19af2007-06-26 21:05:13 +0000684 AddToPhysRegsUseOrder(Reg);
Chris Lattner2b41b8e2006-09-19 18:02:01 +0000685 PhysRegsUsed[Reg] = 0; // It is free and reserved now
686 }
Chris Lattner84bc5422007-12-31 04:13:23 +0000687 MF->getRegInfo().setPhysRegUsed(Reg);
688 for (const unsigned *AliasSet = MRI->getSubRegisters(Reg);
Jim Laskeycd4317e2006-07-21 21:15:20 +0000689 *AliasSet; ++AliasSet) {
Chris Lattner45d57882006-09-08 19:03:30 +0000690 if (PhysRegsUsed[*AliasSet] != -2) {
Evan Cheng7ac19af2007-06-26 21:05:13 +0000691 AddToPhysRegsUseOrder(*AliasSet);
692 PhysRegsUsed[*AliasSet] = 0; // It is free and reserved now
Chris Lattner84bc5422007-12-31 04:13:23 +0000693 MF->getRegInfo().setPhysRegUsed(*AliasSet);
Chris Lattner45d57882006-09-08 19:03:30 +0000694 }
Jim Laskeycd4317e2006-07-21 21:15:20 +0000695 }
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000696 }
Alkis Evlogimenosefe995a2003-12-13 01:20:58 +0000697 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000698
Evan Chengddee8422006-11-15 20:55:15 +0000699 SmallVector<unsigned, 8> DeadDefs;
700 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
701 MachineOperand& MO = MI->getOperand(i);
702 if (MO.isRegister() && MO.isDead())
703 DeadDefs.push_back(MO.getReg());
704 }
705
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000706 // Okay, we have allocated all of the source operands and spilled any values
707 // that would be destroyed by defs of this instruction. Loop over the
Chris Lattner0648b162005-01-23 22:51:56 +0000708 // explicit defs and assign them to a register, spilling incoming values if
Chris Lattner91a452b2003-01-13 00:25:40 +0000709 // we need to scavenge a register.
Chris Lattner82bee0f2002-12-18 08:14:26 +0000710 //
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000711 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
712 MachineOperand& MO = MI->getOperand(i);
Evan Cheng5d8062b2006-09-05 20:32:06 +0000713 if (MO.isRegister() && MO.isDef() && MO.getReg() &&
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000714 MRegisterInfo::isVirtualRegister(MO.getReg())) {
715 unsigned DestVirtReg = MO.getReg();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000716 unsigned DestPhysReg;
717
Alkis Evlogimenos9af9dbd2003-12-18 13:08:52 +0000718 // If DestVirtReg already has a value, use it.
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000719 if (!(DestPhysReg = getVirt2PhysRegMapSlot(DestVirtReg)))
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000720 DestPhysReg = getReg(MBB, MI, DestVirtReg);
Chris Lattner84bc5422007-12-31 04:13:23 +0000721 MF->getRegInfo().setPhysRegUsed(DestPhysReg);
Chris Lattnerd5725632003-05-12 03:54:14 +0000722 markVirtRegModified(DestVirtReg);
Chris Lattnere53f4a02006-05-04 17:52:23 +0000723 MI->getOperand(i).setReg(DestPhysReg); // Assign the output register
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000724 }
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000725 }
Chris Lattner82bee0f2002-12-18 08:14:26 +0000726
Chris Lattner56ddada2004-02-17 17:49:10 +0000727 // If this instruction defines any registers that are immediately dead,
728 // kill them now.
729 //
Evan Chengddee8422006-11-15 20:55:15 +0000730 for (unsigned i = 0, e = DeadDefs.size(); i != e; ++i) {
731 unsigned VirtReg = DeadDefs[i];
Chris Lattner56ddada2004-02-17 17:49:10 +0000732 unsigned PhysReg = VirtReg;
733 if (MRegisterInfo::isVirtualRegister(VirtReg)) {
734 unsigned &PhysRegSlot = getVirt2PhysRegMapSlot(VirtReg);
735 PhysReg = PhysRegSlot;
736 assert(PhysReg != 0);
737 PhysRegSlot = 0;
Chris Lattner0c5b8da2006-09-08 20:21:31 +0000738 } else if (PhysRegsUsed[PhysReg] == -2) {
739 // Unallocatable register dead, ignore.
740 continue;
Chris Lattner56ddada2004-02-17 17:49:10 +0000741 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000742
Chris Lattner56ddada2004-02-17 17:49:10 +0000743 if (PhysReg) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000744 DOUT << " Register " << MRI->getName(PhysReg)
Chris Lattner56ddada2004-02-17 17:49:10 +0000745 << " [%reg" << VirtReg
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000746 << "] is never used, removing it frame live list\n";
Chris Lattner56ddada2004-02-17 17:49:10 +0000747 removePhysReg(PhysReg);
Chris Lattner84bc5422007-12-31 04:13:23 +0000748 for (const unsigned *AliasSet = MRI->getAliasSet(PhysReg);
Evan Chengddee8422006-11-15 20:55:15 +0000749 *AliasSet; ++AliasSet) {
750 if (PhysRegsUsed[*AliasSet] != -2) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000751 DOUT << " Register " << MRI->getName(*AliasSet)
Evan Chengddee8422006-11-15 20:55:15 +0000752 << " [%reg" << *AliasSet
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000753 << "] is never used, removing it frame live list\n";
Evan Chengddee8422006-11-15 20:55:15 +0000754 removePhysReg(*AliasSet);
755 }
756 }
Chris Lattner82bee0f2002-12-18 08:14:26 +0000757 }
758 }
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000759
760 // Finally, if this is a noop copy instruction, zap it.
761 unsigned SrcReg, DstReg;
Chris Lattner2ac0d432006-09-03 00:06:08 +0000762 if (TII.isMoveInstr(*MI, SrcReg, DstReg) && SrcReg == DstReg) {
763 LV->removeVirtualRegistersKilled(MI);
764 LV->removeVirtualRegistersDead(MI);
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000765 MBB.erase(MI);
Chris Lattner2ac0d432006-09-03 00:06:08 +0000766 }
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000767 }
768
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000769 MachineBasicBlock::iterator MI = MBB.getFirstTerminator();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000770
771 // Spill all physical registers holding virtual registers now.
Chris Lattner84bc5422007-12-31 04:13:23 +0000772 for (unsigned i = 0, e = MRI->getNumRegs(); i != e; ++i)
Chris Lattner45d57882006-09-08 19:03:30 +0000773 if (PhysRegsUsed[i] != -1 && PhysRegsUsed[i] != -2)
Chris Lattner64667b62004-02-09 01:26:13 +0000774 if (unsigned VirtReg = PhysRegsUsed[i])
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000775 spillVirtReg(MBB, MI, VirtReg, i);
Chris Lattner64667b62004-02-09 01:26:13 +0000776 else
777 removePhysReg(i);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000778
Chris Lattner9a5ef202005-11-09 05:28:45 +0000779#if 0
780 // This checking code is very expensive.
Chris Lattnerecea5632004-02-09 02:12:04 +0000781 bool AllOk = true;
Alkis Evlogimenos4d0d8642004-02-25 21:55:45 +0000782 for (unsigned i = MRegisterInfo::FirstVirtualRegister,
Chris Lattner84bc5422007-12-31 04:13:23 +0000783 e = MF->getRegInfo().getLastVirtReg(); i <= e; ++i)
Chris Lattnerecea5632004-02-09 02:12:04 +0000784 if (unsigned PR = Virt2PhysRegMap[i]) {
Bill Wendling832171c2006-12-07 20:04:42 +0000785 cerr << "Register still mapped: " << i << " -> " << PR << "\n";
Chris Lattnerecea5632004-02-09 02:12:04 +0000786 AllOk = false;
787 }
788 assert(AllOk && "Virtual registers still in phys regs?");
789#endif
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000790
Chris Lattner128c2aa2003-08-17 18:01:15 +0000791 // Clear any physical register which appear live at the end of the basic
792 // block, but which do not hold any virtual registers. e.g., the stack
793 // pointer.
794 PhysRegsUseOrder.clear();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000795}
796
Chris Lattner86c69a62002-12-17 03:16:10 +0000797
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000798/// runOnMachineFunction - Register allocate the whole function
799///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000800bool RALocal::runOnMachineFunction(MachineFunction &Fn) {
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000801 DOUT << "Machine Function " << "\n";
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000802 MF = &Fn;
Chris Lattner580f9be2002-12-28 20:40:43 +0000803 TM = &Fn.getTarget();
Chris Lattner84bc5422007-12-31 04:13:23 +0000804 MRI = TM->getRegisterInfo();
Owen Anderson6425f8b2008-01-07 01:35:56 +0000805 TII = TM->getInstrInfo();
Chris Lattner56ddada2004-02-17 17:49:10 +0000806 LV = &getAnalysis<LiveVariables>();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000807
Chris Lattner84bc5422007-12-31 04:13:23 +0000808 PhysRegsUsed.assign(MRI->getNumRegs(), -1);
Chris Lattner45d57882006-09-08 19:03:30 +0000809
810 // At various places we want to efficiently check to see whether a register
811 // is allocatable. To handle this, we mark all unallocatable registers as
812 // being pinned down, permanently.
813 {
Chris Lattner84bc5422007-12-31 04:13:23 +0000814 BitVector Allocable = MRI->getAllocatableSet(Fn);
Chris Lattner45d57882006-09-08 19:03:30 +0000815 for (unsigned i = 0, e = Allocable.size(); i != e; ++i)
816 if (!Allocable[i])
817 PhysRegsUsed[i] = -2; // Mark the reg unallocable.
818 }
Chris Lattner64667b62004-02-09 01:26:13 +0000819
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000820 // initialize the virtual->physical register map to have a 'null'
821 // mapping for all virtual registers
Chris Lattner84bc5422007-12-31 04:13:23 +0000822 Virt2PhysRegMap.grow(MF->getRegInfo().getLastVirtReg());
Chris Lattnerecea5632004-02-09 02:12:04 +0000823
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000824 // Loop over all of the basic blocks, eliminating virtual register references
825 for (MachineFunction::iterator MBB = Fn.begin(), MBBe = Fn.end();
826 MBB != MBBe; ++MBB)
827 AllocateBasicBlock(*MBB);
828
Chris Lattner580f9be2002-12-28 20:40:43 +0000829 StackSlotForVirtReg.clear();
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000830 PhysRegsUsed.clear();
Chris Lattner91a452b2003-01-13 00:25:40 +0000831 VirtRegModified.clear();
Chris Lattnerecea5632004-02-09 02:12:04 +0000832 Virt2PhysRegMap.clear();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000833 return true;
834}
835
Chris Lattneref09c632004-01-31 21:27:19 +0000836FunctionPass *llvm::createLocalRegisterAllocator() {
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000837 return new RALocal();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000838}