Skip to content
Spiller.cpp 11.1 KiB
Newer Older
//===-- llvm/CodeGen/Spiller.cpp -  Spiller -------------------------------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#define DEBUG_TYPE "spiller"

#include "Spiller.h"
#include "VirtRegMap.h"
#include "llvm/CodeGen/LiveIntervalAnalysis.h"
#include "llvm/CodeGen/MachineFrameInfo.h"
#include "llvm/CodeGen/MachineFunction.h"
#include "llvm/CodeGen/MachineRegisterInfo.h"
#include "llvm/Target/TargetMachine.h"
#include "llvm/Target/TargetInstrInfo.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/raw_ostream.h"

using namespace llvm;

Spiller::~Spiller() {}

namespace {

/// Utility class for spillers.
class SpillerBase : public Spiller {
protected:

  MachineFunction *mf;
  LiveIntervals *lis;
  LiveStacks *ls;
  MachineFrameInfo *mfi;
  MachineRegisterInfo *mri;
  const TargetInstrInfo *tii;
  VirtRegMap *vrm;
  
  /// Construct a spiller base. 
  SpillerBase(MachineFunction *mf, LiveIntervals *lis, LiveStacks *ls,
              VirtRegMap *vrm) :
  {
    mfi = mf->getFrameInfo();
    mri = &mf->getRegInfo();
    tii = mf->getTarget().getInstrInfo();
  }

Lang Hames's avatar
Lang Hames committed
  /// Ensures there is space before the given machine instruction, returns the
  /// instruction's new number.
Lang Hames's avatar
Lang Hames committed
  SlotIndex makeSpaceBefore(MachineInstr *mi) {
    //if (!lis->hasGapBeforeInstr(lis->getInstructionIndex(mi))) {
Lang Hames's avatar
Lang Hames committed
      // FIXME: Should be updated to use rewrite-in-place methods when they're
      // introduced. Currently broken.
      //lis->scaleNumbering(2);
      //ls->scaleNumbering(2);
Lang Hames's avatar
Lang Hames committed

Lang Hames's avatar
Lang Hames committed
    SlotIndex miIdx = lis->getInstructionIndex(mi);
Lang Hames's avatar
Lang Hames committed
    
    return miIdx;
  }

  /// Ensure there is space after the given machine instruction, returns the
  /// instruction's new number.
Lang Hames's avatar
Lang Hames committed
  SlotIndex makeSpaceAfter(MachineInstr *mi) {
    //if (!lis->hasGapAfterInstr(lis->getInstructionIndex(mi))) {
Lang Hames's avatar
Lang Hames committed
      // FIXME: Should be updated to use rewrite-in-place methods when they're
      // introduced. Currently broken.
      // lis->scaleNumbering(2);
      // ls->scaleNumbering(2);
Lang Hames's avatar
Lang Hames committed
    SlotIndex miIdx = lis->getInstructionIndex(mi);
Lang Hames's avatar
Lang Hames committed
    return miIdx;
  }  

  /// Insert a store of the given vreg to the given stack slot immediately
  /// after the given instruction. Returns the base index of the inserted
  /// instruction. The caller is responsible for adding an appropriate
  /// LiveInterval to the LiveIntervals analysis.
Lang Hames's avatar
Lang Hames committed
  SlotIndex insertStoreAfter(MachineInstr *mi, unsigned ss,
                                     unsigned vreg,
                                     const TargetRegisterClass *trc) {
    MachineBasicBlock::iterator nextInstItr(next(mi)); 
Lang Hames's avatar
Lang Hames committed

Lang Hames's avatar
Lang Hames committed
    SlotIndex miIdx = makeSpaceAfter(mi);
Lang Hames's avatar
Lang Hames committed

    tii->storeRegToStackSlot(*mi->getParent(), nextInstItr, vreg,
    MachineBasicBlock::iterator storeInstItr(next(mi));
  /// Insert a store of the given vreg to the given stack slot immediately
  /// before the given instructnion. Returns the base index of the inserted
  /// Instruction.
Lang Hames's avatar
Lang Hames committed
  SlotIndex insertStoreBefore(MachineInstr *mi, unsigned ss,
                                      unsigned vreg,
                                      const TargetRegisterClass *trc) {
Lang Hames's avatar
Lang Hames committed
    SlotIndex miIdx = makeSpaceBefore(mi);
  
    tii->storeRegToStackSlot(*mi->getParent(), mi, vreg, true, ss, trc);
    MachineBasicBlock::iterator storeInstItr(prior(mi));
    MachineInstr *storeInst = &*storeInstItr;

  }

  void insertStoreAfterInstOnInterval(LiveInterval *li,
                                      MachineInstr *mi, unsigned ss,
                                      unsigned vreg,
                                      const TargetRegisterClass *trc) {
Lang Hames's avatar
Lang Hames committed
    SlotIndex storeInstIdx = insertStoreAfter(mi, ss, vreg, trc);
    SlotIndex start = lis->getInstructionIndex(mi).getDefIndex(),
              end = storeInstIdx.getUseIndex();

    VNInfo *vni =
      li->getNextValue(storeInstIdx, 0, true, lis->getVNInfoAllocator());
    DEBUG(errs() << "    Inserting store range: [" << start
                 << ", " << end << ")\n");
    LiveRange lr(start, end, vni);
      
    li->addRange(lr);
  }

  /// Insert a load of the given vreg from the given stack slot immediately
  /// after the given instruction. Returns the base index of the inserted
  /// instruction. The caller is responsibel for adding/removing an appropriate
  /// range vreg's LiveInterval.
Lang Hames's avatar
Lang Hames committed
  SlotIndex insertLoadAfter(MachineInstr *mi, unsigned ss,
                                    unsigned vreg,
                                    const TargetRegisterClass *trc) {

    MachineBasicBlock::iterator nextInstItr(next(mi)); 

Lang Hames's avatar
Lang Hames committed
    SlotIndex miIdx = makeSpaceAfter(mi);

    tii->loadRegFromStackSlot(*mi->getParent(), nextInstItr, vreg, ss, trc);
    MachineBasicBlock::iterator loadInstItr(next(mi));
    MachineInstr *loadInst = &*loadInstItr;
    
  }

  /// Insert a load of the given vreg from the given stack slot immediately
  /// before the given instruction. Returns the base index of the inserted
  /// instruction. The caller is responsible for adding an appropriate
  /// LiveInterval to the LiveIntervals analysis.
Lang Hames's avatar
Lang Hames committed
  SlotIndex insertLoadBefore(MachineInstr *mi, unsigned ss,
                                     unsigned vreg,
                                     const TargetRegisterClass *trc) {  
Lang Hames's avatar
Lang Hames committed
    SlotIndex miIdx = makeSpaceBefore(mi);
Lang Hames's avatar
Lang Hames committed
  
    tii->loadRegFromStackSlot(*mi->getParent(), mi, vreg, ss, trc);
    MachineBasicBlock::iterator loadInstItr(prior(mi));
  void insertLoadBeforeInstOnInterval(LiveInterval *li,
                                      MachineInstr *mi, unsigned ss, 
                                      unsigned vreg,
                                      const TargetRegisterClass *trc) {
Lang Hames's avatar
Lang Hames committed
    SlotIndex loadInstIdx = insertLoadBefore(mi, ss, vreg, trc);
    SlotIndex start = loadInstIdx.getDefIndex(),
              end = lis->getInstructionIndex(mi).getUseIndex();

    VNInfo *vni =
      li->getNextValue(loadInstIdx, 0, true, lis->getVNInfoAllocator());
    vni->addKill(lis->getInstructionIndex(mi));
    DEBUG(errs() << "    Intserting load range: [" << start
                 << ", " << end << ")\n");
  /// Add spill ranges for every use/def of the live interval, inserting loads
  /// immediately before each use, and stores after each def. No folding is
  /// attempted.
  std::vector<LiveInterval*> trivialSpillEverywhere(LiveInterval *li) {
    DEBUG(errs() << "Spilling everywhere " << *li << "\n");

    assert(li->weight != HUGE_VALF &&
           "Attempting to spill already spilled value.");

    assert(!li->isStackSlot() &&
           "Trying to spill a stack slot.");

    DEBUG(errs() << "Trivial spill everywhere of reg" << li->reg << "\n");
    std::vector<LiveInterval*> added;
    
    const TargetRegisterClass *trc = mri->getRegClass(li->reg);
    unsigned ss = vrm->assignVirt2StackSlot(li->reg);

    for (MachineRegisterInfo::reg_iterator
         regItr = mri->reg_begin(li->reg); regItr != mri->reg_end();) {

      MachineInstr *mi = &*regItr;
      DEBUG(errs() << "  Processing " << *mi);
      do {
        ++regItr;
      } while (regItr != mri->reg_end() && (&*regItr == mi));
      
      SmallVector<unsigned, 2> indices;
      bool hasUse = false;
      bool hasDef = false;
    
      for (unsigned i = 0; i != mi->getNumOperands(); ++i) {
        MachineOperand &op = mi->getOperand(i);

        if (!op.isReg() || op.getReg() != li->reg)
          continue;
      
        hasUse |= mi->getOperand(i).isUse();
        hasDef |= mi->getOperand(i).isDef();
      
        indices.push_back(i);
      }

      unsigned newVReg = mri->createVirtualRegister(trc);
      vrm->grow();
      vrm->assignVirt2StackSlot(newVReg, ss);

      LiveInterval *newLI = &lis->getOrCreateInterval(newVReg);
      newLI->weight = HUGE_VALF;
      
      for (unsigned i = 0; i < indices.size(); ++i) {
        mi->getOperand(indices[i]).setReg(newVReg);

        if (mi->getOperand(indices[i]).isUse()) {
          mi->getOperand(indices[i]).setIsKill(true);
        }
      }

        insertLoadBeforeInstOnInterval(newLI, mi, ss, newVReg, trc);
        insertStoreAfterInstOnInterval(newLI, mi, ss, newVReg, trc);
/// Spills any live range using the spill-everywhere method with no attempt at
/// folding.
class TrivialSpiller : public SpillerBase {
public:

  TrivialSpiller(MachineFunction *mf, LiveIntervals *lis, LiveStacks *ls,
                 VirtRegMap *vrm) :
  std::vector<LiveInterval*> spill(LiveInterval *li) {
    return trivialSpillEverywhere(li);
  std::vector<LiveInterval*> intraBlockSplit(LiveInterval *li, VNInfo *valno)  {
    std::vector<LiveInterval*> spillIntervals;

    if (!valno->isDefAccurate() && !valno->isPHIDef()) {
      // Early out for values which have no well defined def point.
      return spillIntervals;
    }

    // Ok.. we should be able to proceed...
    const TargetRegisterClass *trc = mri->getRegClass(li->reg);
    unsigned ss = vrm->assignVirt2StackSlot(li->reg);    
    vrm->grow();
    vrm->assignVirt2StackSlot(li->reg, ss);

    MachineInstr *mi = 0;
Lang Hames's avatar
Lang Hames committed
    SlotIndex storeIdx = SlotIndex();

    if (valno->isDefAccurate()) {
      // If we have an accurate def we can just grab an iterator to the instr
      // after the def.
      mi = lis->getInstructionFromIndex(valno->def);
Lang Hames's avatar
Lang Hames committed
      storeIdx = insertStoreAfter(mi, ss, li->reg, trc).getDefIndex();
      // if we get here we have a PHI def.
      mi = &lis->getMBBFromIndex(valno->def)->front();
Lang Hames's avatar
Lang Hames committed
      storeIdx = insertStoreBefore(mi, ss, li->reg, trc).getDefIndex();
    }

    MachineBasicBlock *defBlock = mi->getParent();
Lang Hames's avatar
Lang Hames committed
    SlotIndex loadIdx = SlotIndex();

    // Now we need to find the load...
    MachineBasicBlock::iterator useItr(mi);
    for (; !useItr->readsRegister(li->reg); ++useItr) {}

    if (useItr != defBlock->end()) {
      MachineInstr *loadInst = useItr;
Lang Hames's avatar
Lang Hames committed
      loadIdx = insertLoadBefore(loadInst, ss, li->reg, trc).getUseIndex();
    }
    else {
      MachineInstr *loadInst = &defBlock->back();
Lang Hames's avatar
Lang Hames committed
      loadIdx = insertLoadAfter(loadInst, ss, li->reg, trc).getUseIndex();
    li->removeRange(storeIdx, loadIdx, true);
};

}

llvm::Spiller* llvm::createSpiller(MachineFunction *mf, LiveIntervals *lis,
                                   LiveStacks *ls, VirtRegMap *vrm) {
  return new TrivialSpiller(mf, lis, ls, vrm);