blob: 97b42b0307ac881ba3c80a4b12d5a7f2c89c2d47 [file] [log] [blame]
Misha Brukman07218672002-11-22 22:44:32 +00001//===-- RegAllocSimple.cpp - A simple generic register allocator --- ------===//
2//
3// This file implements a simple register allocator. *Very* simple.
4//
5//===----------------------------------------------------------------------===//
6
Misha Brukman07218672002-11-22 22:44:32 +00007#include "llvm/CodeGen/MachineFunction.h"
Chris Lattnerabe8dd52002-12-15 18:19:24 +00008#include "llvm/CodeGen/MachineInstr.h"
Misha Brukmandd46e2a2002-12-04 23:58:08 +00009#include "llvm/Target/MachineInstrInfo.h"
Misha Brukman07218672002-11-22 22:44:32 +000010#include "llvm/Target/TargetMachine.h"
Misha Brukman07218672002-11-22 22:44:32 +000011#include "Support/Statistic.h"
Chris Lattnerabe8dd52002-12-15 18:19:24 +000012#include <iostream>
Chris Lattnerda7e4532002-12-15 20:36:09 +000013#include <set>
Misha Brukman07218672002-11-22 22:44:32 +000014
Chris Lattnerdd444f92002-12-15 18:38:59 +000015/// PhysRegClassMap - Construct a mapping of physical register numbers to their
16/// register classes.
17///
18/// NOTE: This class will eventually be pulled out to somewhere shared.
19///
20class PhysRegClassMap {
21 std::map<unsigned, const TargetRegisterClass*> PhysReg2RegClassMap;
22public:
23 PhysRegClassMap(const MRegisterInfo *RI) {
24 for (MRegisterInfo::const_iterator I = RI->regclass_begin(),
25 E = RI->regclass_end(); I != E; ++I)
26 for (unsigned i=0; i < (*I)->getNumRegs(); ++i)
27 PhysReg2RegClassMap[(*I)->getRegister(i)] = *I;
28 }
29
30 const TargetRegisterClass *operator[](unsigned Reg) {
31 assert(PhysReg2RegClassMap[Reg] && "Register is not a known physreg!");
32 return PhysReg2RegClassMap[Reg];
33 }
34
35 const TargetRegisterClass *get(unsigned Reg) { return operator[](Reg); }
36};
37
38
Misha Brukman59b3eed2002-12-13 10:42:31 +000039namespace {
Chris Lattnerda7e4532002-12-15 20:36:09 +000040 Statistic<> NumSpilled ("ra-simple", "Number of registers spilled");
41 Statistic<> NumReloaded("ra-simple", "Number of registers reloaded");
42
43 class RegAllocSimple : public FunctionPass {
Misha Brukman07218672002-11-22 22:44:32 +000044 TargetMachine &TM;
Misha Brukman07218672002-11-22 22:44:32 +000045 MachineFunction *MF;
Misha Brukman07218672002-11-22 22:44:32 +000046 const MRegisterInfo *RegInfo;
Chris Lattner9593fb12002-12-15 19:07:34 +000047 unsigned NumBytesAllocated;
Misha Brukman07218672002-11-22 22:44:32 +000048
49 // Maps SSA Regs => offsets on the stack where these values are stored
Chris Lattnerad44bd92002-12-15 18:15:24 +000050 std::map<unsigned, unsigned> VirtReg2OffsetMap;
Misha Brukman07218672002-11-22 22:44:32 +000051
52 // Maps SSA Regs => physical regs
53 std::map<unsigned, unsigned> SSA2PhysRegMap;
Misha Brukmandc2ec002002-12-03 23:15:19 +000054
55 // Maps physical register to their register classes
Chris Lattnerdd444f92002-12-15 18:38:59 +000056 PhysRegClassMap PhysRegClasses;
Misha Brukmand1bedcc2002-12-12 23:20:31 +000057
58 // Made to combat the incorrect allocation of r2 = add r1, r1
59 std::map<unsigned, unsigned> VirtReg2PhysRegMap;
Misha Brukman07218672002-11-22 22:44:32 +000060
Chris Lattnerda7e4532002-12-15 20:36:09 +000061 // RegsUsed - Keep track of what registers are currently in use.
62 std::set<unsigned> RegsUsed;
63
64 // RegClassIdx - Maps RegClass => which index we can take a register
65 // from. Since this is a simple register allocator, when we need a register
66 // of a certain class, we just take the next available one.
Misha Brukman07218672002-11-22 22:44:32 +000067 std::map<const TargetRegisterClass*, unsigned> RegClassIdx;
68
Chris Lattnerda7e4532002-12-15 20:36:09 +000069 public:
70
Chris Lattnerc2db1a92002-12-15 19:51:14 +000071 RegAllocSimple(TargetMachine &tm)
72 : TM(tm), RegInfo(tm.getRegisterInfo()), PhysRegClasses(RegInfo) {
Chris Lattnerda7e4532002-12-15 20:36:09 +000073 RegsUsed.insert(RegInfo->getFramePointer());
74 RegsUsed.insert(RegInfo->getStackPointer());
Misha Brukmancea22452002-12-13 04:34:02 +000075
76 cleanupAfterFunction();
Misha Brukman07218672002-11-22 22:44:32 +000077 }
78
Chris Lattnerda7e4532002-12-15 20:36:09 +000079 bool runOnFunction(Function &Fn) {
80 return runOnMachineFunction(MachineFunction::get(&Fn));
81 }
82
83 private:
84 /// runOnMachineFunction - Register allocate the whole function
85 bool runOnMachineFunction(MachineFunction &Fn);
86
87 /// AllocateBasicBlock - Register allocate the specified basic block.
88 void AllocateBasicBlock(MachineBasicBlock &MBB);
89
90 /// EliminatePHINodes - Eliminate phi nodes by inserting copy instructions
91 /// in predecessor basic blocks.
92 void EliminatePHINodes(MachineBasicBlock &MBB);
93
94
Misha Brukman07218672002-11-22 22:44:32 +000095 bool isAvailableReg(unsigned Reg) {
96 // assert(Reg < MRegisterInfo::FirstVirtualReg && "...");
97 return RegsUsed.find(Reg) == RegsUsed.end();
98 }
99
Chris Lattnerc2db1a92002-12-15 19:51:14 +0000100 /// allocateStackSpaceFor - This allocates space for the specified virtual
101 /// register to be held on the stack.
Misha Brukmanf514d512002-12-02 21:11:58 +0000102 unsigned allocateStackSpaceFor(unsigned VirtReg,
103 const TargetRegisterClass *regClass);
104
Chris Lattnerda7e4532002-12-15 20:36:09 +0000105 /// Given a virtual register, returns a physical register that is currently
106 /// unused.
107 ///
Misha Brukman07218672002-11-22 22:44:32 +0000108 /// Side effect: marks that register as being used until manually cleared
Chris Lattnerda7e4532002-12-15 20:36:09 +0000109 ///
Misha Brukman07218672002-11-22 22:44:32 +0000110 unsigned getFreeReg(unsigned virtualReg);
111
112 /// Returns all `borrowed' registers back to the free pool
113 void clearAllRegs() {
Chris Lattnerc2db1a92002-12-15 19:51:14 +0000114 RegClassIdx.clear();
Misha Brukman07218672002-11-22 22:44:32 +0000115 }
116
Misha Brukman972b03f2002-12-13 11:33:22 +0000117 /// Invalidates any references, real or implicit, to physical registers
118 ///
119 void invalidatePhysRegs(const MachineInstr *MI) {
120 unsigned Opcode = MI->getOpcode();
Chris Lattnerda7e4532002-12-15 20:36:09 +0000121 const MachineInstrDescriptor &Desc = TM.getInstrInfo().get(Opcode);
Misha Brukman972b03f2002-12-13 11:33:22 +0000122 const unsigned *regs = Desc.ImplicitUses;
123 while (*regs)
Chris Lattnerda7e4532002-12-15 20:36:09 +0000124 RegsUsed.insert(*regs++);
Misha Brukman972b03f2002-12-13 11:33:22 +0000125
126 regs = Desc.ImplicitDefs;
127 while (*regs)
Chris Lattnerda7e4532002-12-15 20:36:09 +0000128 RegsUsed.insert(*regs++);
Misha Brukman972b03f2002-12-13 11:33:22 +0000129 }
130
Misha Brukmandd46e2a2002-12-04 23:58:08 +0000131 void cleanupAfterFunction() {
Chris Lattnerad44bd92002-12-15 18:15:24 +0000132 VirtReg2OffsetMap.clear();
Misha Brukmandd46e2a2002-12-04 23:58:08 +0000133 SSA2PhysRegMap.clear();
Chris Lattnerc2db1a92002-12-15 19:51:14 +0000134 NumBytesAllocated = 4; // FIXME: This is X86 specific
Misha Brukmandd46e2a2002-12-04 23:58:08 +0000135 }
136
Misha Brukman07218672002-11-22 22:44:32 +0000137 /// Moves value from memory into that register
138 MachineBasicBlock::iterator
Chris Lattnerc2db1a92002-12-15 19:51:14 +0000139 moveUseToReg (MachineBasicBlock &MBB,
Misha Brukman203b7692002-12-13 09:54:36 +0000140 MachineBasicBlock::iterator I, unsigned VirtReg,
Misha Brukman07218672002-11-22 22:44:32 +0000141 unsigned &PhysReg);
142
143 /// Saves reg value on the stack (maps virtual register to stack value)
144 MachineBasicBlock::iterator
Chris Lattnerc2db1a92002-12-15 19:51:14 +0000145 saveVirtRegToStack (MachineBasicBlock &MBB,
Misha Brukman203b7692002-12-13 09:54:36 +0000146 MachineBasicBlock::iterator I, unsigned VirtReg,
Misha Brukmandc2ec002002-12-03 23:15:19 +0000147 unsigned PhysReg);
148
149 MachineBasicBlock::iterator
Chris Lattnerc2db1a92002-12-15 19:51:14 +0000150 savePhysRegToStack (MachineBasicBlock &MBB,
Misha Brukman203b7692002-12-13 09:54:36 +0000151 MachineBasicBlock::iterator I, unsigned PhysReg);
Misha Brukman07218672002-11-22 22:44:32 +0000152 };
153
Misha Brukman59b3eed2002-12-13 10:42:31 +0000154}
Misha Brukman07218672002-11-22 22:44:32 +0000155
Chris Lattnerc2db1a92002-12-15 19:51:14 +0000156/// allocateStackSpaceFor - This allocates space for the specified virtual
157/// register to be held on the stack.
Misha Brukmanf514d512002-12-02 21:11:58 +0000158unsigned RegAllocSimple::allocateStackSpaceFor(unsigned VirtReg,
159 const TargetRegisterClass *regClass)
160{
Chris Lattnerad44bd92002-12-15 18:15:24 +0000161 if (VirtReg2OffsetMap.find(VirtReg) == VirtReg2OffsetMap.end()) {
Chris Lattner9593fb12002-12-15 19:07:34 +0000162 unsigned RegSize = regClass->getDataSize();
163
164 // Align NumBytesAllocated. We should be using TargetData alignment stuff
165 // to determine this, but we don't know the LLVM type associated with the
166 // virtual register. Instead, just align to a multiple of the size for now.
167 NumBytesAllocated += RegSize-1;
168 NumBytesAllocated = NumBytesAllocated/RegSize*RegSize;
169
170 // Assign the slot...
Chris Lattnerad44bd92002-12-15 18:15:24 +0000171 VirtReg2OffsetMap[VirtReg] = NumBytesAllocated;
Chris Lattner9593fb12002-12-15 19:07:34 +0000172
173 // Reserve the space!
174 NumBytesAllocated += RegSize;
Misha Brukmanf514d512002-12-02 21:11:58 +0000175 }
Chris Lattnerad44bd92002-12-15 18:15:24 +0000176 return VirtReg2OffsetMap[VirtReg];
Misha Brukmanf514d512002-12-02 21:11:58 +0000177}
178
Misha Brukman07218672002-11-22 22:44:32 +0000179unsigned RegAllocSimple::getFreeReg(unsigned virtualReg) {
180 const TargetRegisterClass* regClass = MF->getRegClass(virtualReg);
181 unsigned physReg;
182 assert(regClass);
183 if (RegClassIdx.find(regClass) != RegClassIdx.end()) {
184 unsigned regIdx = RegClassIdx[regClass]++;
185 assert(regIdx < regClass->getNumRegs() && "Not enough registers!");
186 physReg = regClass->getRegister(regIdx);
187 } else {
188 physReg = regClass->getRegister(0);
189 // assert(physReg < regClass->getNumRegs() && "No registers in class!");
190 RegClassIdx[regClass] = 1;
191 }
192
193 if (isAvailableReg(physReg))
194 return physReg;
Chris Lattnerda7e4532002-12-15 20:36:09 +0000195 else
Misha Brukman07218672002-11-22 22:44:32 +0000196 return getFreeReg(virtualReg);
Misha Brukman07218672002-11-22 22:44:32 +0000197}
198
199MachineBasicBlock::iterator
Chris Lattnerc2db1a92002-12-15 19:51:14 +0000200RegAllocSimple::moveUseToReg (MachineBasicBlock &MBB,
Misha Brukman203b7692002-12-13 09:54:36 +0000201 MachineBasicBlock::iterator I,
Misha Brukman07218672002-11-22 22:44:32 +0000202 unsigned VirtReg, unsigned &PhysReg)
203{
204 const TargetRegisterClass* regClass = MF->getRegClass(VirtReg);
205 assert(regClass);
206
Misha Brukmanf514d512002-12-02 21:11:58 +0000207 unsigned stackOffset = allocateStackSpaceFor(VirtReg, regClass);
Misha Brukman07218672002-11-22 22:44:32 +0000208 PhysReg = getFreeReg(VirtReg);
209
Misha Brukmanf514d512002-12-02 21:11:58 +0000210 // Add move instruction(s)
Chris Lattnerda7e4532002-12-15 20:36:09 +0000211 ++NumReloaded;
Chris Lattner198ab642002-12-15 20:06:35 +0000212 return RegInfo->loadRegOffset2Reg(MBB, I, PhysReg,
Misha Brukmanf514d512002-12-02 21:11:58 +0000213 RegInfo->getFramePointer(),
Misha Brukmandd46e2a2002-12-04 23:58:08 +0000214 -stackOffset, regClass->getDataSize());
Misha Brukman07218672002-11-22 22:44:32 +0000215}
216
217MachineBasicBlock::iterator
Chris Lattnerc2db1a92002-12-15 19:51:14 +0000218RegAllocSimple::saveVirtRegToStack (MachineBasicBlock &MBB,
Misha Brukman203b7692002-12-13 09:54:36 +0000219 MachineBasicBlock::iterator I,
Misha Brukmandc2ec002002-12-03 23:15:19 +0000220 unsigned VirtReg, unsigned PhysReg)
Misha Brukman07218672002-11-22 22:44:32 +0000221{
222 const TargetRegisterClass* regClass = MF->getRegClass(VirtReg);
223 assert(regClass);
Misha Brukman07218672002-11-22 22:44:32 +0000224
Misha Brukmandd46e2a2002-12-04 23:58:08 +0000225 unsigned stackOffset = allocateStackSpaceFor(VirtReg, regClass);
Misha Brukmanf514d512002-12-02 21:11:58 +0000226
Misha Brukman07218672002-11-22 22:44:32 +0000227 // Add move instruction(s)
Chris Lattnerda7e4532002-12-15 20:36:09 +0000228 ++NumSpilled;
Chris Lattner198ab642002-12-15 20:06:35 +0000229 return RegInfo->storeReg2RegOffset(MBB, I, PhysReg,
Misha Brukman07218672002-11-22 22:44:32 +0000230 RegInfo->getFramePointer(),
Misha Brukmandd46e2a2002-12-04 23:58:08 +0000231 -stackOffset, regClass->getDataSize());
Misha Brukman07218672002-11-22 22:44:32 +0000232}
233
Misha Brukmandc2ec002002-12-03 23:15:19 +0000234MachineBasicBlock::iterator
Chris Lattnerc2db1a92002-12-15 19:51:14 +0000235RegAllocSimple::savePhysRegToStack (MachineBasicBlock &MBB,
Misha Brukman203b7692002-12-13 09:54:36 +0000236 MachineBasicBlock::iterator I,
Misha Brukmandc2ec002002-12-03 23:15:19 +0000237 unsigned PhysReg)
238{
239 const TargetRegisterClass* regClass = MF->getRegClass(PhysReg);
240 assert(regClass);
241
242 unsigned offset = allocateStackSpaceFor(PhysReg, regClass);
243
244 // Add move instruction(s)
Chris Lattnerda7e4532002-12-15 20:36:09 +0000245 ++NumSpilled;
Chris Lattner198ab642002-12-15 20:06:35 +0000246 return RegInfo->storeReg2RegOffset(MBB, I, PhysReg,
Misha Brukmandc2ec002002-12-03 23:15:19 +0000247 RegInfo->getFramePointer(),
248 offset, regClass->getDataSize());
249}
250
Chris Lattnerc2db1a92002-12-15 19:51:14 +0000251/// EliminatePHINodes - Eliminate phi nodes by inserting copy instructions in
252/// predecessor basic blocks.
253void RegAllocSimple::EliminatePHINodes(MachineBasicBlock &MBB) {
Chris Lattnerda7e4532002-12-15 20:36:09 +0000254 const MachineInstrInfo &MII = TM.getInstrInfo();
255
Chris Lattnerc2db1a92002-12-15 19:51:14 +0000256 while (MBB.front()->getOpcode() == 0) {
257 MachineInstr *MI = MBB.front();
Chris Lattnerda7e4532002-12-15 20:36:09 +0000258 // Unlink the PHI node from the basic block... but don't delete the PHI
Chris Lattnerc2db1a92002-12-15 19:51:14 +0000259 MBB.erase(MBB.begin());
260
261 // a preliminary pass that will invalidate any registers that
262 // are used by the instruction (including implicit uses)
263 invalidatePhysRegs(MI);
264
265 DEBUG(std::cerr << "num invalid regs: " << RegsUsed.size() << "\n");
Chris Lattnerc2db1a92002-12-15 19:51:14 +0000266 DEBUG(std::cerr << "num ops: " << MI->getNumOperands() << "\n");
267 MachineOperand &targetReg = MI->getOperand(0);
268
Chris Lattnerda7e4532002-12-15 20:36:09 +0000269 // If it's a virtual register, allocate a physical one otherwise, just use
270 // whatever register is there now note: it MUST be a register -- we're
271 // assigning to it!
272 //
Chris Lattnerc2db1a92002-12-15 19:51:14 +0000273 unsigned virtualReg = (unsigned) targetReg.getAllocatedRegNum();
274 unsigned physReg;
275 if (targetReg.isVirtualRegister()) {
276 physReg = getFreeReg(virtualReg);
277 } else {
278 physReg = virtualReg;
279 }
280
281 // Find the register class of the target register: should be the
282 // same as the values we're trying to store there
283 const TargetRegisterClass* regClass = PhysRegClasses[physReg];
284 assert(regClass && "Target register class not found!");
285 unsigned dataSize = regClass->getDataSize();
Chris Lattner3f91ad72002-12-15 20:48:03 +0000286
Chris Lattnerc2db1a92002-12-15 19:51:14 +0000287 for (int i = MI->getNumOperands() - 1; i >= 2; i-=2) {
288 MachineOperand &opVal = MI->getOperand(i-1);
289
290 // Get the MachineBasicBlock equivalent of the BasicBlock that is the
291 // source path the phi
292 MachineBasicBlock &opBlock = *MI->getOperand(i).getMachineBasicBlock();
Misha Brukmandd46e2a2002-12-04 23:58:08 +0000293
Chris Lattner3f91ad72002-12-15 20:48:03 +0000294 // Check to make sure we haven't already emitted the copy for this block.
295 // This can happen because PHI nodes may have multiple entries for the
296 // same basic block. It doesn't matter which entry we use though, because
297 // all incoming values are guaranteed to be the same for a particular bb.
298 //
299 // Note that this is N^2 in the number of phi node entries, but since the
300 // # of entries is tiny, this is not a problem.
301 //
302 bool HaveNotEmitted = true;
303 for (int op = MI->getNumOperands() - 1; op != i; op -= 2)
304 if (&opBlock == MI->getOperand(op).getMachineBasicBlock()) {
305 HaveNotEmitted = false;
306 break;
307 }
Chris Lattnerc2db1a92002-12-15 19:51:14 +0000308
Chris Lattner3f91ad72002-12-15 20:48:03 +0000309 if (HaveNotEmitted) {
310 MachineBasicBlock::iterator opI = opBlock.end();
311 MachineInstr *opMI = *--opI;
312
313 // must backtrack over ALL the branches in the previous block
314 while (MII.isBranch(opMI->getOpcode()) && opI != opBlock.begin())
315 opMI = *--opI;
316
317 // move back to the first branch instruction so new instructions
318 // are inserted right in front of it and not in front of a non-branch
319 if (!MII.isBranch(opMI->getOpcode()))
320 ++opI;
321
322 // Retrieve the constant value from this op, move it to target
323 // register of the phi
324 if (opVal.isImmediate()) {
325 opI = RegInfo->moveImm2Reg(opBlock, opI, physReg,
326 (unsigned) opVal.getImmedValue(),
327 dataSize);
328 saveVirtRegToStack(opBlock, opI, virtualReg, physReg);
329 } else {
330 // Allocate a physical register and add a move in the BB
331 unsigned opVirtualReg = (unsigned) opVal.getAllocatedRegNum();
332 unsigned opPhysReg;
333 opI = moveUseToReg(opBlock, opI, opVirtualReg, physReg);
334
335 // Save that register value to the stack of the TARGET REG
336 saveVirtRegToStack(opBlock, opI, virtualReg, physReg);
337 }
Chris Lattnerc2db1a92002-12-15 19:51:14 +0000338 }
Chris Lattner3f91ad72002-12-15 20:48:03 +0000339
Chris Lattnerc2db1a92002-12-15 19:51:14 +0000340 // make regs available to other instructions
341 clearAllRegs();
342 }
343
344 // really delete the instruction
345 delete MI;
346 }
347}
348
349
350void RegAllocSimple::AllocateBasicBlock(MachineBasicBlock &MBB) {
351 // Handle PHI instructions specially: add moves to each pred block
352 EliminatePHINodes(MBB);
353
354 //loop over each basic block
355 for (MachineBasicBlock::iterator I = MBB.begin(); I != MBB.end(); ++I) {
356 MachineInstr *MI = *I;
357
358 // a preliminary pass that will invalidate any registers that
359 // are used by the instruction (including implicit uses)
360 invalidatePhysRegs(MI);
361
362 // Loop over uses, move from memory into registers
363 for (int i = MI->getNumOperands() - 1; i >= 0; --i) {
364 MachineOperand &op = MI->getOperand(i);
365
Chris Lattnerda7e4532002-12-15 20:36:09 +0000366 if (op.isVirtualRegister()) {
Chris Lattnerc2db1a92002-12-15 19:51:14 +0000367 unsigned virtualReg = (unsigned) op.getAllocatedRegNum();
368 DEBUG(std::cerr << "op: " << op << "\n");
369 DEBUG(std::cerr << "\t inst[" << i << "]: ";
370 MI->print(std::cerr, TM));
371
372 // make sure the same virtual register maps to the same physical
373 // register in any given instruction
374 unsigned physReg;
375 if (VirtReg2PhysRegMap.find(virtualReg) != VirtReg2PhysRegMap.end()) {
376 physReg = VirtReg2PhysRegMap[virtualReg];
377 } else {
378 if (op.opIsDef()) {
379 if (TM.getInstrInfo().isTwoAddrInstr(MI->getOpcode()) && i == 0) {
380 // must be same register number as the first operand
381 // This maps a = b + c into b += c, and saves b into a's spot
Chris Lattnerda7e4532002-12-15 20:36:09 +0000382 physReg = MI->getOperand(1).getAllocatedRegNum();
Chris Lattnerc2db1a92002-12-15 19:51:14 +0000383 } else {
384 physReg = getFreeReg(virtualReg);
385 }
386 MachineBasicBlock::iterator J = I;
387 J = saveVirtRegToStack(MBB, ++J, virtualReg, physReg);
388 I = --J;
389 } else {
390 I = moveUseToReg(MBB, I, virtualReg, physReg);
391 }
392 VirtReg2PhysRegMap[virtualReg] = physReg;
393 }
394 MI->SetMachineOperandReg(i, physReg);
395 DEBUG(std::cerr << "virt: " << virtualReg <<
396 ", phys: " << op.getAllocatedRegNum() << "\n");
397 }
398 }
399
400 clearAllRegs();
401 VirtReg2PhysRegMap.clear();
402 }
403}
404
Chris Lattnerda7e4532002-12-15 20:36:09 +0000405/// runOnMachineFunction - Register allocate the whole function
406///
Chris Lattnerc2db1a92002-12-15 19:51:14 +0000407bool RegAllocSimple::runOnMachineFunction(MachineFunction &Fn) {
Misha Brukman07218672002-11-22 22:44:32 +0000408 DEBUG(std::cerr << "Machine Function " << "\n");
409 MF = &Fn;
Misha Brukmandc2ec002002-12-03 23:15:19 +0000410
Misha Brukman07218672002-11-22 22:44:32 +0000411 for (MachineFunction::iterator MBB = Fn.begin(), MBBe = Fn.end();
412 MBB != MBBe; ++MBB)
Chris Lattnerc2db1a92002-12-15 19:51:14 +0000413 AllocateBasicBlock(*MBB);
Misha Brukman07218672002-11-22 22:44:32 +0000414
Misha Brukmandd46e2a2002-12-04 23:58:08 +0000415 // add prologue we should preserve callee-save registers...
Chris Lattner198ab642002-12-15 20:06:35 +0000416 RegInfo->emitPrologue(Fn, NumBytesAllocated);
Misha Brukmandd46e2a2002-12-04 23:58:08 +0000417
Chris Lattnerc2db1a92002-12-15 19:51:14 +0000418 const MachineInstrInfo &MII = TM.getInstrInfo();
419
Misha Brukmandd46e2a2002-12-04 23:58:08 +0000420 // add epilogue to restore the callee-save registers
421 // loop over the basic block
422 for (MachineFunction::iterator MBB = Fn.begin(), MBBe = Fn.end();
Chris Lattnerc2db1a92002-12-15 19:51:14 +0000423 MBB != MBBe; ++MBB) {
Misha Brukmandd46e2a2002-12-04 23:58:08 +0000424 // check if last instruction is a RET
Chris Lattnerda7e4532002-12-15 20:36:09 +0000425 if (MII.isReturn(MBB->back()->getOpcode())) {
Misha Brukmandd46e2a2002-12-04 23:58:08 +0000426 // this block has a return instruction, add epilogue
Chris Lattner198ab642002-12-15 20:06:35 +0000427 RegInfo->emitEpilogue(*MBB, NumBytesAllocated);
Misha Brukmandd46e2a2002-12-04 23:58:08 +0000428 }
429 }
Misha Brukman07218672002-11-22 22:44:32 +0000430
Chris Lattnerc2db1a92002-12-15 19:51:14 +0000431 cleanupAfterFunction();
Misha Brukman07218672002-11-22 22:44:32 +0000432 return false; // We never modify the LLVM itself.
433}
434
435Pass *createSimpleX86RegisterAllocator(TargetMachine &TM) {
436 return new RegAllocSimple(TM);
437}