blob: 1367a22e8066151e7534a4cea57a944460c91fce [file] [log] [blame]
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +00001//===-- RegAllocFast.cpp - A fast register allocator for debug code -------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
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
15#define DEBUG_TYPE "regalloc"
16#include "llvm/BasicBlock.h"
17#include "llvm/CodeGen/MachineFunctionPass.h"
18#include "llvm/CodeGen/MachineInstr.h"
Devang Patel459a36b2010-08-04 18:42:02 +000019#include "llvm/CodeGen/MachineInstrBuilder.h"
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +000020#include "llvm/CodeGen/MachineFrameInfo.h"
21#include "llvm/CodeGen/MachineRegisterInfo.h"
22#include "llvm/CodeGen/Passes.h"
23#include "llvm/CodeGen/RegAllocRegistry.h"
24#include "llvm/Target/TargetInstrInfo.h"
25#include "llvm/Target/TargetMachine.h"
26#include "llvm/Support/CommandLine.h"
27#include "llvm/Support/Debug.h"
28#include "llvm/Support/ErrorHandling.h"
29#include "llvm/Support/raw_ostream.h"
30#include "llvm/ADT/DenseMap.h"
31#include "llvm/ADT/IndexedMap.h"
32#include "llvm/ADT/SmallSet.h"
33#include "llvm/ADT/SmallVector.h"
34#include "llvm/ADT/Statistic.h"
35#include "llvm/ADT/STLExtras.h"
36#include <algorithm>
37using namespace llvm;
38
39STATISTIC(NumStores, "Number of stores added");
40STATISTIC(NumLoads , "Number of loads added");
Jakob Stoklund Olesen8a65c512010-05-14 21:55:50 +000041STATISTIC(NumCopies, "Number of copies coalesced");
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +000042
43static RegisterRegAlloc
44 fastRegAlloc("fast", "fast register allocator", createFastRegisterAllocator);
45
46namespace {
47 class RAFast : public MachineFunctionPass {
48 public:
49 static char ID;
Owen Anderson90c579d2010-08-06 18:33:48 +000050 RAFast() : MachineFunctionPass(ID), StackSlotForVirtReg(-1),
Jakob Stoklund Olesene6aba832010-05-17 02:07:32 +000051 isBulkSpilling(false) {}
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +000052 private:
53 const TargetMachine *TM;
54 MachineFunction *MF;
Jakob Stoklund Olesen4bf4baf2010-05-13 00:19:43 +000055 MachineRegisterInfo *MRI;
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +000056 const TargetRegisterInfo *TRI;
57 const TargetInstrInfo *TII;
58
Jakob Stoklund Olesen6fb69d82010-05-17 02:07:22 +000059 // Basic block currently being allocated.
60 MachineBasicBlock *MBB;
61
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +000062 // StackSlotForVirtReg - Maps virtual regs to the frame index where these
63 // values are spilled.
64 IndexedMap<int, VirtReg2IndexFunctor> StackSlotForVirtReg;
65
Jakob Stoklund Olesen76b4d5a2010-05-11 23:24:45 +000066 // Everything we know about a live virtual register.
67 struct LiveReg {
Jakob Stoklund Olesen210e2af2010-05-11 23:24:47 +000068 MachineInstr *LastUse; // Last instr to use reg.
69 unsigned PhysReg; // Currently held here.
70 unsigned short LastOpNum; // OpNum on LastUse.
71 bool Dirty; // Register needs spill.
Jakob Stoklund Olesen76b4d5a2010-05-11 23:24:45 +000072
Jakob Stoklund Olesen210e2af2010-05-11 23:24:47 +000073 LiveReg(unsigned p=0) : LastUse(0), PhysReg(p), LastOpNum(0),
Jakob Stoklund Olesen01dcbf82010-05-17 02:07:29 +000074 Dirty(false) {}
Jakob Stoklund Olesen76b4d5a2010-05-11 23:24:45 +000075 };
76
77 typedef DenseMap<unsigned, LiveReg> LiveRegMap;
Jakob Stoklund Olesen01dcbf82010-05-17 02:07:29 +000078 typedef LiveRegMap::value_type LiveRegEntry;
Jakob Stoklund Olesen76b4d5a2010-05-11 23:24:45 +000079
80 // LiveVirtRegs - This map contains entries for each virtual register
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +000081 // that is currently available in a physical register.
Jakob Stoklund Olesen76b4d5a2010-05-11 23:24:45 +000082 LiveRegMap LiveVirtRegs;
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +000083
Devang Patel459a36b2010-08-04 18:42:02 +000084 DenseMap<unsigned, MachineInstr *> LiveDbgValueMap;
85
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +000086 // RegState - Track the state of a physical register.
87 enum RegState {
88 // A disabled register is not available for allocation, but an alias may
89 // be in use. A register can only be moved out of the disabled state if
90 // all aliases are disabled.
91 regDisabled,
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +000092
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +000093 // A free register is not currently in use and can be allocated
94 // immediately without checking aliases.
95 regFree,
96
97 // A reserved register has been assigned expolicitly (e.g., setting up a
98 // call parameter), and it remains reserved until it is used.
99 regReserved
100
101 // A register state may also be a virtual register number, indication that
102 // the physical register is currently allocated to a virtual register. In
Jakob Stoklund Olesen76b4d5a2010-05-11 23:24:45 +0000103 // that case, LiveVirtRegs contains the inverse mapping.
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000104 };
105
106 // PhysRegState - One of the RegState enums, or a virtreg.
107 std::vector<unsigned> PhysRegState;
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000108
109 // UsedInInstr - BitVector of physregs that are used in the current
110 // instruction, and so cannot be allocated.
111 BitVector UsedInInstr;
112
Jakob Stoklund Olesenefa155f2010-05-14 22:02:56 +0000113 // Allocatable - vector of allocatable physical registers.
114 BitVector Allocatable;
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000115
Jakob Stoklund Olesen6de07172010-06-04 18:08:29 +0000116 // SkippedInstrs - Descriptors of instructions whose clobber list was ignored
117 // because all registers were spilled. It is still necessary to mark all the
118 // clobbered registers as used by the function.
119 SmallPtrSet<const TargetInstrDesc*, 4> SkippedInstrs;
120
Jakob Stoklund Olesene6aba832010-05-17 02:07:32 +0000121 // isBulkSpilling - This flag is set when LiveRegMap will be cleared
122 // completely after spilling all live registers. LiveRegMap entries should
123 // not be erased.
124 bool isBulkSpilling;
Jakob Stoklund Olesen7d4f2592010-05-14 00:02:20 +0000125
Jakob Stoklund Olesen548643c2010-05-17 15:30:32 +0000126 enum {
127 spillClean = 1,
128 spillDirty = 100,
129 spillImpossible = ~0u
130 };
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000131 public:
132 virtual const char *getPassName() const {
133 return "Fast Register Allocator";
134 }
135
136 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
137 AU.setPreservesCFG();
138 AU.addRequiredID(PHIEliminationID);
139 AU.addRequiredID(TwoAddressInstructionPassID);
140 MachineFunctionPass::getAnalysisUsage(AU);
141 }
142
143 private:
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000144 bool runOnMachineFunction(MachineFunction &Fn);
Jakob Stoklund Olesen6fb69d82010-05-17 02:07:22 +0000145 void AllocateBasicBlock();
Jakob Stoklund Olesend843b392010-06-28 18:34:34 +0000146 void handleThroughOperands(MachineInstr *MI,
147 SmallVectorImpl<unsigned> &VirtDead);
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000148 int getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass *RC);
Jakob Stoklund Olesen1e03ff42010-05-15 06:09:08 +0000149 bool isLastUseOfLocalReg(MachineOperand&);
150
Jakob Stoklund Olesen01dcbf82010-05-17 02:07:29 +0000151 void addKillFlag(const LiveReg&);
Jakob Stoklund Olesen844db9c2010-05-17 02:49:15 +0000152 void killVirtReg(LiveRegMap::iterator);
Jakob Stoklund Olesen804291e2010-05-12 18:46:03 +0000153 void killVirtReg(unsigned VirtReg);
Jakob Stoklund Olesen844db9c2010-05-17 02:49:15 +0000154 void spillVirtReg(MachineBasicBlock::iterator MI, LiveRegMap::iterator);
Jakob Stoklund Olesene6aba832010-05-17 02:07:32 +0000155 void spillVirtReg(MachineBasicBlock::iterator MI, unsigned VirtReg);
Jakob Stoklund Olesen4ed10822010-05-14 18:03:25 +0000156
157 void usePhysReg(MachineOperand&);
Jakob Stoklund Olesen6fb69d82010-05-17 02:07:22 +0000158 void definePhysReg(MachineInstr *MI, unsigned PhysReg, RegState NewState);
Jakob Stoklund Olesen548643c2010-05-17 15:30:32 +0000159 unsigned calcSpillCost(unsigned PhysReg) const;
Jakob Stoklund Olesen01dcbf82010-05-17 02:07:29 +0000160 void assignVirtToPhysReg(LiveRegEntry &LRE, unsigned PhysReg);
161 void allocVirtReg(MachineInstr *MI, LiveRegEntry &LRE, unsigned Hint);
Jakob Stoklund Olesen646dd7c2010-05-17 03:26:09 +0000162 LiveRegMap::iterator defineVirtReg(MachineInstr *MI, unsigned OpNum,
163 unsigned VirtReg, unsigned Hint);
164 LiveRegMap::iterator reloadVirtReg(MachineInstr *MI, unsigned OpNum,
165 unsigned VirtReg, unsigned Hint);
Jakob Stoklund Olesen6fb69d82010-05-17 02:07:22 +0000166 void spillAll(MachineInstr *MI);
Jakob Stoklund Olesen0eeb05c2010-05-18 21:10:50 +0000167 bool setPhysReg(MachineInstr *MI, unsigned OpNum, unsigned PhysReg);
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000168 };
169 char RAFast::ID = 0;
170}
171
172/// getStackSpaceFor - This allocates space for the specified virtual register
173/// to be held on the stack.
174int RAFast::getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass *RC) {
175 // Find the location Reg would belong...
176 int SS = StackSlotForVirtReg[VirtReg];
177 if (SS != -1)
178 return SS; // Already has space allocated?
179
180 // Allocate a new stack object for this spill location...
181 int FrameIdx = MF->getFrameInfo()->CreateSpillStackObject(RC->getSize(),
182 RC->getAlignment());
183
184 // Assign the slot.
185 StackSlotForVirtReg[VirtReg] = FrameIdx;
186 return FrameIdx;
187}
188
Jakob Stoklund Olesen1e03ff42010-05-15 06:09:08 +0000189/// isLastUseOfLocalReg - Return true if MO is the only remaining reference to
190/// its virtual register, and it is guaranteed to be a block-local register.
191///
192bool RAFast::isLastUseOfLocalReg(MachineOperand &MO) {
193 // Check for non-debug uses or defs following MO.
194 // This is the most likely way to fail - fast path it.
Jakob Stoklund Olesen844db9c2010-05-17 02:49:15 +0000195 MachineOperand *Next = &MO;
196 while ((Next = Next->getNextOperandForReg()))
197 if (!Next->isDebug())
Jakob Stoklund Olesen1e03ff42010-05-15 06:09:08 +0000198 return false;
199
200 // If the register has ever been spilled or reloaded, we conservatively assume
201 // it is a global register used in multiple blocks.
202 if (StackSlotForVirtReg[MO.getReg()] != -1)
203 return false;
204
205 // Check that the use/def chain has exactly one operand - MO.
206 return &MRI->reg_nodbg_begin(MO.getReg()).getOperand() == &MO;
207}
208
Jakob Stoklund Olesen804291e2010-05-12 18:46:03 +0000209/// addKillFlag - Set kill flags on last use of a virtual register.
Jakob Stoklund Olesen01dcbf82010-05-17 02:07:29 +0000210void RAFast::addKillFlag(const LiveReg &LR) {
211 if (!LR.LastUse) return;
212 MachineOperand &MO = LR.LastUse->getOperand(LR.LastOpNum);
Jakob Stoklund Olesend32e7352010-05-19 21:36:05 +0000213 if (MO.isUse() && !LR.LastUse->isRegTiedToDefOperand(LR.LastOpNum)) {
214 if (MO.getReg() == LR.PhysReg)
Jakob Stoklund Olesen0eeb05c2010-05-18 21:10:50 +0000215 MO.setIsKill();
Jakob Stoklund Olesen0eeb05c2010-05-18 21:10:50 +0000216 else
217 LR.LastUse->addRegisterKilled(LR.PhysReg, TRI, true);
218 }
Jakob Stoklund Olesen804291e2010-05-12 18:46:03 +0000219}
220
221/// killVirtReg - Mark virtreg as no longer available.
Jakob Stoklund Olesen844db9c2010-05-17 02:49:15 +0000222void RAFast::killVirtReg(LiveRegMap::iterator LRI) {
223 addKillFlag(LRI->second);
224 const LiveReg &LR = LRI->second;
225 assert(PhysRegState[LR.PhysReg] == LRI->first && "Broken RegState mapping");
Jakob Stoklund Olesen804291e2010-05-12 18:46:03 +0000226 PhysRegState[LR.PhysReg] = regFree;
Jakob Stoklund Olesene6aba832010-05-17 02:07:32 +0000227 // Erase from LiveVirtRegs unless we're spilling in bulk.
228 if (!isBulkSpilling)
Jakob Stoklund Olesen844db9c2010-05-17 02:49:15 +0000229 LiveVirtRegs.erase(LRI);
Jakob Stoklund Olesen76b4d5a2010-05-11 23:24:45 +0000230}
231
232/// killVirtReg - Mark virtreg as no longer available.
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000233void RAFast::killVirtReg(unsigned VirtReg) {
234 assert(TargetRegisterInfo::isVirtualRegister(VirtReg) &&
235 "killVirtReg needs a virtual register");
Jakob Stoklund Olesen844db9c2010-05-17 02:49:15 +0000236 LiveRegMap::iterator LRI = LiveVirtRegs.find(VirtReg);
237 if (LRI != LiveVirtRegs.end())
238 killVirtReg(LRI);
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000239}
240
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000241/// spillVirtReg - This method spills the value specified by VirtReg into the
242/// corresponding stack slot if needed. If isKill is set, the register is also
243/// killed.
Jakob Stoklund Olesene6aba832010-05-17 02:07:32 +0000244void RAFast::spillVirtReg(MachineBasicBlock::iterator MI, unsigned VirtReg) {
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000245 assert(TargetRegisterInfo::isVirtualRegister(VirtReg) &&
246 "Spilling a physical register is illegal!");
Jakob Stoklund Olesen844db9c2010-05-17 02:49:15 +0000247 LiveRegMap::iterator LRI = LiveVirtRegs.find(VirtReg);
248 assert(LRI != LiveVirtRegs.end() && "Spilling unmapped virtual register");
249 spillVirtReg(MI, LRI);
Jakob Stoklund Olesen7d4f2592010-05-14 00:02:20 +0000250}
251
252/// spillVirtReg - Do the actual work of spilling.
Jakob Stoklund Olesen6fb69d82010-05-17 02:07:22 +0000253void RAFast::spillVirtReg(MachineBasicBlock::iterator MI,
Jakob Stoklund Olesen844db9c2010-05-17 02:49:15 +0000254 LiveRegMap::iterator LRI) {
255 LiveReg &LR = LRI->second;
256 assert(PhysRegState[LR.PhysReg] == LRI->first && "Broken RegState mapping");
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000257
Jakob Stoklund Olesen210e2af2010-05-11 23:24:47 +0000258 if (LR.Dirty) {
Jakob Stoklund Olesene6aba832010-05-17 02:07:32 +0000259 // If this physreg is used by the instruction, we want to kill it on the
260 // instruction, not on the spill.
Jakob Stoklund Olesen844db9c2010-05-17 02:49:15 +0000261 bool SpillKill = LR.LastUse != MI;
Jakob Stoklund Olesen210e2af2010-05-11 23:24:47 +0000262 LR.Dirty = false;
Jakob Stoklund Olesen844db9c2010-05-17 02:49:15 +0000263 DEBUG(dbgs() << "Spilling %reg" << LRI->first
Jakob Stoklund Olesen7d4f2592010-05-14 00:02:20 +0000264 << " in " << TRI->getName(LR.PhysReg));
Jakob Stoklund Olesen844db9c2010-05-17 02:49:15 +0000265 const TargetRegisterClass *RC = MRI->getRegClass(LRI->first);
266 int FI = getStackSpaceFor(LRI->first, RC);
Jakob Stoklund Olesen6fb69d82010-05-17 02:07:22 +0000267 DEBUG(dbgs() << " to stack slot #" << FI << "\n");
Jakob Stoklund Olesen844db9c2010-05-17 02:49:15 +0000268 TII->storeRegToStackSlot(*MBB, MI, LR.PhysReg, SpillKill, FI, RC, TRI);
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000269 ++NumStores; // Update statistics
Jakob Stoklund Olesen76b4d5a2010-05-11 23:24:45 +0000270
Devang Patel459a36b2010-08-04 18:42:02 +0000271 // If this register is used by DBG_VALUE then insert new DBG_VALUE to
272 // identify spilled location as the place to find corresponding variable's
273 // value.
274 if (MachineInstr *DBG = LiveDbgValueMap.lookup(LRI->first)) {
275 const MDNode *MDPtr =
276 DBG->getOperand(DBG->getNumOperands()-1).getMetadata();
277 int64_t Offset = 0;
278 if (DBG->getOperand(1).isImm())
279 Offset = DBG->getOperand(1).getImm();
Devang Patel31defcf2010-08-06 00:26:18 +0000280 DebugLoc DL;
281 if (MI == MBB->end()) {
282 // If MI is at basic block end then use last instruction's location.
283 MachineBasicBlock::iterator EI = MI;
284 DL = (--EI)->getDebugLoc();
285 }
286 else
287 DL = MI->getDebugLoc();
Devang Patel459a36b2010-08-04 18:42:02 +0000288 if (MachineInstr *NewDV =
289 TII->emitFrameIndexDebugValue(*MF, FI, Offset, MDPtr, DL)) {
290 MachineBasicBlock *MBB = DBG->getParent();
291 MBB->insert(MI, NewDV);
292 DEBUG(dbgs() << "Inserting debug info due to spill:" << "\n" << *NewDV);
293 LiveDbgValueMap[LRI->first] = NewDV;
294 }
295 }
Jakob Stoklund Olesen844db9c2010-05-17 02:49:15 +0000296 if (SpillKill)
Jakob Stoklund Olesen210e2af2010-05-11 23:24:47 +0000297 LR.LastUse = 0; // Don't kill register again
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000298 }
Jakob Stoklund Olesen844db9c2010-05-17 02:49:15 +0000299 killVirtReg(LRI);
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000300}
301
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000302/// spillAll - Spill all dirty virtregs without killing them.
Jakob Stoklund Olesen6fb69d82010-05-17 02:07:22 +0000303void RAFast::spillAll(MachineInstr *MI) {
Jakob Stoklund Olesenf3ea06b2010-05-17 15:30:37 +0000304 if (LiveVirtRegs.empty()) return;
Jakob Stoklund Olesene6aba832010-05-17 02:07:32 +0000305 isBulkSpilling = true;
Jakob Stoklund Olesen29979852010-05-17 20:01:22 +0000306 // The LiveRegMap is keyed by an unsigned (the virtreg number), so the order
307 // of spilling here is deterministic, if arbitrary.
308 for (LiveRegMap::iterator i = LiveVirtRegs.begin(), e = LiveVirtRegs.end();
309 i != e; ++i)
Jakob Stoklund Olesene6aba832010-05-17 02:07:32 +0000310 spillVirtReg(MI, i);
311 LiveVirtRegs.clear();
312 isBulkSpilling = false;
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000313}
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000314
Jakob Stoklund Olesen4ed10822010-05-14 18:03:25 +0000315/// usePhysReg - Handle the direct use of a physical register.
316/// Check that the register is not used by a virtreg.
317/// Kill the physreg, marking it free.
318/// This may add implicit kills to MO->getParent() and invalidate MO.
319void RAFast::usePhysReg(MachineOperand &MO) {
320 unsigned PhysReg = MO.getReg();
321 assert(TargetRegisterInfo::isPhysicalRegister(PhysReg) &&
322 "Bad usePhysReg operand");
323
324 switch (PhysRegState[PhysReg]) {
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000325 case regDisabled:
326 break;
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000327 case regReserved:
328 PhysRegState[PhysReg] = regFree;
Jakob Stoklund Olesen4ed10822010-05-14 18:03:25 +0000329 // Fall through
330 case regFree:
331 UsedInInstr.set(PhysReg);
332 MO.setIsKill();
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000333 return;
334 default:
Jakob Stoklund Olesen4ed10822010-05-14 18:03:25 +0000335 // The physreg was allocated to a virtual register. That means to value we
336 // wanted has been clobbered.
337 llvm_unreachable("Instruction uses an allocated register");
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000338 }
339
Jakob Stoklund Olesen4ed10822010-05-14 18:03:25 +0000340 // Maybe a superregister is reserved?
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000341 for (const unsigned *AS = TRI->getAliasSet(PhysReg);
342 unsigned Alias = *AS; ++AS) {
Jakob Stoklund Olesen4ed10822010-05-14 18:03:25 +0000343 switch (PhysRegState[Alias]) {
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000344 case regDisabled:
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000345 break;
346 case regReserved:
Jakob Stoklund Olesen4ed10822010-05-14 18:03:25 +0000347 assert(TRI->isSuperRegister(PhysReg, Alias) &&
348 "Instruction is not using a subregister of a reserved register");
349 // Leave the superregister in the working set.
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000350 PhysRegState[Alias] = regFree;
Jakob Stoklund Olesen4ed10822010-05-14 18:03:25 +0000351 UsedInInstr.set(Alias);
352 MO.getParent()->addRegisterKilled(Alias, TRI, true);
353 return;
354 case regFree:
355 if (TRI->isSuperRegister(PhysReg, Alias)) {
356 // Leave the superregister in the working set.
357 UsedInInstr.set(Alias);
358 MO.getParent()->addRegisterKilled(Alias, TRI, true);
359 return;
360 }
361 // Some other alias was in the working set - clear it.
362 PhysRegState[Alias] = regDisabled;
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000363 break;
364 default:
Jakob Stoklund Olesen4ed10822010-05-14 18:03:25 +0000365 llvm_unreachable("Instruction uses an alias of an allocated register");
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000366 }
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000367 }
Jakob Stoklund Olesen4ed10822010-05-14 18:03:25 +0000368
369 // All aliases are disabled, bring register into working set.
370 PhysRegState[PhysReg] = regFree;
371 UsedInInstr.set(PhysReg);
372 MO.setIsKill();
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000373}
374
Jakob Stoklund Olesen4ed10822010-05-14 18:03:25 +0000375/// definePhysReg - Mark PhysReg as reserved or free after spilling any
376/// virtregs. This is very similar to defineVirtReg except the physreg is
377/// reserved instead of allocated.
Jakob Stoklund Olesen6fb69d82010-05-17 02:07:22 +0000378void RAFast::definePhysReg(MachineInstr *MI, unsigned PhysReg,
379 RegState NewState) {
Jakob Stoklund Olesen4ed10822010-05-14 18:03:25 +0000380 UsedInInstr.set(PhysReg);
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000381 switch (unsigned VirtReg = PhysRegState[PhysReg]) {
382 case regDisabled:
383 break;
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000384 default:
Jakob Stoklund Olesene6aba832010-05-17 02:07:32 +0000385 spillVirtReg(MI, VirtReg);
Jakob Stoklund Olesen4ed10822010-05-14 18:03:25 +0000386 // Fall through.
387 case regFree:
388 case regReserved:
389 PhysRegState[PhysReg] = NewState;
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000390 return;
391 }
392
Jakob Stoklund Olesen4ed10822010-05-14 18:03:25 +0000393 // This is a disabled register, disable all aliases.
394 PhysRegState[PhysReg] = NewState;
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000395 for (const unsigned *AS = TRI->getAliasSet(PhysReg);
396 unsigned Alias = *AS; ++AS) {
Jakob Stoklund Olesen4ed10822010-05-14 18:03:25 +0000397 UsedInInstr.set(Alias);
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000398 switch (unsigned VirtReg = PhysRegState[Alias]) {
399 case regDisabled:
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000400 break;
401 default:
Jakob Stoklund Olesene6aba832010-05-17 02:07:32 +0000402 spillVirtReg(MI, VirtReg);
Jakob Stoklund Olesen4ed10822010-05-14 18:03:25 +0000403 // Fall through.
404 case regFree:
405 case regReserved:
406 PhysRegState[Alias] = regDisabled;
407 if (TRI->isSuperRegister(PhysReg, Alias))
408 return;
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000409 break;
410 }
411 }
412}
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000413
Jakob Stoklund Olesen4ed10822010-05-14 18:03:25 +0000414
Jakob Stoklund Olesen548643c2010-05-17 15:30:32 +0000415// calcSpillCost - Return the cost of spilling clearing out PhysReg and
416// aliases so it is free for allocation.
417// Returns 0 when PhysReg is free or disabled with all aliases disabled - it
418// can be allocated directly.
419// Returns spillImpossible when PhysReg or an alias can't be spilled.
420unsigned RAFast::calcSpillCost(unsigned PhysReg) const {
Jakob Stoklund Olesenb8acb7b2010-05-17 21:02:08 +0000421 if (UsedInInstr.test(PhysReg))
422 return spillImpossible;
Jakob Stoklund Olesen548643c2010-05-17 15:30:32 +0000423 switch (unsigned VirtReg = PhysRegState[PhysReg]) {
424 case regDisabled:
425 break;
426 case regFree:
427 return 0;
428 case regReserved:
429 return spillImpossible;
430 default:
431 return LiveVirtRegs.lookup(VirtReg).Dirty ? spillDirty : spillClean;
432 }
433
434 // This is a disabled register, add up const of aliases.
435 unsigned Cost = 0;
436 for (const unsigned *AS = TRI->getAliasSet(PhysReg);
437 unsigned Alias = *AS; ++AS) {
Jakob Stoklund Olesenb8acb7b2010-05-17 21:02:08 +0000438 if (UsedInInstr.test(Alias))
439 return spillImpossible;
Jakob Stoklund Olesen548643c2010-05-17 15:30:32 +0000440 switch (unsigned VirtReg = PhysRegState[Alias]) {
441 case regDisabled:
442 break;
443 case regFree:
444 ++Cost;
445 break;
446 case regReserved:
447 return spillImpossible;
448 default:
449 Cost += LiveVirtRegs.lookup(VirtReg).Dirty ? spillDirty : spillClean;
450 break;
451 }
452 }
453 return Cost;
454}
455
456
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000457/// assignVirtToPhysReg - This method updates local state so that we know
458/// that PhysReg is the proper container for VirtReg now. The physical
459/// register must not be used for anything else when this is called.
460///
Jakob Stoklund Olesen01dcbf82010-05-17 02:07:29 +0000461void RAFast::assignVirtToPhysReg(LiveRegEntry &LRE, unsigned PhysReg) {
462 DEBUG(dbgs() << "Assigning %reg" << LRE.first << " to "
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000463 << TRI->getName(PhysReg) << "\n");
Jakob Stoklund Olesen01dcbf82010-05-17 02:07:29 +0000464 PhysRegState[PhysReg] = LRE.first;
465 assert(!LRE.second.PhysReg && "Already assigned a physreg");
466 LRE.second.PhysReg = PhysReg;
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000467}
468
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000469/// allocVirtReg - Allocate a physical register for VirtReg.
Jakob Stoklund Olesen01dcbf82010-05-17 02:07:29 +0000470void RAFast::allocVirtReg(MachineInstr *MI, LiveRegEntry &LRE, unsigned Hint) {
Jakob Stoklund Olesen01dcbf82010-05-17 02:07:29 +0000471 const unsigned VirtReg = LRE.first;
472
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000473 assert(TargetRegisterInfo::isVirtualRegister(VirtReg) &&
474 "Can only allocate virtual registers");
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000475
Jakob Stoklund Olesen4bf4baf2010-05-13 00:19:43 +0000476 const TargetRegisterClass *RC = MRI->getRegClass(VirtReg);
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000477
Jakob Stoklund Olesen4bf4baf2010-05-13 00:19:43 +0000478 // Ignore invalid hints.
479 if (Hint && (!TargetRegisterInfo::isPhysicalRegister(Hint) ||
Jakob Stoklund Olesenb8acb7b2010-05-17 21:02:08 +0000480 !RC->contains(Hint) || !Allocatable.test(Hint)))
Jakob Stoklund Olesen4bf4baf2010-05-13 00:19:43 +0000481 Hint = 0;
482
Jakob Stoklund Olesen4bf4baf2010-05-13 00:19:43 +0000483 // Take hint when possible.
484 if (Hint) {
Jakob Stoklund Olesen548643c2010-05-17 15:30:32 +0000485 switch(calcSpillCost(Hint)) {
Jakob Stoklund Olesen4bf4baf2010-05-13 00:19:43 +0000486 default:
Jakob Stoklund Olesen548643c2010-05-17 15:30:32 +0000487 definePhysReg(MI, Hint, regFree);
Jakob Stoklund Olesen4bf4baf2010-05-13 00:19:43 +0000488 // Fall through.
Jakob Stoklund Olesen548643c2010-05-17 15:30:32 +0000489 case 0:
Jakob Stoklund Olesen01dcbf82010-05-17 02:07:29 +0000490 return assignVirtToPhysReg(LRE, Hint);
Jakob Stoklund Olesen548643c2010-05-17 15:30:32 +0000491 case spillImpossible:
492 break;
Jakob Stoklund Olesen4bf4baf2010-05-13 00:19:43 +0000493 }
494 }
495
Jakob Stoklund Olesen548643c2010-05-17 15:30:32 +0000496 TargetRegisterClass::iterator AOB = RC->allocation_order_begin(*MF);
497 TargetRegisterClass::iterator AOE = RC->allocation_order_end(*MF);
498
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000499 // First try to find a completely free register.
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000500 for (TargetRegisterClass::iterator I = AOB; I != AOE; ++I) {
501 unsigned PhysReg = *I;
Jakob Stoklund Olesen548643c2010-05-17 15:30:32 +0000502 if (PhysRegState[PhysReg] == regFree && !UsedInInstr.test(PhysReg))
503 return assignVirtToPhysReg(LRE, PhysReg);
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000504 }
505
Jakob Stoklund Olesenc9c4dac2010-05-13 20:43:17 +0000506 DEBUG(dbgs() << "Allocating %reg" << VirtReg << " from " << RC->getName()
Jakob Stoklund Olesen548643c2010-05-17 15:30:32 +0000507 << "\n");
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000508
Jakob Stoklund Olesen548643c2010-05-17 15:30:32 +0000509 unsigned BestReg = 0, BestCost = spillImpossible;
510 for (TargetRegisterClass::iterator I = AOB; I != AOE; ++I) {
511 unsigned Cost = calcSpillCost(*I);
Jakob Stoklund Olesenf3ea06b2010-05-17 15:30:37 +0000512 // Cost is 0 when all aliases are already disabled.
513 if (Cost == 0)
514 return assignVirtToPhysReg(LRE, *I);
515 if (Cost < BestCost)
516 BestReg = *I, BestCost = Cost;
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000517 }
518
519 if (BestReg) {
Jakob Stoklund Olesenf3ea06b2010-05-17 15:30:37 +0000520 definePhysReg(MI, BestReg, regFree);
Jakob Stoklund Olesen01dcbf82010-05-17 02:07:29 +0000521 return assignVirtToPhysReg(LRE, BestReg);
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000522 }
523
524 // Nothing we can do.
525 std::string msg;
526 raw_string_ostream Msg(msg);
527 Msg << "Ran out of registers during register allocation!";
528 if (MI->isInlineAsm()) {
529 Msg << "\nPlease check your inline asm statement for "
530 << "invalid constraints:\n";
531 MI->print(Msg, TM);
532 }
533 report_fatal_error(Msg.str());
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000534}
535
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000536/// defineVirtReg - Allocate a register for VirtReg and mark it as dirty.
Jakob Stoklund Olesen646dd7c2010-05-17 03:26:09 +0000537RAFast::LiveRegMap::iterator
538RAFast::defineVirtReg(MachineInstr *MI, unsigned OpNum,
539 unsigned VirtReg, unsigned Hint) {
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000540 assert(TargetRegisterInfo::isVirtualRegister(VirtReg) &&
541 "Not a virtual register");
Jakob Stoklund Olesen844db9c2010-05-17 02:49:15 +0000542 LiveRegMap::iterator LRI;
Jakob Stoklund Olesen01dcbf82010-05-17 02:07:29 +0000543 bool New;
Jakob Stoklund Olesen844db9c2010-05-17 02:49:15 +0000544 tie(LRI, New) = LiveVirtRegs.insert(std::make_pair(VirtReg, LiveReg()));
545 LiveReg &LR = LRI->second;
Jakob Stoklund Olesen0c9e4f52010-05-17 04:50:57 +0000546 if (New) {
547 // If there is no hint, peek at the only use of this register.
548 if ((!Hint || !TargetRegisterInfo::isPhysicalRegister(Hint)) &&
549 MRI->hasOneNonDBGUse(VirtReg)) {
Jakob Stoklund Olesen273f7e42010-07-03 00:04:37 +0000550 const MachineInstr &UseMI = *MRI->use_nodbg_begin(VirtReg);
Jakob Stoklund Olesen0c9e4f52010-05-17 04:50:57 +0000551 // It's a copy, use the destination register as a hint.
Jakob Stoklund Olesen273f7e42010-07-03 00:04:37 +0000552 if (UseMI.isCopyLike())
553 Hint = UseMI.getOperand(0).getReg();
Jakob Stoklund Olesen0c9e4f52010-05-17 04:50:57 +0000554 }
Jakob Stoklund Olesen844db9c2010-05-17 02:49:15 +0000555 allocVirtReg(MI, *LRI, Hint);
Jakob Stoklund Olesend1303d22010-06-29 19:15:30 +0000556 } else if (LR.LastUse) {
Jakob Stoklund Olesen0eeb05c2010-05-18 21:10:50 +0000557 // Redefining a live register - kill at the last use, unless it is this
558 // instruction defining VirtReg multiple times.
559 if (LR.LastUse != MI || LR.LastUse->getOperand(LR.LastOpNum).isUse())
560 addKillFlag(LR);
561 }
Jakob Stoklund Olesen01dcbf82010-05-17 02:07:29 +0000562 assert(LR.PhysReg && "Register not assigned");
Jakob Stoklund Olesen210e2af2010-05-11 23:24:47 +0000563 LR.LastUse = MI;
564 LR.LastOpNum = OpNum;
565 LR.Dirty = true;
566 UsedInInstr.set(LR.PhysReg);
Jakob Stoklund Olesen646dd7c2010-05-17 03:26:09 +0000567 return LRI;
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000568}
569
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000570/// reloadVirtReg - Make sure VirtReg is available in a physreg and return it.
Jakob Stoklund Olesen646dd7c2010-05-17 03:26:09 +0000571RAFast::LiveRegMap::iterator
572RAFast::reloadVirtReg(MachineInstr *MI, unsigned OpNum,
573 unsigned VirtReg, unsigned Hint) {
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000574 assert(TargetRegisterInfo::isVirtualRegister(VirtReg) &&
575 "Not a virtual register");
Jakob Stoklund Olesen844db9c2010-05-17 02:49:15 +0000576 LiveRegMap::iterator LRI;
Jakob Stoklund Olesen01dcbf82010-05-17 02:07:29 +0000577 bool New;
Jakob Stoklund Olesen844db9c2010-05-17 02:49:15 +0000578 tie(LRI, New) = LiveVirtRegs.insert(std::make_pair(VirtReg, LiveReg()));
579 LiveReg &LR = LRI->second;
Jakob Stoklund Olesenac3e5292010-05-17 03:26:06 +0000580 MachineOperand &MO = MI->getOperand(OpNum);
Jakob Stoklund Olesen01dcbf82010-05-17 02:07:29 +0000581 if (New) {
Jakob Stoklund Olesen844db9c2010-05-17 02:49:15 +0000582 allocVirtReg(MI, *LRI, Hint);
Jakob Stoklund Olesen4bf4baf2010-05-13 00:19:43 +0000583 const TargetRegisterClass *RC = MRI->getRegClass(VirtReg);
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000584 int FrameIndex = getStackSpaceFor(VirtReg, RC);
Jakob Stoklund Olesenc9c4dac2010-05-13 20:43:17 +0000585 DEBUG(dbgs() << "Reloading %reg" << VirtReg << " into "
Jakob Stoklund Olesen01dcbf82010-05-17 02:07:29 +0000586 << TRI->getName(LR.PhysReg) << "\n");
587 TII->loadRegFromStackSlot(*MBB, MI, LR.PhysReg, FrameIndex, RC, TRI);
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000588 ++NumLoads;
Jakob Stoklund Olesen01dcbf82010-05-17 02:07:29 +0000589 } else if (LR.Dirty) {
Jakob Stoklund Olesen1e03ff42010-05-15 06:09:08 +0000590 if (isLastUseOfLocalReg(MO)) {
591 DEBUG(dbgs() << "Killing last use: " << MO << "\n");
Jakob Stoklund Olesend1303d22010-06-29 19:15:30 +0000592 if (MO.isUse())
593 MO.setIsKill();
594 else
595 MO.setIsDead();
Jakob Stoklund Olesen1e03ff42010-05-15 06:09:08 +0000596 } else if (MO.isKill()) {
597 DEBUG(dbgs() << "Clearing dubious kill: " << MO << "\n");
598 MO.setIsKill(false);
Jakob Stoklund Olesend1303d22010-06-29 19:15:30 +0000599 } else if (MO.isDead()) {
600 DEBUG(dbgs() << "Clearing dubious dead: " << MO << "\n");
601 MO.setIsDead(false);
Jakob Stoklund Olesen1e03ff42010-05-15 06:09:08 +0000602 }
Jakob Stoklund Olesenac3e5292010-05-17 03:26:06 +0000603 } else if (MO.isKill()) {
604 // We must remove kill flags from uses of reloaded registers because the
605 // register would be killed immediately, and there might be a second use:
606 // %foo = OR %x<kill>, %x
607 // This would cause a second reload of %x into a different register.
608 DEBUG(dbgs() << "Clearing clean kill: " << MO << "\n");
609 MO.setIsKill(false);
Jakob Stoklund Olesend1303d22010-06-29 19:15:30 +0000610 } else if (MO.isDead()) {
611 DEBUG(dbgs() << "Clearing clean dead: " << MO << "\n");
612 MO.setIsDead(false);
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000613 }
Jakob Stoklund Olesen01dcbf82010-05-17 02:07:29 +0000614 assert(LR.PhysReg && "Register not assigned");
Jakob Stoklund Olesen210e2af2010-05-11 23:24:47 +0000615 LR.LastUse = MI;
616 LR.LastOpNum = OpNum;
617 UsedInInstr.set(LR.PhysReg);
Jakob Stoklund Olesen646dd7c2010-05-17 03:26:09 +0000618 return LRI;
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000619}
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000620
Jakob Stoklund Olesen0eeb05c2010-05-18 21:10:50 +0000621// setPhysReg - Change operand OpNum in MI the refer the PhysReg, considering
622// subregs. This may invalidate any operand pointers.
623// Return true if the operand kills its register.
624bool RAFast::setPhysReg(MachineInstr *MI, unsigned OpNum, unsigned PhysReg) {
625 MachineOperand &MO = MI->getOperand(OpNum);
Jakob Stoklund Olesen41e14012010-05-17 02:49:21 +0000626 if (!MO.getSubReg()) {
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000627 MO.setReg(PhysReg);
Jakob Stoklund Olesen41e14012010-05-17 02:49:21 +0000628 return MO.isKill() || MO.isDead();
629 }
630
631 // Handle subregister index.
632 MO.setReg(PhysReg ? TRI->getSubReg(PhysReg, MO.getSubReg()) : 0);
633 MO.setSubReg(0);
Jakob Stoklund Olesend32e7352010-05-19 21:36:05 +0000634
635 // A kill flag implies killing the full register. Add corresponding super
636 // register kill.
637 if (MO.isKill()) {
638 MI->addRegisterKilled(PhysReg, TRI, true);
Jakob Stoklund Olesen41e14012010-05-17 02:49:21 +0000639 return true;
640 }
Jakob Stoklund Olesend32e7352010-05-19 21:36:05 +0000641 return MO.isDead();
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000642}
643
Jakob Stoklund Olesend843b392010-06-28 18:34:34 +0000644// Handle special instruction operand like early clobbers and tied ops when
645// there are additional physreg defines.
646void RAFast::handleThroughOperands(MachineInstr *MI,
647 SmallVectorImpl<unsigned> &VirtDead) {
648 DEBUG(dbgs() << "Scanning for through registers:");
649 SmallSet<unsigned, 8> ThroughRegs;
650 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
651 MachineOperand &MO = MI->getOperand(i);
652 if (!MO.isReg()) continue;
653 unsigned Reg = MO.getReg();
654 if (!Reg || TargetRegisterInfo::isPhysicalRegister(Reg)) continue;
Jakob Stoklund Olesend1303d22010-06-29 19:15:30 +0000655 if (MO.isEarlyClobber() || MI->isRegTiedToDefOperand(i) ||
656 (MO.getSubReg() && MI->readsVirtualRegister(Reg))) {
Jakob Stoklund Olesend843b392010-06-28 18:34:34 +0000657 if (ThroughRegs.insert(Reg))
658 DEBUG(dbgs() << " %reg" << Reg);
659 }
660 }
661
662 // If any physreg defines collide with preallocated through registers,
663 // we must spill and reallocate.
664 DEBUG(dbgs() << "\nChecking for physdef collisions.\n");
665 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
666 MachineOperand &MO = MI->getOperand(i);
667 if (!MO.isReg() || !MO.isDef()) continue;
668 unsigned Reg = MO.getReg();
669 if (!Reg || !TargetRegisterInfo::isPhysicalRegister(Reg)) continue;
670 UsedInInstr.set(Reg);
671 if (ThroughRegs.count(PhysRegState[Reg]))
672 definePhysReg(MI, Reg, regFree);
673 for (const unsigned *AS = TRI->getAliasSet(Reg); *AS; ++AS) {
674 UsedInInstr.set(*AS);
675 if (ThroughRegs.count(PhysRegState[*AS]))
676 definePhysReg(MI, *AS, regFree);
677 }
678 }
679
Jakob Stoklund Olesend1303d22010-06-29 19:15:30 +0000680 SmallVector<unsigned, 8> PartialDefs;
Jakob Stoklund Olesend843b392010-06-28 18:34:34 +0000681 DEBUG(dbgs() << "Allocating tied uses and early clobbers.\n");
682 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
683 MachineOperand &MO = MI->getOperand(i);
684 if (!MO.isReg()) continue;
685 unsigned Reg = MO.getReg();
686 if (!Reg || TargetRegisterInfo::isPhysicalRegister(Reg)) continue;
687 if (MO.isUse()) {
688 unsigned DefIdx = 0;
689 if (!MI->isRegTiedToDefOperand(i, &DefIdx)) continue;
690 DEBUG(dbgs() << "Operand " << i << "("<< MO << ") is tied to operand "
691 << DefIdx << ".\n");
692 LiveRegMap::iterator LRI = reloadVirtReg(MI, i, Reg, 0);
693 unsigned PhysReg = LRI->second.PhysReg;
694 setPhysReg(MI, i, PhysReg);
Jakob Stoklund Olesend1303d22010-06-29 19:15:30 +0000695 // Note: we don't update the def operand yet. That would cause the normal
696 // def-scan to attempt spilling.
697 } else if (MO.getSubReg() && MI->readsVirtualRegister(Reg)) {
698 DEBUG(dbgs() << "Partial redefine: " << MO << "\n");
699 // Reload the register, but don't assign to the operand just yet.
700 // That would confuse the later phys-def processing pass.
701 LiveRegMap::iterator LRI = reloadVirtReg(MI, i, Reg, 0);
702 PartialDefs.push_back(LRI->second.PhysReg);
Jakob Stoklund Olesend843b392010-06-28 18:34:34 +0000703 } else if (MO.isEarlyClobber()) {
704 // Note: defineVirtReg may invalidate MO.
705 LiveRegMap::iterator LRI = defineVirtReg(MI, i, Reg, 0);
706 unsigned PhysReg = LRI->second.PhysReg;
707 if (setPhysReg(MI, i, PhysReg))
708 VirtDead.push_back(Reg);
709 }
710 }
711
712 // Restore UsedInInstr to a state usable for allocating normal virtual uses.
713 UsedInInstr.reset();
714 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
715 MachineOperand &MO = MI->getOperand(i);
716 if (!MO.isReg() || (MO.isDef() && !MO.isEarlyClobber())) continue;
717 unsigned Reg = MO.getReg();
718 if (!Reg || !TargetRegisterInfo::isPhysicalRegister(Reg)) continue;
719 UsedInInstr.set(Reg);
720 for (const unsigned *AS = TRI->getAliasSet(Reg); *AS; ++AS)
721 UsedInInstr.set(*AS);
722 }
Jakob Stoklund Olesend1303d22010-06-29 19:15:30 +0000723
724 // Also mark PartialDefs as used to avoid reallocation.
725 for (unsigned i = 0, e = PartialDefs.size(); i != e; ++i)
726 UsedInInstr.set(PartialDefs[i]);
Jakob Stoklund Olesend843b392010-06-28 18:34:34 +0000727}
728
Jakob Stoklund Olesen6fb69d82010-05-17 02:07:22 +0000729void RAFast::AllocateBasicBlock() {
730 DEBUG(dbgs() << "\nAllocating " << *MBB);
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000731
732 PhysRegState.assign(TRI->getNumRegs(), regDisabled);
Jakob Stoklund Olesen76b4d5a2010-05-11 23:24:45 +0000733 assert(LiveVirtRegs.empty() && "Mapping not cleared form last block?");
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000734
Jakob Stoklund Olesen6fb69d82010-05-17 02:07:22 +0000735 MachineBasicBlock::iterator MII = MBB->begin();
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000736
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000737 // Add live-in registers as live.
Jakob Stoklund Olesen6fb69d82010-05-17 02:07:22 +0000738 for (MachineBasicBlock::livein_iterator I = MBB->livein_begin(),
739 E = MBB->livein_end(); I != E; ++I)
740 definePhysReg(MII, *I, regReserved);
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000741
Jakob Stoklund Olesend843b392010-06-28 18:34:34 +0000742 SmallVector<unsigned, 8> VirtDead;
Jakob Stoklund Olesen7ff82e12010-05-14 04:30:51 +0000743 SmallVector<MachineInstr*, 32> Coalesced;
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000744
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000745 // Otherwise, sequentially allocate each instruction in the MBB.
Jakob Stoklund Olesen6fb69d82010-05-17 02:07:22 +0000746 while (MII != MBB->end()) {
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000747 MachineInstr *MI = MII++;
748 const TargetInstrDesc &TID = MI->getDesc();
749 DEBUG({
Jakob Stoklund Olesenc9c4dac2010-05-13 20:43:17 +0000750 dbgs() << "\n>> " << *MI << "Regs:";
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000751 for (unsigned Reg = 1, E = TRI->getNumRegs(); Reg != E; ++Reg) {
752 if (PhysRegState[Reg] == regDisabled) continue;
753 dbgs() << " " << TRI->getName(Reg);
754 switch(PhysRegState[Reg]) {
755 case regFree:
756 break;
757 case regReserved:
Jakob Stoklund Olesenc9c4dac2010-05-13 20:43:17 +0000758 dbgs() << "*";
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000759 break;
760 default:
761 dbgs() << "=%reg" << PhysRegState[Reg];
Jakob Stoklund Olesen210e2af2010-05-11 23:24:47 +0000762 if (LiveVirtRegs[PhysRegState[Reg]].Dirty)
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000763 dbgs() << "*";
Jakob Stoklund Olesen76b4d5a2010-05-11 23:24:45 +0000764 assert(LiveVirtRegs[PhysRegState[Reg]].PhysReg == Reg &&
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000765 "Bad inverse map");
766 break;
767 }
768 }
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000769 dbgs() << '\n';
Jakob Stoklund Olesen76b4d5a2010-05-11 23:24:45 +0000770 // Check that LiveVirtRegs is the inverse.
771 for (LiveRegMap::iterator i = LiveVirtRegs.begin(),
772 e = LiveVirtRegs.end(); i != e; ++i) {
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000773 assert(TargetRegisterInfo::isVirtualRegister(i->first) &&
774 "Bad map key");
Jakob Stoklund Olesen76b4d5a2010-05-11 23:24:45 +0000775 assert(TargetRegisterInfo::isPhysicalRegister(i->second.PhysReg) &&
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000776 "Bad map value");
Jakob Stoklund Olesen76b4d5a2010-05-11 23:24:45 +0000777 assert(PhysRegState[i->second.PhysReg] == i->first &&
778 "Bad inverse map");
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000779 }
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000780 });
781
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000782 // Debug values are not allowed to change codegen in any way.
783 if (MI->isDebugValue()) {
Devang Patel58b81762010-07-19 23:25:39 +0000784 bool ScanDbgValue = true;
785 while (ScanDbgValue) {
786 ScanDbgValue = false;
787 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
788 MachineOperand &MO = MI->getOperand(i);
789 if (!MO.isReg()) continue;
790 unsigned Reg = MO.getReg();
791 if (!Reg || TargetRegisterInfo::isPhysicalRegister(Reg)) continue;
Devang Patel459a36b2010-08-04 18:42:02 +0000792 LiveDbgValueMap[Reg] = MI;
Devang Patel58b81762010-07-19 23:25:39 +0000793 LiveRegMap::iterator LRI = LiveVirtRegs.find(Reg);
794 if (LRI != LiveVirtRegs.end())
795 setPhysReg(MI, i, LRI->second.PhysReg);
Devang Patel7a029b62010-07-09 21:48:31 +0000796 else {
Devang Patel58b81762010-07-19 23:25:39 +0000797 int SS = StackSlotForVirtReg[Reg];
798 if (SS == -1)
Devang Patel7a029b62010-07-09 21:48:31 +0000799 MO.setReg(0); // We can't allocate a physreg for a DebugValue, sorry!
Devang Patel58b81762010-07-19 23:25:39 +0000800 else {
801 // Modify DBG_VALUE now that the value is in a spill slot.
Devang Patel459a36b2010-08-04 18:42:02 +0000802 int64_t Offset = MI->getOperand(1).getImm();
Devang Patel58b81762010-07-19 23:25:39 +0000803 const MDNode *MDPtr =
804 MI->getOperand(MI->getNumOperands()-1).getMetadata();
805 DebugLoc DL = MI->getDebugLoc();
806 if (MachineInstr *NewDV =
807 TII->emitFrameIndexDebugValue(*MF, SS, Offset, MDPtr, DL)) {
808 DEBUG(dbgs() << "Modifying debug info due to spill:" << "\t" << *MI);
809 MachineBasicBlock *MBB = MI->getParent();
810 MBB->insert(MBB->erase(MI), NewDV);
811 // Scan NewDV operands from the beginning.
812 MI = NewDV;
813 ScanDbgValue = true;
814 break;
815 } else
816 MO.setReg(0); // We can't allocate a physreg for a DebugValue, sorry!
817 }
Devang Patel7a029b62010-07-09 21:48:31 +0000818 }
819 }
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000820 }
821 // Next instruction.
822 continue;
823 }
824
Jakob Stoklund Olesen4bf4baf2010-05-13 00:19:43 +0000825 // If this is a copy, we may be able to coalesce.
Jakob Stoklund Olesen04c528a2010-07-16 04:45:42 +0000826 unsigned CopySrc = 0, CopyDst = 0, CopySrcSub = 0, CopyDstSub = 0;
Jakob Stoklund Olesen273f7e42010-07-03 00:04:37 +0000827 if (MI->isCopy()) {
828 CopyDst = MI->getOperand(0).getReg();
829 CopySrc = MI->getOperand(1).getReg();
830 CopyDstSub = MI->getOperand(0).getSubReg();
831 CopySrcSub = MI->getOperand(1).getSubReg();
Jakob Stoklund Olesen04c528a2010-07-16 04:45:42 +0000832 }
Jakob Stoklund Olesen4bf4baf2010-05-13 00:19:43 +0000833
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000834 // Track registers used by instruction.
835 UsedInInstr.reset();
836
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000837 // First scan.
838 // Mark physreg uses and early clobbers as used.
Jakob Stoklund Olesene97dda42010-05-14 21:55:52 +0000839 // Find the end of the virtreg operands
840 unsigned VirtOpEnd = 0;
Jakob Stoklund Olesend1303d22010-06-29 19:15:30 +0000841 bool hasTiedOps = false;
842 bool hasEarlyClobbers = false;
843 bool hasPartialRedefs = false;
844 bool hasPhysDefs = false;
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000845 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
846 MachineOperand &MO = MI->getOperand(i);
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000847 if (!MO.isReg()) continue;
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000848 unsigned Reg = MO.getReg();
Jakob Stoklund Olesene97dda42010-05-14 21:55:52 +0000849 if (!Reg) continue;
850 if (TargetRegisterInfo::isVirtualRegister(Reg)) {
851 VirtOpEnd = i+1;
Jakob Stoklund Olesend1303d22010-06-29 19:15:30 +0000852 if (MO.isUse()) {
Jakob Stoklund Olesend843b392010-06-28 18:34:34 +0000853 hasTiedOps = hasTiedOps ||
854 TID.getOperandConstraint(i, TOI::TIED_TO) != -1;
Jakob Stoklund Olesend1303d22010-06-29 19:15:30 +0000855 } else {
856 if (MO.isEarlyClobber())
857 hasEarlyClobbers = true;
858 if (MO.getSubReg() && MI->readsVirtualRegister(Reg))
859 hasPartialRedefs = true;
860 }
Jakob Stoklund Olesene97dda42010-05-14 21:55:52 +0000861 continue;
862 }
Jakob Stoklund Olesenefa155f2010-05-14 22:02:56 +0000863 if (!Allocatable.test(Reg)) continue;
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000864 if (MO.isUse()) {
Jakob Stoklund Olesen4ed10822010-05-14 18:03:25 +0000865 usePhysReg(MO);
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000866 } else if (MO.isEarlyClobber()) {
Jakob Stoklund Olesen75ac4d92010-06-15 16:20:57 +0000867 definePhysReg(MI, Reg, (MO.isImplicit() || MO.isDead()) ?
868 regFree : regReserved);
Jakob Stoklund Olesend843b392010-06-28 18:34:34 +0000869 hasEarlyClobbers = true;
870 } else
871 hasPhysDefs = true;
872 }
873
874 // The instruction may have virtual register operands that must be allocated
875 // the same register at use-time and def-time: early clobbers and tied
876 // operands. If there are also physical defs, these registers must avoid
877 // both physical defs and uses, making them more constrained than normal
878 // operands.
Jakob Stoklund Olesen4bd94f72010-07-29 00:52:19 +0000879 // Similarly, if there are multiple defs and tied operands, we must make sure
880 // the same register is allocated to uses and defs.
Jakob Stoklund Olesend843b392010-06-28 18:34:34 +0000881 // We didn't detect inline asm tied operands above, so just make this extra
882 // pass for all inline asm.
Jakob Stoklund Olesend1303d22010-06-29 19:15:30 +0000883 if (MI->isInlineAsm() || hasEarlyClobbers || hasPartialRedefs ||
Jakob Stoklund Olesen4bd94f72010-07-29 00:52:19 +0000884 (hasTiedOps && (hasPhysDefs || TID.getNumDefs() > 1))) {
Jakob Stoklund Olesend843b392010-06-28 18:34:34 +0000885 handleThroughOperands(MI, VirtDead);
886 // Don't attempt coalescing when we have funny stuff going on.
887 CopyDst = 0;
Jakob Stoklund Olesen4bd94f72010-07-29 00:52:19 +0000888 // Pretend we have early clobbers so the use operands get marked below.
889 // This is not necessary for the common case of a single tied use.
890 hasEarlyClobbers = true;
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000891 }
892
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000893 // Second scan.
Jakob Stoklund Olesend843b392010-06-28 18:34:34 +0000894 // Allocate virtreg uses.
Jakob Stoklund Olesene97dda42010-05-14 21:55:52 +0000895 for (unsigned i = 0; i != VirtOpEnd; ++i) {
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000896 MachineOperand &MO = MI->getOperand(i);
897 if (!MO.isReg()) continue;
898 unsigned Reg = MO.getReg();
899 if (!Reg || TargetRegisterInfo::isPhysicalRegister(Reg)) continue;
900 if (MO.isUse()) {
Jakob Stoklund Olesen646dd7c2010-05-17 03:26:09 +0000901 LiveRegMap::iterator LRI = reloadVirtReg(MI, i, Reg, CopyDst);
902 unsigned PhysReg = LRI->second.PhysReg;
Jakob Stoklund Olesen7ff82e12010-05-14 04:30:51 +0000903 CopySrc = (CopySrc == Reg || CopySrc == PhysReg) ? PhysReg : 0;
Jakob Stoklund Olesen0eeb05c2010-05-18 21:10:50 +0000904 if (setPhysReg(MI, i, PhysReg))
Jakob Stoklund Olesen646dd7c2010-05-17 03:26:09 +0000905 killVirtReg(LRI);
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000906 }
907 }
908
Jakob Stoklund Olesen4bf4baf2010-05-13 00:19:43 +0000909 MRI->addPhysRegsUsed(UsedInInstr);
Jakob Stoklund Olesen82b07dc2010-05-11 20:30:28 +0000910
Jakob Stoklund Olesen4bd94f72010-07-29 00:52:19 +0000911 // Track registers defined by instruction - early clobbers and tied uses at
912 // this point.
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000913 UsedInInstr.reset();
Jakob Stoklund Olesend843b392010-06-28 18:34:34 +0000914 if (hasEarlyClobbers) {
915 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
916 MachineOperand &MO = MI->getOperand(i);
Jakob Stoklund Olesen4bd94f72010-07-29 00:52:19 +0000917 if (!MO.isReg()) continue;
Jakob Stoklund Olesend843b392010-06-28 18:34:34 +0000918 unsigned Reg = MO.getReg();
919 if (!Reg || !TargetRegisterInfo::isPhysicalRegister(Reg)) continue;
Jakob Stoklund Olesen4bd94f72010-07-29 00:52:19 +0000920 // Look for physreg defs and tied uses.
921 if (!MO.isDef() && !MI->isRegTiedToDefOperand(i)) continue;
Jakob Stoklund Olesend843b392010-06-28 18:34:34 +0000922 UsedInInstr.set(Reg);
923 for (const unsigned *AS = TRI->getAliasSet(Reg); *AS; ++AS)
924 UsedInInstr.set(*AS);
925 }
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000926 }
927
Jakob Stoklund Olesen4b6bbe82010-05-17 02:49:18 +0000928 unsigned DefOpEnd = MI->getNumOperands();
929 if (TID.isCall()) {
930 // Spill all virtregs before a call. This serves two purposes: 1. If an
931 // exception is thrown, the landing pad is going to expect to find registers
932 // in their spill slots, and 2. we don't have to wade through all the
933 // <imp-def> operands on the call instruction.
934 DefOpEnd = VirtOpEnd;
935 DEBUG(dbgs() << " Spilling remaining registers before call.\n");
936 spillAll(MI);
Jakob Stoklund Olesen6de07172010-06-04 18:08:29 +0000937
938 // The imp-defs are skipped below, but we still need to mark those
939 // registers as used by the function.
940 SkippedInstrs.insert(&TID);
Jakob Stoklund Olesen4b6bbe82010-05-17 02:49:18 +0000941 }
942
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000943 // Third scan.
944 // Allocate defs and collect dead defs.
Jakob Stoklund Olesen4b6bbe82010-05-17 02:49:18 +0000945 for (unsigned i = 0; i != DefOpEnd; ++i) {
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000946 MachineOperand &MO = MI->getOperand(i);
Jakob Stoklund Olesen75ac4d92010-06-15 16:20:57 +0000947 if (!MO.isReg() || !MO.isDef() || !MO.getReg() || MO.isEarlyClobber())
948 continue;
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000949 unsigned Reg = MO.getReg();
950
951 if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
Jakob Stoklund Olesenefa155f2010-05-14 22:02:56 +0000952 if (!Allocatable.test(Reg)) continue;
Jakob Stoklund Olesen6fb69d82010-05-17 02:07:22 +0000953 definePhysReg(MI, Reg, (MO.isImplicit() || MO.isDead()) ?
954 regFree : regReserved);
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000955 continue;
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000956 }
Jakob Stoklund Olesen646dd7c2010-05-17 03:26:09 +0000957 LiveRegMap::iterator LRI = defineVirtReg(MI, i, Reg, CopySrc);
958 unsigned PhysReg = LRI->second.PhysReg;
Jakob Stoklund Olesen0eeb05c2010-05-18 21:10:50 +0000959 if (setPhysReg(MI, i, PhysReg)) {
960 VirtDead.push_back(Reg);
Jakob Stoklund Olesen7ff82e12010-05-14 04:30:51 +0000961 CopyDst = 0; // cancel coalescing;
962 } else
963 CopyDst = (CopyDst == Reg || CopyDst == PhysReg) ? PhysReg : 0;
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000964 }
965
Jakob Stoklund Olesen0eeb05c2010-05-18 21:10:50 +0000966 // Kill dead defs after the scan to ensure that multiple defs of the same
967 // register are allocated identically. We didn't need to do this for uses
968 // because we are crerating our own kill flags, and they are always at the
969 // last use.
970 for (unsigned i = 0, e = VirtDead.size(); i != e; ++i)
971 killVirtReg(VirtDead[i]);
972 VirtDead.clear();
973
Jakob Stoklund Olesen4bf4baf2010-05-13 00:19:43 +0000974 MRI->addPhysRegsUsed(UsedInInstr);
Jakob Stoklund Olesenc9c4dac2010-05-13 20:43:17 +0000975
Jakob Stoklund Olesen7ff82e12010-05-14 04:30:51 +0000976 if (CopyDst && CopyDst == CopySrc && CopyDstSub == CopySrcSub) {
977 DEBUG(dbgs() << "-- coalescing: " << *MI);
978 Coalesced.push_back(MI);
979 } else {
980 DEBUG(dbgs() << "<< " << *MI);
981 }
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000982 }
983
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000984 // Spill all physical registers holding virtual registers now.
Jakob Stoklund Olesene6aba832010-05-17 02:07:32 +0000985 DEBUG(dbgs() << "Spilling live registers at end of block.\n");
986 spillAll(MBB->getFirstTerminator());
Jakob Stoklund Olesenbbf33b32010-05-11 18:54:45 +0000987
Jakob Stoklund Olesen7ff82e12010-05-14 04:30:51 +0000988 // Erase all the coalesced copies. We are delaying it until now because
Jakob Stoklund Olesene6aba832010-05-17 02:07:32 +0000989 // LiveVirtRegs might refer to the instrs.
Jakob Stoklund Olesen7ff82e12010-05-14 04:30:51 +0000990 for (unsigned i = 0, e = Coalesced.size(); i != e; ++i)
Jakob Stoklund Olesen6fb69d82010-05-17 02:07:22 +0000991 MBB->erase(Coalesced[i]);
Jakob Stoklund Olesen8a65c512010-05-14 21:55:50 +0000992 NumCopies += Coalesced.size();
Jakob Stoklund Olesen7ff82e12010-05-14 04:30:51 +0000993
Jakob Stoklund Olesen6fb69d82010-05-17 02:07:22 +0000994 DEBUG(MBB->dump());
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +0000995}
996
997/// runOnMachineFunction - Register allocate the whole function
998///
999bool RAFast::runOnMachineFunction(MachineFunction &Fn) {
Jakob Stoklund Olesenc9c4dac2010-05-13 20:43:17 +00001000 DEBUG(dbgs() << "********** FAST REGISTER ALLOCATION **********\n"
1001 << "********** Function: "
1002 << ((Value*)Fn.getFunction())->getName() << '\n');
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +00001003 MF = &Fn;
Jakob Stoklund Olesen4bf4baf2010-05-13 00:19:43 +00001004 MRI = &MF->getRegInfo();
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +00001005 TM = &Fn.getTarget();
1006 TRI = TM->getRegisterInfo();
1007 TII = TM->getInstrInfo();
1008
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +00001009 UsedInInstr.resize(TRI->getNumRegs());
Jakob Stoklund Olesenefa155f2010-05-14 22:02:56 +00001010 Allocatable = TRI->getAllocatableSet(*MF);
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +00001011
1012 // initialize the virtual->physical register map to have a 'null'
1013 // mapping for all virtual registers
Jakob Stoklund Olesen4bf4baf2010-05-13 00:19:43 +00001014 unsigned LastVirtReg = MRI->getLastVirtReg();
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +00001015 StackSlotForVirtReg.grow(LastVirtReg);
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +00001016
1017 // Loop over all of the basic blocks, eliminating virtual register references
Jakob Stoklund Olesen6fb69d82010-05-17 02:07:22 +00001018 for (MachineFunction::iterator MBBi = Fn.begin(), MBBe = Fn.end();
1019 MBBi != MBBe; ++MBBi) {
1020 MBB = &*MBBi;
1021 AllocateBasicBlock();
1022 }
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +00001023
Jakob Stoklund Olesen82b07dc2010-05-11 20:30:28 +00001024 // Make sure the set of used physregs is closed under subreg operations.
Jakob Stoklund Olesen4bf4baf2010-05-13 00:19:43 +00001025 MRI->closePhysRegsUsed(*TRI);
Jakob Stoklund Olesen82b07dc2010-05-11 20:30:28 +00001026
Jakob Stoklund Olesen6de07172010-06-04 18:08:29 +00001027 // Add the clobber lists for all the instructions we skipped earlier.
1028 for (SmallPtrSet<const TargetInstrDesc*, 4>::const_iterator
1029 I = SkippedInstrs.begin(), E = SkippedInstrs.end(); I != E; ++I)
1030 if (const unsigned *Defs = (*I)->getImplicitDefs())
1031 while (*Defs)
1032 MRI->setPhysRegUsed(*Defs++);
1033
1034 SkippedInstrs.clear();
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +00001035 StackSlotForVirtReg.clear();
Devang Patel459a36b2010-08-04 18:42:02 +00001036 LiveDbgValueMap.clear();
Jakob Stoklund Olesen00207232010-04-21 18:02:42 +00001037 return true;
1038}
1039
1040FunctionPass *llvm::createFastRegisterAllocator() {
1041 return new RAFast();
1042}