forked from OSchip/llvm-project
* Convert to be a MachineFunctionPass instance
* Use new FunctionFrameInfo object to manage stack slots instead of doing it directly * Adjust to new MRegisterInfo API * Don't take a TM as a ctor argument * Don't keep track of which callee saved registers are modified * Don't emit prolog/epilog code or spill/restore code for callee saved regs * Use new allocation_order_begin/end iterators to simplify dramatically the logic for picking registers to allocate * Machine PHI nodes can no longer contain constant arguments * Use a bitvector to keep track of registers used instead of a set * Fix problem where explicitly referenced registers would be added to regsused set and never removed llvm-svn: 5196
This commit is contained in:
parent
b4e4111d75
commit
bf9d12ac8b
|
@ -1,33 +1,37 @@
|
||||||
//===-- RegAllocSimple.cpp - A simple generic register allocator ----------===//
|
//===-- RegAllocSimple.cpp - A simple generic register allocator ----------===//
|
||||||
//
|
//
|
||||||
// This file implements a simple register allocator. *Very* simple.
|
// This file implements a simple register allocator. *Very* simple: It immediate
|
||||||
|
// spills every value right after it is computed, and it reloads all used
|
||||||
|
// operands from the spill area to temporary registers before each instruction.
|
||||||
|
// It does not keep values in registers across instructions.
|
||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#include "llvm/CodeGen/MachineFunction.h"
|
#include "llvm/CodeGen/MachineFunctionPass.h"
|
||||||
#include "llvm/CodeGen/MachineInstr.h"
|
#include "llvm/CodeGen/MachineInstr.h"
|
||||||
#include "llvm/CodeGen/SSARegMap.h"
|
#include "llvm/CodeGen/SSARegMap.h"
|
||||||
|
#include "llvm/CodeGen/FunctionFrameInfo.h"
|
||||||
#include "llvm/Target/MachineInstrInfo.h"
|
#include "llvm/Target/MachineInstrInfo.h"
|
||||||
#include "llvm/Target/TargetMachine.h"
|
#include "llvm/Target/TargetMachine.h"
|
||||||
#include "Support/Statistic.h"
|
#include "Support/Statistic.h"
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <set>
|
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
Statistic<> NumSpilled ("ra-simple", "Number of registers spilled");
|
Statistic<> NumSpilled ("ra-simple", "Number of registers spilled");
|
||||||
Statistic<> NumReloaded("ra-simple", "Number of registers reloaded");
|
Statistic<> NumReloaded("ra-simple", "Number of registers reloaded");
|
||||||
|
|
||||||
class RegAllocSimple : public FunctionPass {
|
class RegAllocSimple : public MachineFunctionPass {
|
||||||
TargetMachine &TM;
|
|
||||||
MachineFunction *MF;
|
MachineFunction *MF;
|
||||||
|
const TargetMachine *TM;
|
||||||
const MRegisterInfo *RegInfo;
|
const MRegisterInfo *RegInfo;
|
||||||
unsigned NumBytesAllocated;
|
|
||||||
|
|
||||||
// Maps SSA Regs => offsets on the stack where these values are stored
|
// StackSlotForVirtReg - Maps SSA Regs => frame index on the stack where
|
||||||
std::map<unsigned, unsigned> VirtReg2OffsetMap;
|
// these values are spilled
|
||||||
|
std::map<unsigned, int> StackSlotForVirtReg;
|
||||||
|
|
||||||
// RegsUsed - Keep track of what registers are currently in use.
|
// RegsUsed - Keep track of what registers are currently in use. This is a
|
||||||
std::set<unsigned> RegsUsed;
|
// bitset.
|
||||||
|
std::vector<bool> RegsUsed;
|
||||||
|
|
||||||
// RegClassIdx - Maps RegClass => which index we can take a register
|
// RegClassIdx - Maps RegClass => which index we can take a register
|
||||||
// from. Since this is a simple register allocator, when we need a register
|
// from. Since this is a simple register allocator, when we need a register
|
||||||
|
@ -35,27 +39,14 @@ namespace {
|
||||||
std::map<const TargetRegisterClass*, unsigned> RegClassIdx;
|
std::map<const TargetRegisterClass*, unsigned> RegClassIdx;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
RegAllocSimple(TargetMachine &tm)
|
|
||||||
: TM(tm), RegInfo(tm.getRegisterInfo()) {
|
|
||||||
RegsUsed.insert(RegInfo->getFramePointer());
|
|
||||||
RegsUsed.insert(RegInfo->getStackPointer());
|
|
||||||
|
|
||||||
cleanupAfterFunction();
|
|
||||||
}
|
|
||||||
|
|
||||||
bool runOnFunction(Function &Fn) {
|
|
||||||
return runOnMachineFunction(MachineFunction::get(&Fn));
|
|
||||||
}
|
|
||||||
|
|
||||||
virtual const char *getPassName() const {
|
virtual const char *getPassName() const {
|
||||||
return "Simple Register Allocator";
|
return "Simple Register Allocator";
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
|
||||||
/// runOnMachineFunction - Register allocate the whole function
|
/// runOnMachineFunction - Register allocate the whole function
|
||||||
bool runOnMachineFunction(MachineFunction &Fn);
|
bool runOnMachineFunction(MachineFunction &Fn);
|
||||||
|
|
||||||
|
private:
|
||||||
/// AllocateBasicBlock - Register allocate the specified basic block.
|
/// AllocateBasicBlock - Register allocate the specified basic block.
|
||||||
void AllocateBasicBlock(MachineBasicBlock &MBB);
|
void AllocateBasicBlock(MachineBasicBlock &MBB);
|
||||||
|
|
||||||
|
@ -63,18 +54,9 @@ namespace {
|
||||||
/// in predecessor basic blocks.
|
/// in predecessor basic blocks.
|
||||||
void EliminatePHINodes(MachineBasicBlock &MBB);
|
void EliminatePHINodes(MachineBasicBlock &MBB);
|
||||||
|
|
||||||
/// EmitPrologue/EmitEpilogue - Use the register info object to add a
|
|
||||||
/// prologue/epilogue to the function and save/restore any callee saved
|
|
||||||
/// registers we are responsible for.
|
|
||||||
///
|
|
||||||
void EmitPrologue();
|
|
||||||
void EmitEpilogue(MachineBasicBlock &MBB);
|
|
||||||
|
|
||||||
|
|
||||||
/// getStackSpaceFor - This returns the offset of the specified virtual
|
/// getStackSpaceFor - This returns the offset of the specified virtual
|
||||||
/// register on the stack, allocating space if neccesary.
|
/// register on the stack, allocating space if neccesary.
|
||||||
unsigned getStackSpaceFor(unsigned VirtReg,
|
int getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass *RC);
|
||||||
const TargetRegisterClass *regClass);
|
|
||||||
|
|
||||||
/// Given a virtual register, return a compatible physical register that is
|
/// Given a virtual register, return a compatible physical register that is
|
||||||
/// currently unused.
|
/// currently unused.
|
||||||
|
@ -83,30 +65,6 @@ namespace {
|
||||||
///
|
///
|
||||||
unsigned getFreeReg(unsigned virtualReg);
|
unsigned getFreeReg(unsigned virtualReg);
|
||||||
|
|
||||||
/// Returns all `borrowed' registers back to the free pool
|
|
||||||
void clearAllRegs() {
|
|
||||||
RegClassIdx.clear();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Invalidates any references, real or implicit, to physical registers
|
|
||||||
///
|
|
||||||
void invalidatePhysRegs(const MachineInstr *MI) {
|
|
||||||
unsigned Opcode = MI->getOpcode();
|
|
||||||
const MachineInstrDescriptor &Desc = TM.getInstrInfo().get(Opcode);
|
|
||||||
if (const unsigned *regs = Desc.ImplicitUses)
|
|
||||||
while (*regs)
|
|
||||||
RegsUsed.insert(*regs++);
|
|
||||||
|
|
||||||
if (const unsigned *regs = Desc.ImplicitDefs)
|
|
||||||
while (*regs)
|
|
||||||
RegsUsed.insert(*regs++);
|
|
||||||
}
|
|
||||||
|
|
||||||
void cleanupAfterFunction() {
|
|
||||||
VirtReg2OffsetMap.clear();
|
|
||||||
NumBytesAllocated = 4; // FIXME: This is X86 specific
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Moves value from memory into that register
|
/// Moves value from memory into that register
|
||||||
unsigned reloadVirtReg(MachineBasicBlock &MBB,
|
unsigned reloadVirtReg(MachineBasicBlock &MBB,
|
||||||
MachineBasicBlock::iterator &I, unsigned VirtReg);
|
MachineBasicBlock::iterator &I, unsigned VirtReg);
|
||||||
|
@ -120,69 +78,62 @@ namespace {
|
||||||
|
|
||||||
/// getStackSpaceFor - This allocates space for the specified virtual
|
/// getStackSpaceFor - This allocates space for the specified virtual
|
||||||
/// register to be held on the stack.
|
/// register to be held on the stack.
|
||||||
unsigned RegAllocSimple::getStackSpaceFor(unsigned VirtReg,
|
int RegAllocSimple::getStackSpaceFor(unsigned VirtReg,
|
||||||
const TargetRegisterClass *regClass) {
|
const TargetRegisterClass *RC) {
|
||||||
// Find the location VirtReg would belong...
|
// Find the location VirtReg would belong...
|
||||||
std::map<unsigned, unsigned>::iterator I =
|
std::map<unsigned, int>::iterator I =
|
||||||
VirtReg2OffsetMap.lower_bound(VirtReg);
|
StackSlotForVirtReg.lower_bound(VirtReg);
|
||||||
|
|
||||||
if (I != VirtReg2OffsetMap.end() && I->first == VirtReg)
|
if (I != StackSlotForVirtReg.end() && I->first == VirtReg)
|
||||||
return I->second; // Already has space allocated?
|
return I->second; // Already has space allocated?
|
||||||
|
|
||||||
unsigned RegSize = regClass->getDataSize();
|
// Allocate a new stack object for this spill location...
|
||||||
|
int FrameIdx =
|
||||||
// Align NumBytesAllocated. We should be using TargetData alignment stuff
|
MF->getFrameInfo()->CreateStackObject(RC->getSize(), RC->getAlignment());
|
||||||
// to determine this, but we don't know the LLVM type associated with the
|
|
||||||
// virtual register. Instead, just align to a multiple of the size for now.
|
|
||||||
NumBytesAllocated += RegSize-1;
|
|
||||||
NumBytesAllocated = NumBytesAllocated/RegSize*RegSize;
|
|
||||||
|
|
||||||
// Assign the slot...
|
// Assign the slot...
|
||||||
VirtReg2OffsetMap.insert(I, std::make_pair(VirtReg, NumBytesAllocated));
|
StackSlotForVirtReg.insert(I, std::make_pair(VirtReg, FrameIdx));
|
||||||
|
|
||||||
// Reserve the space!
|
return FrameIdx;
|
||||||
NumBytesAllocated += RegSize;
|
|
||||||
return NumBytesAllocated-RegSize;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned RegAllocSimple::getFreeReg(unsigned virtualReg) {
|
unsigned RegAllocSimple::getFreeReg(unsigned virtualReg) {
|
||||||
const TargetRegisterClass* RC = MF->getSSARegMap()->getRegClass(virtualReg);
|
const TargetRegisterClass* RC = MF->getSSARegMap()->getRegClass(virtualReg);
|
||||||
|
TargetRegisterClass::iterator RI = RC->allocation_order_begin(*MF);
|
||||||
|
TargetRegisterClass::iterator RE = RC->allocation_order_end(*MF);
|
||||||
|
|
||||||
|
while (1) {
|
||||||
unsigned regIdx = RegClassIdx[RC]++;
|
unsigned regIdx = RegClassIdx[RC]++;
|
||||||
assert(regIdx < RC->getNumRegs() && "Not enough registers!");
|
assert(RI+regIdx != RE && "Not enough registers!");
|
||||||
unsigned physReg = RC->getRegister(regIdx);
|
unsigned PhysReg = *(RI+regIdx);
|
||||||
|
|
||||||
if (RegsUsed.find(physReg) == RegsUsed.end())
|
if (!RegsUsed[PhysReg])
|
||||||
return physReg;
|
return PhysReg;
|
||||||
else
|
}
|
||||||
return getFreeReg(virtualReg);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned RegAllocSimple::reloadVirtReg(MachineBasicBlock &MBB,
|
unsigned RegAllocSimple::reloadVirtReg(MachineBasicBlock &MBB,
|
||||||
MachineBasicBlock::iterator &I,
|
MachineBasicBlock::iterator &I,
|
||||||
unsigned VirtReg) {
|
unsigned VirtReg) {
|
||||||
const TargetRegisterClass* RC = MF->getSSARegMap()->getRegClass(VirtReg);
|
const TargetRegisterClass* RC = MF->getSSARegMap()->getRegClass(VirtReg);
|
||||||
unsigned stackOffset = getStackSpaceFor(VirtReg, RC);
|
int FrameIdx = getStackSpaceFor(VirtReg, RC);
|
||||||
unsigned PhysReg = getFreeReg(VirtReg);
|
unsigned PhysReg = getFreeReg(VirtReg);
|
||||||
|
|
||||||
// Add move instruction(s)
|
// Add move instruction(s)
|
||||||
++NumReloaded;
|
++NumReloaded;
|
||||||
RegInfo->loadRegOffset2Reg(MBB, I, PhysReg, RegInfo->getFramePointer(),
|
RegInfo->loadRegFromStackSlot(MBB, I, PhysReg, FrameIdx, RC);
|
||||||
-stackOffset, RC);
|
|
||||||
return PhysReg;
|
return PhysReg;
|
||||||
}
|
}
|
||||||
|
|
||||||
void RegAllocSimple::spillVirtReg(MachineBasicBlock &MBB,
|
void RegAllocSimple::spillVirtReg(MachineBasicBlock &MBB,
|
||||||
MachineBasicBlock::iterator &I,
|
MachineBasicBlock::iterator &I,
|
||||||
unsigned VirtReg, unsigned PhysReg)
|
unsigned VirtReg, unsigned PhysReg) {
|
||||||
{
|
|
||||||
const TargetRegisterClass* RC = MF->getSSARegMap()->getRegClass(VirtReg);
|
const TargetRegisterClass* RC = MF->getSSARegMap()->getRegClass(VirtReg);
|
||||||
unsigned stackOffset = getStackSpaceFor(VirtReg, RC);
|
int FrameIdx = getStackSpaceFor(VirtReg, RC);
|
||||||
|
|
||||||
// Add move instruction(s)
|
// Add move instruction(s)
|
||||||
++NumSpilled;
|
++NumSpilled;
|
||||||
RegInfo->storeReg2RegOffset(MBB, I, PhysReg, RegInfo->getFramePointer(),
|
RegInfo->storeRegToStackSlot(MBB, I, PhysReg, FrameIdx, RC);
|
||||||
-stackOffset, RC);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -190,7 +141,7 @@ void RegAllocSimple::spillVirtReg(MachineBasicBlock &MBB,
|
||||||
/// predecessor basic blocks.
|
/// predecessor basic blocks.
|
||||||
///
|
///
|
||||||
void RegAllocSimple::EliminatePHINodes(MachineBasicBlock &MBB) {
|
void RegAllocSimple::EliminatePHINodes(MachineBasicBlock &MBB) {
|
||||||
const MachineInstrInfo &MII = TM.getInstrInfo();
|
const MachineInstrInfo &MII = TM->getInstrInfo();
|
||||||
|
|
||||||
while (MBB.front()->getOpcode() == MachineInstrInfo::PHI) {
|
while (MBB.front()->getOpcode() == MachineInstrInfo::PHI) {
|
||||||
MachineInstr *MI = MBB.front();
|
MachineInstr *MI = MBB.front();
|
||||||
|
@ -242,15 +193,9 @@ void RegAllocSimple::EliminatePHINodes(MachineBasicBlock &MBB) {
|
||||||
const TargetRegisterClass *RC =
|
const TargetRegisterClass *RC =
|
||||||
MF->getSSARegMap()->getRegClass(virtualReg);
|
MF->getSSARegMap()->getRegClass(virtualReg);
|
||||||
|
|
||||||
// Retrieve the constant value from this op, move it to target
|
assert(opVal.isVirtualRegister() &&
|
||||||
// register of the phi
|
"Machine PHI Operands must all be virtual registers!");
|
||||||
if (opVal.isImmediate()) {
|
RegInfo->copyRegToReg(opBlock, opI, virtualReg, opVal.getReg(), RC);
|
||||||
RegInfo->moveImm2Reg(opBlock, opI, virtualReg,
|
|
||||||
(unsigned) opVal.getImmedValue(), RC);
|
|
||||||
} else {
|
|
||||||
RegInfo->moveReg2Reg(opBlock, opI, virtualReg,
|
|
||||||
opVal.getAllocatedRegNum(), RC);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -268,9 +213,19 @@ void RegAllocSimple::AllocateBasicBlock(MachineBasicBlock &MBB) {
|
||||||
|
|
||||||
MachineInstr *MI = *I;
|
MachineInstr *MI = *I;
|
||||||
|
|
||||||
|
RegsUsed.resize(MRegisterInfo::FirstVirtualRegister);
|
||||||
|
|
||||||
// a preliminary pass that will invalidate any registers that
|
// a preliminary pass that will invalidate any registers that
|
||||||
// are used by the instruction (including implicit uses)
|
// are used by the instruction (including implicit uses)
|
||||||
invalidatePhysRegs(MI);
|
unsigned Opcode = MI->getOpcode();
|
||||||
|
const MachineInstrDescriptor &Desc = TM->getInstrInfo().get(Opcode);
|
||||||
|
if (const unsigned *Regs = Desc.ImplicitUses)
|
||||||
|
while (*Regs)
|
||||||
|
RegsUsed[*Regs++] = true;
|
||||||
|
|
||||||
|
if (const unsigned *Regs = Desc.ImplicitDefs)
|
||||||
|
while (*Regs)
|
||||||
|
RegsUsed[*Regs++] = true;
|
||||||
|
|
||||||
// Loop over uses, move from memory into registers
|
// Loop over uses, move from memory into registers
|
||||||
for (int i = MI->getNumOperands() - 1; i >= 0; --i) {
|
for (int i = MI->getNumOperands() - 1; i >= 0; --i) {
|
||||||
|
@ -280,14 +235,14 @@ void RegAllocSimple::AllocateBasicBlock(MachineBasicBlock &MBB) {
|
||||||
unsigned virtualReg = (unsigned) op.getAllocatedRegNum();
|
unsigned virtualReg = (unsigned) op.getAllocatedRegNum();
|
||||||
DEBUG(std::cerr << "op: " << op << "\n");
|
DEBUG(std::cerr << "op: " << op << "\n");
|
||||||
DEBUG(std::cerr << "\t inst[" << i << "]: ";
|
DEBUG(std::cerr << "\t inst[" << i << "]: ";
|
||||||
MI->print(std::cerr, TM));
|
MI->print(std::cerr, *TM));
|
||||||
|
|
||||||
// make sure the same virtual register maps to the same physical
|
// make sure the same virtual register maps to the same physical
|
||||||
// register in any given instruction
|
// register in any given instruction
|
||||||
unsigned physReg = Virt2PhysRegMap[virtualReg];
|
unsigned physReg = Virt2PhysRegMap[virtualReg];
|
||||||
if (physReg == 0) {
|
if (physReg == 0) {
|
||||||
if (op.opIsDef()) {
|
if (op.opIsDef()) {
|
||||||
if (TM.getInstrInfo().isTwoAddrInstr(MI->getOpcode()) && i == 0) {
|
if (TM->getInstrInfo().isTwoAddrInstr(MI->getOpcode()) && i == 0) {
|
||||||
// must be same register number as the first operand
|
// must be same register number as the first operand
|
||||||
// This maps a = b + c into b += c, and saves b into a's spot
|
// This maps a = b + c into b += c, and saves b into a's spot
|
||||||
assert(MI->getOperand(1).isRegister() &&
|
assert(MI->getOperand(1).isRegister() &&
|
||||||
|
@ -312,64 +267,19 @@ void RegAllocSimple::AllocateBasicBlock(MachineBasicBlock &MBB) {
|
||||||
", phys: " << op.getAllocatedRegNum() << "\n");
|
", phys: " << op.getAllocatedRegNum() << "\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
clearAllRegs();
|
RegClassIdx.clear();
|
||||||
|
RegsUsed.clear();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// EmitPrologue - Use the register info object to add a prologue to the
|
|
||||||
/// function and save any callee saved registers we are responsible for.
|
|
||||||
///
|
|
||||||
void RegAllocSimple::EmitPrologue() {
|
|
||||||
// Get a list of the callee saved registers, so that we can save them on entry
|
|
||||||
// to the function.
|
|
||||||
//
|
|
||||||
MachineBasicBlock &MBB = MF->front(); // Prolog goes in entry BB
|
|
||||||
MachineBasicBlock::iterator I = MBB.begin();
|
|
||||||
|
|
||||||
const unsigned *CSRegs = RegInfo->getCalleeSaveRegs();
|
|
||||||
for (unsigned i = 0; CSRegs[i]; ++i) {
|
|
||||||
const TargetRegisterClass *RegClass = RegInfo->getRegClass(CSRegs[i]);
|
|
||||||
unsigned Offset = getStackSpaceFor(CSRegs[i], RegClass);
|
|
||||||
|
|
||||||
// Insert the spill to the stack frame...
|
|
||||||
RegInfo->storeReg2RegOffset(MBB, I,CSRegs[i],RegInfo->getFramePointer(),
|
|
||||||
-Offset, RegClass);
|
|
||||||
++NumSpilled;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Add prologue to the function...
|
|
||||||
RegInfo->emitPrologue(*MF, NumBytesAllocated);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/// EmitEpilogue - Use the register info object to add a epilogue to the
|
|
||||||
/// function and restore any callee saved registers we are responsible for.
|
|
||||||
///
|
|
||||||
void RegAllocSimple::EmitEpilogue(MachineBasicBlock &MBB) {
|
|
||||||
// Insert instructions before the return.
|
|
||||||
MachineBasicBlock::iterator I = MBB.end()-1;
|
|
||||||
|
|
||||||
const unsigned *CSRegs = RegInfo->getCalleeSaveRegs();
|
|
||||||
for (unsigned i = 0; CSRegs[i]; ++i) {
|
|
||||||
const TargetRegisterClass *RegClass = RegInfo->getRegClass(CSRegs[i]);
|
|
||||||
unsigned Offset = getStackSpaceFor(CSRegs[i], RegClass);
|
|
||||||
|
|
||||||
RegInfo->loadRegOffset2Reg(MBB, I, CSRegs[i],RegInfo->getFramePointer(),
|
|
||||||
-Offset, RegClass);
|
|
||||||
--I; // Insert in reverse order
|
|
||||||
++NumReloaded;
|
|
||||||
}
|
|
||||||
|
|
||||||
RegInfo->emitEpilogue(MBB, NumBytesAllocated);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/// runOnMachineFunction - Register allocate the whole function
|
/// runOnMachineFunction - Register allocate the whole function
|
||||||
///
|
///
|
||||||
bool RegAllocSimple::runOnMachineFunction(MachineFunction &Fn) {
|
bool RegAllocSimple::runOnMachineFunction(MachineFunction &Fn) {
|
||||||
DEBUG(std::cerr << "Machine Function " << "\n");
|
DEBUG(std::cerr << "Machine Function " << "\n");
|
||||||
MF = &Fn;
|
MF = &Fn;
|
||||||
|
TM = &MF->getTarget();
|
||||||
|
RegInfo = TM->getRegisterInfo();
|
||||||
|
|
||||||
// First pass: eliminate PHI instructions by inserting copies into predecessor
|
// First pass: eliminate PHI instructions by inserting copies into predecessor
|
||||||
// blocks.
|
// blocks.
|
||||||
|
@ -382,27 +292,10 @@ bool RegAllocSimple::runOnMachineFunction(MachineFunction &Fn) {
|
||||||
MBB != MBBe; ++MBB)
|
MBB != MBBe; ++MBB)
|
||||||
AllocateBasicBlock(*MBB);
|
AllocateBasicBlock(*MBB);
|
||||||
|
|
||||||
// Round stack allocation up to a nice alignment to keep the stack aligned
|
StackSlotForVirtReg.clear();
|
||||||
// FIXME: This is X86 specific! Move to frame manager
|
|
||||||
NumBytesAllocated = (NumBytesAllocated + 3) & ~3;
|
|
||||||
|
|
||||||
// Emit a prologue for the function...
|
|
||||||
EmitPrologue();
|
|
||||||
|
|
||||||
const MachineInstrInfo &MII = TM.getInstrInfo();
|
|
||||||
|
|
||||||
// Add epilogue to restore the callee-save registers in each exiting block
|
|
||||||
for (MachineFunction::iterator MBB = Fn.begin(), MBBe = Fn.end();
|
|
||||||
MBB != MBBe; ++MBB) {
|
|
||||||
// If last instruction is a return instruction, add an epilogue
|
|
||||||
if (MII.isReturn(MBB->back()->getOpcode()))
|
|
||||||
EmitEpilogue(*MBB);
|
|
||||||
}
|
|
||||||
|
|
||||||
cleanupAfterFunction();
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
Pass *createSimpleRegisterAllocator(TargetMachine &TM) {
|
Pass *createSimpleRegisterAllocator() {
|
||||||
return new RegAllocSimple(TM);
|
return new RegAllocSimple();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue