blob: 7c3c81e7dacbfd97b544fa8cc9826478d7282f2e [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 Chengddee8422006-11-15 20:55:15 +000030#include "llvm/ADT/SmallVector.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000031#include "llvm/ADT/Statistic.h"
Evan Cheng2fc628d2008-02-06 19:16:53 +000032#include "llvm/ADT/STLExtras.h"
Chris Lattner27f29162004-10-26 15:35:58 +000033#include <algorithm>
Chris Lattneref09c632004-01-31 21:27:19 +000034using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000035
Chris Lattnercd3245a2006-12-19 22:41:21 +000036STATISTIC(NumStores, "Number of stores added");
37STATISTIC(NumLoads , "Number of loads added");
Jim Laskey13ec7022006-08-01 14:21:23 +000038
Dan Gohman844731a2008-05-13 00:00:25 +000039static RegisterRegAlloc
Dan Gohmanb8cab922008-10-14 20:25:08 +000040 localRegAlloc("local", "local register allocator",
Dan Gohman844731a2008-05-13 00:00:25 +000041 createLocalRegisterAllocator);
42
Chris Lattnercd3245a2006-12-19 22:41:21 +000043namespace {
Bill Wendlinge23e00d2007-05-08 19:02:46 +000044 class VISIBILITY_HIDDEN RALocal : public MachineFunctionPass {
Devang Patel794fd752007-05-01 21:15:47 +000045 public:
Devang Patel19974732007-05-03 01:11:54 +000046 static char ID;
Dan Gohmanae73dc12008-09-04 17:05:41 +000047 RALocal() : MachineFunctionPass(&ID), StackSlotForVirtReg(-1) {}
Devang Patel794fd752007-05-01 21:15:47 +000048 private:
Chris Lattner580f9be2002-12-28 20:40:43 +000049 const TargetMachine *TM;
Chris Lattnerb74e83c2002-12-16 16:15:28 +000050 MachineFunction *MF;
Dan Gohman6f0d0242008-02-10 18:45:23 +000051 const TargetRegisterInfo *TRI;
Owen Anderson6425f8b2008-01-07 01:35:56 +000052 const TargetInstrInfo *TII;
Chris Lattnerff863ba2002-12-25 05:05:46 +000053
Chris Lattnerb8822ad2003-08-04 23:36:39 +000054 // StackSlotForVirtReg - Maps virtual regs to the frame index where these
55 // values are spilled.
Evan Chengbdb10fe2008-07-10 18:23:23 +000056 IndexedMap<int, VirtReg2IndexFunctor> StackSlotForVirtReg;
Chris Lattnerb74e83c2002-12-16 16:15:28 +000057
58 // Virt2PhysRegMap - This map contains entries for each virtual register
Alkis Evlogimenos4d0d8642004-02-25 21:55:45 +000059 // that is currently available in a physical register.
Chris Lattner94c002a2007-02-01 05:32:05 +000060 IndexedMap<unsigned, VirtReg2IndexFunctor> Virt2PhysRegMap;
Chris Lattnerecea5632004-02-09 02:12:04 +000061
62 unsigned &getVirt2PhysRegMapSlot(unsigned VirtReg) {
Alkis Evlogimenos4d0d8642004-02-25 21:55:45 +000063 return Virt2PhysRegMap[VirtReg];
Chris Lattnerecea5632004-02-09 02:12:04 +000064 }
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +000065
Chris Lattner64667b62004-02-09 01:26:13 +000066 // PhysRegsUsed - This array is effectively a map, containing entries for
67 // each physical register that currently has a value (ie, it is in
68 // Virt2PhysRegMap). The value mapped to is the virtual register
69 // corresponding to the physical register (the inverse of the
70 // Virt2PhysRegMap), or 0. The value is set to 0 if this register is pinned
Chris Lattner45d57882006-09-08 19:03:30 +000071 // because it is used by a future instruction, and to -2 if it is not
72 // allocatable. If the entry for a physical register is -1, then the
73 // physical register is "not in the map".
Chris Lattnerb74e83c2002-12-16 16:15:28 +000074 //
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +000075 std::vector<int> PhysRegsUsed;
Chris Lattnerb74e83c2002-12-16 16:15:28 +000076
77 // PhysRegsUseOrder - This contains a list of the physical registers that
78 // currently have a virtual register value in them. This list provides an
79 // ordering of registers, imposing a reallocation order. This list is only
80 // used if all registers are allocated and we have to spill one, in which
81 // case we spill the least recently used register. Entries at the front of
82 // the list are the least recently used registers, entries at the back are
83 // the most recently used.
84 //
85 std::vector<unsigned> PhysRegsUseOrder;
86
Evan Cheng839b7592008-01-17 02:08:17 +000087 // Virt2LastUseMap - This maps each virtual register to its last use
88 // (MachineInstr*, operand index pair).
89 IndexedMap<std::pair<MachineInstr*, unsigned>, VirtReg2IndexFunctor>
90 Virt2LastUseMap;
91
92 std::pair<MachineInstr*,unsigned>& getVirtRegLastUse(unsigned Reg) {
Dan Gohman6f0d0242008-02-10 18:45:23 +000093 assert(TargetRegisterInfo::isVirtualRegister(Reg) && "Illegal VirtReg!");
Evan Cheng839b7592008-01-17 02:08:17 +000094 return Virt2LastUseMap[Reg];
95 }
96
Chris Lattner91a452b2003-01-13 00:25:40 +000097 // VirtRegModified - This bitset contains information about which virtual
98 // registers need to be spilled back to memory when their registers are
99 // scavenged. If a virtual register has simply been rematerialized, there
100 // is no reason to spill it to memory when we need the register back.
Chris Lattner82bee0f2002-12-18 08:14:26 +0000101 //
Evan Cheng644340a2008-01-17 00:35:26 +0000102 BitVector VirtRegModified;
Owen Anderson491fccc2008-07-08 22:24:50 +0000103
104 // UsedInMultipleBlocks - Tracks whether a particular register is used in
105 // more than one block.
106 BitVector UsedInMultipleBlocks;
Chris Lattner91a452b2003-01-13 00:25:40 +0000107
108 void markVirtRegModified(unsigned Reg, bool Val = true) {
Dan Gohman6f0d0242008-02-10 18:45:23 +0000109 assert(TargetRegisterInfo::isVirtualRegister(Reg) && "Illegal VirtReg!");
110 Reg -= TargetRegisterInfo::FirstVirtualRegister;
Evan Cheng644340a2008-01-17 00:35:26 +0000111 if (Val)
112 VirtRegModified.set(Reg);
113 else
114 VirtRegModified.reset(Reg);
Chris Lattner91a452b2003-01-13 00:25:40 +0000115 }
116
117 bool isVirtRegModified(unsigned Reg) const {
Dan Gohman6f0d0242008-02-10 18:45:23 +0000118 assert(TargetRegisterInfo::isVirtualRegister(Reg) && "Illegal VirtReg!");
119 assert(Reg - TargetRegisterInfo::FirstVirtualRegister < VirtRegModified.size()
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000120 && "Illegal virtual register!");
Dan Gohman6f0d0242008-02-10 18:45:23 +0000121 return VirtRegModified[Reg - TargetRegisterInfo::FirstVirtualRegister];
Chris Lattner91a452b2003-01-13 00:25:40 +0000122 }
Chris Lattner82bee0f2002-12-18 08:14:26 +0000123
Evan Cheng7ac19af2007-06-26 21:05:13 +0000124 void AddToPhysRegsUseOrder(unsigned Reg) {
125 std::vector<unsigned>::iterator It =
126 std::find(PhysRegsUseOrder.begin(), PhysRegsUseOrder.end(), Reg);
127 if (It != PhysRegsUseOrder.end())
128 PhysRegsUseOrder.erase(It);
129 PhysRegsUseOrder.push_back(Reg);
130 }
131
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000132 void MarkPhysRegRecentlyUsed(unsigned Reg) {
Chris Lattner5e503492006-09-03 07:15:37 +0000133 if (PhysRegsUseOrder.empty() ||
134 PhysRegsUseOrder.back() == Reg) return; // Already most recently used
Chris Lattner0eb172c2002-12-24 00:04:55 +0000135
136 for (unsigned i = PhysRegsUseOrder.size(); i != 0; --i)
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000137 if (areRegsEqual(Reg, PhysRegsUseOrder[i-1])) {
138 unsigned RegMatch = PhysRegsUseOrder[i-1]; // remove from middle
139 PhysRegsUseOrder.erase(PhysRegsUseOrder.begin()+i-1);
140 // Add it to the end of the list
141 PhysRegsUseOrder.push_back(RegMatch);
142 if (RegMatch == Reg)
143 return; // Found an exact match, exit early
144 }
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000145 }
146
147 public:
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000148 virtual const char *getPassName() const {
149 return "Local Register Allocator";
150 }
151
Chris Lattner91a452b2003-01-13 00:25:40 +0000152 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattner91a452b2003-01-13 00:25:40 +0000153 AU.addRequiredID(PHIEliminationID);
Alkis Evlogimenos4c080862003-12-18 22:40:24 +0000154 AU.addRequiredID(TwoAddressInstructionPassID);
Chris Lattner91a452b2003-01-13 00:25:40 +0000155 MachineFunctionPass::getAnalysisUsage(AU);
156 }
157
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000158 private:
159 /// runOnMachineFunction - Register allocate the whole function
160 bool runOnMachineFunction(MachineFunction &Fn);
161
162 /// AllocateBasicBlock - Register allocate the specified basic block.
163 void AllocateBasicBlock(MachineBasicBlock &MBB);
164
Chris Lattner82bee0f2002-12-18 08:14:26 +0000165
Chris Lattner82bee0f2002-12-18 08:14:26 +0000166 /// areRegsEqual - This method returns true if the specified registers are
167 /// related to each other. To do this, it checks to see if they are equal
168 /// or if the first register is in the alias set of the second register.
169 ///
170 bool areRegsEqual(unsigned R1, unsigned R2) const {
171 if (R1 == R2) return true;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000172 for (const unsigned *AliasSet = TRI->getAliasSet(R2);
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000173 *AliasSet; ++AliasSet) {
174 if (*AliasSet == R1) return true;
175 }
Chris Lattner82bee0f2002-12-18 08:14:26 +0000176 return false;
177 }
178
Chris Lattner580f9be2002-12-28 20:40:43 +0000179 /// getStackSpaceFor - This returns the frame index of the specified virtual
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000180 /// register on the stack, allocating space if necessary.
Chris Lattner580f9be2002-12-28 20:40:43 +0000181 int getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass *RC);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000182
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000183 /// removePhysReg - This method marks the specified physical register as no
184 /// longer being in use.
185 ///
Chris Lattner82bee0f2002-12-18 08:14:26 +0000186 void removePhysReg(unsigned PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000187
188 /// spillVirtReg - This method spills the value specified by PhysReg into
189 /// the virtual register slot specified by VirtReg. It then updates the RA
190 /// data structures to indicate the fact that PhysReg is now available.
191 ///
Chris Lattner688c8252004-02-22 19:08:15 +0000192 void spillVirtReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI,
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000193 unsigned VirtReg, unsigned PhysReg);
194
Chris Lattnerc21be922002-12-16 17:44:42 +0000195 /// spillPhysReg - This method spills the specified physical register into
Chris Lattner128c2aa2003-08-17 18:01:15 +0000196 /// the virtual register slot associated with it. If OnlyVirtRegs is set to
197 /// true, then the request is ignored if the physical register does not
198 /// contain a virtual register.
Chris Lattner91a452b2003-01-13 00:25:40 +0000199 ///
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000200 void spillPhysReg(MachineBasicBlock &MBB, MachineInstr *I,
Chris Lattner128c2aa2003-08-17 18:01:15 +0000201 unsigned PhysReg, bool OnlyVirtRegs = false);
Chris Lattnerc21be922002-12-16 17:44:42 +0000202
Chris Lattner91a452b2003-01-13 00:25:40 +0000203 /// assignVirtToPhysReg - This method updates local state so that we know
204 /// that PhysReg is the proper container for VirtReg now. The physical
205 /// register must not be used for anything else when this is called.
206 ///
207 void assignVirtToPhysReg(unsigned VirtReg, unsigned PhysReg);
208
Chris Lattnerae640432002-12-17 02:50:10 +0000209 /// isPhysRegAvailable - Return true if the specified physical register is
210 /// free and available for use. This also includes checking to see if
211 /// aliased registers are all free...
212 ///
Chris Lattner82bee0f2002-12-18 08:14:26 +0000213 bool isPhysRegAvailable(unsigned PhysReg) const;
Chris Lattner91a452b2003-01-13 00:25:40 +0000214
215 /// getFreeReg - Look to see if there is a free register available in the
216 /// specified register class. If not, return 0.
217 ///
218 unsigned getFreeReg(const TargetRegisterClass *RC);
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000219
Chris Lattner91a452b2003-01-13 00:25:40 +0000220 /// getReg - Find a physical register to hold the specified virtual
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000221 /// register. If all compatible physical registers are used, this method
222 /// spills the last used virtual register to the stack, and uses that
223 /// register.
224 ///
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000225 unsigned getReg(MachineBasicBlock &MBB, MachineInstr *MI,
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000226 unsigned VirtReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000227
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000228 /// reloadVirtReg - This method transforms the specified specified virtual
229 /// register use to refer to a physical register. This method may do this
230 /// in one of several ways: if the register is available in a physical
231 /// register already, it uses that physical register. If the value is not
232 /// in a physical register, and if there are physical registers available,
233 /// it loads it into a register. If register pressure is high, and it is
234 /// possible, it tries to fold the load of the virtual register into the
235 /// instruction itself. It avoids doing this if register pressure is low to
236 /// improve the chance that subsequent instructions can use the reloaded
237 /// value. This method returns the modified instruction.
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000238 ///
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000239 MachineInstr *reloadVirtReg(MachineBasicBlock &MBB, MachineInstr *MI,
240 unsigned OpNum);
Misha Brukmanedf128a2005-04-21 22:36:52 +0000241
Owen Anderson9094db12008-07-09 20:14:53 +0000242 /// ComputeLocalLiveness - Computes liveness of registers within a basic
243 /// block, setting the killed/dead flags as appropriate.
244 void ComputeLocalLiveness(MachineBasicBlock& MBB);
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000245
246 void reloadPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator &I,
247 unsigned PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000248 };
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000249 char RALocal::ID = 0;
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000250}
251
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000252/// getStackSpaceFor - This allocates space for the specified virtual register
253/// to be held on the stack.
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000254int RALocal::getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass *RC) {
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000255 // Find the location Reg would belong...
Evan Chengbdb10fe2008-07-10 18:23:23 +0000256 int SS = StackSlotForVirtReg[VirtReg];
257 if (SS != -1)
258 return SS; // Already has space allocated?
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000259
Chris Lattner580f9be2002-12-28 20:40:43 +0000260 // Allocate a new stack object for this spill location...
Chris Lattner26eb14b2004-08-15 22:02:22 +0000261 int FrameIdx = MF->getFrameInfo()->CreateStackObject(RC->getSize(),
262 RC->getAlignment());
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000263
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000264 // Assign the slot...
Evan Chengbdb10fe2008-07-10 18:23:23 +0000265 StackSlotForVirtReg[VirtReg] = FrameIdx;
Chris Lattner580f9be2002-12-28 20:40:43 +0000266 return FrameIdx;
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000267}
268
Chris Lattnerae640432002-12-17 02:50:10 +0000269
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000270/// removePhysReg - This method marks the specified physical register as no
Chris Lattner82bee0f2002-12-18 08:14:26 +0000271/// longer being in use.
272///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000273void RALocal::removePhysReg(unsigned PhysReg) {
Chris Lattner64667b62004-02-09 01:26:13 +0000274 PhysRegsUsed[PhysReg] = -1; // PhyReg no longer used
Chris Lattner82bee0f2002-12-18 08:14:26 +0000275
276 std::vector<unsigned>::iterator It =
277 std::find(PhysRegsUseOrder.begin(), PhysRegsUseOrder.end(), PhysReg);
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000278 if (It != PhysRegsUseOrder.end())
279 PhysRegsUseOrder.erase(It);
Chris Lattner82bee0f2002-12-18 08:14:26 +0000280}
281
Chris Lattner91a452b2003-01-13 00:25:40 +0000282
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000283/// spillVirtReg - This method spills the value specified by PhysReg into the
284/// virtual register slot specified by VirtReg. It then updates the RA data
285/// structures to indicate the fact that PhysReg is now available.
286///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000287void RALocal::spillVirtReg(MachineBasicBlock &MBB,
288 MachineBasicBlock::iterator I,
289 unsigned VirtReg, unsigned PhysReg) {
Chris Lattner8c819452003-08-05 04:13:58 +0000290 assert(VirtReg && "Spilling a physical register is illegal!"
Chris Lattnerd9ac6a72003-08-05 00:49:09 +0000291 " Must not have appropriate kill for the register or use exists beyond"
292 " the intended one.");
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000293 DOUT << " Spilling register " << TRI->getName(PhysReg)
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000294 << " containing %reg" << VirtReg;
Owen Andersonf6372aa2008-01-01 21:11:32 +0000295
Evan Cheng839b7592008-01-17 02:08:17 +0000296 if (!isVirtRegModified(VirtReg)) {
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000297 DOUT << " which has not been modified, so no store necessary!";
Evan Cheng839b7592008-01-17 02:08:17 +0000298 std::pair<MachineInstr*, unsigned> &LastUse = getVirtRegLastUse(VirtReg);
299 if (LastUse.first)
300 LastUse.first->getOperand(LastUse.second).setIsKill();
Evan Cheng2fc628d2008-02-06 19:16:53 +0000301 } else {
302 // Otherwise, there is a virtual register corresponding to this physical
303 // register. We only need to spill it into its stack slot if it has been
304 // modified.
Chris Lattner84bc5422007-12-31 04:13:23 +0000305 const TargetRegisterClass *RC = MF->getRegInfo().getRegClass(VirtReg);
Chris Lattnerd9ac6a72003-08-05 00:49:09 +0000306 int FrameIndex = getStackSpaceFor(VirtReg, RC);
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000307 DOUT << " to stack slot #" << FrameIndex;
Evan Cheng2fc628d2008-02-06 19:16:53 +0000308 // If the instruction reads the register that's spilled, (e.g. this can
309 // happen if it is a move to a physical register), then the spill
310 // instruction is not a kill.
Evan Cheng6130f662008-03-05 00:59:57 +0000311 bool isKill = !(I != MBB.end() && I->readsRegister(PhysReg));
Evan Cheng431bfcb2008-02-11 08:30:52 +0000312 TII->storeRegToStackSlot(MBB, I, PhysReg, isKill, FrameIndex, RC);
Alkis Evlogimenos2acef2d2004-02-19 06:19:09 +0000313 ++NumStores; // Update statistics
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000314 }
Chris Lattnerecea5632004-02-09 02:12:04 +0000315
316 getVirt2PhysRegMapSlot(VirtReg) = 0; // VirtReg no longer available
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000317
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000318 DOUT << "\n";
Chris Lattner82bee0f2002-12-18 08:14:26 +0000319 removePhysReg(PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000320}
321
Chris Lattnerae640432002-12-17 02:50:10 +0000322
Chris Lattner91a452b2003-01-13 00:25:40 +0000323/// spillPhysReg - This method spills the specified physical register into the
Chris Lattner128c2aa2003-08-17 18:01:15 +0000324/// virtual register slot associated with it. If OnlyVirtRegs is set to true,
325/// then the request is ignored if the physical register does not contain a
326/// virtual register.
Chris Lattner91a452b2003-01-13 00:25:40 +0000327///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000328void RALocal::spillPhysReg(MachineBasicBlock &MBB, MachineInstr *I,
329 unsigned PhysReg, bool OnlyVirtRegs) {
Chris Lattner64667b62004-02-09 01:26:13 +0000330 if (PhysRegsUsed[PhysReg] != -1) { // Only spill it if it's used!
Chris Lattner45d57882006-09-08 19:03:30 +0000331 assert(PhysRegsUsed[PhysReg] != -2 && "Non allocable reg used!");
Chris Lattner64667b62004-02-09 01:26:13 +0000332 if (PhysRegsUsed[PhysReg] || !OnlyVirtRegs)
333 spillVirtReg(MBB, I, PhysRegsUsed[PhysReg], PhysReg);
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000334 } else {
Chris Lattner91a452b2003-01-13 00:25:40 +0000335 // If the selected register aliases any other registers, we must make
Chris Lattner45d57882006-09-08 19:03:30 +0000336 // sure that one of the aliases isn't alive.
Dan Gohman6f0d0242008-02-10 18:45:23 +0000337 for (const unsigned *AliasSet = TRI->getAliasSet(PhysReg);
Chris Lattner64667b62004-02-09 01:26:13 +0000338 *AliasSet; ++AliasSet)
Chris Lattner45d57882006-09-08 19:03:30 +0000339 if (PhysRegsUsed[*AliasSet] != -1 && // Spill aliased register.
340 PhysRegsUsed[*AliasSet] != -2) // If allocatable.
Evan Cheng7ac19af2007-06-26 21:05:13 +0000341 if (PhysRegsUsed[*AliasSet])
342 spillVirtReg(MBB, I, PhysRegsUsed[*AliasSet], *AliasSet);
Chris Lattner91a452b2003-01-13 00:25:40 +0000343 }
344}
345
346
347/// assignVirtToPhysReg - This method updates local state so that we know
348/// that PhysReg is the proper container for VirtReg now. The physical
349/// register must not be used for anything else when this is called.
350///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000351void RALocal::assignVirtToPhysReg(unsigned VirtReg, unsigned PhysReg) {
Chris Lattner64667b62004-02-09 01:26:13 +0000352 assert(PhysRegsUsed[PhysReg] == -1 && "Phys reg already assigned!");
Chris Lattner91a452b2003-01-13 00:25:40 +0000353 // Update information to note the fact that this register was just used, and
354 // it holds VirtReg.
355 PhysRegsUsed[PhysReg] = VirtReg;
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000356 getVirt2PhysRegMapSlot(VirtReg) = PhysReg;
Evan Cheng7ac19af2007-06-26 21:05:13 +0000357 AddToPhysRegsUseOrder(PhysReg); // New use of PhysReg
Chris Lattner91a452b2003-01-13 00:25:40 +0000358}
359
360
Chris Lattnerae640432002-12-17 02:50:10 +0000361/// isPhysRegAvailable - Return true if the specified physical register is free
362/// and available for use. This also includes checking to see if aliased
363/// registers are all free...
364///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000365bool RALocal::isPhysRegAvailable(unsigned PhysReg) const {
Chris Lattner64667b62004-02-09 01:26:13 +0000366 if (PhysRegsUsed[PhysReg] != -1) return false;
Chris Lattnerae640432002-12-17 02:50:10 +0000367
368 // If the selected register aliases any other allocated registers, it is
369 // not free!
Dan Gohman6f0d0242008-02-10 18:45:23 +0000370 for (const unsigned *AliasSet = TRI->getAliasSet(PhysReg);
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000371 *AliasSet; ++AliasSet)
Evan Chengbcfa1ca2008-02-22 20:30:53 +0000372 if (PhysRegsUsed[*AliasSet] >= 0) // Aliased register in use?
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000373 return false; // Can't use this reg then.
Chris Lattnerae640432002-12-17 02:50:10 +0000374 return true;
375}
376
377
Chris Lattner91a452b2003-01-13 00:25:40 +0000378/// getFreeReg - Look to see if there is a free register available in the
379/// specified register class. If not, return 0.
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000380///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000381unsigned RALocal::getFreeReg(const TargetRegisterClass *RC) {
Chris Lattner580f9be2002-12-28 20:40:43 +0000382 // Get iterators defining the range of registers that are valid to allocate in
383 // this class, which also specifies the preferred allocation order.
384 TargetRegisterClass::iterator RI = RC->allocation_order_begin(*MF);
385 TargetRegisterClass::iterator RE = RC->allocation_order_end(*MF);
Chris Lattnerae640432002-12-17 02:50:10 +0000386
Chris Lattner91a452b2003-01-13 00:25:40 +0000387 for (; RI != RE; ++RI)
388 if (isPhysRegAvailable(*RI)) { // Is reg unused?
389 assert(*RI != 0 && "Cannot use register!");
390 return *RI; // Found an unused register!
391 }
392 return 0;
393}
394
395
Chris Lattner91a452b2003-01-13 00:25:40 +0000396/// getReg - Find a physical register to hold the specified virtual
397/// register. If all compatible physical registers are used, this method spills
398/// the last used virtual register to the stack, and uses that register.
399///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000400unsigned RALocal::getReg(MachineBasicBlock &MBB, MachineInstr *I,
401 unsigned VirtReg) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000402 const TargetRegisterClass *RC = MF->getRegInfo().getRegClass(VirtReg);
Chris Lattner91a452b2003-01-13 00:25:40 +0000403
404 // First check to see if we have a free register of the requested type...
405 unsigned PhysReg = getFreeReg(RC);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000406
Chris Lattnerae640432002-12-17 02:50:10 +0000407 // If we didn't find an unused register, scavenge one now!
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000408 if (PhysReg == 0) {
Chris Lattnerc21be922002-12-16 17:44:42 +0000409 assert(!PhysRegsUseOrder.empty() && "No allocated registers??");
Chris Lattnerae640432002-12-17 02:50:10 +0000410
411 // Loop over all of the preallocated registers from the least recently used
412 // to the most recently used. When we find one that is capable of holding
413 // our register, use it.
414 for (unsigned i = 0; PhysReg == 0; ++i) {
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000415 assert(i != PhysRegsUseOrder.size() &&
416 "Couldn't find a register of the appropriate class!");
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000417
Chris Lattnerae640432002-12-17 02:50:10 +0000418 unsigned R = PhysRegsUseOrder[i];
Chris Lattner41822c72003-08-23 23:49:42 +0000419
420 // We can only use this register if it holds a virtual register (ie, it
421 // can be spilled). Do not use it if it is an explicitly allocated
422 // physical register!
Chris Lattner64667b62004-02-09 01:26:13 +0000423 assert(PhysRegsUsed[R] != -1 &&
Chris Lattner41822c72003-08-23 23:49:42 +0000424 "PhysReg in PhysRegsUseOrder, but is not allocated?");
Chris Lattner45d57882006-09-08 19:03:30 +0000425 if (PhysRegsUsed[R] && PhysRegsUsed[R] != -2) {
Chris Lattner41822c72003-08-23 23:49:42 +0000426 // If the current register is compatible, use it.
Chris Lattner3bba0262004-08-15 22:23:09 +0000427 if (RC->contains(R)) {
Chris Lattner41822c72003-08-23 23:49:42 +0000428 PhysReg = R;
429 break;
430 } else {
431 // If one of the registers aliased to the current register is
432 // compatible, use it.
Dan Gohman6f0d0242008-02-10 18:45:23 +0000433 for (const unsigned *AliasIt = TRI->getAliasSet(R);
Chris Lattner5e503492006-09-03 07:15:37 +0000434 *AliasIt; ++AliasIt) {
435 if (RC->contains(*AliasIt) &&
436 // If this is pinned down for some reason, don't use it. For
437 // example, if CL is pinned, and we run across CH, don't use
438 // CH as justification for using scavenging ECX (which will
439 // fail).
Chris Lattner45d57882006-09-08 19:03:30 +0000440 PhysRegsUsed[*AliasIt] != 0 &&
441
442 // Make sure the register is allocatable. Don't allocate SIL on
443 // x86-32.
444 PhysRegsUsed[*AliasIt] != -2) {
Chris Lattner5e503492006-09-03 07:15:37 +0000445 PhysReg = *AliasIt; // Take an aliased register
Alkis Evlogimenos73ff5122003-10-08 05:20:08 +0000446 break;
447 }
448 }
Chris Lattner41822c72003-08-23 23:49:42 +0000449 }
Chris Lattnerae640432002-12-17 02:50:10 +0000450 }
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000451 }
452
Chris Lattnerae640432002-12-17 02:50:10 +0000453 assert(PhysReg && "Physical register not assigned!?!?");
454
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000455 // At this point PhysRegsUseOrder[i] is the least recently used register of
456 // compatible register class. Spill it to memory and reap its remains.
Chris Lattnerc21be922002-12-16 17:44:42 +0000457 spillPhysReg(MBB, I, PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000458 }
459
460 // Now that we know which register we need to assign this to, do it now!
Chris Lattner91a452b2003-01-13 00:25:40 +0000461 assignVirtToPhysReg(VirtReg, PhysReg);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000462 return PhysReg;
463}
464
Chris Lattnerae640432002-12-17 02:50:10 +0000465
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000466/// reloadVirtReg - This method transforms the specified specified virtual
467/// register use to refer to a physical register. This method may do this in
468/// one of several ways: if the register is available in a physical register
469/// already, it uses that physical register. If the value is not in a physical
470/// register, and if there are physical registers available, it loads it into a
471/// register. If register pressure is high, and it is possible, it tries to
472/// fold the load of the virtual register into the instruction itself. It
473/// avoids doing this if register pressure is low to improve the chance that
474/// subsequent instructions can use the reloaded value. This method returns the
475/// modified instruction.
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000476///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000477MachineInstr *RALocal::reloadVirtReg(MachineBasicBlock &MBB, MachineInstr *MI,
478 unsigned OpNum) {
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000479 unsigned VirtReg = MI->getOperand(OpNum).getReg();
480
481 // If the virtual register is already available, just update the instruction
482 // and return.
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000483 if (unsigned PR = getVirt2PhysRegMapSlot(VirtReg)) {
Bill Wendling97e3c012008-02-29 18:52:01 +0000484 MarkPhysRegRecentlyUsed(PR); // Already have this value available!
Chris Lattnere53f4a02006-05-04 17:52:23 +0000485 MI->getOperand(OpNum).setReg(PR); // Assign the input register
Bill Wendling97e3c012008-02-29 18:52:01 +0000486 getVirtRegLastUse(VirtReg) = std::make_pair(MI, OpNum);
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000487 return MI;
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000488 }
489
Chris Lattner1e3812c2004-02-17 04:08:37 +0000490 // Otherwise, we need to fold it into the current instruction, or reload it.
491 // If we have registers available to hold the value, use them.
Chris Lattner84bc5422007-12-31 04:13:23 +0000492 const TargetRegisterClass *RC = MF->getRegInfo().getRegClass(VirtReg);
Chris Lattner1e3812c2004-02-17 04:08:37 +0000493 unsigned PhysReg = getFreeReg(RC);
Chris Lattner11390e72004-02-17 08:09:40 +0000494 int FrameIndex = getStackSpaceFor(VirtReg, RC);
Chris Lattner1e3812c2004-02-17 04:08:37 +0000495
Chris Lattner11390e72004-02-17 08:09:40 +0000496 if (PhysReg) { // Register is available, allocate it!
497 assignVirtToPhysReg(VirtReg, PhysReg);
498 } else { // No registers available.
Evan Cheng27240c72008-02-07 19:46:55 +0000499 // Force some poor hapless value out of the register file to
Chris Lattner1e3812c2004-02-17 04:08:37 +0000500 // make room for the new register, and reload it.
501 PhysReg = getReg(MBB, MI, VirtReg);
502 }
503
Chris Lattner91a452b2003-01-13 00:25:40 +0000504 markVirtRegModified(VirtReg, false); // Note that this reg was just reloaded
505
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000506 DOUT << " Reloading %reg" << VirtReg << " into "
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000507 << TRI->getName(PhysReg) << "\n";
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000508
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000509 // Add move instruction(s)
Owen Andersonf6372aa2008-01-01 21:11:32 +0000510 TII->loadRegFromStackSlot(MBB, MI, PhysReg, FrameIndex, RC);
Alkis Evlogimenos2acef2d2004-02-19 06:19:09 +0000511 ++NumLoads; // Update statistics
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000512
Chris Lattner84bc5422007-12-31 04:13:23 +0000513 MF->getRegInfo().setPhysRegUsed(PhysReg);
Chris Lattnere53f4a02006-05-04 17:52:23 +0000514 MI->getOperand(OpNum).setReg(PhysReg); // Assign the input register
Evan Cheng839b7592008-01-17 02:08:17 +0000515 getVirtRegLastUse(VirtReg) = std::make_pair(MI, OpNum);
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000516 return MI;
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000517}
518
Evan Cheng7ac19af2007-06-26 21:05:13 +0000519/// isReadModWriteImplicitKill - True if this is an implicit kill for a
520/// read/mod/write register, i.e. update partial register.
521static bool isReadModWriteImplicitKill(MachineInstr *MI, unsigned Reg) {
522 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
523 MachineOperand& MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000524 if (MO.isReg() && MO.getReg() == Reg && MO.isImplicit() &&
Evan Cheng7ac19af2007-06-26 21:05:13 +0000525 MO.isDef() && !MO.isDead())
526 return true;
527 }
528 return false;
529}
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000530
Evan Cheng7ac19af2007-06-26 21:05:13 +0000531/// isReadModWriteImplicitDef - True if this is an implicit def for a
532/// read/mod/write register, i.e. update partial register.
533static bool isReadModWriteImplicitDef(MachineInstr *MI, unsigned Reg) {
534 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
535 MachineOperand& MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000536 if (MO.isReg() && MO.getReg() == Reg && MO.isImplicit() &&
Evan Cheng7ac19af2007-06-26 21:05:13 +0000537 !MO.isDef() && MO.isKill())
538 return true;
539 }
540 return false;
541}
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000542
Owen Anderson491fccc2008-07-08 22:24:50 +0000543// precedes - Helper function to determine with MachineInstr A
544// precedes MachineInstr B within the same MBB.
545static bool precedes(MachineBasicBlock::iterator A,
546 MachineBasicBlock::iterator B) {
547 if (A == B)
548 return false;
549
550 MachineBasicBlock::iterator I = A->getParent()->begin();
551 while (I != A->getParent()->end()) {
552 if (I == A)
553 return true;
554 else if (I == B)
555 return false;
556
557 ++I;
558 }
559
560 return false;
561}
562
Owen Anderson9094db12008-07-09 20:14:53 +0000563/// ComputeLocalLiveness - Computes liveness of registers within a basic
564/// block, setting the killed/dead flags as appropriate.
565void RALocal::ComputeLocalLiveness(MachineBasicBlock& MBB) {
Owen Anderson491fccc2008-07-08 22:24:50 +0000566 MachineRegisterInfo& MRI = MBB.getParent()->getRegInfo();
567 // Keep track of the most recently seen previous use or def of each reg,
568 // so that we can update them with dead/kill markers.
Owen Anderson743a1e62008-07-10 01:56:35 +0000569 DenseMap<unsigned, std::pair<MachineInstr*, unsigned> > LastUseDef;
Owen Anderson491fccc2008-07-08 22:24:50 +0000570 for (MachineBasicBlock::iterator I = MBB.begin(), E = MBB.end();
571 I != E; ++I) {
572 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
573 MachineOperand& MO = I->getOperand(i);
574 // Uses don't trigger any flags, but we need to save
575 // them for later. Also, we have to process these
576 // _before_ processing the defs, since an instr
577 // uses regs before it defs them.
Owen Anderson04764de2008-10-08 04:30:51 +0000578 if (MO.isReg() && MO.getReg() && MO.isUse()) {
Owen Anderson491fccc2008-07-08 22:24:50 +0000579 LastUseDef[MO.getReg()] = std::make_pair(I, i);
Owen Anderson04764de2008-10-08 04:30:51 +0000580
581
582 if (TargetRegisterInfo::isVirtualRegister(MO.getReg())) continue;
583
584 const unsigned* subregs = TRI->getAliasSet(MO.getReg());
585 if (subregs) {
586 while (*subregs) {
587 DenseMap<unsigned, std::pair<MachineInstr*, unsigned> >::iterator
588 alias = LastUseDef.find(*subregs);
589
590 if (alias != LastUseDef.end() &&
591 alias->second.first != I)
592 LastUseDef[*subregs] = std::make_pair(I, i);
593
594 ++subregs;
595 }
596 }
597 }
Owen Anderson491fccc2008-07-08 22:24:50 +0000598 }
599
600 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
601 MachineOperand& MO = I->getOperand(i);
602 // Defs others than 2-addr redefs _do_ trigger flag changes:
603 // - A def followed by a def is dead
604 // - A use followed by a def is a kill
Dan Gohmand735b802008-10-03 15:45:36 +0000605 if (MO.isReg() && MO.getReg() && MO.isDef()) {
Owen Anderson743a1e62008-07-10 01:56:35 +0000606 DenseMap<unsigned, std::pair<MachineInstr*, unsigned> >::iterator
Owen Anderson491fccc2008-07-08 22:24:50 +0000607 last = LastUseDef.find(MO.getReg());
608 if (last != LastUseDef.end()) {
Owen Andersonecee36e2008-07-10 01:53:01 +0000609 // Check if this is a two address instruction. If so, then
610 // the def does not kill the use.
Evan Chengef0732d2008-07-10 07:35:43 +0000611 if (last->second.first == I &&
612 I->isRegReDefinedByTwoAddr(MO.getReg(), i))
613 continue;
Owen Andersondd4b47c2008-07-09 21:15:10 +0000614
Owen Anderson491fccc2008-07-08 22:24:50 +0000615 MachineOperand& lastUD =
616 last->second.first->getOperand(last->second.second);
617 if (lastUD.isDef())
618 lastUD.setIsDead(true);
Evan Chengef0732d2008-07-10 07:35:43 +0000619 else
Owen Anderson491fccc2008-07-08 22:24:50 +0000620 lastUD.setIsKill(true);
621 }
622
623 LastUseDef[MO.getReg()] = std::make_pair(I, i);
624 }
625 }
626 }
627
628 // Live-out (of the function) registers contain return values of the function,
629 // so we need to make sure they are alive at return time.
630 if (!MBB.empty() && MBB.back().getDesc().isReturn()) {
631 MachineInstr* Ret = &MBB.back();
632 for (MachineRegisterInfo::liveout_iterator
633 I = MF->getRegInfo().liveout_begin(),
634 E = MF->getRegInfo().liveout_end(); I != E; ++I)
635 if (!Ret->readsRegister(*I)) {
636 Ret->addOperand(MachineOperand::CreateReg(*I, false, true));
637 LastUseDef[*I] = std::make_pair(Ret, Ret->getNumOperands()-1);
638 }
639 }
640
641 // Finally, loop over the final use/def of each reg
642 // in the block and determine if it is dead.
Owen Anderson743a1e62008-07-10 01:56:35 +0000643 for (DenseMap<unsigned, std::pair<MachineInstr*, unsigned> >::iterator
Owen Anderson491fccc2008-07-08 22:24:50 +0000644 I = LastUseDef.begin(), E = LastUseDef.end(); I != E; ++I) {
645 MachineInstr* MI = I->second.first;
646 unsigned idx = I->second.second;
647 MachineOperand& MO = MI->getOperand(idx);
648
649 bool isPhysReg = TargetRegisterInfo::isPhysicalRegister(MO.getReg());
650
651 // A crude approximation of "live-out" calculation
652 bool usedOutsideBlock = isPhysReg ? false :
653 UsedInMultipleBlocks.test(MO.getReg() -
654 TargetRegisterInfo::FirstVirtualRegister);
655 if (!isPhysReg && !usedOutsideBlock)
656 for (MachineRegisterInfo::reg_iterator UI = MRI.reg_begin(MO.getReg()),
657 UE = MRI.reg_end(); UI != UE; ++UI)
658 // Two cases:
659 // - used in another block
660 // - used in the same block before it is defined (loop)
661 if (UI->getParent() != &MBB ||
Owen Anderson0966f0f2008-07-08 23:36:37 +0000662 (MO.isDef() && UI.getOperand().isUse() && precedes(&*UI, MI))) {
Owen Anderson491fccc2008-07-08 22:24:50 +0000663 UsedInMultipleBlocks.set(MO.getReg() -
664 TargetRegisterInfo::FirstVirtualRegister);
665 usedOutsideBlock = true;
666 break;
667 }
668
669 // Physical registers and those that are not live-out of the block
670 // are killed/dead at their last use/def within this block.
671 if (isPhysReg || !usedOutsideBlock) {
Dan Gohman022b21f2008-10-04 00:31:14 +0000672 if (MO.isUse()) {
673 // Don't mark uses that are tied to defs as kills.
674 if (MI->getDesc().getOperandConstraint(idx, TOI::TIED_TO) == -1)
675 MO.setIsKill(true);
676 } else
Owen Anderson491fccc2008-07-08 22:24:50 +0000677 MO.setIsDead(true);
678 }
679 }
Owen Anderson9094db12008-07-09 20:14:53 +0000680}
681
682void RALocal::AllocateBasicBlock(MachineBasicBlock &MBB) {
683 // loop over each instruction
684 MachineBasicBlock::iterator MII = MBB.begin();
685
686 DEBUG(const BasicBlock *LBB = MBB.getBasicBlock();
687 if (LBB) DOUT << "\nStarting RegAlloc of BB: " << LBB->getName());
688
689 // If this is the first basic block in the machine function, add live-in
690 // registers as active.
691 if (&MBB == &*MF->begin() || MBB.isLandingPad()) {
692 for (MachineBasicBlock::livein_iterator I = MBB.livein_begin(),
693 E = MBB.livein_end(); I != E; ++I) {
694 unsigned Reg = *I;
695 MF->getRegInfo().setPhysRegUsed(Reg);
696 PhysRegsUsed[Reg] = 0; // It is free and reserved now
697 AddToPhysRegsUseOrder(Reg);
698 for (const unsigned *AliasSet = TRI->getSubRegisters(Reg);
699 *AliasSet; ++AliasSet) {
700 if (PhysRegsUsed[*AliasSet] != -2) {
701 AddToPhysRegsUseOrder(*AliasSet);
702 PhysRegsUsed[*AliasSet] = 0; // It is free and reserved now
703 MF->getRegInfo().setPhysRegUsed(*AliasSet);
704 }
705 }
706 }
707 }
708
709 ComputeLocalLiveness(MBB);
Owen Anderson491fccc2008-07-08 22:24:50 +0000710
Chris Lattner44500e32006-06-15 22:21:53 +0000711 // Otherwise, sequentially allocate each instruction in the MBB.
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000712 while (MII != MBB.end()) {
713 MachineInstr *MI = MII++;
Chris Lattner749c6f62008-01-07 07:27:27 +0000714 const TargetInstrDesc &TID = MI->getDesc();
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000715 DEBUG(DOUT << "\nStarting RegAlloc of: " << *MI;
716 DOUT << " Regs have values: ";
Dan Gohman6f0d0242008-02-10 18:45:23 +0000717 for (unsigned i = 0; i != TRI->getNumRegs(); ++i)
Chris Lattner45d57882006-09-08 19:03:30 +0000718 if (PhysRegsUsed[i] != -1 && PhysRegsUsed[i] != -2)
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000719 DOUT << "[" << TRI->getName(i)
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000720 << ",%reg" << PhysRegsUsed[i] << "] ";
721 DOUT << "\n");
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000722
Chris Lattnerae640432002-12-17 02:50:10 +0000723 // Loop over the implicit uses, making sure that they are at the head of the
724 // use order list, so they don't get reallocated.
Jim Laskeycd4317e2006-07-21 21:15:20 +0000725 if (TID.ImplicitUses) {
726 for (const unsigned *ImplicitUses = TID.ImplicitUses;
727 *ImplicitUses; ++ImplicitUses)
728 MarkPhysRegRecentlyUsed(*ImplicitUses);
729 }
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000730
Evan Chengddee8422006-11-15 20:55:15 +0000731 SmallVector<unsigned, 8> Kills;
732 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
733 MachineOperand& MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000734 if (MO.isReg() && MO.isKill()) {
Evan Cheng7ac19af2007-06-26 21:05:13 +0000735 if (!MO.isImplicit())
736 Kills.push_back(MO.getReg());
737 else if (!isReadModWriteImplicitKill(MI, MO.getReg()))
738 // These are extra physical register kills when a sub-register
739 // is defined (def of a sub-register is a read/mod/write of the
740 // larger registers). Ignore.
741 Kills.push_back(MO.getReg());
742 }
Evan Chengddee8422006-11-15 20:55:15 +0000743 }
744
Dale Johannesen8e3455b2008-09-24 23:13:09 +0000745 // If any physical regs are earlyclobber, spill any value they might
746 // have in them, then mark them unallocatable.
747 // If any virtual regs are earlyclobber, allocate them now (before
748 // freeing inputs that are killed).
749 if (MI->getOpcode()==TargetInstrInfo::INLINEASM) {
750 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
751 MachineOperand& MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000752 if (MO.isReg() && MO.isDef() && MO.isEarlyClobber() &&
Dale Johannesen8e3455b2008-09-24 23:13:09 +0000753 MO.getReg()) {
754 if (TargetRegisterInfo::isVirtualRegister(MO.getReg())) {
755 unsigned DestVirtReg = MO.getReg();
756 unsigned DestPhysReg;
757
758 // If DestVirtReg already has a value, use it.
759 if (!(DestPhysReg = getVirt2PhysRegMapSlot(DestVirtReg)))
760 DestPhysReg = getReg(MBB, MI, DestVirtReg);
761 MF->getRegInfo().setPhysRegUsed(DestPhysReg);
762 markVirtRegModified(DestVirtReg);
763 getVirtRegLastUse(DestVirtReg) =
764 std::make_pair((MachineInstr*)0, 0);
765 DOUT << " Assigning " << TRI->getName(DestPhysReg)
766 << " to %reg" << DestVirtReg << "\n";
767 MO.setReg(DestPhysReg); // Assign the earlyclobber register
768 } else {
769 unsigned Reg = MO.getReg();
770 if (PhysRegsUsed[Reg] == -2) continue; // Something like ESP.
771 // These are extra physical register defs when a sub-register
772 // is defined (def of a sub-register is a read/mod/write of the
773 // larger registers). Ignore.
774 if (isReadModWriteImplicitDef(MI, MO.getReg())) continue;
775
776 MF->getRegInfo().setPhysRegUsed(Reg);
777 spillPhysReg(MBB, MI, Reg, true); // Spill any existing value in reg
778 PhysRegsUsed[Reg] = 0; // It is free and reserved now
779 AddToPhysRegsUseOrder(Reg);
780
781 for (const unsigned *AliasSet = TRI->getSubRegisters(Reg);
782 *AliasSet; ++AliasSet) {
783 if (PhysRegsUsed[*AliasSet] != -2) {
784 MF->getRegInfo().setPhysRegUsed(*AliasSet);
785 PhysRegsUsed[*AliasSet] = 0; // It is free and reserved now
786 AddToPhysRegsUseOrder(*AliasSet);
787 }
788 }
789 }
790 }
791 }
792 }
793
Brian Gaeke53b99a02003-08-15 21:19:25 +0000794 // Get the used operands into registers. This has the potential to spill
Chris Lattnerb8822ad2003-08-04 23:36:39 +0000795 // incoming values if we are out of registers. Note that we completely
796 // ignore physical register uses here. We assume that if an explicit
797 // physical register is referenced by the instruction, that it is guaranteed
798 // to be live-in, or the input is badly hosed.
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000799 //
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000800 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
801 MachineOperand& MO = MI->getOperand(i);
802 // here we are looking for only used operands (never def&use)
Dan Gohmand735b802008-10-03 15:45:36 +0000803 if (MO.isReg() && !MO.isDef() && MO.getReg() && !MO.isImplicit() &&
Dan Gohman6f0d0242008-02-10 18:45:23 +0000804 TargetRegisterInfo::isVirtualRegister(MO.getReg()))
Chris Lattner42e0a8f2004-02-17 03:57:19 +0000805 MI = reloadVirtReg(MBB, MI, i);
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000806 }
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000807
Evan Chengddee8422006-11-15 20:55:15 +0000808 // If this instruction is the last user of this register, kill the
Chris Lattner56ddada2004-02-17 17:49:10 +0000809 // value, freeing the register being used, so it doesn't need to be
810 // spilled to memory.
811 //
Evan Chengddee8422006-11-15 20:55:15 +0000812 for (unsigned i = 0, e = Kills.size(); i != e; ++i) {
813 unsigned VirtReg = Kills[i];
Chris Lattner56ddada2004-02-17 17:49:10 +0000814 unsigned PhysReg = VirtReg;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000815 if (TargetRegisterInfo::isVirtualRegister(VirtReg)) {
Chris Lattner56ddada2004-02-17 17:49:10 +0000816 // If the virtual register was never materialized into a register, it
817 // might not be in the map, but it won't hurt to zero it out anyway.
818 unsigned &PhysRegSlot = getVirt2PhysRegMapSlot(VirtReg);
819 PhysReg = PhysRegSlot;
820 PhysRegSlot = 0;
Chris Lattner0c5b8da2006-09-08 20:21:31 +0000821 } else if (PhysRegsUsed[PhysReg] == -2) {
822 // Unallocatable register dead, ignore.
823 continue;
Evan Cheng7ac19af2007-06-26 21:05:13 +0000824 } else {
Evan Cheng76500d52007-10-22 19:42:28 +0000825 assert((!PhysRegsUsed[PhysReg] || PhysRegsUsed[PhysReg] == -1) &&
Evan Cheng7ac19af2007-06-26 21:05:13 +0000826 "Silently clearing a virtual register?");
Chris Lattner56ddada2004-02-17 17:49:10 +0000827 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000828
Chris Lattner56ddada2004-02-17 17:49:10 +0000829 if (PhysReg) {
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000830 DOUT << " Last use of " << TRI->getName(PhysReg)
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000831 << "[%reg" << VirtReg <<"], removing it from live set\n";
Chris Lattner56ddada2004-02-17 17:49:10 +0000832 removePhysReg(PhysReg);
Dan Gohman6f0d0242008-02-10 18:45:23 +0000833 for (const unsigned *AliasSet = TRI->getSubRegisters(PhysReg);
Evan Chengddee8422006-11-15 20:55:15 +0000834 *AliasSet; ++AliasSet) {
835 if (PhysRegsUsed[*AliasSet] != -2) {
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000836 DOUT << " Last use of "
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000837 << TRI->getName(*AliasSet)
Bill Wendlingb2b9c202006-11-17 02:09:07 +0000838 << "[%reg" << VirtReg <<"], removing it from live set\n";
Evan Chengddee8422006-11-15 20:55:15 +0000839 removePhysReg(*AliasSet);
840 }
841 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000842 }
843 }
844
845 // Loop over all of the operands of the instruction, spilling registers that
846 // are defined, and marking explicit destinations in the PhysRegsUsed map.
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000847 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
848 MachineOperand& MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000849 if (MO.isReg() && MO.isDef() && !MO.isImplicit() && MO.getReg() &&
Dale Johannesen8e3455b2008-09-24 23:13:09 +0000850 !MO.isEarlyClobber() &&
Dan Gohman6f0d0242008-02-10 18:45:23 +0000851 TargetRegisterInfo::isPhysicalRegister(MO.getReg())) {
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000852 unsigned Reg = MO.getReg();
Chris Lattnercc406322006-09-08 19:11:11 +0000853 if (PhysRegsUsed[Reg] == -2) continue; // Something like ESP.
Evan Cheng7ac19af2007-06-26 21:05:13 +0000854 // These are extra physical register defs when a sub-register
855 // is defined (def of a sub-register is a read/mod/write of the
856 // larger registers). Ignore.
857 if (isReadModWriteImplicitDef(MI, MO.getReg())) continue;
858
Chris Lattner84bc5422007-12-31 04:13:23 +0000859 MF->getRegInfo().setPhysRegUsed(Reg);
Evan Chengddee8422006-11-15 20:55:15 +0000860 spillPhysReg(MBB, MI, Reg, true); // Spill any existing value in reg
Chris Lattner91a452b2003-01-13 00:25:40 +0000861 PhysRegsUsed[Reg] = 0; // It is free and reserved now
Evan Cheng7ac19af2007-06-26 21:05:13 +0000862 AddToPhysRegsUseOrder(Reg);
863
Dan Gohman6f0d0242008-02-10 18:45:23 +0000864 for (const unsigned *AliasSet = TRI->getSubRegisters(Reg);
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000865 *AliasSet; ++AliasSet) {
Chris Lattner45d57882006-09-08 19:03:30 +0000866 if (PhysRegsUsed[*AliasSet] != -2) {
Chris Lattner84bc5422007-12-31 04:13:23 +0000867 MF->getRegInfo().setPhysRegUsed(*AliasSet);
Evan Cheng7ac19af2007-06-26 21:05:13 +0000868 PhysRegsUsed[*AliasSet] = 0; // It is free and reserved now
869 AddToPhysRegsUseOrder(*AliasSet);
Chris Lattner45d57882006-09-08 19:03:30 +0000870 }
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000871 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000872 }
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000873 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000874
875 // Loop over the implicit defs, spilling them as well.
Jim Laskeycd4317e2006-07-21 21:15:20 +0000876 if (TID.ImplicitDefs) {
877 for (const unsigned *ImplicitDefs = TID.ImplicitDefs;
878 *ImplicitDefs; ++ImplicitDefs) {
879 unsigned Reg = *ImplicitDefs;
Evan Cheng7ac19af2007-06-26 21:05:13 +0000880 if (PhysRegsUsed[Reg] != -2) {
Chris Lattner2b41b8e2006-09-19 18:02:01 +0000881 spillPhysReg(MBB, MI, Reg, true);
Evan Cheng7ac19af2007-06-26 21:05:13 +0000882 AddToPhysRegsUseOrder(Reg);
Chris Lattner2b41b8e2006-09-19 18:02:01 +0000883 PhysRegsUsed[Reg] = 0; // It is free and reserved now
884 }
Chris Lattner84bc5422007-12-31 04:13:23 +0000885 MF->getRegInfo().setPhysRegUsed(Reg);
Dan Gohman6f0d0242008-02-10 18:45:23 +0000886 for (const unsigned *AliasSet = TRI->getSubRegisters(Reg);
Jim Laskeycd4317e2006-07-21 21:15:20 +0000887 *AliasSet; ++AliasSet) {
Chris Lattner45d57882006-09-08 19:03:30 +0000888 if (PhysRegsUsed[*AliasSet] != -2) {
Evan Cheng7ac19af2007-06-26 21:05:13 +0000889 AddToPhysRegsUseOrder(*AliasSet);
890 PhysRegsUsed[*AliasSet] = 0; // It is free and reserved now
Chris Lattner84bc5422007-12-31 04:13:23 +0000891 MF->getRegInfo().setPhysRegUsed(*AliasSet);
Chris Lattner45d57882006-09-08 19:03:30 +0000892 }
Jim Laskeycd4317e2006-07-21 21:15:20 +0000893 }
Alkis Evlogimenos19b64862004-01-13 06:24:30 +0000894 }
Alkis Evlogimenosefe995a2003-12-13 01:20:58 +0000895 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000896
Evan Chengddee8422006-11-15 20:55:15 +0000897 SmallVector<unsigned, 8> DeadDefs;
898 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
899 MachineOperand& MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000900 if (MO.isReg() && MO.isDead())
Evan Chengddee8422006-11-15 20:55:15 +0000901 DeadDefs.push_back(MO.getReg());
902 }
903
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000904 // Okay, we have allocated all of the source operands and spilled any values
905 // that would be destroyed by defs of this instruction. Loop over the
Chris Lattner0648b162005-01-23 22:51:56 +0000906 // explicit defs and assign them to a register, spilling incoming values if
Chris Lattner91a452b2003-01-13 00:25:40 +0000907 // we need to scavenge a register.
Chris Lattner82bee0f2002-12-18 08:14:26 +0000908 //
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000909 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
910 MachineOperand& MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000911 if (MO.isReg() && MO.isDef() && MO.getReg() &&
Dale Johannesen8e3455b2008-09-24 23:13:09 +0000912 !MO.isEarlyClobber() &&
Dan Gohman6f0d0242008-02-10 18:45:23 +0000913 TargetRegisterInfo::isVirtualRegister(MO.getReg())) {
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000914 unsigned DestVirtReg = MO.getReg();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000915 unsigned DestPhysReg;
916
Alkis Evlogimenos9af9dbd2003-12-18 13:08:52 +0000917 // If DestVirtReg already has a value, use it.
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000918 if (!(DestPhysReg = getVirt2PhysRegMapSlot(DestVirtReg)))
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000919 DestPhysReg = getReg(MBB, MI, DestVirtReg);
Chris Lattner84bc5422007-12-31 04:13:23 +0000920 MF->getRegInfo().setPhysRegUsed(DestPhysReg);
Chris Lattnerd5725632003-05-12 03:54:14 +0000921 markVirtRegModified(DestVirtReg);
Evan Cheng839b7592008-01-17 02:08:17 +0000922 getVirtRegLastUse(DestVirtReg) = std::make_pair((MachineInstr*)0, 0);
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000923 DOUT << " Assigning " << TRI->getName(DestPhysReg)
Evan Cheng9af70902008-02-22 19:57:06 +0000924 << " to %reg" << DestVirtReg << "\n";
Dan Gohman85e68152008-07-09 20:12:26 +0000925 MO.setReg(DestPhysReg); // Assign the output register
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000926 }
Alkis Evlogimenos71e353e2004-02-26 22:00:20 +0000927 }
Chris Lattner82bee0f2002-12-18 08:14:26 +0000928
Chris Lattner56ddada2004-02-17 17:49:10 +0000929 // If this instruction defines any registers that are immediately dead,
930 // kill them now.
931 //
Evan Chengddee8422006-11-15 20:55:15 +0000932 for (unsigned i = 0, e = DeadDefs.size(); i != e; ++i) {
933 unsigned VirtReg = DeadDefs[i];
Chris Lattner56ddada2004-02-17 17:49:10 +0000934 unsigned PhysReg = VirtReg;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000935 if (TargetRegisterInfo::isVirtualRegister(VirtReg)) {
Chris Lattner56ddada2004-02-17 17:49:10 +0000936 unsigned &PhysRegSlot = getVirt2PhysRegMapSlot(VirtReg);
937 PhysReg = PhysRegSlot;
938 assert(PhysReg != 0);
939 PhysRegSlot = 0;
Chris Lattner0c5b8da2006-09-08 20:21:31 +0000940 } else if (PhysRegsUsed[PhysReg] == -2) {
941 // Unallocatable register dead, ignore.
942 continue;
Chris Lattner56ddada2004-02-17 17:49:10 +0000943 }
Chris Lattner91a452b2003-01-13 00:25:40 +0000944
Chris Lattner56ddada2004-02-17 17:49:10 +0000945 if (PhysReg) {
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000946 DOUT << " Register " << TRI->getName(PhysReg)
Chris Lattner56ddada2004-02-17 17:49:10 +0000947 << " [%reg" << VirtReg
Matthijs Kooijmanfaa3d822008-11-24 16:01:21 +0000948 << "] is never used, removing it from live set\n";
Chris Lattner56ddada2004-02-17 17:49:10 +0000949 removePhysReg(PhysReg);
Dan Gohman6f0d0242008-02-10 18:45:23 +0000950 for (const unsigned *AliasSet = TRI->getAliasSet(PhysReg);
Evan Chengddee8422006-11-15 20:55:15 +0000951 *AliasSet; ++AliasSet) {
952 if (PhysRegsUsed[*AliasSet] != -2) {
Bill Wendlinge6d088a2008-02-26 21:47:57 +0000953 DOUT << " Register " << TRI->getName(*AliasSet)
Evan Chengddee8422006-11-15 20:55:15 +0000954 << " [%reg" << *AliasSet
Matthijs Kooijmanfaa3d822008-11-24 16:01:21 +0000955 << "] is never used, removing it from live set\n";
Evan Chengddee8422006-11-15 20:55:15 +0000956 removePhysReg(*AliasSet);
957 }
958 }
Chris Lattner82bee0f2002-12-18 08:14:26 +0000959 }
960 }
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000961
962 // Finally, if this is a noop copy instruction, zap it.
963 unsigned SrcReg, DstReg;
Dan Gohman88490542008-07-09 19:55:19 +0000964 if (TII->isMoveInstr(*MI, SrcReg, DstReg) && SrcReg == DstReg)
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000965 MBB.erase(MI);
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000966 }
967
Chris Lattnere6a88ac2005-11-09 18:22:42 +0000968 MachineBasicBlock::iterator MI = MBB.getFirstTerminator();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000969
970 // Spill all physical registers holding virtual registers now.
Dan Gohman6f0d0242008-02-10 18:45:23 +0000971 for (unsigned i = 0, e = TRI->getNumRegs(); i != e; ++i)
Anton Korobeynikov4aefd6b2008-02-20 12:07:57 +0000972 if (PhysRegsUsed[i] != -1 && PhysRegsUsed[i] != -2) {
Chris Lattner64667b62004-02-09 01:26:13 +0000973 if (unsigned VirtReg = PhysRegsUsed[i])
Alkis Evlogimenosc0b9dc52004-02-12 02:27:10 +0000974 spillVirtReg(MBB, MI, VirtReg, i);
Chris Lattner64667b62004-02-09 01:26:13 +0000975 else
976 removePhysReg(i);
Anton Korobeynikov4aefd6b2008-02-20 12:07:57 +0000977 }
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000978
Chris Lattner9a5ef202005-11-09 05:28:45 +0000979#if 0
980 // This checking code is very expensive.
Chris Lattnerecea5632004-02-09 02:12:04 +0000981 bool AllOk = true;
Dan Gohman6f0d0242008-02-10 18:45:23 +0000982 for (unsigned i = TargetRegisterInfo::FirstVirtualRegister,
Chris Lattner84bc5422007-12-31 04:13:23 +0000983 e = MF->getRegInfo().getLastVirtReg(); i <= e; ++i)
Chris Lattnerecea5632004-02-09 02:12:04 +0000984 if (unsigned PR = Virt2PhysRegMap[i]) {
Bill Wendling832171c2006-12-07 20:04:42 +0000985 cerr << "Register still mapped: " << i << " -> " << PR << "\n";
Chris Lattnerecea5632004-02-09 02:12:04 +0000986 AllOk = false;
987 }
988 assert(AllOk && "Virtual registers still in phys regs?");
989#endif
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +0000990
Chris Lattner128c2aa2003-08-17 18:01:15 +0000991 // Clear any physical register which appear live at the end of the basic
992 // block, but which do not hold any virtual registers. e.g., the stack
993 // pointer.
994 PhysRegsUseOrder.clear();
Chris Lattnerb74e83c2002-12-16 16:15:28 +0000995}
996
997/// runOnMachineFunction - Register allocate the whole function
998///
Bill Wendlinge23e00d2007-05-08 19:02:46 +0000999bool RALocal::runOnMachineFunction(MachineFunction &Fn) {
Bill Wendlingb2b9c202006-11-17 02:09:07 +00001000 DOUT << "Machine Function " << "\n";
Chris Lattnerb74e83c2002-12-16 16:15:28 +00001001 MF = &Fn;
Chris Lattner580f9be2002-12-28 20:40:43 +00001002 TM = &Fn.getTarget();
Dan Gohman6f0d0242008-02-10 18:45:23 +00001003 TRI = TM->getRegisterInfo();
Owen Anderson6425f8b2008-01-07 01:35:56 +00001004 TII = TM->getInstrInfo();
Chris Lattnerb74e83c2002-12-16 16:15:28 +00001005
Dan Gohman6f0d0242008-02-10 18:45:23 +00001006 PhysRegsUsed.assign(TRI->getNumRegs(), -1);
Chris Lattner45d57882006-09-08 19:03:30 +00001007
1008 // At various places we want to efficiently check to see whether a register
1009 // is allocatable. To handle this, we mark all unallocatable registers as
1010 // being pinned down, permanently.
1011 {
Dan Gohman6f0d0242008-02-10 18:45:23 +00001012 BitVector Allocable = TRI->getAllocatableSet(Fn);
Chris Lattner45d57882006-09-08 19:03:30 +00001013 for (unsigned i = 0, e = Allocable.size(); i != e; ++i)
1014 if (!Allocable[i])
1015 PhysRegsUsed[i] = -2; // Mark the reg unallocable.
1016 }
Chris Lattner64667b62004-02-09 01:26:13 +00001017
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +00001018 // initialize the virtual->physical register map to have a 'null'
1019 // mapping for all virtual registers
Evan Cheng644340a2008-01-17 00:35:26 +00001020 unsigned LastVirtReg = MF->getRegInfo().getLastVirtReg();
Evan Chengbdb10fe2008-07-10 18:23:23 +00001021 StackSlotForVirtReg.grow(LastVirtReg);
Evan Cheng644340a2008-01-17 00:35:26 +00001022 Virt2PhysRegMap.grow(LastVirtReg);
Evan Cheng839b7592008-01-17 02:08:17 +00001023 Virt2LastUseMap.grow(LastVirtReg);
Dan Gohman6f0d0242008-02-10 18:45:23 +00001024 VirtRegModified.resize(LastVirtReg+1-TargetRegisterInfo::FirstVirtualRegister);
Owen Anderson491fccc2008-07-08 22:24:50 +00001025 UsedInMultipleBlocks.resize(LastVirtReg+1-TargetRegisterInfo::FirstVirtualRegister);
1026
Chris Lattnerb74e83c2002-12-16 16:15:28 +00001027 // Loop over all of the basic blocks, eliminating virtual register references
1028 for (MachineFunction::iterator MBB = Fn.begin(), MBBe = Fn.end();
1029 MBB != MBBe; ++MBB)
1030 AllocateBasicBlock(*MBB);
1031
Chris Lattner580f9be2002-12-28 20:40:43 +00001032 StackSlotForVirtReg.clear();
Alkis Evlogimenos4de473b2004-02-13 18:20:47 +00001033 PhysRegsUsed.clear();
Chris Lattner91a452b2003-01-13 00:25:40 +00001034 VirtRegModified.clear();
Owen Anderson491fccc2008-07-08 22:24:50 +00001035 UsedInMultipleBlocks.clear();
Chris Lattnerecea5632004-02-09 02:12:04 +00001036 Virt2PhysRegMap.clear();
Evan Cheng839b7592008-01-17 02:08:17 +00001037 Virt2LastUseMap.clear();
Chris Lattnerb74e83c2002-12-16 16:15:28 +00001038 return true;
1039}
1040
Chris Lattneref09c632004-01-31 21:27:19 +00001041FunctionPass *llvm::createLocalRegisterAllocator() {
Bill Wendlinge23e00d2007-05-08 19:02:46 +00001042 return new RALocal();
Chris Lattnerb74e83c2002-12-16 16:15:28 +00001043}