blob: 3e1038daa9c9487af7f88c19e6270408db5d69bc [file] [log] [blame]
Chris Lattner101b8cd2002-12-16 16:15:28 +00001//===-- RegAllocLocal.cpp - A BasicBlock generic register allocator -------===//
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Evlogimenosde6a3812004-02-13 18:20:47 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner101b8cd2002-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 Lattner74e4e9b2003-08-03 21:47:31 +000015#define DEBUG_TYPE "regalloc"
Evan Cheng0ffff1c2006-11-15 20:55:15 +000016#include "llvm/BasicBlock.h"
Chris Lattnerb4e41112002-12-28 20:40:43 +000017#include "llvm/CodeGen/MachineFunctionPass.h"
Chris Lattner101b8cd2002-12-16 16:15:28 +000018#include "llvm/CodeGen/MachineInstr.h"
Chris Lattnerca4362f2002-12-28 21:08:26 +000019#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattnera10fff52007-12-31 04:13:23 +000020#include "llvm/CodeGen/MachineRegisterInfo.h"
Evan Cheng8291ab42008-02-06 08:00:32 +000021#include "llvm/CodeGen/Passes.h"
Jim Laskey29e635d2006-08-02 12:30:23 +000022#include "llvm/CodeGen/RegAllocRegistry.h"
Chris Lattnerb4d58d72003-01-14 22:00:31 +000023#include "llvm/Target/TargetInstrInfo.h"
Chris Lattner101b8cd2002-12-16 16:15:28 +000024#include "llvm/Target/TargetMachine.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000025#include "llvm/Support/CommandLine.h"
26#include "llvm/Support/Debug.h"
Chris Lattner3d27be12006-08-27 12:54:02 +000027#include "llvm/Support/Compiler.h"
Chris Lattner1003dc72007-02-01 05:32:05 +000028#include "llvm/ADT/IndexedMap.h"
Evan Cheng0ffff1c2006-11-15 20:55:15 +000029#include "llvm/ADT/SmallVector.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000030#include "llvm/ADT/Statistic.h"
Evan Cheng1ec748c2008-02-06 19:16:53 +000031#include "llvm/ADT/STLExtras.h"
Chris Lattnerc8b07dd2004-10-26 15:35:58 +000032#include <algorithm>
Evan Chengbe3d44c2008-04-02 17:23:50 +000033#include <map>
Chris Lattnerc330b982004-01-31 21:27:19 +000034using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000035
Chris Lattneraee775a2006-12-19 22:41:21 +000036STATISTIC(NumStores, "Number of stores added");
37STATISTIC(NumLoads , "Number of loads added");
Jim Laskey95eda5b2006-08-01 14:21:23 +000038
Dan Gohmand78c4002008-05-13 00:00:25 +000039static RegisterRegAlloc
40 localRegAlloc("local", " local register allocator",
41 createLocalRegisterAllocator);
42
Chris Lattneraee775a2006-12-19 22:41:21 +000043namespace {
Bill Wendling31fd60b2007-05-08 19:02:46 +000044 class VISIBILITY_HIDDEN RALocal : public MachineFunctionPass {
Devang Patel09f162c2007-05-01 21:15:47 +000045 public:
Devang Patel8c78a0b2007-05-03 01:11:54 +000046 static char ID;
Bill Wendling31fd60b2007-05-08 19:02:46 +000047 RALocal() : MachineFunctionPass((intptr_t)&ID) {}
Devang Patel09f162c2007-05-01 21:15:47 +000048 private:
Chris Lattnerb4e41112002-12-28 20:40:43 +000049 const TargetMachine *TM;
Chris Lattner101b8cd2002-12-16 16:15:28 +000050 MachineFunction *MF;
Dan Gohman3a4be0f2008-02-10 18:45:23 +000051 const TargetRegisterInfo *TRI;
Owen Anderson0ec92e92008-01-07 01:35:56 +000052 const TargetInstrInfo *TII;
Chris Lattner42714ec2002-12-25 05:05:46 +000053
Chris Lattner815b85e2003-08-04 23:36:39 +000054 // StackSlotForVirtReg - Maps virtual regs to the frame index where these
55 // values are spilled.
Chris Lattnerb4e41112002-12-28 20:40:43 +000056 std::map<unsigned, int> StackSlotForVirtReg;
Chris Lattner101b8cd2002-12-16 16:15:28 +000057
58 // Virt2PhysRegMap - This map contains entries for each virtual register
Alkis Evlogimenosd8bace72004-02-25 21:55:45 +000059 // that is currently available in a physical register.
Chris Lattner1003dc72007-02-01 05:32:05 +000060 IndexedMap<unsigned, VirtReg2IndexFunctor> Virt2PhysRegMap;
Chris Lattner80cbed42004-02-09 02:12:04 +000061
62 unsigned &getVirt2PhysRegMapSlot(unsigned VirtReg) {
Alkis Evlogimenosd8bace72004-02-25 21:55:45 +000063 return Virt2PhysRegMap[VirtReg];
Chris Lattner80cbed42004-02-09 02:12:04 +000064 }
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +000065
Chris Lattner490627a2004-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 Lattner9b1a6eb2006-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 Lattner101b8cd2002-12-16 16:15:28 +000074 //
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +000075 std::vector<int> PhysRegsUsed;
Chris Lattner101b8cd2002-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 Cheng54c20b552008-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 Gohman3a4be0f2008-02-10 18:45:23 +000093 assert(TargetRegisterInfo::isVirtualRegister(Reg) && "Illegal VirtReg!");
Evan Cheng54c20b552008-01-17 02:08:17 +000094 return Virt2LastUseMap[Reg];
95 }
96
Chris Lattnerbfa53192003-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 Lattnerd4627092002-12-18 08:14:26 +0000101 //
Evan Chengdc5b4c52008-01-17 00:35:26 +0000102 BitVector VirtRegModified;
Owen Anderson45d44752008-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 Lattnerbfa53192003-01-13 00:25:40 +0000107
108 void markVirtRegModified(unsigned Reg, bool Val = true) {
Dan Gohman3a4be0f2008-02-10 18:45:23 +0000109 assert(TargetRegisterInfo::isVirtualRegister(Reg) && "Illegal VirtReg!");
110 Reg -= TargetRegisterInfo::FirstVirtualRegister;
Evan Chengdc5b4c52008-01-17 00:35:26 +0000111 if (Val)
112 VirtRegModified.set(Reg);
113 else
114 VirtRegModified.reset(Reg);
Chris Lattnerbfa53192003-01-13 00:25:40 +0000115 }
116
117 bool isVirtRegModified(unsigned Reg) const {
Dan Gohman3a4be0f2008-02-10 18:45:23 +0000118 assert(TargetRegisterInfo::isVirtualRegister(Reg) && "Illegal VirtReg!");
119 assert(Reg - TargetRegisterInfo::FirstVirtualRegister < VirtRegModified.size()
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +0000120 && "Illegal virtual register!");
Dan Gohman3a4be0f2008-02-10 18:45:23 +0000121 return VirtRegModified[Reg - TargetRegisterInfo::FirstVirtualRegister];
Chris Lattnerbfa53192003-01-13 00:25:40 +0000122 }
Chris Lattnerd4627092002-12-18 08:14:26 +0000123
Evan Cheng4bf87f12007-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 Lattner101b8cd2002-12-16 16:15:28 +0000132 void MarkPhysRegRecentlyUsed(unsigned Reg) {
Chris Lattner7cc20d42006-09-03 07:15:37 +0000133 if (PhysRegsUseOrder.empty() ||
134 PhysRegsUseOrder.back() == Reg) return; // Already most recently used
Chris Lattner763729c52002-12-24 00:04:55 +0000135
136 for (unsigned i = PhysRegsUseOrder.size(); i != 0; --i)
Alkis Evlogimenosde6a3812004-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 Lattner101b8cd2002-12-16 16:15:28 +0000145 }
146
147 public:
Chris Lattner101b8cd2002-12-16 16:15:28 +0000148 virtual const char *getPassName() const {
149 return "Local Register Allocator";
150 }
151
Chris Lattnerbfa53192003-01-13 00:25:40 +0000152 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnerbfa53192003-01-13 00:25:40 +0000153 AU.addRequiredID(PHIEliminationID);
Alkis Evlogimenos71390902003-12-18 22:40:24 +0000154 AU.addRequiredID(TwoAddressInstructionPassID);
Chris Lattnerbfa53192003-01-13 00:25:40 +0000155 MachineFunctionPass::getAnalysisUsage(AU);
156 }
157
Chris Lattner101b8cd2002-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 Lattnerd4627092002-12-18 08:14:26 +0000165
Chris Lattnerd4627092002-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 Gohman3a4be0f2008-02-10 18:45:23 +0000172 for (const unsigned *AliasSet = TRI->getAliasSet(R2);
Alkis Evlogimenos5f1f3372003-10-08 05:20:08 +0000173 *AliasSet; ++AliasSet) {
174 if (*AliasSet == R1) return true;
175 }
Chris Lattnerd4627092002-12-18 08:14:26 +0000176 return false;
177 }
178
Chris Lattnerb4e41112002-12-28 20:40:43 +0000179 /// getStackSpaceFor - This returns the frame index of the specified virtual
Chris Lattner815b85e2003-08-04 23:36:39 +0000180 /// register on the stack, allocating space if necessary.
Chris Lattnerb4e41112002-12-28 20:40:43 +0000181 int getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass *RC);
Chris Lattner101b8cd2002-12-16 16:15:28 +0000182
Chris Lattner815b85e2003-08-04 23:36:39 +0000183 /// removePhysReg - This method marks the specified physical register as no
184 /// longer being in use.
185 ///
Chris Lattnerd4627092002-12-18 08:14:26 +0000186 void removePhysReg(unsigned PhysReg);
Chris Lattner101b8cd2002-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 Lattner84b40662004-02-22 19:08:15 +0000192 void spillVirtReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator MI,
Chris Lattner101b8cd2002-12-16 16:15:28 +0000193 unsigned VirtReg, unsigned PhysReg);
194
Chris Lattner0129b862002-12-16 17:44:42 +0000195 /// spillPhysReg - This method spills the specified physical register into
Chris Lattner931947d2003-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 Lattnerbfa53192003-01-13 00:25:40 +0000199 ///
Chris Lattnerddedac52004-02-17 03:57:19 +0000200 void spillPhysReg(MachineBasicBlock &MBB, MachineInstr *I,
Chris Lattner931947d2003-08-17 18:01:15 +0000201 unsigned PhysReg, bool OnlyVirtRegs = false);
Chris Lattner0129b862002-12-16 17:44:42 +0000202
Chris Lattnerbfa53192003-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 Lattner4664bd52002-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 Lattnerd4627092002-12-18 08:14:26 +0000213 bool isPhysRegAvailable(unsigned PhysReg) const;
Chris Lattnerbfa53192003-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 Evlogimenosde6a3812004-02-13 18:20:47 +0000219
Chris Lattnerbfa53192003-01-13 00:25:40 +0000220 /// getReg - Find a physical register to hold the specified virtual
Chris Lattner101b8cd2002-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 Lattnerddedac52004-02-17 03:57:19 +0000225 unsigned getReg(MachineBasicBlock &MBB, MachineInstr *MI,
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +0000226 unsigned VirtReg);
Chris Lattner101b8cd2002-12-16 16:15:28 +0000227
Chris Lattnerddedac52004-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 Lattner101b8cd2002-12-16 16:15:28 +0000238 ///
Chris Lattnerddedac52004-02-17 03:57:19 +0000239 MachineInstr *reloadVirtReg(MachineBasicBlock &MBB, MachineInstr *MI,
240 unsigned OpNum);
Misha Brukman835702a2005-04-21 22:36:52 +0000241
Owen Andersona0bc5222008-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 Lattner815b85e2003-08-04 23:36:39 +0000245
246 void reloadPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator &I,
247 unsigned PhysReg);
Chris Lattner101b8cd2002-12-16 16:15:28 +0000248 };
Bill Wendling31fd60b2007-05-08 19:02:46 +0000249 char RALocal::ID = 0;
Chris Lattner101b8cd2002-12-16 16:15:28 +0000250}
251
Chris Lattner815b85e2003-08-04 23:36:39 +0000252/// getStackSpaceFor - This allocates space for the specified virtual register
253/// to be held on the stack.
Bill Wendling31fd60b2007-05-08 19:02:46 +0000254int RALocal::getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass *RC) {
Chris Lattner815b85e2003-08-04 23:36:39 +0000255 // Find the location Reg would belong...
Dan Gohman8a950732008-07-09 19:51:00 +0000256 std::map<unsigned, int>::iterator I = StackSlotForVirtReg.find(VirtReg);
Chris Lattner101b8cd2002-12-16 16:15:28 +0000257
Dan Gohman8a950732008-07-09 19:51:00 +0000258 if (I != StackSlotForVirtReg.end())
Chris Lattner101b8cd2002-12-16 16:15:28 +0000259 return I->second; // Already has space allocated?
260
Chris Lattnerb4e41112002-12-28 20:40:43 +0000261 // Allocate a new stack object for this spill location...
Chris Lattnerc66f27f2004-08-15 22:02:22 +0000262 int FrameIdx = MF->getFrameInfo()->CreateStackObject(RC->getSize(),
263 RC->getAlignment());
Chris Lattner101b8cd2002-12-16 16:15:28 +0000264
Chris Lattner101b8cd2002-12-16 16:15:28 +0000265 // Assign the slot...
Chris Lattnerb4e41112002-12-28 20:40:43 +0000266 StackSlotForVirtReg.insert(I, std::make_pair(VirtReg, FrameIdx));
267 return FrameIdx;
Chris Lattner101b8cd2002-12-16 16:15:28 +0000268}
269
Chris Lattner4664bd52002-12-17 02:50:10 +0000270
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +0000271/// removePhysReg - This method marks the specified physical register as no
Chris Lattnerd4627092002-12-18 08:14:26 +0000272/// longer being in use.
273///
Bill Wendling31fd60b2007-05-08 19:02:46 +0000274void RALocal::removePhysReg(unsigned PhysReg) {
Chris Lattner490627a2004-02-09 01:26:13 +0000275 PhysRegsUsed[PhysReg] = -1; // PhyReg no longer used
Chris Lattnerd4627092002-12-18 08:14:26 +0000276
277 std::vector<unsigned>::iterator It =
278 std::find(PhysRegsUseOrder.begin(), PhysRegsUseOrder.end(), PhysReg);
Alkis Evlogimenosebbd66c2004-01-13 06:24:30 +0000279 if (It != PhysRegsUseOrder.end())
280 PhysRegsUseOrder.erase(It);
Chris Lattnerd4627092002-12-18 08:14:26 +0000281}
282
Chris Lattnerbfa53192003-01-13 00:25:40 +0000283
Chris Lattner101b8cd2002-12-16 16:15:28 +0000284/// spillVirtReg - This method spills the value specified by PhysReg into the
285/// virtual register slot specified by VirtReg. It then updates the RA data
286/// structures to indicate the fact that PhysReg is now available.
287///
Bill Wendling31fd60b2007-05-08 19:02:46 +0000288void RALocal::spillVirtReg(MachineBasicBlock &MBB,
289 MachineBasicBlock::iterator I,
290 unsigned VirtReg, unsigned PhysReg) {
Chris Lattner92a199d2003-08-05 04:13:58 +0000291 assert(VirtReg && "Spilling a physical register is illegal!"
Chris Lattner506fa682003-08-05 00:49:09 +0000292 " Must not have appropriate kill for the register or use exists beyond"
293 " the intended one.");
Bill Wendlingd7a258d2008-02-26 21:47:57 +0000294 DOUT << " Spilling register " << TRI->getName(PhysReg)
Bill Wendling9d46fcd2006-11-17 02:09:07 +0000295 << " containing %reg" << VirtReg;
Owen Andersoneee14602008-01-01 21:11:32 +0000296
Evan Cheng54c20b552008-01-17 02:08:17 +0000297 if (!isVirtRegModified(VirtReg)) {
Bill Wendling9d46fcd2006-11-17 02:09:07 +0000298 DOUT << " which has not been modified, so no store necessary!";
Evan Cheng54c20b552008-01-17 02:08:17 +0000299 std::pair<MachineInstr*, unsigned> &LastUse = getVirtRegLastUse(VirtReg);
300 if (LastUse.first)
301 LastUse.first->getOperand(LastUse.second).setIsKill();
Evan Cheng1ec748c2008-02-06 19:16:53 +0000302 } else {
303 // Otherwise, there is a virtual register corresponding to this physical
304 // register. We only need to spill it into its stack slot if it has been
305 // modified.
Chris Lattnera10fff52007-12-31 04:13:23 +0000306 const TargetRegisterClass *RC = MF->getRegInfo().getRegClass(VirtReg);
Chris Lattner506fa682003-08-05 00:49:09 +0000307 int FrameIndex = getStackSpaceFor(VirtReg, RC);
Bill Wendling9d46fcd2006-11-17 02:09:07 +0000308 DOUT << " to stack slot #" << FrameIndex;
Evan Cheng1ec748c2008-02-06 19:16:53 +0000309 // If the instruction reads the register that's spilled, (e.g. this can
310 // happen if it is a move to a physical register), then the spill
311 // instruction is not a kill.
Evan Cheng63254462008-03-05 00:59:57 +0000312 bool isKill = !(I != MBB.end() && I->readsRegister(PhysReg));
Evan Chengad4d57a2008-02-11 08:30:52 +0000313 TII->storeRegToStackSlot(MBB, I, PhysReg, isKill, FrameIndex, RC);
Alkis Evlogimenosd0a60b72004-02-19 06:19:09 +0000314 ++NumStores; // Update statistics
Chris Lattner101b8cd2002-12-16 16:15:28 +0000315 }
Chris Lattner80cbed42004-02-09 02:12:04 +0000316
317 getVirt2PhysRegMapSlot(VirtReg) = 0; // VirtReg no longer available
Chris Lattner101b8cd2002-12-16 16:15:28 +0000318
Bill Wendling9d46fcd2006-11-17 02:09:07 +0000319 DOUT << "\n";
Chris Lattnerd4627092002-12-18 08:14:26 +0000320 removePhysReg(PhysReg);
Chris Lattner101b8cd2002-12-16 16:15:28 +0000321}
322
Chris Lattner4664bd52002-12-17 02:50:10 +0000323
Chris Lattnerbfa53192003-01-13 00:25:40 +0000324/// spillPhysReg - This method spills the specified physical register into the
Chris Lattner931947d2003-08-17 18:01:15 +0000325/// virtual register slot associated with it. If OnlyVirtRegs is set to true,
326/// then the request is ignored if the physical register does not contain a
327/// virtual register.
Chris Lattnerbfa53192003-01-13 00:25:40 +0000328///
Bill Wendling31fd60b2007-05-08 19:02:46 +0000329void RALocal::spillPhysReg(MachineBasicBlock &MBB, MachineInstr *I,
330 unsigned PhysReg, bool OnlyVirtRegs) {
Chris Lattner490627a2004-02-09 01:26:13 +0000331 if (PhysRegsUsed[PhysReg] != -1) { // Only spill it if it's used!
Chris Lattner9b1a6eb2006-09-08 19:03:30 +0000332 assert(PhysRegsUsed[PhysReg] != -2 && "Non allocable reg used!");
Chris Lattner490627a2004-02-09 01:26:13 +0000333 if (PhysRegsUsed[PhysReg] || !OnlyVirtRegs)
334 spillVirtReg(MBB, I, PhysRegsUsed[PhysReg], PhysReg);
Alkis Evlogimenos5f1f3372003-10-08 05:20:08 +0000335 } else {
Chris Lattnerbfa53192003-01-13 00:25:40 +0000336 // If the selected register aliases any other registers, we must make
Chris Lattner9b1a6eb2006-09-08 19:03:30 +0000337 // sure that one of the aliases isn't alive.
Dan Gohman3a4be0f2008-02-10 18:45:23 +0000338 for (const unsigned *AliasSet = TRI->getAliasSet(PhysReg);
Chris Lattner490627a2004-02-09 01:26:13 +0000339 *AliasSet; ++AliasSet)
Chris Lattner9b1a6eb2006-09-08 19:03:30 +0000340 if (PhysRegsUsed[*AliasSet] != -1 && // Spill aliased register.
341 PhysRegsUsed[*AliasSet] != -2) // If allocatable.
Evan Cheng4bf87f12007-06-26 21:05:13 +0000342 if (PhysRegsUsed[*AliasSet])
343 spillVirtReg(MBB, I, PhysRegsUsed[*AliasSet], *AliasSet);
Chris Lattnerbfa53192003-01-13 00:25:40 +0000344 }
345}
346
347
348/// assignVirtToPhysReg - This method updates local state so that we know
349/// that PhysReg is the proper container for VirtReg now. The physical
350/// register must not be used for anything else when this is called.
351///
Bill Wendling31fd60b2007-05-08 19:02:46 +0000352void RALocal::assignVirtToPhysReg(unsigned VirtReg, unsigned PhysReg) {
Chris Lattner490627a2004-02-09 01:26:13 +0000353 assert(PhysRegsUsed[PhysReg] == -1 && "Phys reg already assigned!");
Chris Lattnerbfa53192003-01-13 00:25:40 +0000354 // Update information to note the fact that this register was just used, and
355 // it holds VirtReg.
356 PhysRegsUsed[PhysReg] = VirtReg;
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +0000357 getVirt2PhysRegMapSlot(VirtReg) = PhysReg;
Evan Cheng4bf87f12007-06-26 21:05:13 +0000358 AddToPhysRegsUseOrder(PhysReg); // New use of PhysReg
Chris Lattnerbfa53192003-01-13 00:25:40 +0000359}
360
361
Chris Lattner4664bd52002-12-17 02:50:10 +0000362/// isPhysRegAvailable - Return true if the specified physical register is free
363/// and available for use. This also includes checking to see if aliased
364/// registers are all free...
365///
Bill Wendling31fd60b2007-05-08 19:02:46 +0000366bool RALocal::isPhysRegAvailable(unsigned PhysReg) const {
Chris Lattner490627a2004-02-09 01:26:13 +0000367 if (PhysRegsUsed[PhysReg] != -1) return false;
Chris Lattner4664bd52002-12-17 02:50:10 +0000368
369 // If the selected register aliases any other allocated registers, it is
370 // not free!
Dan Gohman3a4be0f2008-02-10 18:45:23 +0000371 for (const unsigned *AliasSet = TRI->getAliasSet(PhysReg);
Alkis Evlogimenos5f1f3372003-10-08 05:20:08 +0000372 *AliasSet; ++AliasSet)
Evan Cheng52c15b32008-02-22 20:30:53 +0000373 if (PhysRegsUsed[*AliasSet] >= 0) // Aliased register in use?
Alkis Evlogimenos5f1f3372003-10-08 05:20:08 +0000374 return false; // Can't use this reg then.
Chris Lattner4664bd52002-12-17 02:50:10 +0000375 return true;
376}
377
378
Chris Lattnerbfa53192003-01-13 00:25:40 +0000379/// getFreeReg - Look to see if there is a free register available in the
380/// specified register class. If not, return 0.
Chris Lattner101b8cd2002-12-16 16:15:28 +0000381///
Bill Wendling31fd60b2007-05-08 19:02:46 +0000382unsigned RALocal::getFreeReg(const TargetRegisterClass *RC) {
Chris Lattnerb4e41112002-12-28 20:40:43 +0000383 // Get iterators defining the range of registers that are valid to allocate in
384 // this class, which also specifies the preferred allocation order.
385 TargetRegisterClass::iterator RI = RC->allocation_order_begin(*MF);
386 TargetRegisterClass::iterator RE = RC->allocation_order_end(*MF);
Chris Lattner4664bd52002-12-17 02:50:10 +0000387
Chris Lattnerbfa53192003-01-13 00:25:40 +0000388 for (; RI != RE; ++RI)
389 if (isPhysRegAvailable(*RI)) { // Is reg unused?
390 assert(*RI != 0 && "Cannot use register!");
391 return *RI; // Found an unused register!
392 }
393 return 0;
394}
395
396
Chris Lattnerbfa53192003-01-13 00:25:40 +0000397/// getReg - Find a physical register to hold the specified virtual
398/// register. If all compatible physical registers are used, this method spills
399/// the last used virtual register to the stack, and uses that register.
400///
Bill Wendling31fd60b2007-05-08 19:02:46 +0000401unsigned RALocal::getReg(MachineBasicBlock &MBB, MachineInstr *I,
402 unsigned VirtReg) {
Chris Lattnera10fff52007-12-31 04:13:23 +0000403 const TargetRegisterClass *RC = MF->getRegInfo().getRegClass(VirtReg);
Chris Lattnerbfa53192003-01-13 00:25:40 +0000404
405 // First check to see if we have a free register of the requested type...
406 unsigned PhysReg = getFreeReg(RC);
Chris Lattner101b8cd2002-12-16 16:15:28 +0000407
Chris Lattner4664bd52002-12-17 02:50:10 +0000408 // If we didn't find an unused register, scavenge one now!
Chris Lattner101b8cd2002-12-16 16:15:28 +0000409 if (PhysReg == 0) {
Chris Lattner0129b862002-12-16 17:44:42 +0000410 assert(!PhysRegsUseOrder.empty() && "No allocated registers??");
Chris Lattner4664bd52002-12-17 02:50:10 +0000411
412 // Loop over all of the preallocated registers from the least recently used
413 // to the most recently used. When we find one that is capable of holding
414 // our register, use it.
415 for (unsigned i = 0; PhysReg == 0; ++i) {
Chris Lattner101b8cd2002-12-16 16:15:28 +0000416 assert(i != PhysRegsUseOrder.size() &&
417 "Couldn't find a register of the appropriate class!");
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +0000418
Chris Lattner4664bd52002-12-17 02:50:10 +0000419 unsigned R = PhysRegsUseOrder[i];
Chris Lattnere6235442003-08-23 23:49:42 +0000420
421 // We can only use this register if it holds a virtual register (ie, it
422 // can be spilled). Do not use it if it is an explicitly allocated
423 // physical register!
Chris Lattner490627a2004-02-09 01:26:13 +0000424 assert(PhysRegsUsed[R] != -1 &&
Chris Lattnere6235442003-08-23 23:49:42 +0000425 "PhysReg in PhysRegsUseOrder, but is not allocated?");
Chris Lattner9b1a6eb2006-09-08 19:03:30 +0000426 if (PhysRegsUsed[R] && PhysRegsUsed[R] != -2) {
Chris Lattnere6235442003-08-23 23:49:42 +0000427 // If the current register is compatible, use it.
Chris Lattner5943c502004-08-15 22:23:09 +0000428 if (RC->contains(R)) {
Chris Lattnere6235442003-08-23 23:49:42 +0000429 PhysReg = R;
430 break;
431 } else {
432 // If one of the registers aliased to the current register is
433 // compatible, use it.
Dan Gohman3a4be0f2008-02-10 18:45:23 +0000434 for (const unsigned *AliasIt = TRI->getAliasSet(R);
Chris Lattner7cc20d42006-09-03 07:15:37 +0000435 *AliasIt; ++AliasIt) {
436 if (RC->contains(*AliasIt) &&
437 // If this is pinned down for some reason, don't use it. For
438 // example, if CL is pinned, and we run across CH, don't use
439 // CH as justification for using scavenging ECX (which will
440 // fail).
Chris Lattner9b1a6eb2006-09-08 19:03:30 +0000441 PhysRegsUsed[*AliasIt] != 0 &&
442
443 // Make sure the register is allocatable. Don't allocate SIL on
444 // x86-32.
445 PhysRegsUsed[*AliasIt] != -2) {
Chris Lattner7cc20d42006-09-03 07:15:37 +0000446 PhysReg = *AliasIt; // Take an aliased register
Alkis Evlogimenos5f1f3372003-10-08 05:20:08 +0000447 break;
448 }
449 }
Chris Lattnere6235442003-08-23 23:49:42 +0000450 }
Chris Lattner4664bd52002-12-17 02:50:10 +0000451 }
Chris Lattner101b8cd2002-12-16 16:15:28 +0000452 }
453
Chris Lattner4664bd52002-12-17 02:50:10 +0000454 assert(PhysReg && "Physical register not assigned!?!?");
455
Chris Lattner101b8cd2002-12-16 16:15:28 +0000456 // At this point PhysRegsUseOrder[i] is the least recently used register of
457 // compatible register class. Spill it to memory and reap its remains.
Chris Lattner0129b862002-12-16 17:44:42 +0000458 spillPhysReg(MBB, I, PhysReg);
Chris Lattner101b8cd2002-12-16 16:15:28 +0000459 }
460
461 // Now that we know which register we need to assign this to, do it now!
Chris Lattnerbfa53192003-01-13 00:25:40 +0000462 assignVirtToPhysReg(VirtReg, PhysReg);
Chris Lattner101b8cd2002-12-16 16:15:28 +0000463 return PhysReg;
464}
465
Chris Lattner4664bd52002-12-17 02:50:10 +0000466
Chris Lattnerddedac52004-02-17 03:57:19 +0000467/// reloadVirtReg - This method transforms the specified specified virtual
468/// register use to refer to a physical register. This method may do this in
469/// one of several ways: if the register is available in a physical register
470/// already, it uses that physical register. If the value is not in a physical
471/// register, and if there are physical registers available, it loads it into a
472/// register. If register pressure is high, and it is possible, it tries to
473/// fold the load of the virtual register into the instruction itself. It
474/// avoids doing this if register pressure is low to improve the chance that
475/// subsequent instructions can use the reloaded value. This method returns the
476/// modified instruction.
Chris Lattner101b8cd2002-12-16 16:15:28 +0000477///
Bill Wendling31fd60b2007-05-08 19:02:46 +0000478MachineInstr *RALocal::reloadVirtReg(MachineBasicBlock &MBB, MachineInstr *MI,
479 unsigned OpNum) {
Chris Lattnerddedac52004-02-17 03:57:19 +0000480 unsigned VirtReg = MI->getOperand(OpNum).getReg();
481
482 // If the virtual register is already available, just update the instruction
483 // and return.
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +0000484 if (unsigned PR = getVirt2PhysRegMapSlot(VirtReg)) {
Bill Wendling811153a2008-02-29 18:52:01 +0000485 MarkPhysRegRecentlyUsed(PR); // Already have this value available!
Chris Lattner10d63412006-05-04 17:52:23 +0000486 MI->getOperand(OpNum).setReg(PR); // Assign the input register
Bill Wendling811153a2008-02-29 18:52:01 +0000487 getVirtRegLastUse(VirtReg) = std::make_pair(MI, OpNum);
Chris Lattnerddedac52004-02-17 03:57:19 +0000488 return MI;
Chris Lattner101b8cd2002-12-16 16:15:28 +0000489 }
490
Chris Lattnerba9e3e22004-02-17 04:08:37 +0000491 // Otherwise, we need to fold it into the current instruction, or reload it.
492 // If we have registers available to hold the value, use them.
Chris Lattnera10fff52007-12-31 04:13:23 +0000493 const TargetRegisterClass *RC = MF->getRegInfo().getRegClass(VirtReg);
Chris Lattnerba9e3e22004-02-17 04:08:37 +0000494 unsigned PhysReg = getFreeReg(RC);
Chris Lattner4e21b232004-02-17 08:09:40 +0000495 int FrameIndex = getStackSpaceFor(VirtReg, RC);
Chris Lattnerba9e3e22004-02-17 04:08:37 +0000496
Chris Lattner4e21b232004-02-17 08:09:40 +0000497 if (PhysReg) { // Register is available, allocate it!
498 assignVirtToPhysReg(VirtReg, PhysReg);
499 } else { // No registers available.
Evan Cheng6a804622008-02-07 19:46:55 +0000500 // Force some poor hapless value out of the register file to
Chris Lattnerba9e3e22004-02-17 04:08:37 +0000501 // make room for the new register, and reload it.
502 PhysReg = getReg(MBB, MI, VirtReg);
503 }
504
Chris Lattnerbfa53192003-01-13 00:25:40 +0000505 markVirtRegModified(VirtReg, false); // Note that this reg was just reloaded
506
Bill Wendling9d46fcd2006-11-17 02:09:07 +0000507 DOUT << " Reloading %reg" << VirtReg << " into "
Bill Wendlingd7a258d2008-02-26 21:47:57 +0000508 << TRI->getName(PhysReg) << "\n";
Chris Lattner815b85e2003-08-04 23:36:39 +0000509
Chris Lattner101b8cd2002-12-16 16:15:28 +0000510 // Add move instruction(s)
Owen Andersoneee14602008-01-01 21:11:32 +0000511 TII->loadRegFromStackSlot(MBB, MI, PhysReg, FrameIndex, RC);
Alkis Evlogimenosd0a60b72004-02-19 06:19:09 +0000512 ++NumLoads; // Update statistics
Chris Lattnerddedac52004-02-17 03:57:19 +0000513
Chris Lattnera10fff52007-12-31 04:13:23 +0000514 MF->getRegInfo().setPhysRegUsed(PhysReg);
Chris Lattner10d63412006-05-04 17:52:23 +0000515 MI->getOperand(OpNum).setReg(PhysReg); // Assign the input register
Evan Cheng54c20b552008-01-17 02:08:17 +0000516 getVirtRegLastUse(VirtReg) = std::make_pair(MI, OpNum);
Chris Lattnerddedac52004-02-17 03:57:19 +0000517 return MI;
Chris Lattner101b8cd2002-12-16 16:15:28 +0000518}
519
Evan Cheng4bf87f12007-06-26 21:05:13 +0000520/// isReadModWriteImplicitKill - True if this is an implicit kill for a
521/// read/mod/write register, i.e. update partial register.
522static bool isReadModWriteImplicitKill(MachineInstr *MI, unsigned Reg) {
523 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
524 MachineOperand& MO = MI->getOperand(i);
525 if (MO.isRegister() && MO.getReg() == Reg && MO.isImplicit() &&
526 MO.isDef() && !MO.isDead())
527 return true;
528 }
529 return false;
530}
Chris Lattner815b85e2003-08-04 23:36:39 +0000531
Evan Cheng4bf87f12007-06-26 21:05:13 +0000532/// isReadModWriteImplicitDef - True if this is an implicit def for a
533/// read/mod/write register, i.e. update partial register.
534static bool isReadModWriteImplicitDef(MachineInstr *MI, unsigned Reg) {
535 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
536 MachineOperand& MO = MI->getOperand(i);
537 if (MO.isRegister() && MO.getReg() == Reg && MO.isImplicit() &&
538 !MO.isDef() && MO.isKill())
539 return true;
540 }
541 return false;
542}
Chris Lattner815b85e2003-08-04 23:36:39 +0000543
Owen Anderson45d44752008-07-08 22:24:50 +0000544// precedes - Helper function to determine with MachineInstr A
545// precedes MachineInstr B within the same MBB.
546static bool precedes(MachineBasicBlock::iterator A,
547 MachineBasicBlock::iterator B) {
548 if (A == B)
549 return false;
550
551 MachineBasicBlock::iterator I = A->getParent()->begin();
552 while (I != A->getParent()->end()) {
553 if (I == A)
554 return true;
555 else if (I == B)
556 return false;
557
558 ++I;
559 }
560
561 return false;
562}
563
Owen Andersona0bc5222008-07-09 20:14:53 +0000564/// ComputeLocalLiveness - Computes liveness of registers within a basic
565/// block, setting the killed/dead flags as appropriate.
566void RALocal::ComputeLocalLiveness(MachineBasicBlock& MBB) {
Owen Anderson45d44752008-07-08 22:24:50 +0000567 MachineRegisterInfo& MRI = MBB.getParent()->getRegInfo();
568 // Keep track of the most recently seen previous use or def of each reg,
569 // so that we can update them with dead/kill markers.
570 std::map<unsigned, std::pair<MachineInstr*, unsigned> > LastUseDef;
571 for (MachineBasicBlock::iterator I = MBB.begin(), E = MBB.end();
572 I != E; ++I) {
573 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
574 MachineOperand& MO = I->getOperand(i);
575 // Uses don't trigger any flags, but we need to save
576 // them for later. Also, we have to process these
577 // _before_ processing the defs, since an instr
578 // uses regs before it defs them.
579 if (MO.isReg() && MO.getReg() && MO.isUse())
580 LastUseDef[MO.getReg()] = std::make_pair(I, i);
581 }
582
583 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
584 MachineOperand& MO = I->getOperand(i);
585 // Defs others than 2-addr redefs _do_ trigger flag changes:
586 // - A def followed by a def is dead
587 // - A use followed by a def is a kill
Owen Andersonb42ed212008-07-09 21:15:10 +0000588 if (MO.isReg() && MO.getReg() && MO.isDef()) {
Owen Anderson45d44752008-07-08 22:24:50 +0000589 std::map<unsigned, std::pair<MachineInstr*, unsigned> >::iterator
590 last = LastUseDef.find(MO.getReg());
591 if (last != LastUseDef.end()) {
Owen Andersonb42ed212008-07-09 21:15:10 +0000592
593 // If this is a two address instr, then we don't mark the def
594 // as killing the use.
595 if (last->second.first == I &&
596 I->getDesc().getOperandConstraint(last->second.second,
597 TOI::TIED_TO) == (signed)i) {
598 LastUseDef[MO.getReg()] = std::make_pair(I, i);
599 continue;
600 }
601
602
Owen Anderson45d44752008-07-08 22:24:50 +0000603 MachineOperand& lastUD =
604 last->second.first->getOperand(last->second.second);
Owen Andersonb42ed212008-07-09 21:15:10 +0000605
Owen Anderson45d44752008-07-08 22:24:50 +0000606 if (lastUD.isDef())
607 lastUD.setIsDead(true);
608 else if (lastUD.isUse())
609 lastUD.setIsKill(true);
610 }
611
612 LastUseDef[MO.getReg()] = std::make_pair(I, i);
613 }
614 }
615 }
616
617 // Live-out (of the function) registers contain return values of the function,
618 // so we need to make sure they are alive at return time.
619 if (!MBB.empty() && MBB.back().getDesc().isReturn()) {
620 MachineInstr* Ret = &MBB.back();
621 for (MachineRegisterInfo::liveout_iterator
622 I = MF->getRegInfo().liveout_begin(),
623 E = MF->getRegInfo().liveout_end(); I != E; ++I)
624 if (!Ret->readsRegister(*I)) {
625 Ret->addOperand(MachineOperand::CreateReg(*I, false, true));
626 LastUseDef[*I] = std::make_pair(Ret, Ret->getNumOperands()-1);
627 }
628 }
629
630 // Finally, loop over the final use/def of each reg
631 // in the block and determine if it is dead.
632 for (std::map<unsigned, std::pair<MachineInstr*, unsigned> >::iterator
633 I = LastUseDef.begin(), E = LastUseDef.end(); I != E; ++I) {
634 MachineInstr* MI = I->second.first;
635 unsigned idx = I->second.second;
636 MachineOperand& MO = MI->getOperand(idx);
637
638 bool isPhysReg = TargetRegisterInfo::isPhysicalRegister(MO.getReg());
639
640 // A crude approximation of "live-out" calculation
641 bool usedOutsideBlock = isPhysReg ? false :
642 UsedInMultipleBlocks.test(MO.getReg() -
643 TargetRegisterInfo::FirstVirtualRegister);
644 if (!isPhysReg && !usedOutsideBlock)
645 for (MachineRegisterInfo::reg_iterator UI = MRI.reg_begin(MO.getReg()),
646 UE = MRI.reg_end(); UI != UE; ++UI)
647 // Two cases:
648 // - used in another block
649 // - used in the same block before it is defined (loop)
650 if (UI->getParent() != &MBB ||
Owen Anderson27b8a212008-07-08 23:36:37 +0000651 (MO.isDef() && UI.getOperand().isUse() && precedes(&*UI, MI))) {
Owen Anderson45d44752008-07-08 22:24:50 +0000652 UsedInMultipleBlocks.set(MO.getReg() -
653 TargetRegisterInfo::FirstVirtualRegister);
654 usedOutsideBlock = true;
655 break;
656 }
657
658 // Physical registers and those that are not live-out of the block
659 // are killed/dead at their last use/def within this block.
660 if (isPhysReg || !usedOutsideBlock) {
661 if (MO.isUse())
662 MO.setIsKill(true);
663 else if (MI->getOperand(idx).isDef())
664 MO.setIsDead(true);
665 }
666 }
Owen Andersona0bc5222008-07-09 20:14:53 +0000667}
668
669void RALocal::AllocateBasicBlock(MachineBasicBlock &MBB) {
670 // loop over each instruction
671 MachineBasicBlock::iterator MII = MBB.begin();
672
673 DEBUG(const BasicBlock *LBB = MBB.getBasicBlock();
674 if (LBB) DOUT << "\nStarting RegAlloc of BB: " << LBB->getName());
675
676 // If this is the first basic block in the machine function, add live-in
677 // registers as active.
678 if (&MBB == &*MF->begin() || MBB.isLandingPad()) {
679 for (MachineBasicBlock::livein_iterator I = MBB.livein_begin(),
680 E = MBB.livein_end(); I != E; ++I) {
681 unsigned Reg = *I;
682 MF->getRegInfo().setPhysRegUsed(Reg);
683 PhysRegsUsed[Reg] = 0; // It is free and reserved now
684 AddToPhysRegsUseOrder(Reg);
685 for (const unsigned *AliasSet = TRI->getSubRegisters(Reg);
686 *AliasSet; ++AliasSet) {
687 if (PhysRegsUsed[*AliasSet] != -2) {
688 AddToPhysRegsUseOrder(*AliasSet);
689 PhysRegsUsed[*AliasSet] = 0; // It is free and reserved now
690 MF->getRegInfo().setPhysRegUsed(*AliasSet);
691 }
692 }
693 }
694 }
695
696 ComputeLocalLiveness(MBB);
Owen Anderson45d44752008-07-08 22:24:50 +0000697
Chris Lattner4ff6c162006-06-15 22:21:53 +0000698 // Otherwise, sequentially allocate each instruction in the MBB.
Chris Lattner619dfaa2005-11-09 18:22:42 +0000699 while (MII != MBB.end()) {
700 MachineInstr *MI = MII++;
Chris Lattner03ad8852008-01-07 07:27:27 +0000701 const TargetInstrDesc &TID = MI->getDesc();
Bill Wendling9d46fcd2006-11-17 02:09:07 +0000702 DEBUG(DOUT << "\nStarting RegAlloc of: " << *MI;
703 DOUT << " Regs have values: ";
Dan Gohman3a4be0f2008-02-10 18:45:23 +0000704 for (unsigned i = 0; i != TRI->getNumRegs(); ++i)
Chris Lattner9b1a6eb2006-09-08 19:03:30 +0000705 if (PhysRegsUsed[i] != -1 && PhysRegsUsed[i] != -2)
Bill Wendlingd7a258d2008-02-26 21:47:57 +0000706 DOUT << "[" << TRI->getName(i)
Bill Wendling9d46fcd2006-11-17 02:09:07 +0000707 << ",%reg" << PhysRegsUsed[i] << "] ";
708 DOUT << "\n");
Chris Lattner101b8cd2002-12-16 16:15:28 +0000709
Chris Lattner4664bd52002-12-17 02:50:10 +0000710 // Loop over the implicit uses, making sure that they are at the head of the
711 // use order list, so they don't get reallocated.
Jim Laskey4b49c232006-07-21 21:15:20 +0000712 if (TID.ImplicitUses) {
713 for (const unsigned *ImplicitUses = TID.ImplicitUses;
714 *ImplicitUses; ++ImplicitUses)
715 MarkPhysRegRecentlyUsed(*ImplicitUses);
716 }
Chris Lattner101b8cd2002-12-16 16:15:28 +0000717
Evan Cheng0ffff1c2006-11-15 20:55:15 +0000718 SmallVector<unsigned, 8> Kills;
719 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
720 MachineOperand& MO = MI->getOperand(i);
Evan Cheng4bf87f12007-06-26 21:05:13 +0000721 if (MO.isRegister() && MO.isKill()) {
722 if (!MO.isImplicit())
723 Kills.push_back(MO.getReg());
724 else if (!isReadModWriteImplicitKill(MI, MO.getReg()))
725 // These are extra physical register kills when a sub-register
726 // is defined (def of a sub-register is a read/mod/write of the
727 // larger registers). Ignore.
728 Kills.push_back(MO.getReg());
729 }
Evan Cheng0ffff1c2006-11-15 20:55:15 +0000730 }
731
Brian Gaeke91e16e72003-08-15 21:19:25 +0000732 // Get the used operands into registers. This has the potential to spill
Chris Lattner815b85e2003-08-04 23:36:39 +0000733 // incoming values if we are out of registers. Note that we completely
734 // ignore physical register uses here. We assume that if an explicit
735 // physical register is referenced by the instruction, that it is guaranteed
736 // to be live-in, or the input is badly hosed.
Chris Lattner101b8cd2002-12-16 16:15:28 +0000737 //
Alkis Evlogimenos61719d42004-02-26 22:00:20 +0000738 for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
739 MachineOperand& MO = MI->getOperand(i);
740 // here we are looking for only used operands (never def&use)
Evan Cheng0ffff1c2006-11-15 20:55:15 +0000741 if (MO.isRegister() && !MO.isDef() && MO.getReg() && !MO.isImplicit() &&
Dan Gohman3a4be0f2008-02-10 18:45:23 +0000742 TargetRegisterInfo::isVirtualRegister(MO.getReg()))
Chris Lattnerddedac52004-02-17 03:57:19 +0000743 MI = reloadVirtReg(MBB, MI, i);
Alkis Evlogimenos61719d42004-02-26 22:00:20 +0000744 }
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +0000745
Evan Cheng0ffff1c2006-11-15 20:55:15 +0000746 // If this instruction is the last user of this register, kill the
Chris Lattner3d894dd2004-02-17 17:49:10 +0000747 // value, freeing the register being used, so it doesn't need to be
748 // spilled to memory.
749 //
Evan Cheng0ffff1c2006-11-15 20:55:15 +0000750 for (unsigned i = 0, e = Kills.size(); i != e; ++i) {
751 unsigned VirtReg = Kills[i];
Chris Lattner3d894dd2004-02-17 17:49:10 +0000752 unsigned PhysReg = VirtReg;
Dan Gohman3a4be0f2008-02-10 18:45:23 +0000753 if (TargetRegisterInfo::isVirtualRegister(VirtReg)) {
Chris Lattner3d894dd2004-02-17 17:49:10 +0000754 // If the virtual register was never materialized into a register, it
755 // might not be in the map, but it won't hurt to zero it out anyway.
756 unsigned &PhysRegSlot = getVirt2PhysRegMapSlot(VirtReg);
757 PhysReg = PhysRegSlot;
758 PhysRegSlot = 0;
Chris Lattnerb2e73162006-09-08 20:21:31 +0000759 } else if (PhysRegsUsed[PhysReg] == -2) {
760 // Unallocatable register dead, ignore.
761 continue;
Evan Cheng4bf87f12007-06-26 21:05:13 +0000762 } else {
Evan Cheng5163a8f2007-10-22 19:42:28 +0000763 assert((!PhysRegsUsed[PhysReg] || PhysRegsUsed[PhysReg] == -1) &&
Evan Cheng4bf87f12007-06-26 21:05:13 +0000764 "Silently clearing a virtual register?");
Chris Lattner3d894dd2004-02-17 17:49:10 +0000765 }
Chris Lattnerbfa53192003-01-13 00:25:40 +0000766
Chris Lattner3d894dd2004-02-17 17:49:10 +0000767 if (PhysReg) {
Bill Wendlingd7a258d2008-02-26 21:47:57 +0000768 DOUT << " Last use of " << TRI->getName(PhysReg)
Bill Wendling9d46fcd2006-11-17 02:09:07 +0000769 << "[%reg" << VirtReg <<"], removing it from live set\n";
Chris Lattner3d894dd2004-02-17 17:49:10 +0000770 removePhysReg(PhysReg);
Dan Gohman3a4be0f2008-02-10 18:45:23 +0000771 for (const unsigned *AliasSet = TRI->getSubRegisters(PhysReg);
Evan Cheng0ffff1c2006-11-15 20:55:15 +0000772 *AliasSet; ++AliasSet) {
773 if (PhysRegsUsed[*AliasSet] != -2) {
Bill Wendling9d46fcd2006-11-17 02:09:07 +0000774 DOUT << " Last use of "
Bill Wendlingd7a258d2008-02-26 21:47:57 +0000775 << TRI->getName(*AliasSet)
Bill Wendling9d46fcd2006-11-17 02:09:07 +0000776 << "[%reg" << VirtReg <<"], removing it from live set\n";
Evan Cheng0ffff1c2006-11-15 20:55:15 +0000777 removePhysReg(*AliasSet);
778 }
779 }
Chris Lattnerbfa53192003-01-13 00:25:40 +0000780 }
781 }
782
783 // Loop over all of the operands of the instruction, spilling registers that
784 // are defined, and marking explicit destinations in the PhysRegsUsed map.
Alkis Evlogimenos61719d42004-02-26 22:00:20 +0000785 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
786 MachineOperand& MO = MI->getOperand(i);
Evan Cheng8c9c6d72006-11-10 08:43:01 +0000787 if (MO.isRegister() && MO.isDef() && !MO.isImplicit() && MO.getReg() &&
Dan Gohman3a4be0f2008-02-10 18:45:23 +0000788 TargetRegisterInfo::isPhysicalRegister(MO.getReg())) {
Alkis Evlogimenos61719d42004-02-26 22:00:20 +0000789 unsigned Reg = MO.getReg();
Chris Lattner050c64c2006-09-08 19:11:11 +0000790 if (PhysRegsUsed[Reg] == -2) continue; // Something like ESP.
Evan Cheng4bf87f12007-06-26 21:05:13 +0000791 // These are extra physical register defs when a sub-register
792 // is defined (def of a sub-register is a read/mod/write of the
793 // larger registers). Ignore.
794 if (isReadModWriteImplicitDef(MI, MO.getReg())) continue;
795
Chris Lattnera10fff52007-12-31 04:13:23 +0000796 MF->getRegInfo().setPhysRegUsed(Reg);
Evan Cheng0ffff1c2006-11-15 20:55:15 +0000797 spillPhysReg(MBB, MI, Reg, true); // Spill any existing value in reg
Chris Lattnerbfa53192003-01-13 00:25:40 +0000798 PhysRegsUsed[Reg] = 0; // It is free and reserved now
Evan Cheng4bf87f12007-06-26 21:05:13 +0000799 AddToPhysRegsUseOrder(Reg);
800
Dan Gohman3a4be0f2008-02-10 18:45:23 +0000801 for (const unsigned *AliasSet = TRI->getSubRegisters(Reg);
Alkis Evlogimenosebbd66c2004-01-13 06:24:30 +0000802 *AliasSet; ++AliasSet) {
Chris Lattner9b1a6eb2006-09-08 19:03:30 +0000803 if (PhysRegsUsed[*AliasSet] != -2) {
Chris Lattnera10fff52007-12-31 04:13:23 +0000804 MF->getRegInfo().setPhysRegUsed(*AliasSet);
Evan Cheng4bf87f12007-06-26 21:05:13 +0000805 PhysRegsUsed[*AliasSet] = 0; // It is free and reserved now
806 AddToPhysRegsUseOrder(*AliasSet);
Chris Lattner9b1a6eb2006-09-08 19:03:30 +0000807 }
Alkis Evlogimenosebbd66c2004-01-13 06:24:30 +0000808 }
Chris Lattnerbfa53192003-01-13 00:25:40 +0000809 }
Alkis Evlogimenos61719d42004-02-26 22:00:20 +0000810 }
Chris Lattnerbfa53192003-01-13 00:25:40 +0000811
812 // Loop over the implicit defs, spilling them as well.
Jim Laskey4b49c232006-07-21 21:15:20 +0000813 if (TID.ImplicitDefs) {
814 for (const unsigned *ImplicitDefs = TID.ImplicitDefs;
815 *ImplicitDefs; ++ImplicitDefs) {
816 unsigned Reg = *ImplicitDefs;
Evan Cheng4bf87f12007-06-26 21:05:13 +0000817 if (PhysRegsUsed[Reg] != -2) {
Chris Lattner698000b2006-09-19 18:02:01 +0000818 spillPhysReg(MBB, MI, Reg, true);
Evan Cheng4bf87f12007-06-26 21:05:13 +0000819 AddToPhysRegsUseOrder(Reg);
Chris Lattner698000b2006-09-19 18:02:01 +0000820 PhysRegsUsed[Reg] = 0; // It is free and reserved now
821 }
Chris Lattnera10fff52007-12-31 04:13:23 +0000822 MF->getRegInfo().setPhysRegUsed(Reg);
Dan Gohman3a4be0f2008-02-10 18:45:23 +0000823 for (const unsigned *AliasSet = TRI->getSubRegisters(Reg);
Jim Laskey4b49c232006-07-21 21:15:20 +0000824 *AliasSet; ++AliasSet) {
Chris Lattner9b1a6eb2006-09-08 19:03:30 +0000825 if (PhysRegsUsed[*AliasSet] != -2) {
Evan Cheng4bf87f12007-06-26 21:05:13 +0000826 AddToPhysRegsUseOrder(*AliasSet);
827 PhysRegsUsed[*AliasSet] = 0; // It is free and reserved now
Chris Lattnera10fff52007-12-31 04:13:23 +0000828 MF->getRegInfo().setPhysRegUsed(*AliasSet);
Chris Lattner9b1a6eb2006-09-08 19:03:30 +0000829 }
Jim Laskey4b49c232006-07-21 21:15:20 +0000830 }
Alkis Evlogimenosebbd66c2004-01-13 06:24:30 +0000831 }
Alkis Evlogimenos9bced942003-12-13 01:20:58 +0000832 }
Chris Lattnerbfa53192003-01-13 00:25:40 +0000833
Evan Cheng0ffff1c2006-11-15 20:55:15 +0000834 SmallVector<unsigned, 8> DeadDefs;
835 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
836 MachineOperand& MO = MI->getOperand(i);
837 if (MO.isRegister() && MO.isDead())
838 DeadDefs.push_back(MO.getReg());
839 }
840
Chris Lattner101b8cd2002-12-16 16:15:28 +0000841 // Okay, we have allocated all of the source operands and spilled any values
842 // that would be destroyed by defs of this instruction. Loop over the
Chris Lattner24f0f0e2005-01-23 22:51:56 +0000843 // explicit defs and assign them to a register, spilling incoming values if
Chris Lattnerbfa53192003-01-13 00:25:40 +0000844 // we need to scavenge a register.
Chris Lattnerd4627092002-12-18 08:14:26 +0000845 //
Alkis Evlogimenos61719d42004-02-26 22:00:20 +0000846 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
847 MachineOperand& MO = MI->getOperand(i);
Evan Chengddfb10b2006-09-05 20:32:06 +0000848 if (MO.isRegister() && MO.isDef() && MO.getReg() &&
Dan Gohman3a4be0f2008-02-10 18:45:23 +0000849 TargetRegisterInfo::isVirtualRegister(MO.getReg())) {
Alkis Evlogimenos61719d42004-02-26 22:00:20 +0000850 unsigned DestVirtReg = MO.getReg();
Chris Lattner101b8cd2002-12-16 16:15:28 +0000851 unsigned DestPhysReg;
852
Alkis Evlogimenosc17d57b2003-12-18 13:08:52 +0000853 // If DestVirtReg already has a value, use it.
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +0000854 if (!(DestPhysReg = getVirt2PhysRegMapSlot(DestVirtReg)))
Alkis Evlogimenos80da8652004-02-12 02:27:10 +0000855 DestPhysReg = getReg(MBB, MI, DestVirtReg);
Chris Lattnera10fff52007-12-31 04:13:23 +0000856 MF->getRegInfo().setPhysRegUsed(DestPhysReg);
Chris Lattner5a78ee82003-05-12 03:54:14 +0000857 markVirtRegModified(DestVirtReg);
Evan Cheng54c20b552008-01-17 02:08:17 +0000858 getVirtRegLastUse(DestVirtReg) = std::make_pair((MachineInstr*)0, 0);
Bill Wendlingd7a258d2008-02-26 21:47:57 +0000859 DOUT << " Assigning " << TRI->getName(DestPhysReg)
Evan Chenga1977d32008-02-22 19:57:06 +0000860 << " to %reg" << DestVirtReg << "\n";
Dan Gohman70aa89d2008-07-09 20:12:26 +0000861 MO.setReg(DestPhysReg); // Assign the output register
Chris Lattner101b8cd2002-12-16 16:15:28 +0000862 }
Alkis Evlogimenos61719d42004-02-26 22:00:20 +0000863 }
Chris Lattnerd4627092002-12-18 08:14:26 +0000864
Chris Lattner3d894dd2004-02-17 17:49:10 +0000865 // If this instruction defines any registers that are immediately dead,
866 // kill them now.
867 //
Evan Cheng0ffff1c2006-11-15 20:55:15 +0000868 for (unsigned i = 0, e = DeadDefs.size(); i != e; ++i) {
869 unsigned VirtReg = DeadDefs[i];
Chris Lattner3d894dd2004-02-17 17:49:10 +0000870 unsigned PhysReg = VirtReg;
Dan Gohman3a4be0f2008-02-10 18:45:23 +0000871 if (TargetRegisterInfo::isVirtualRegister(VirtReg)) {
Chris Lattner3d894dd2004-02-17 17:49:10 +0000872 unsigned &PhysRegSlot = getVirt2PhysRegMapSlot(VirtReg);
873 PhysReg = PhysRegSlot;
874 assert(PhysReg != 0);
875 PhysRegSlot = 0;
Chris Lattnerb2e73162006-09-08 20:21:31 +0000876 } else if (PhysRegsUsed[PhysReg] == -2) {
877 // Unallocatable register dead, ignore.
878 continue;
Chris Lattner3d894dd2004-02-17 17:49:10 +0000879 }
Chris Lattnerbfa53192003-01-13 00:25:40 +0000880
Chris Lattner3d894dd2004-02-17 17:49:10 +0000881 if (PhysReg) {
Bill Wendlingd7a258d2008-02-26 21:47:57 +0000882 DOUT << " Register " << TRI->getName(PhysReg)
Chris Lattner3d894dd2004-02-17 17:49:10 +0000883 << " [%reg" << VirtReg
Bill Wendling9d46fcd2006-11-17 02:09:07 +0000884 << "] is never used, removing it frame live list\n";
Chris Lattner3d894dd2004-02-17 17:49:10 +0000885 removePhysReg(PhysReg);
Dan Gohman3a4be0f2008-02-10 18:45:23 +0000886 for (const unsigned *AliasSet = TRI->getAliasSet(PhysReg);
Evan Cheng0ffff1c2006-11-15 20:55:15 +0000887 *AliasSet; ++AliasSet) {
888 if (PhysRegsUsed[*AliasSet] != -2) {
Bill Wendlingd7a258d2008-02-26 21:47:57 +0000889 DOUT << " Register " << TRI->getName(*AliasSet)
Evan Cheng0ffff1c2006-11-15 20:55:15 +0000890 << " [%reg" << *AliasSet
Bill Wendling9d46fcd2006-11-17 02:09:07 +0000891 << "] is never used, removing it frame live list\n";
Evan Cheng0ffff1c2006-11-15 20:55:15 +0000892 removePhysReg(*AliasSet);
893 }
894 }
Chris Lattnerd4627092002-12-18 08:14:26 +0000895 }
896 }
Chris Lattner619dfaa2005-11-09 18:22:42 +0000897
898 // Finally, if this is a noop copy instruction, zap it.
899 unsigned SrcReg, DstReg;
Dan Gohman8ab08642008-07-09 19:55:19 +0000900 if (TII->isMoveInstr(*MI, SrcReg, DstReg) && SrcReg == DstReg)
Chris Lattner619dfaa2005-11-09 18:22:42 +0000901 MBB.erase(MI);
Chris Lattner101b8cd2002-12-16 16:15:28 +0000902 }
903
Chris Lattner619dfaa2005-11-09 18:22:42 +0000904 MachineBasicBlock::iterator MI = MBB.getFirstTerminator();
Chris Lattner101b8cd2002-12-16 16:15:28 +0000905
906 // Spill all physical registers holding virtual registers now.
Dan Gohman3a4be0f2008-02-10 18:45:23 +0000907 for (unsigned i = 0, e = TRI->getNumRegs(); i != e; ++i)
Anton Korobeynikov18991d72008-02-20 12:07:57 +0000908 if (PhysRegsUsed[i] != -1 && PhysRegsUsed[i] != -2) {
Chris Lattner490627a2004-02-09 01:26:13 +0000909 if (unsigned VirtReg = PhysRegsUsed[i])
Alkis Evlogimenos80da8652004-02-12 02:27:10 +0000910 spillVirtReg(MBB, MI, VirtReg, i);
Chris Lattner490627a2004-02-09 01:26:13 +0000911 else
912 removePhysReg(i);
Anton Korobeynikov18991d72008-02-20 12:07:57 +0000913 }
Chris Lattner101b8cd2002-12-16 16:15:28 +0000914
Chris Lattner35ecaa72005-11-09 05:28:45 +0000915#if 0
916 // This checking code is very expensive.
Chris Lattner80cbed42004-02-09 02:12:04 +0000917 bool AllOk = true;
Dan Gohman3a4be0f2008-02-10 18:45:23 +0000918 for (unsigned i = TargetRegisterInfo::FirstVirtualRegister,
Chris Lattnera10fff52007-12-31 04:13:23 +0000919 e = MF->getRegInfo().getLastVirtReg(); i <= e; ++i)
Chris Lattner80cbed42004-02-09 02:12:04 +0000920 if (unsigned PR = Virt2PhysRegMap[i]) {
Bill Wendling22e978a2006-12-07 20:04:42 +0000921 cerr << "Register still mapped: " << i << " -> " << PR << "\n";
Chris Lattner80cbed42004-02-09 02:12:04 +0000922 AllOk = false;
923 }
924 assert(AllOk && "Virtual registers still in phys regs?");
925#endif
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +0000926
Chris Lattner931947d2003-08-17 18:01:15 +0000927 // Clear any physical register which appear live at the end of the basic
928 // block, but which do not hold any virtual registers. e.g., the stack
929 // pointer.
930 PhysRegsUseOrder.clear();
Chris Lattner101b8cd2002-12-16 16:15:28 +0000931}
932
933/// runOnMachineFunction - Register allocate the whole function
934///
Bill Wendling31fd60b2007-05-08 19:02:46 +0000935bool RALocal::runOnMachineFunction(MachineFunction &Fn) {
Bill Wendling9d46fcd2006-11-17 02:09:07 +0000936 DOUT << "Machine Function " << "\n";
Chris Lattner101b8cd2002-12-16 16:15:28 +0000937 MF = &Fn;
Chris Lattnerb4e41112002-12-28 20:40:43 +0000938 TM = &Fn.getTarget();
Dan Gohman3a4be0f2008-02-10 18:45:23 +0000939 TRI = TM->getRegisterInfo();
Owen Anderson0ec92e92008-01-07 01:35:56 +0000940 TII = TM->getInstrInfo();
Chris Lattner101b8cd2002-12-16 16:15:28 +0000941
Dan Gohman3a4be0f2008-02-10 18:45:23 +0000942 PhysRegsUsed.assign(TRI->getNumRegs(), -1);
Chris Lattner9b1a6eb2006-09-08 19:03:30 +0000943
944 // At various places we want to efficiently check to see whether a register
945 // is allocatable. To handle this, we mark all unallocatable registers as
946 // being pinned down, permanently.
947 {
Dan Gohman3a4be0f2008-02-10 18:45:23 +0000948 BitVector Allocable = TRI->getAllocatableSet(Fn);
Chris Lattner9b1a6eb2006-09-08 19:03:30 +0000949 for (unsigned i = 0, e = Allocable.size(); i != e; ++i)
950 if (!Allocable[i])
951 PhysRegsUsed[i] = -2; // Mark the reg unallocable.
952 }
Chris Lattner490627a2004-02-09 01:26:13 +0000953
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +0000954 // initialize the virtual->physical register map to have a 'null'
955 // mapping for all virtual registers
Evan Chengdc5b4c52008-01-17 00:35:26 +0000956 unsigned LastVirtReg = MF->getRegInfo().getLastVirtReg();
957 Virt2PhysRegMap.grow(LastVirtReg);
Evan Cheng54c20b552008-01-17 02:08:17 +0000958 Virt2LastUseMap.grow(LastVirtReg);
Dan Gohman3a4be0f2008-02-10 18:45:23 +0000959 VirtRegModified.resize(LastVirtReg+1-TargetRegisterInfo::FirstVirtualRegister);
Owen Anderson45d44752008-07-08 22:24:50 +0000960 UsedInMultipleBlocks.resize(LastVirtReg+1-TargetRegisterInfo::FirstVirtualRegister);
961
Chris Lattner101b8cd2002-12-16 16:15:28 +0000962 // Loop over all of the basic blocks, eliminating virtual register references
963 for (MachineFunction::iterator MBB = Fn.begin(), MBBe = Fn.end();
964 MBB != MBBe; ++MBB)
965 AllocateBasicBlock(*MBB);
966
Chris Lattnerb4e41112002-12-28 20:40:43 +0000967 StackSlotForVirtReg.clear();
Alkis Evlogimenosde6a3812004-02-13 18:20:47 +0000968 PhysRegsUsed.clear();
Chris Lattnerbfa53192003-01-13 00:25:40 +0000969 VirtRegModified.clear();
Owen Anderson45d44752008-07-08 22:24:50 +0000970 UsedInMultipleBlocks.clear();
Chris Lattner80cbed42004-02-09 02:12:04 +0000971 Virt2PhysRegMap.clear();
Evan Cheng54c20b552008-01-17 02:08:17 +0000972 Virt2LastUseMap.clear();
Chris Lattner101b8cd2002-12-16 16:15:28 +0000973 return true;
974}
975
Chris Lattnerc330b982004-01-31 21:27:19 +0000976FunctionPass *llvm::createLocalRegisterAllocator() {
Bill Wendling31fd60b2007-05-08 19:02:46 +0000977 return new RALocal();
Chris Lattner101b8cd2002-12-16 16:15:28 +0000978}