2002-12-16 14:37:00 +00:00
|
|
|
//===-- RegAllocSimple.cpp - A simple generic register allocator ----------===//
|
2003-10-20 19:43:21 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2002-11-22 22:44:32 +00:00
|
|
|
//
|
2002-12-28 20:42:14 +00:00
|
|
|
// 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.
|
2002-11-22 22:44:32 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2003-08-03 21:47:31 +00:00
|
|
|
#define DEBUG_TYPE "regalloc"
|
2003-01-13 00:26:08 +00:00
|
|
|
#include "llvm/CodeGen/Passes.h"
|
2002-12-28 20:42:14 +00:00
|
|
|
#include "llvm/CodeGen/MachineFunctionPass.h"
|
2002-12-15 18:19:24 +00:00
|
|
|
#include "llvm/CodeGen/MachineInstr.h"
|
2002-12-25 05:04:20 +00:00
|
|
|
#include "llvm/CodeGen/SSARegMap.h"
|
2002-12-28 21:08:26 +00:00
|
|
|
#include "llvm/CodeGen/MachineFrameInfo.h"
|
2003-01-14 22:00:31 +00:00
|
|
|
#include "llvm/Target/TargetInstrInfo.h"
|
2002-11-22 22:44:32 +00:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2003-08-01 22:21:34 +00:00
|
|
|
#include "Support/Debug.h"
|
2002-11-22 22:44:32 +00:00
|
|
|
#include "Support/Statistic.h"
|
2004-02-23 04:12:30 +00:00
|
|
|
#include "Support/STLExtras.h"
|
2002-12-15 18:19:24 +00:00
|
|
|
#include <iostream>
|
2004-02-15 21:38:28 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2002-12-13 10:42:31 +00:00
|
|
|
namespace {
|
2004-02-19 06:19:09 +00:00
|
|
|
Statistic<> NumStores("ra-simple", "Number of stores added");
|
|
|
|
Statistic<> NumLoads ("ra-simple", "Number of loads added");
|
2002-12-15 20:36:09 +00:00
|
|
|
|
2002-12-28 20:42:14 +00:00
|
|
|
class RegAllocSimple : public MachineFunctionPass {
|
2002-11-22 22:44:32 +00:00
|
|
|
MachineFunction *MF;
|
2002-12-28 20:42:14 +00:00
|
|
|
const TargetMachine *TM;
|
2002-11-22 22:44:32 +00:00
|
|
|
const MRegisterInfo *RegInfo;
|
|
|
|
|
2002-12-28 20:42:14 +00:00
|
|
|
// StackSlotForVirtReg - Maps SSA Regs => frame index on the stack where
|
|
|
|
// these values are spilled
|
|
|
|
std::map<unsigned, int> StackSlotForVirtReg;
|
2002-11-22 22:44:32 +00:00
|
|
|
|
2002-12-28 20:42:14 +00:00
|
|
|
// RegsUsed - Keep track of what registers are currently in use. This is a
|
|
|
|
// bitset.
|
|
|
|
std::vector<bool> RegsUsed;
|
2002-12-15 20:36:09 +00:00
|
|
|
|
|
|
|
// RegClassIdx - Maps RegClass => which index we can take a register
|
|
|
|
// from. Since this is a simple register allocator, when we need a register
|
|
|
|
// of a certain class, we just take the next available one.
|
2002-11-22 22:44:32 +00:00
|
|
|
std::map<const TargetRegisterClass*, unsigned> RegClassIdx;
|
|
|
|
|
2002-12-15 20:36:09 +00:00
|
|
|
public:
|
2002-12-15 21:13:12 +00:00
|
|
|
virtual const char *getPassName() const {
|
|
|
|
return "Simple Register Allocator";
|
|
|
|
}
|
|
|
|
|
2002-12-15 20:36:09 +00:00
|
|
|
/// runOnMachineFunction - Register allocate the whole function
|
|
|
|
bool runOnMachineFunction(MachineFunction &Fn);
|
|
|
|
|
2003-01-13 00:26:08 +00:00
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.addRequiredID(PHIEliminationID); // Eliminate PHI nodes
|
|
|
|
MachineFunctionPass::getAnalysisUsage(AU);
|
|
|
|
}
|
2002-12-28 20:42:14 +00:00
|
|
|
private:
|
2002-12-15 20:36:09 +00:00
|
|
|
/// AllocateBasicBlock - Register allocate the specified basic block.
|
|
|
|
void AllocateBasicBlock(MachineBasicBlock &MBB);
|
|
|
|
|
2002-12-15 22:19:19 +00:00
|
|
|
/// getStackSpaceFor - This returns the offset of the specified virtual
|
2003-08-18 14:43:39 +00:00
|
|
|
/// register on the stack, allocating space if necessary.
|
2002-12-28 20:42:14 +00:00
|
|
|
int getStackSpaceFor(unsigned VirtReg, const TargetRegisterClass *RC);
|
2002-12-02 21:11:58 +00:00
|
|
|
|
2002-12-15 22:19:19 +00:00
|
|
|
/// Given a virtual register, return a compatible physical register that is
|
|
|
|
/// currently unused.
|
2002-12-15 20:36:09 +00:00
|
|
|
///
|
2002-11-22 22:44:32 +00:00
|
|
|
/// Side effect: marks that register as being used until manually cleared
|
2002-12-15 20:36:09 +00:00
|
|
|
///
|
2002-11-22 22:44:32 +00:00
|
|
|
unsigned getFreeReg(unsigned virtualReg);
|
|
|
|
|
|
|
|
/// Moves value from memory into that register
|
2002-12-15 23:01:26 +00:00
|
|
|
unsigned reloadVirtReg(MachineBasicBlock &MBB,
|
2004-02-23 04:12:30 +00:00
|
|
|
MachineBasicBlock::iterator I, unsigned VirtReg);
|
2002-11-22 22:44:32 +00:00
|
|
|
|
|
|
|
/// Saves reg value on the stack (maps virtual register to stack value)
|
2004-02-23 04:12:30 +00:00
|
|
|
void spillVirtReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator I,
|
2002-12-15 23:01:26 +00:00
|
|
|
unsigned VirtReg, unsigned PhysReg);
|
2002-11-22 22:44:32 +00:00
|
|
|
};
|
|
|
|
|
2002-12-13 10:42:31 +00:00
|
|
|
}
|
2002-11-22 22:44:32 +00:00
|
|
|
|
2002-12-15 22:19:19 +00:00
|
|
|
/// getStackSpaceFor - This allocates space for the specified virtual
|
2002-12-15 19:51:14 +00:00
|
|
|
/// register to be held on the stack.
|
2002-12-28 20:42:14 +00:00
|
|
|
int RegAllocSimple::getStackSpaceFor(unsigned VirtReg,
|
|
|
|
const TargetRegisterClass *RC) {
|
2002-12-15 22:19:19 +00:00
|
|
|
// Find the location VirtReg would belong...
|
2002-12-28 20:42:14 +00:00
|
|
|
std::map<unsigned, int>::iterator I =
|
|
|
|
StackSlotForVirtReg.lower_bound(VirtReg);
|
2002-12-15 22:19:19 +00:00
|
|
|
|
2002-12-28 20:42:14 +00:00
|
|
|
if (I != StackSlotForVirtReg.end() && I->first == VirtReg)
|
2002-12-15 22:19:19 +00:00
|
|
|
return I->second; // Already has space allocated?
|
|
|
|
|
2002-12-28 20:42:14 +00:00
|
|
|
// Allocate a new stack object for this spill location...
|
2003-01-13 00:26:08 +00:00
|
|
|
int FrameIdx = MF->getFrameInfo()->CreateStackObject(RC);
|
2002-12-15 22:19:19 +00:00
|
|
|
|
|
|
|
// Assign the slot...
|
2002-12-28 20:42:14 +00:00
|
|
|
StackSlotForVirtReg.insert(I, std::make_pair(VirtReg, FrameIdx));
|
|
|
|
|
|
|
|
return FrameIdx;
|
2002-12-02 21:11:58 +00:00
|
|
|
}
|
|
|
|
|
2002-11-22 22:44:32 +00:00
|
|
|
unsigned RegAllocSimple::getFreeReg(unsigned virtualReg) {
|
2002-12-25 05:04:20 +00:00
|
|
|
const TargetRegisterClass* RC = MF->getSSARegMap()->getRegClass(virtualReg);
|
2002-12-28 20:42:14 +00:00
|
|
|
TargetRegisterClass::iterator RI = RC->allocation_order_begin(*MF);
|
|
|
|
TargetRegisterClass::iterator RE = RC->allocation_order_end(*MF);
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
unsigned regIdx = RegClassIdx[RC]++;
|
|
|
|
assert(RI+regIdx != RE && "Not enough registers!");
|
|
|
|
unsigned PhysReg = *(RI+regIdx);
|
|
|
|
|
|
|
|
if (!RegsUsed[PhysReg])
|
|
|
|
return PhysReg;
|
|
|
|
}
|
2002-11-22 22:44:32 +00:00
|
|
|
}
|
|
|
|
|
2002-12-15 23:01:26 +00:00
|
|
|
unsigned RegAllocSimple::reloadVirtReg(MachineBasicBlock &MBB,
|
2004-02-23 04:12:30 +00:00
|
|
|
MachineBasicBlock::iterator I,
|
2002-12-15 23:01:26 +00:00
|
|
|
unsigned VirtReg) {
|
2002-12-25 05:04:20 +00:00
|
|
|
const TargetRegisterClass* RC = MF->getSSARegMap()->getRegClass(VirtReg);
|
2002-12-28 20:42:14 +00:00
|
|
|
int FrameIdx = getStackSpaceFor(VirtReg, RC);
|
2002-12-15 23:01:26 +00:00
|
|
|
unsigned PhysReg = getFreeReg(VirtReg);
|
2002-11-22 22:44:32 +00:00
|
|
|
|
2002-12-02 21:11:58 +00:00
|
|
|
// Add move instruction(s)
|
2004-02-19 06:19:09 +00:00
|
|
|
++NumLoads;
|
2002-12-28 20:42:14 +00:00
|
|
|
RegInfo->loadRegFromStackSlot(MBB, I, PhysReg, FrameIdx, RC);
|
2002-12-15 23:01:26 +00:00
|
|
|
return PhysReg;
|
2002-11-22 22:44:32 +00:00
|
|
|
}
|
|
|
|
|
2002-12-15 23:01:26 +00:00
|
|
|
void RegAllocSimple::spillVirtReg(MachineBasicBlock &MBB,
|
2004-02-23 04:12:30 +00:00
|
|
|
MachineBasicBlock::iterator I,
|
2002-12-28 20:42:14 +00:00
|
|
|
unsigned VirtReg, unsigned PhysReg) {
|
2002-12-25 05:04:20 +00:00
|
|
|
const TargetRegisterClass* RC = MF->getSSARegMap()->getRegClass(VirtReg);
|
2002-12-28 20:42:14 +00:00
|
|
|
int FrameIdx = getStackSpaceFor(VirtReg, RC);
|
2002-12-02 21:11:58 +00:00
|
|
|
|
2002-11-22 22:44:32 +00:00
|
|
|
// Add move instruction(s)
|
2004-02-19 06:19:09 +00:00
|
|
|
++NumStores;
|
2002-12-28 20:42:14 +00:00
|
|
|
RegInfo->storeRegToStackSlot(MBB, I, PhysReg, FrameIdx, RC);
|
2002-11-22 22:44:32 +00:00
|
|
|
}
|
|
|
|
|
2002-12-03 23:15:19 +00:00
|
|
|
|
2002-12-15 19:51:14 +00:00
|
|
|
void RegAllocSimple::AllocateBasicBlock(MachineBasicBlock &MBB) {
|
2002-12-15 21:33:51 +00:00
|
|
|
// loop over each instruction
|
2004-02-12 02:27:10 +00:00
|
|
|
for (MachineBasicBlock::iterator MI = MBB.begin(); MI != MBB.end(); ++MI) {
|
2002-12-15 21:24:30 +00:00
|
|
|
// Made to combat the incorrect allocation of r2 = add r1, r1
|
2002-12-15 22:19:19 +00:00
|
|
|
std::map<unsigned, unsigned> Virt2PhysRegMap;
|
2002-12-15 21:24:30 +00:00
|
|
|
|
2004-02-15 21:37:17 +00:00
|
|
|
RegsUsed.resize(RegInfo->getNumRegs());
|
2002-12-15 19:51:14 +00:00
|
|
|
|
|
|
|
// a preliminary pass that will invalidate any registers that
|
|
|
|
// are used by the instruction (including implicit uses)
|
2002-12-28 20:42:14 +00:00
|
|
|
unsigned Opcode = MI->getOpcode();
|
2003-01-14 22:00:31 +00:00
|
|
|
const TargetInstrDescriptor &Desc = TM->getInstrInfo().get(Opcode);
|
2003-10-08 05:20:08 +00:00
|
|
|
const unsigned *Regs = Desc.ImplicitUses;
|
|
|
|
while (*Regs)
|
|
|
|
RegsUsed[*Regs++] = true;
|
2002-12-28 20:42:14 +00:00
|
|
|
|
2003-10-08 05:20:08 +00:00
|
|
|
Regs = Desc.ImplicitDefs;
|
|
|
|
while (*Regs)
|
|
|
|
RegsUsed[*Regs++] = true;
|
2002-12-15 19:51:14 +00:00
|
|
|
|
|
|
|
// Loop over uses, move from memory into registers
|
|
|
|
for (int i = MI->getNumOperands() - 1; i >= 0; --i) {
|
|
|
|
MachineOperand &op = MI->getOperand(i);
|
|
|
|
|
2004-03-16 01:45:55 +00:00
|
|
|
if (op.isRegister() && op.getReg() &&
|
|
|
|
MRegisterInfo::isVirtualRegister(op.getReg())) {
|
2004-02-13 21:01:20 +00:00
|
|
|
unsigned virtualReg = (unsigned) op.getReg();
|
2002-12-15 19:51:14 +00:00
|
|
|
DEBUG(std::cerr << "op: " << op << "\n");
|
|
|
|
DEBUG(std::cerr << "\t inst[" << i << "]: ";
|
2002-12-28 20:42:14 +00:00
|
|
|
MI->print(std::cerr, *TM));
|
2002-12-15 19:51:14 +00:00
|
|
|
|
|
|
|
// make sure the same virtual register maps to the same physical
|
|
|
|
// register in any given instruction
|
2002-12-15 22:19:19 +00:00
|
|
|
unsigned physReg = Virt2PhysRegMap[virtualReg];
|
|
|
|
if (physReg == 0) {
|
2003-12-14 13:24:17 +00:00
|
|
|
if (op.isDef()) {
|
2004-02-15 21:38:28 +00:00
|
|
|
if (!TM->getInstrInfo().isTwoAddrInstr(MI->getOpcode()) || i) {
|
|
|
|
physReg = getFreeReg(virtualReg);
|
|
|
|
} else {
|
2002-12-15 19:51:14 +00:00
|
|
|
// must be same register number as the first operand
|
|
|
|
// This maps a = b + c into b += c, and saves b into a's spot
|
2002-12-15 21:02:20 +00:00
|
|
|
assert(MI->getOperand(1).isRegister() &&
|
2004-02-13 21:01:20 +00:00
|
|
|
MI->getOperand(1).getReg() &&
|
2003-12-14 13:24:17 +00:00
|
|
|
MI->getOperand(1).isUse() &&
|
2002-12-15 21:02:20 +00:00
|
|
|
"Two address instruction invalid!");
|
|
|
|
|
2004-02-13 21:01:20 +00:00
|
|
|
physReg = MI->getOperand(1).getReg();
|
2004-02-23 04:12:30 +00:00
|
|
|
spillVirtReg(MBB, next(MI), virtualReg, physReg);
|
2004-02-15 21:38:28 +00:00
|
|
|
MI->getOperand(1).setDef();
|
|
|
|
MI->RemoveOperand(0);
|
|
|
|
break; // This is the last operand to process
|
2002-12-12 23:20:31 +00:00
|
|
|
}
|
2004-02-23 04:12:30 +00:00
|
|
|
spillVirtReg(MBB, next(MI), virtualReg, physReg);
|
2002-12-15 19:51:14 +00:00
|
|
|
} else {
|
2004-02-12 02:27:10 +00:00
|
|
|
physReg = reloadVirtReg(MBB, MI, virtualReg);
|
2002-12-15 23:01:26 +00:00
|
|
|
Virt2PhysRegMap[virtualReg] = physReg;
|
2002-12-02 21:11:58 +00:00
|
|
|
}
|
2002-11-22 22:44:32 +00:00
|
|
|
}
|
2002-12-15 19:51:14 +00:00
|
|
|
MI->SetMachineOperandReg(i, physReg);
|
|
|
|
DEBUG(std::cerr << "virt: " << virtualReg <<
|
2004-02-13 21:01:20 +00:00
|
|
|
", phys: " << op.getReg() << "\n");
|
2002-11-22 22:44:32 +00:00
|
|
|
}
|
|
|
|
}
|
2002-12-28 20:42:14 +00:00
|
|
|
RegClassIdx.clear();
|
|
|
|
RegsUsed.clear();
|
2002-12-17 04:19:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-12-15 20:36:09 +00:00
|
|
|
/// runOnMachineFunction - Register allocate the whole function
|
|
|
|
///
|
2002-12-15 19:51:14 +00:00
|
|
|
bool RegAllocSimple::runOnMachineFunction(MachineFunction &Fn) {
|
|
|
|
DEBUG(std::cerr << "Machine Function " << "\n");
|
|
|
|
MF = &Fn;
|
2002-12-28 20:42:14 +00:00
|
|
|
TM = &MF->getTarget();
|
|
|
|
RegInfo = TM->getRegisterInfo();
|
2002-12-15 19:51:14 +00:00
|
|
|
|
2002-12-15 22:19:19 +00:00
|
|
|
// Loop over all of the basic blocks, eliminating virtual register references
|
2002-12-15 19:51:14 +00:00
|
|
|
for (MachineFunction::iterator MBB = Fn.begin(), MBBe = Fn.end();
|
|
|
|
MBB != MBBe; ++MBB)
|
|
|
|
AllocateBasicBlock(*MBB);
|
2002-11-22 22:44:32 +00:00
|
|
|
|
2002-12-28 20:42:14 +00:00
|
|
|
StackSlotForVirtReg.clear();
|
2002-12-15 22:19:19 +00:00
|
|
|
return true;
|
2002-11-22 22:44:32 +00:00
|
|
|
}
|
|
|
|
|
2004-02-15 21:38:28 +00:00
|
|
|
FunctionPass *llvm::createSimpleRegisterAllocator() {
|
2002-12-28 20:42:14 +00:00
|
|
|
return new RegAllocSimple();
|
2002-11-22 22:44:32 +00:00
|
|
|
}
|