2004-07-23 17:56:30 +00:00
|
|
|
//===-- LiveIntervalAnalysis.cpp - Live Interval Analysis -----------------===//
|
2003-11-20 03:32:25 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2003-11-20 03:32:25 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the LiveInterval analysis pass which is used
|
|
|
|
// by the Linear Scan Register allocator. This pass linearizes the
|
|
|
|
// basic blocks of the function in DFS order and uses the
|
|
|
|
// LiveVariables pass to conservatively compute live intervals for
|
|
|
|
// each virtual and physical register.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#define DEBUG_TYPE "liveintervals"
|
2005-09-21 04:19:09 +00:00
|
|
|
#include "llvm/CodeGen/LiveIntervalAnalysis.h"
|
2004-09-03 18:25:53 +00:00
|
|
|
#include "VirtRegMap.h"
|
2004-05-01 21:24:39 +00:00
|
|
|
#include "llvm/Value.h"
|
2003-11-20 03:32:25 +00:00
|
|
|
#include "llvm/CodeGen/LiveVariables.h"
|
|
|
|
#include "llvm/CodeGen/MachineFrameInfo.h"
|
|
|
|
#include "llvm/CodeGen/MachineInstr.h"
|
2007-12-11 02:09:15 +00:00
|
|
|
#include "llvm/CodeGen/MachineLoopInfo.h"
|
2007-12-31 04:13:23 +00:00
|
|
|
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
2003-11-20 03:32:25 +00:00
|
|
|
#include "llvm/CodeGen/Passes.h"
|
2008-02-10 18:45:23 +00:00
|
|
|
#include "llvm/Target/TargetRegisterInfo.h"
|
2003-11-20 03:32:25 +00:00
|
|
|
#include "llvm/Target/TargetInstrInfo.h"
|
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
|
|
|
#include "llvm/Support/Debug.h"
|
|
|
|
#include "llvm/ADT/Statistic.h"
|
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2004-09-03 18:19:51 +00:00
|
|
|
#include <algorithm>
|
2006-12-02 02:22:01 +00:00
|
|
|
#include <cmath>
|
2003-11-20 03:32:25 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2007-08-16 07:24:22 +00:00
|
|
|
namespace {
|
|
|
|
// Hidden options for help debugging.
|
|
|
|
cl::opt<bool> DisableReMat("disable-rematerialization",
|
|
|
|
cl::init(false), cl::Hidden);
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
|
|
|
|
cl::opt<bool> SplitAtBB("split-intervals-at-bb",
|
2007-12-06 08:54:31 +00:00
|
|
|
cl::init(true), cl::Hidden);
|
2007-11-29 01:06:25 +00:00
|
|
|
cl::opt<int> SplitLimit("split-limit",
|
|
|
|
cl::init(-1), cl::Hidden);
|
2007-08-16 07:24:22 +00:00
|
|
|
}
|
|
|
|
|
2006-12-19 22:41:21 +00:00
|
|
|
STATISTIC(numIntervals, "Number of original intervals");
|
|
|
|
STATISTIC(numIntervalsAfter, "Number of intervals after coalescing");
|
2007-11-29 01:06:25 +00:00
|
|
|
STATISTIC(numFolds , "Number of loads/stores folded into instructions");
|
|
|
|
STATISTIC(numSplits , "Number of intervals split");
|
2006-12-19 22:41:21 +00:00
|
|
|
|
2007-05-03 01:11:54 +00:00
|
|
|
char LiveIntervals::ID = 0;
|
2003-11-20 03:32:25 +00:00
|
|
|
namespace {
|
2006-08-27 22:30:17 +00:00
|
|
|
RegisterPass<LiveIntervals> X("liveintervals", "Live Interval Analysis");
|
2006-05-24 17:04:05 +00:00
|
|
|
}
|
2003-11-20 03:32:25 +00:00
|
|
|
|
2006-08-24 22:43:55 +00:00
|
|
|
void LiveIntervals::getAnalysisUsage(AnalysisUsage &AU) const {
|
2007-06-08 17:18:56 +00:00
|
|
|
AU.addPreserved<LiveVariables>();
|
2004-08-04 09:46:26 +00:00
|
|
|
AU.addRequired<LiveVariables>();
|
2008-01-04 20:54:55 +00:00
|
|
|
AU.addPreservedID(MachineLoopInfoID);
|
|
|
|
AU.addPreservedID(MachineDominatorsID);
|
2004-08-04 09:46:26 +00:00
|
|
|
AU.addPreservedID(PHIEliminationID);
|
|
|
|
AU.addRequiredID(PHIEliminationID);
|
|
|
|
AU.addRequiredID(TwoAddressInstructionPassID);
|
|
|
|
MachineFunctionPass::getAnalysisUsage(AU);
|
2003-11-20 03:32:25 +00:00
|
|
|
}
|
|
|
|
|
2006-08-24 22:43:55 +00:00
|
|
|
void LiveIntervals::releaseMemory() {
|
2007-10-17 02:10:22 +00:00
|
|
|
Idx2MBBMap.clear();
|
2004-08-04 09:46:26 +00:00
|
|
|
mi2iMap_.clear();
|
|
|
|
i2miMap_.clear();
|
|
|
|
r2iMap_.clear();
|
2007-09-06 01:07:24 +00:00
|
|
|
// Release VNInfo memroy regions after all VNInfo objects are dtor'd.
|
|
|
|
VNInfoAllocator.Reset();
|
2007-08-13 23:45:17 +00:00
|
|
|
for (unsigned i = 0, e = ClonedMIs.size(); i != e; ++i)
|
|
|
|
delete ClonedMIs[i];
|
2006-05-11 07:29:24 +00:00
|
|
|
}
|
|
|
|
|
2003-11-20 03:32:25 +00:00
|
|
|
/// runOnMachineFunction - Register allocate the whole function
|
|
|
|
///
|
|
|
|
bool LiveIntervals::runOnMachineFunction(MachineFunction &fn) {
|
2004-08-04 09:46:26 +00:00
|
|
|
mf_ = &fn;
|
2008-02-22 09:24:50 +00:00
|
|
|
mri_ = &mf_->getRegInfo();
|
2004-08-04 09:46:26 +00:00
|
|
|
tm_ = &fn.getTarget();
|
2008-02-10 18:45:23 +00:00
|
|
|
tri_ = tm_->getRegisterInfo();
|
Allow the live interval analysis pass to be a bit more aggressive about
numbering values in live ranges for physical registers.
The alpha backend currently generates code that looks like this:
vreg = preg
...
preg = vreg
use preg
...
preg = vreg
use preg
etc. Because vreg contains the value of preg coming in, each of the
copies back into preg contain that initial value as well.
In the case of the Alpha, this allows this testcase:
void "foo"(int %blah) {
store int 5, int *%MyVar
store int 12, int* %MyVar2
ret void
}
to compile to:
foo:
ldgp $29, 0($27)
ldiq $0,5
stl $0,MyVar
ldiq $0,12
stl $0,MyVar2
ret $31,($26),1
instead of:
foo:
ldgp $29, 0($27)
bis $29,$29,$0
ldiq $1,5
bis $0,$0,$29
stl $1,MyVar
ldiq $1,12
bis $0,$0,$29
stl $1,MyVar2
ret $31,($26),1
This does not seem to have any noticable effect on X86 code.
This fixes PR535.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20536 91177308-0d34-0410-b5e6-96231b3b80d8
2005-03-09 23:05:19 +00:00
|
|
|
tii_ = tm_->getInstrInfo();
|
2004-08-04 09:46:26 +00:00
|
|
|
lv_ = &getAnalysis<LiveVariables>();
|
2008-02-10 18:45:23 +00:00
|
|
|
allocatableRegs_ = tri_->getAllocatableSet(fn);
|
2004-08-04 09:46:26 +00:00
|
|
|
|
2006-09-15 03:57:23 +00:00
|
|
|
// Number MachineInstrs and MachineBasicBlocks.
|
|
|
|
// Initialize MBB indexes to a sentinal.
|
2007-08-13 23:45:17 +00:00
|
|
|
MBB2IdxMap.resize(mf_->getNumBlockIDs(), std::make_pair(~0U,~0U));
|
2006-09-15 03:57:23 +00:00
|
|
|
|
|
|
|
unsigned MIIndex = 0;
|
|
|
|
for (MachineFunction::iterator MBB = mf_->begin(), E = mf_->end();
|
|
|
|
MBB != E; ++MBB) {
|
2007-08-13 23:45:17 +00:00
|
|
|
unsigned StartIdx = MIIndex;
|
2007-02-13 01:30:55 +00:00
|
|
|
|
2006-09-15 03:57:23 +00:00
|
|
|
for (MachineBasicBlock::iterator I = MBB->begin(), E = MBB->end();
|
|
|
|
I != E; ++I) {
|
|
|
|
bool inserted = mi2iMap_.insert(std::make_pair(I, MIIndex)).second;
|
2004-08-04 09:46:26 +00:00
|
|
|
assert(inserted && "multiple MachineInstr -> index mappings");
|
2006-09-15 03:57:23 +00:00
|
|
|
i2miMap_.push_back(I);
|
|
|
|
MIIndex += InstrSlots::NUM;
|
2004-08-04 09:46:26 +00:00
|
|
|
}
|
2007-08-13 23:45:17 +00:00
|
|
|
|
|
|
|
// Set the MBB2IdxMap entry for this MBB.
|
|
|
|
MBB2IdxMap[MBB->getNumber()] = std::make_pair(StartIdx, MIIndex - 1);
|
2007-10-17 02:10:22 +00:00
|
|
|
Idx2MBBMap.push_back(std::make_pair(StartIdx, MBB));
|
2006-09-15 03:57:23 +00:00
|
|
|
}
|
2007-10-17 02:10:22 +00:00
|
|
|
std::sort(Idx2MBBMap.begin(), Idx2MBBMap.end(), Idx2MBBCompare());
|
2003-11-20 03:32:25 +00:00
|
|
|
|
2004-08-04 09:46:26 +00:00
|
|
|
computeIntervals();
|
2003-11-20 03:32:25 +00:00
|
|
|
|
2004-08-04 09:46:26 +00:00
|
|
|
numIntervals += getNumIntervals();
|
2004-02-15 10:24:21 +00:00
|
|
|
|
2006-11-29 00:39:47 +00:00
|
|
|
DOUT << "********** INTERVALS **********\n";
|
|
|
|
for (iterator I = begin(), E = end(); I != E; ++I) {
|
2008-02-10 18:45:23 +00:00
|
|
|
I->second.print(DOUT, tri_);
|
2006-11-29 00:39:47 +00:00
|
|
|
DOUT << "\n";
|
|
|
|
}
|
2004-07-24 02:59:07 +00:00
|
|
|
|
2004-08-04 09:46:26 +00:00
|
|
|
numIntervalsAfter += getNumIntervals();
|
2004-09-30 15:59:17 +00:00
|
|
|
DEBUG(dump());
|
2004-08-04 09:46:26 +00:00
|
|
|
return true;
|
2003-11-20 03:32:25 +00:00
|
|
|
}
|
|
|
|
|
2004-09-30 15:59:17 +00:00
|
|
|
/// print - Implement the dump method.
|
2004-12-07 04:03:45 +00:00
|
|
|
void LiveIntervals::print(std::ostream &O, const Module* ) const {
|
2004-09-30 15:59:17 +00:00
|
|
|
O << "********** INTERVALS **********\n";
|
2005-07-27 23:03:38 +00:00
|
|
|
for (const_iterator I = begin(), E = end(); I != E; ++I) {
|
2008-02-10 18:45:23 +00:00
|
|
|
I->second.print(DOUT, tri_);
|
2006-11-29 00:39:47 +00:00
|
|
|
DOUT << "\n";
|
2005-07-27 23:03:38 +00:00
|
|
|
}
|
2004-09-30 15:59:17 +00:00
|
|
|
|
|
|
|
O << "********** MACHINEINSTRS **********\n";
|
|
|
|
for (MachineFunction::iterator mbbi = mf_->begin(), mbbe = mf_->end();
|
|
|
|
mbbi != mbbe; ++mbbi) {
|
|
|
|
O << ((Value*)mbbi->getBasicBlock())->getName() << ":\n";
|
|
|
|
for (MachineBasicBlock::iterator mii = mbbi->begin(),
|
|
|
|
mie = mbbi->end(); mii != mie; ++mii) {
|
2004-09-30 16:10:45 +00:00
|
|
|
O << getInstructionIndex(mii) << '\t' << *mii;
|
2004-09-30 15:59:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-11-03 07:20:12 +00:00
|
|
|
/// conflictsWithPhysRegDef - Returns true if the specified register
|
|
|
|
/// is defined during the duration of the specified interval.
|
|
|
|
bool LiveIntervals::conflictsWithPhysRegDef(const LiveInterval &li,
|
|
|
|
VirtRegMap &vrm, unsigned reg) {
|
|
|
|
for (LiveInterval::Ranges::const_iterator
|
|
|
|
I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
|
|
|
|
for (unsigned index = getBaseIndex(I->start),
|
|
|
|
end = getBaseIndex(I->end-1) + InstrSlots::NUM; index != end;
|
|
|
|
index += InstrSlots::NUM) {
|
|
|
|
// skip deleted instructions
|
|
|
|
while (index != end && !getInstructionFromIndex(index))
|
|
|
|
index += InstrSlots::NUM;
|
|
|
|
if (index == end) break;
|
|
|
|
|
|
|
|
MachineInstr *MI = getInstructionFromIndex(index);
|
2007-11-15 08:13:29 +00:00
|
|
|
unsigned SrcReg, DstReg;
|
|
|
|
if (tii_->isMoveInstr(*MI, SrcReg, DstReg))
|
|
|
|
if (SrcReg == li.reg || DstReg == li.reg)
|
|
|
|
continue;
|
2007-11-03 07:20:12 +00:00
|
|
|
for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
|
|
|
|
MachineOperand& mop = MI->getOperand(i);
|
2007-11-15 08:13:29 +00:00
|
|
|
if (!mop.isRegister())
|
2007-11-03 07:20:12 +00:00
|
|
|
continue;
|
|
|
|
unsigned PhysReg = mop.getReg();
|
2007-11-15 08:13:29 +00:00
|
|
|
if (PhysReg == 0 || PhysReg == li.reg)
|
2007-11-03 07:20:12 +00:00
|
|
|
continue;
|
2008-02-10 18:45:23 +00:00
|
|
|
if (TargetRegisterInfo::isVirtualRegister(PhysReg)) {
|
2007-11-15 08:13:29 +00:00
|
|
|
if (!vrm.hasPhys(PhysReg))
|
|
|
|
continue;
|
2007-11-03 07:20:12 +00:00
|
|
|
PhysReg = vrm.getPhys(PhysReg);
|
2007-11-15 08:13:29 +00:00
|
|
|
}
|
2008-02-10 18:45:23 +00:00
|
|
|
if (PhysReg && tri_->regsOverlap(PhysReg, reg))
|
2007-11-03 07:20:12 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-08-22 18:19:46 +00:00
|
|
|
void LiveIntervals::printRegName(unsigned reg) const {
|
2008-02-10 18:45:23 +00:00
|
|
|
if (TargetRegisterInfo::isPhysicalRegister(reg))
|
2008-02-26 21:47:57 +00:00
|
|
|
cerr << tri_->getName(reg);
|
2004-08-04 09:46:26 +00:00
|
|
|
else
|
2006-12-07 01:30:32 +00:00
|
|
|
cerr << "%reg" << reg;
|
2003-11-20 03:32:25 +00:00
|
|
|
}
|
|
|
|
|
2006-08-22 18:19:46 +00:00
|
|
|
void LiveIntervals::handleVirtualRegisterDef(MachineBasicBlock *mbb,
|
2003-11-20 03:32:25 +00:00
|
|
|
MachineBasicBlock::iterator mi,
|
2006-09-03 08:07:11 +00:00
|
|
|
unsigned MIIdx,
|
2006-08-22 18:19:46 +00:00
|
|
|
LiveInterval &interval) {
|
2006-11-29 00:39:47 +00:00
|
|
|
DOUT << "\t\tregister: "; DEBUG(printRegName(interval.reg));
|
2004-08-04 09:46:26 +00:00
|
|
|
LiveVariables::VarInfo& vi = lv_->getVarInfo(interval.reg);
|
|
|
|
|
2004-08-04 09:46:56 +00:00
|
|
|
// Virtual registers may be defined multiple times (due to phi
|
|
|
|
// elimination and 2-addr elimination). Much of what we do only has to be
|
|
|
|
// done once for the vreg. We use an empty interval to detect the first
|
2004-08-04 09:46:26 +00:00
|
|
|
// time we see a vreg.
|
|
|
|
if (interval.empty()) {
|
|
|
|
// Get the Idx of the defining instructions.
|
2006-09-03 08:07:11 +00:00
|
|
|
unsigned defIndex = getDefIndex(MIIdx);
|
2007-08-29 20:45:00 +00:00
|
|
|
VNInfo *ValNo;
|
2008-02-15 18:24:29 +00:00
|
|
|
MachineInstr *CopyMI = NULL;
|
2006-08-31 05:54:43 +00:00
|
|
|
unsigned SrcReg, DstReg;
|
2008-02-15 18:24:29 +00:00
|
|
|
if (mi->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG ||
|
|
|
|
tii_->isMoveInstr(*mi, SrcReg, DstReg))
|
|
|
|
CopyMI = mi;
|
|
|
|
ValNo = interval.getNextValue(defIndex, CopyMI, VNInfoAllocator);
|
2007-08-29 20:45:00 +00:00
|
|
|
|
|
|
|
assert(ValNo->id == 0 && "First value in interval is not 0?");
|
2004-08-04 09:46:26 +00:00
|
|
|
|
|
|
|
// Loop over all of the blocks that the vreg is defined in. There are
|
|
|
|
// two cases we have to handle here. The most common case is a vreg
|
|
|
|
// whose lifetime is contained within a basic block. In this case there
|
|
|
|
// will be a single kill, in MBB, which comes after the definition.
|
|
|
|
if (vi.Kills.size() == 1 && vi.Kills[0]->getParent() == mbb) {
|
|
|
|
// FIXME: what about dead vars?
|
|
|
|
unsigned killIdx;
|
|
|
|
if (vi.Kills[0] != mi)
|
|
|
|
killIdx = getUseIndex(getInstructionIndex(vi.Kills[0]))+1;
|
|
|
|
else
|
|
|
|
killIdx = defIndex+1;
|
|
|
|
|
|
|
|
// If the kill happens after the definition, we have an intra-block
|
|
|
|
// live range.
|
|
|
|
if (killIdx > defIndex) {
|
2007-02-15 05:59:24 +00:00
|
|
|
assert(vi.AliveBlocks.none() &&
|
2004-08-04 09:46:26 +00:00
|
|
|
"Shouldn't be alive across any blocks!");
|
2007-08-29 20:45:00 +00:00
|
|
|
LiveRange LR(defIndex, killIdx, ValNo);
|
2004-08-04 09:46:26 +00:00
|
|
|
interval.addRange(LR);
|
2006-11-29 00:39:47 +00:00
|
|
|
DOUT << " +" << LR << "\n";
|
2007-09-05 21:46:51 +00:00
|
|
|
interval.addKill(ValNo, killIdx);
|
2004-08-04 09:46:26 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2004-07-19 02:15:56 +00:00
|
|
|
|
2004-08-04 09:46:26 +00:00
|
|
|
// The other case we handle is when a virtual register lives to the end
|
|
|
|
// of the defining block, potentially live across some blocks, then is
|
|
|
|
// live into some number of blocks, but gets killed. Start by adding a
|
|
|
|
// range that goes from this definition to the end of the defining block.
|
2004-08-31 17:39:15 +00:00
|
|
|
LiveRange NewLR(defIndex,
|
|
|
|
getInstructionIndex(&mbb->back()) + InstrSlots::NUM,
|
2007-08-29 20:45:00 +00:00
|
|
|
ValNo);
|
2006-11-29 00:39:47 +00:00
|
|
|
DOUT << " +" << NewLR;
|
2004-08-04 09:46:26 +00:00
|
|
|
interval.addRange(NewLR);
|
|
|
|
|
|
|
|
// Iterate over all of the blocks that the variable is completely
|
|
|
|
// live in, adding [insrtIndex(begin), instrIndex(end)+4) to the
|
|
|
|
// live interval.
|
|
|
|
for (unsigned i = 0, e = vi.AliveBlocks.size(); i != e; ++i) {
|
|
|
|
if (vi.AliveBlocks[i]) {
|
2006-09-15 03:57:23 +00:00
|
|
|
MachineBasicBlock *MBB = mf_->getBlockNumbered(i);
|
|
|
|
if (!MBB->empty()) {
|
|
|
|
LiveRange LR(getMBBStartIdx(i),
|
|
|
|
getInstructionIndex(&MBB->back()) + InstrSlots::NUM,
|
2007-08-29 20:45:00 +00:00
|
|
|
ValNo);
|
2004-08-04 09:46:26 +00:00
|
|
|
interval.addRange(LR);
|
2006-11-29 00:39:47 +00:00
|
|
|
DOUT << " +" << LR;
|
2004-08-04 09:46:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Finally, this virtual register is live from the start of any killing
|
|
|
|
// block to the 'use' slot of the killing instruction.
|
|
|
|
for (unsigned i = 0, e = vi.Kills.size(); i != e; ++i) {
|
|
|
|
MachineInstr *Kill = vi.Kills[i];
|
2007-08-08 03:00:28 +00:00
|
|
|
unsigned killIdx = getUseIndex(getInstructionIndex(Kill))+1;
|
2006-09-15 03:57:23 +00:00
|
|
|
LiveRange LR(getMBBStartIdx(Kill->getParent()),
|
2007-08-29 20:45:00 +00:00
|
|
|
killIdx, ValNo);
|
2004-08-04 09:46:26 +00:00
|
|
|
interval.addRange(LR);
|
2007-09-05 21:46:51 +00:00
|
|
|
interval.addKill(ValNo, killIdx);
|
2006-11-29 00:39:47 +00:00
|
|
|
DOUT << " +" << LR;
|
2004-08-04 09:46:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
// If this is the second time we see a virtual register definition, it
|
|
|
|
// must be due to phi elimination or two addr elimination. If this is
|
2006-11-03 03:04:46 +00:00
|
|
|
// the result of two address elimination, then the vreg is one of the
|
|
|
|
// def-and-use register operand.
|
2007-10-12 08:50:34 +00:00
|
|
|
if (mi->isRegReDefinedByTwoAddr(interval.reg)) {
|
2004-08-04 09:46:26 +00:00
|
|
|
// If this is a two-address definition, then we have already processed
|
|
|
|
// the live range. The only problem is that we didn't realize there
|
|
|
|
// are actually two values in the live interval. Because of this we
|
|
|
|
// need to take the LiveRegion that defines this register and split it
|
|
|
|
// into two values.
|
2008-01-10 08:22:10 +00:00
|
|
|
assert(interval.containsOneValue());
|
|
|
|
unsigned DefIndex = getDefIndex(interval.getValNumInfo(0)->def);
|
2006-09-03 08:07:11 +00:00
|
|
|
unsigned RedefIndex = getDefIndex(MIIdx);
|
2004-08-04 09:46:26 +00:00
|
|
|
|
2007-08-11 00:59:19 +00:00
|
|
|
const LiveRange *OldLR = interval.getLiveRangeContaining(RedefIndex-1);
|
2007-08-29 20:45:00 +00:00
|
|
|
VNInfo *OldValNo = OldLR->valno;
|
2007-08-11 00:59:19 +00:00
|
|
|
|
2004-08-04 09:46:26 +00:00
|
|
|
// Delete the initial value, which should be short and continuous,
|
2006-08-22 18:19:46 +00:00
|
|
|
// because the 2-addr copy must be in the same MBB as the redef.
|
2004-08-04 09:46:26 +00:00
|
|
|
interval.removeRange(DefIndex, RedefIndex);
|
2004-08-04 09:46:56 +00:00
|
|
|
|
2006-08-22 18:19:46 +00:00
|
|
|
// Two-address vregs should always only be redefined once. This means
|
|
|
|
// that at this point, there should be exactly one value number in it.
|
|
|
|
assert(interval.containsOneValue() && "Unexpected 2-addr liveint!");
|
|
|
|
|
2006-08-31 05:54:43 +00:00
|
|
|
// The new value number (#1) is defined by the instruction we claimed
|
|
|
|
// defined value #0.
|
2008-02-15 18:24:29 +00:00
|
|
|
VNInfo *ValNo = interval.getNextValue(OldValNo->def, OldValNo->copy,
|
|
|
|
VNInfoAllocator);
|
2006-08-22 18:19:46 +00:00
|
|
|
|
2006-08-31 05:54:43 +00:00
|
|
|
// Value#0 is now defined by the 2-addr instruction.
|
2008-02-15 18:24:29 +00:00
|
|
|
OldValNo->def = RedefIndex;
|
|
|
|
OldValNo->copy = 0;
|
2006-08-22 18:19:46 +00:00
|
|
|
|
|
|
|
// Add the new live interval which replaces the range for the input copy.
|
|
|
|
LiveRange LR(DefIndex, RedefIndex, ValNo);
|
2006-11-29 00:39:47 +00:00
|
|
|
DOUT << " replace range with " << LR;
|
2004-08-04 09:46:26 +00:00
|
|
|
interval.addRange(LR);
|
2007-09-05 21:46:51 +00:00
|
|
|
interval.addKill(ValNo, RedefIndex);
|
2004-08-04 09:46:26 +00:00
|
|
|
|
|
|
|
// If this redefinition is dead, we need to add a dummy unit live
|
|
|
|
// range covering the def slot.
|
2005-08-23 22:51:41 +00:00
|
|
|
if (lv_->RegisterDefIsDead(mi, interval.reg))
|
2007-08-29 20:45:00 +00:00
|
|
|
interval.addRange(LiveRange(RedefIndex, RedefIndex+1, OldValNo));
|
2004-08-04 09:46:26 +00:00
|
|
|
|
2007-03-15 21:19:28 +00:00
|
|
|
DOUT << " RESULT: ";
|
2008-02-10 18:45:23 +00:00
|
|
|
interval.print(DOUT, tri_);
|
2004-08-04 09:46:26 +00:00
|
|
|
|
|
|
|
} else {
|
|
|
|
// Otherwise, this must be because of phi elimination. If this is the
|
|
|
|
// first redefinition of the vreg that we have seen, go back and change
|
|
|
|
// the live range in the PHI block to be a different value number.
|
|
|
|
if (interval.containsOneValue()) {
|
|
|
|
assert(vi.Kills.size() == 1 &&
|
|
|
|
"PHI elimination vreg should have one kill, the PHI itself!");
|
|
|
|
|
|
|
|
// Remove the old range that we now know has an incorrect number.
|
2007-09-05 21:46:51 +00:00
|
|
|
VNInfo *VNI = interval.getValNumInfo(0);
|
2004-08-04 09:46:26 +00:00
|
|
|
MachineInstr *Killer = vi.Kills[0];
|
2006-09-15 03:57:23 +00:00
|
|
|
unsigned Start = getMBBStartIdx(Killer->getParent());
|
2004-08-04 09:46:26 +00:00
|
|
|
unsigned End = getUseIndex(getInstructionIndex(Killer))+1;
|
2007-03-15 21:19:28 +00:00
|
|
|
DOUT << " Removing [" << Start << "," << End << "] from: ";
|
2008-02-10 18:45:23 +00:00
|
|
|
interval.print(DOUT, tri_); DOUT << "\n";
|
2004-08-04 09:46:26 +00:00
|
|
|
interval.removeRange(Start, End);
|
2007-11-29 09:49:23 +00:00
|
|
|
VNI->hasPHIKill = true;
|
2008-02-10 18:45:23 +00:00
|
|
|
DOUT << " RESULT: "; interval.print(DOUT, tri_);
|
2004-08-04 09:46:26 +00:00
|
|
|
|
2006-08-22 18:19:46 +00:00
|
|
|
// Replace the interval with one of a NEW value number. Note that this
|
|
|
|
// value number isn't actually defined by an instruction, weird huh? :)
|
2007-09-05 21:46:51 +00:00
|
|
|
LiveRange LR(Start, End, interval.getNextValue(~0, 0, VNInfoAllocator));
|
2006-11-29 00:39:47 +00:00
|
|
|
DOUT << " replace range with " << LR;
|
2004-08-04 09:46:26 +00:00
|
|
|
interval.addRange(LR);
|
2007-09-05 21:46:51 +00:00
|
|
|
interval.addKill(LR.valno, End);
|
2008-02-10 18:45:23 +00:00
|
|
|
DOUT << " RESULT: "; interval.print(DOUT, tri_);
|
2004-08-04 09:46:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// In the case of PHI elimination, each variable definition is only
|
|
|
|
// live until the end of the block. We've already taken care of the
|
|
|
|
// rest of the live range.
|
2006-09-03 08:07:11 +00:00
|
|
|
unsigned defIndex = getDefIndex(MIIdx);
|
2006-08-31 05:54:43 +00:00
|
|
|
|
2007-08-29 20:45:00 +00:00
|
|
|
VNInfo *ValNo;
|
2008-02-15 18:24:29 +00:00
|
|
|
MachineInstr *CopyMI = NULL;
|
2006-08-31 05:54:43 +00:00
|
|
|
unsigned SrcReg, DstReg;
|
2008-02-15 18:24:29 +00:00
|
|
|
if (mi->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG ||
|
|
|
|
tii_->isMoveInstr(*mi, SrcReg, DstReg))
|
|
|
|
CopyMI = mi;
|
|
|
|
ValNo = interval.getNextValue(defIndex, CopyMI, VNInfoAllocator);
|
2006-08-31 05:54:43 +00:00
|
|
|
|
2007-08-08 07:03:29 +00:00
|
|
|
unsigned killIndex = getInstructionIndex(&mbb->back()) + InstrSlots::NUM;
|
2007-08-29 20:45:00 +00:00
|
|
|
LiveRange LR(defIndex, killIndex, ValNo);
|
2004-08-04 09:46:26 +00:00
|
|
|
interval.addRange(LR);
|
2007-11-29 09:49:23 +00:00
|
|
|
interval.addKill(ValNo, killIndex);
|
|
|
|
ValNo->hasPHIKill = true;
|
2006-11-29 00:39:47 +00:00
|
|
|
DOUT << " +" << LR;
|
2003-12-18 08:48:48 +00:00
|
|
|
}
|
2004-08-04 09:46:26 +00:00
|
|
|
}
|
2003-11-20 03:32:25 +00:00
|
|
|
|
2006-11-29 00:39:47 +00:00
|
|
|
DOUT << '\n';
|
2003-11-20 03:32:25 +00:00
|
|
|
}
|
|
|
|
|
2004-07-23 21:24:19 +00:00
|
|
|
void LiveIntervals::handlePhysicalRegisterDef(MachineBasicBlock *MBB,
|
2003-11-20 03:32:25 +00:00
|
|
|
MachineBasicBlock::iterator mi,
|
2006-09-03 08:07:11 +00:00
|
|
|
unsigned MIIdx,
|
2006-08-31 05:54:43 +00:00
|
|
|
LiveInterval &interval,
|
2008-02-15 18:24:29 +00:00
|
|
|
MachineInstr *CopyMI) {
|
2004-08-04 09:46:26 +00:00
|
|
|
// A physical register cannot be live across basic block, so its
|
|
|
|
// lifetime must end somewhere in its defining basic block.
|
2006-11-29 00:39:47 +00:00
|
|
|
DOUT << "\t\tregister: "; DEBUG(printRegName(interval.reg));
|
2004-08-04 09:46:26 +00:00
|
|
|
|
2006-09-03 08:07:11 +00:00
|
|
|
unsigned baseIndex = MIIdx;
|
2004-08-04 09:46:26 +00:00
|
|
|
unsigned start = getDefIndex(baseIndex);
|
|
|
|
unsigned end = start;
|
|
|
|
|
|
|
|
// If it is not used after definition, it is considered dead at
|
|
|
|
// the instruction defining it. Hence its interval is:
|
|
|
|
// [defSlot(def), defSlot(def)+1)
|
2005-08-23 22:51:41 +00:00
|
|
|
if (lv_->RegisterDefIsDead(mi, interval.reg)) {
|
2006-11-29 00:39:47 +00:00
|
|
|
DOUT << " dead";
|
2005-08-23 22:51:41 +00:00
|
|
|
end = getDefIndex(start) + 1;
|
|
|
|
goto exit;
|
2004-08-04 09:46:26 +00:00
|
|
|
}
|
2003-11-20 03:32:25 +00:00
|
|
|
|
2004-08-04 09:46:26 +00:00
|
|
|
// If it is not dead on definition, it must be killed by a
|
|
|
|
// subsequent instruction. Hence its interval is:
|
|
|
|
// [defSlot(def), useSlot(kill)+1)
|
2005-09-02 00:20:32 +00:00
|
|
|
while (++mi != MBB->end()) {
|
2004-08-04 09:46:26 +00:00
|
|
|
baseIndex += InstrSlots::NUM;
|
2005-08-23 22:51:41 +00:00
|
|
|
if (lv_->KillsRegister(mi, interval.reg)) {
|
2006-11-29 00:39:47 +00:00
|
|
|
DOUT << " killed";
|
2005-08-23 22:51:41 +00:00
|
|
|
end = getUseIndex(baseIndex) + 1;
|
|
|
|
goto exit;
|
2006-11-15 20:54:11 +00:00
|
|
|
} else if (lv_->ModifiesRegister(mi, interval.reg)) {
|
|
|
|
// Another instruction redefines the register before it is ever read.
|
|
|
|
// Then the register is essentially dead at the instruction that defines
|
|
|
|
// it. Hence its interval is:
|
|
|
|
// [defSlot(def), defSlot(def)+1)
|
2006-11-29 00:39:47 +00:00
|
|
|
DOUT << " dead";
|
2006-11-15 20:54:11 +00:00
|
|
|
end = getDefIndex(start) + 1;
|
|
|
|
goto exit;
|
2004-07-23 21:24:19 +00:00
|
|
|
}
|
2004-08-04 09:46:26 +00:00
|
|
|
}
|
2005-09-02 00:20:32 +00:00
|
|
|
|
|
|
|
// The only case we should have a dead physreg here without a killing or
|
|
|
|
// instruction where we know it's dead is if it is live-in to the function
|
|
|
|
// and never used.
|
2008-02-15 18:24:29 +00:00
|
|
|
assert(!CopyMI && "physreg was not killed in defining block!");
|
2005-09-02 00:20:32 +00:00
|
|
|
end = getDefIndex(start) + 1; // It's dead.
|
2004-01-31 23:13:30 +00:00
|
|
|
|
2003-11-20 03:32:25 +00:00
|
|
|
exit:
|
2004-08-04 09:46:26 +00:00
|
|
|
assert(start < end && "did not find end of interval?");
|
Allow the live interval analysis pass to be a bit more aggressive about
numbering values in live ranges for physical registers.
The alpha backend currently generates code that looks like this:
vreg = preg
...
preg = vreg
use preg
...
preg = vreg
use preg
etc. Because vreg contains the value of preg coming in, each of the
copies back into preg contain that initial value as well.
In the case of the Alpha, this allows this testcase:
void "foo"(int %blah) {
store int 5, int *%MyVar
store int 12, int* %MyVar2
ret void
}
to compile to:
foo:
ldgp $29, 0($27)
ldiq $0,5
stl $0,MyVar
ldiq $0,12
stl $0,MyVar2
ret $31,($26),1
instead of:
foo:
ldgp $29, 0($27)
bis $29,$29,$0
ldiq $1,5
bis $0,$0,$29
stl $1,MyVar
ldiq $1,12
bis $0,$0,$29
stl $1,MyVar2
ret $31,($26),1
This does not seem to have any noticable effect on X86 code.
This fixes PR535.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20536 91177308-0d34-0410-b5e6-96231b3b80d8
2005-03-09 23:05:19 +00:00
|
|
|
|
2007-04-25 07:30:23 +00:00
|
|
|
// Already exists? Extend old live interval.
|
|
|
|
LiveInterval::iterator OldLR = interval.FindLiveRangeContaining(start);
|
2007-08-29 20:45:00 +00:00
|
|
|
VNInfo *ValNo = (OldLR != interval.end())
|
2008-02-15 18:24:29 +00:00
|
|
|
? OldLR->valno : interval.getNextValue(start, CopyMI, VNInfoAllocator);
|
2007-08-29 20:45:00 +00:00
|
|
|
LiveRange LR(start, end, ValNo);
|
2004-08-04 09:46:26 +00:00
|
|
|
interval.addRange(LR);
|
2007-09-05 21:46:51 +00:00
|
|
|
interval.addKill(LR.valno, end);
|
2006-11-29 00:39:47 +00:00
|
|
|
DOUT << " +" << LR << '\n';
|
2003-11-20 03:32:25 +00:00
|
|
|
}
|
|
|
|
|
2004-07-23 21:24:19 +00:00
|
|
|
void LiveIntervals::handleRegisterDef(MachineBasicBlock *MBB,
|
|
|
|
MachineBasicBlock::iterator MI,
|
2006-09-03 08:07:11 +00:00
|
|
|
unsigned MIIdx,
|
2004-07-23 21:24:19 +00:00
|
|
|
unsigned reg) {
|
2008-02-10 18:45:23 +00:00
|
|
|
if (TargetRegisterInfo::isVirtualRegister(reg))
|
2006-09-03 08:07:11 +00:00
|
|
|
handleVirtualRegisterDef(MBB, MI, MIIdx, getOrCreateInterval(reg));
|
2004-08-26 22:22:38 +00:00
|
|
|
else if (allocatableRegs_[reg]) {
|
2008-02-15 18:24:29 +00:00
|
|
|
MachineInstr *CopyMI = NULL;
|
2006-08-31 05:54:43 +00:00
|
|
|
unsigned SrcReg, DstReg;
|
2008-02-15 18:24:29 +00:00
|
|
|
if (MI->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG ||
|
|
|
|
tii_->isMoveInstr(*MI, SrcReg, DstReg))
|
|
|
|
CopyMI = MI;
|
|
|
|
handlePhysicalRegisterDef(MBB, MI, MIIdx, getOrCreateInterval(reg), CopyMI);
|
2007-04-25 07:30:23 +00:00
|
|
|
// Def of a register also defines its sub-registers.
|
2008-02-10 18:45:23 +00:00
|
|
|
for (const unsigned* AS = tri_->getSubRegisters(reg); *AS; ++AS)
|
2007-04-25 07:30:23 +00:00
|
|
|
// Avoid processing some defs more than once.
|
|
|
|
if (!MI->findRegisterDefOperand(*AS))
|
|
|
|
handlePhysicalRegisterDef(MBB, MI, MIIdx, getOrCreateInterval(*AS), 0);
|
2004-07-23 21:24:19 +00:00
|
|
|
}
|
2004-01-31 14:37:41 +00:00
|
|
|
}
|
|
|
|
|
2007-02-19 21:49:54 +00:00
|
|
|
void LiveIntervals::handleLiveInRegister(MachineBasicBlock *MBB,
|
2007-02-21 22:41:17 +00:00
|
|
|
unsigned MIIdx,
|
2007-04-25 07:30:23 +00:00
|
|
|
LiveInterval &interval, bool isAlias) {
|
2007-02-19 21:49:54 +00:00
|
|
|
DOUT << "\t\tlivein register: "; DEBUG(printRegName(interval.reg));
|
|
|
|
|
|
|
|
// Look for kills, if it reaches a def before it's killed, then it shouldn't
|
|
|
|
// be considered a livein.
|
|
|
|
MachineBasicBlock::iterator mi = MBB->begin();
|
2007-02-21 22:41:17 +00:00
|
|
|
unsigned baseIndex = MIIdx;
|
|
|
|
unsigned start = baseIndex;
|
2007-02-19 21:49:54 +00:00
|
|
|
unsigned end = start;
|
|
|
|
while (mi != MBB->end()) {
|
|
|
|
if (lv_->KillsRegister(mi, interval.reg)) {
|
|
|
|
DOUT << " killed";
|
|
|
|
end = getUseIndex(baseIndex) + 1;
|
|
|
|
goto exit;
|
|
|
|
} else if (lv_->ModifiesRegister(mi, interval.reg)) {
|
|
|
|
// Another instruction redefines the register before it is ever read.
|
|
|
|
// Then the register is essentially dead at the instruction that defines
|
|
|
|
// it. Hence its interval is:
|
|
|
|
// [defSlot(def), defSlot(def)+1)
|
|
|
|
DOUT << " dead";
|
|
|
|
end = getDefIndex(start) + 1;
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
baseIndex += InstrSlots::NUM;
|
|
|
|
++mi;
|
|
|
|
}
|
|
|
|
|
|
|
|
exit:
|
2007-06-27 01:16:36 +00:00
|
|
|
// Live-in register might not be used at all.
|
|
|
|
if (end == MIIdx) {
|
2007-06-27 18:47:28 +00:00
|
|
|
if (isAlias) {
|
|
|
|
DOUT << " dead";
|
2007-06-27 01:16:36 +00:00
|
|
|
end = getDefIndex(MIIdx) + 1;
|
2007-06-27 18:47:28 +00:00
|
|
|
} else {
|
|
|
|
DOUT << " live through";
|
|
|
|
end = baseIndex;
|
|
|
|
}
|
2007-04-25 07:30:23 +00:00
|
|
|
}
|
|
|
|
|
2007-09-05 21:46:51 +00:00
|
|
|
LiveRange LR(start, end, interval.getNextValue(start, 0, VNInfoAllocator));
|
2007-02-21 22:41:17 +00:00
|
|
|
interval.addRange(LR);
|
2007-09-05 21:46:51 +00:00
|
|
|
interval.addKill(LR.valno, end);
|
2007-08-08 07:03:29 +00:00
|
|
|
DOUT << " +" << LR << '\n';
|
2007-02-19 21:49:54 +00:00
|
|
|
}
|
|
|
|
|
2003-11-20 03:32:25 +00:00
|
|
|
/// computeIntervals - computes the live intervals for virtual
|
2004-01-31 14:37:41 +00:00
|
|
|
/// registers. for some ordering of the machine instructions [1,N] a
|
2004-01-31 19:59:32 +00:00
|
|
|
/// live interval is an interval [i, j) where 1 <= i <= j < N for
|
2003-11-20 03:32:25 +00:00
|
|
|
/// which a variable is live
|
2006-08-24 22:43:55 +00:00
|
|
|
void LiveIntervals::computeIntervals() {
|
2006-11-29 00:39:47 +00:00
|
|
|
DOUT << "********** COMPUTING LIVE INTERVALS **********\n"
|
|
|
|
<< "********** Function: "
|
|
|
|
<< ((Value*)mf_->getFunction())->getName() << '\n';
|
2006-09-03 08:07:11 +00:00
|
|
|
// Track the index of the current machine instr.
|
|
|
|
unsigned MIIndex = 0;
|
2006-09-15 03:57:23 +00:00
|
|
|
for (MachineFunction::iterator MBBI = mf_->begin(), E = mf_->end();
|
|
|
|
MBBI != E; ++MBBI) {
|
|
|
|
MachineBasicBlock *MBB = MBBI;
|
2006-11-29 00:39:47 +00:00
|
|
|
DOUT << ((Value*)MBB->getBasicBlock())->getName() << ":\n";
|
2004-08-04 09:46:26 +00:00
|
|
|
|
2006-09-15 03:57:23 +00:00
|
|
|
MachineBasicBlock::iterator MI = MBB->begin(), miEnd = MBB->end();
|
2007-02-13 01:30:55 +00:00
|
|
|
|
2007-10-03 19:26:29 +00:00
|
|
|
// Create intervals for live-ins to this BB first.
|
|
|
|
for (MachineBasicBlock::const_livein_iterator LI = MBB->livein_begin(),
|
|
|
|
LE = MBB->livein_end(); LI != LE; ++LI) {
|
|
|
|
handleLiveInRegister(MBB, MIIndex, getOrCreateInterval(*LI));
|
|
|
|
// Multiple live-ins can alias the same register.
|
2008-02-10 18:45:23 +00:00
|
|
|
for (const unsigned* AS = tri_->getSubRegisters(*LI); *AS; ++AS)
|
2007-10-03 19:26:29 +00:00
|
|
|
if (!hasInterval(*AS))
|
|
|
|
handleLiveInRegister(MBB, MIIndex, getOrCreateInterval(*AS),
|
|
|
|
true);
|
2006-09-04 18:27:40 +00:00
|
|
|
}
|
|
|
|
|
2006-09-15 03:57:23 +00:00
|
|
|
for (; MI != miEnd; ++MI) {
|
2006-11-29 00:39:47 +00:00
|
|
|
DOUT << MIIndex << "\t" << *MI;
|
2004-08-04 09:46:26 +00:00
|
|
|
|
2006-11-10 08:43:01 +00:00
|
|
|
// Handle defs.
|
2006-09-15 03:57:23 +00:00
|
|
|
for (int i = MI->getNumOperands() - 1; i >= 0; --i) {
|
|
|
|
MachineOperand &MO = MI->getOperand(i);
|
2004-08-04 09:46:26 +00:00
|
|
|
// handle register defs - build intervals
|
2006-09-15 03:57:23 +00:00
|
|
|
if (MO.isRegister() && MO.getReg() && MO.isDef())
|
|
|
|
handleRegisterDef(MBB, MI, MIIndex, MO.getReg());
|
2004-08-04 09:46:26 +00:00
|
|
|
}
|
2006-09-03 08:07:11 +00:00
|
|
|
|
|
|
|
MIIndex += InstrSlots::NUM;
|
2003-11-20 03:32:25 +00:00
|
|
|
}
|
2004-08-04 09:46:26 +00:00
|
|
|
}
|
2003-11-20 03:32:25 +00:00
|
|
|
}
|
2003-12-05 10:38:28 +00:00
|
|
|
|
2007-10-17 02:10:22 +00:00
|
|
|
bool LiveIntervals::findLiveInMBBs(const LiveRange &LR,
|
2007-10-17 06:53:44 +00:00
|
|
|
SmallVectorImpl<MachineBasicBlock*> &MBBs) const {
|
2007-10-17 02:10:22 +00:00
|
|
|
std::vector<IdxMBBPair>::const_iterator I =
|
|
|
|
std::lower_bound(Idx2MBBMap.begin(), Idx2MBBMap.end(), LR.start);
|
|
|
|
|
|
|
|
bool ResVal = false;
|
|
|
|
while (I != Idx2MBBMap.end()) {
|
|
|
|
if (LR.end <= I->first)
|
|
|
|
break;
|
|
|
|
MBBs.push_back(I->second);
|
|
|
|
ResVal = true;
|
|
|
|
++I;
|
|
|
|
}
|
|
|
|
return ResVal;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-07-24 11:44:15 +00:00
|
|
|
LiveInterval LiveIntervals::createInterval(unsigned reg) {
|
2008-02-10 18:45:23 +00:00
|
|
|
float Weight = TargetRegisterInfo::isPhysicalRegister(reg) ?
|
2006-11-07 12:25:45 +00:00
|
|
|
HUGE_VALF : 0.0F;
|
2004-07-24 11:44:15 +00:00
|
|
|
return LiveInterval(reg, Weight);
|
2004-04-09 18:07:57 +00:00
|
|
|
}
|
2007-11-12 06:35:08 +00:00
|
|
|
|
2008-02-15 18:24:29 +00:00
|
|
|
/// getVNInfoSourceReg - Helper function that parses the specified VNInfo
|
|
|
|
/// copy field and returns the source register that defines it.
|
|
|
|
unsigned LiveIntervals::getVNInfoSourceReg(const VNInfo *VNI) const {
|
|
|
|
if (!VNI->copy)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (VNI->copy->getOpcode() == TargetInstrInfo::EXTRACT_SUBREG)
|
|
|
|
return VNI->copy->getOperand(1).getReg();
|
|
|
|
unsigned SrcReg, DstReg;
|
|
|
|
if (tii_->isMoveInstr(*VNI->copy, SrcReg, DstReg))
|
|
|
|
return SrcReg;
|
|
|
|
assert(0 && "Unrecognized copy instruction!");
|
|
|
|
return 0;
|
|
|
|
}
|
2007-11-12 06:35:08 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Register allocator hooks.
|
|
|
|
//
|
|
|
|
|
2008-02-22 09:24:50 +00:00
|
|
|
/// getReMatImplicitUse - If the remat definition MI has one (for now, we only
|
|
|
|
/// allow one) virtual register operand, then its uses are implicitly using
|
|
|
|
/// the register. Returns the virtual register.
|
|
|
|
unsigned LiveIntervals::getReMatImplicitUse(const LiveInterval &li,
|
|
|
|
MachineInstr *MI) const {
|
|
|
|
unsigned RegOp = 0;
|
|
|
|
for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
|
|
|
|
MachineOperand &MO = MI->getOperand(i);
|
|
|
|
if (!MO.isRegister() || !MO.isUse())
|
|
|
|
continue;
|
|
|
|
unsigned Reg = MO.getReg();
|
|
|
|
if (Reg == 0 || Reg == li.reg)
|
|
|
|
continue;
|
|
|
|
// FIXME: For now, only remat MI with at most one register operand.
|
|
|
|
assert(!RegOp &&
|
|
|
|
"Can't rematerialize instruction with multiple register operand!");
|
|
|
|
RegOp = MO.getReg();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return RegOp;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// isValNoAvailableAt - Return true if the val# of the specified interval
|
|
|
|
/// which reaches the given instruction also reaches the specified use index.
|
|
|
|
bool LiveIntervals::isValNoAvailableAt(const LiveInterval &li, MachineInstr *MI,
|
|
|
|
unsigned UseIdx) const {
|
|
|
|
unsigned Index = getInstructionIndex(MI);
|
|
|
|
VNInfo *ValNo = li.FindLiveRangeContaining(Index)->valno;
|
|
|
|
LiveInterval::const_iterator UI = li.FindLiveRangeContaining(UseIdx);
|
|
|
|
return UI != li.end() && UI->valno == ValNo;
|
|
|
|
}
|
|
|
|
|
2007-11-12 06:35:08 +00:00
|
|
|
/// isReMaterializable - Returns true if the definition MI of the specified
|
|
|
|
/// val# of the specified interval is re-materializable.
|
|
|
|
bool LiveIntervals::isReMaterializable(const LiveInterval &li,
|
2007-12-06 00:01:56 +00:00
|
|
|
const VNInfo *ValNo, MachineInstr *MI,
|
|
|
|
bool &isLoad) {
|
2007-11-12 06:35:08 +00:00
|
|
|
if (DisableReMat)
|
|
|
|
return false;
|
|
|
|
|
2007-12-06 00:01:56 +00:00
|
|
|
isLoad = false;
|
2008-01-07 07:27:27 +00:00
|
|
|
const TargetInstrDesc &TID = MI->getDesc();
|
2008-02-22 09:24:50 +00:00
|
|
|
if (TID.isImplicitDef())
|
|
|
|
return true;
|
2008-02-23 01:44:27 +00:00
|
|
|
|
|
|
|
int FrameIdx = 0;
|
|
|
|
if (tii_->isLoadFromStackSlot(MI, FrameIdx) &&
|
2008-02-23 03:38:34 +00:00
|
|
|
mf_->getFrameInfo()->isImmutableObjectIndex(FrameIdx))
|
2008-02-25 08:50:41 +00:00
|
|
|
// FIXME: Let target specific isReallyTriviallyReMaterializable determines
|
|
|
|
// this but remember this is not safe to fold into a two-address
|
|
|
|
// instruction.
|
2008-02-23 03:38:34 +00:00
|
|
|
// This is a load from fixed stack slot. It can be rematerialized.
|
2008-02-23 01:44:27 +00:00
|
|
|
return true;
|
|
|
|
|
2008-02-22 09:24:50 +00:00
|
|
|
if (tii_->isTriviallyReMaterializable(MI)) {
|
2008-01-07 07:27:27 +00:00
|
|
|
isLoad = TID.isSimpleLoad();
|
2008-02-22 09:24:50 +00:00
|
|
|
|
|
|
|
unsigned ImpUse = getReMatImplicitUse(li, MI);
|
|
|
|
if (ImpUse) {
|
|
|
|
const LiveInterval &ImpLi = getInterval(ImpUse);
|
|
|
|
for (MachineRegisterInfo::use_iterator ri = mri_->use_begin(li.reg),
|
|
|
|
re = mri_->use_end(); ri != re; ++ri) {
|
|
|
|
MachineInstr *UseMI = &*ri;
|
|
|
|
unsigned UseIdx = getInstructionIndex(UseMI);
|
|
|
|
if (li.FindLiveRangeContaining(UseIdx)->valno != ValNo)
|
|
|
|
continue;
|
2008-02-23 02:14:42 +00:00
|
|
|
if (!isValNoAvailableAt(ImpLi, MI, UseIdx))
|
2008-02-22 09:24:50 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2007-11-12 06:35:08 +00:00
|
|
|
return true;
|
2007-12-06 00:01:56 +00:00
|
|
|
}
|
2007-11-12 06:35:08 +00:00
|
|
|
|
2008-02-23 01:44:27 +00:00
|
|
|
return false;
|
2007-12-06 00:01:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// isReMaterializable - Returns true if every definition of MI of every
|
|
|
|
/// val# of the specified interval is re-materializable.
|
|
|
|
bool LiveIntervals::isReMaterializable(const LiveInterval &li, bool &isLoad) {
|
|
|
|
isLoad = false;
|
|
|
|
for (LiveInterval::const_vni_iterator i = li.vni_begin(), e = li.vni_end();
|
|
|
|
i != e; ++i) {
|
|
|
|
const VNInfo *VNI = *i;
|
|
|
|
unsigned DefIdx = VNI->def;
|
|
|
|
if (DefIdx == ~1U)
|
|
|
|
continue; // Dead val#.
|
|
|
|
// Is the def for the val# rematerializable?
|
|
|
|
if (DefIdx == ~0u)
|
|
|
|
return false;
|
|
|
|
MachineInstr *ReMatDefMI = getInstructionFromIndex(DefIdx);
|
|
|
|
bool DefIsLoad = false;
|
2008-02-22 09:24:50 +00:00
|
|
|
if (!ReMatDefMI ||
|
|
|
|
!isReMaterializable(li, VNI, ReMatDefMI, DefIsLoad))
|
2007-11-12 06:35:08 +00:00
|
|
|
return false;
|
2007-12-06 00:01:56 +00:00
|
|
|
isLoad |= DefIsLoad;
|
2007-11-12 06:35:08 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-02-25 08:50:41 +00:00
|
|
|
/// FilterFoldedOps - Filter out two-address use operands. Return
|
|
|
|
/// true if it finds any issue with the operands that ought to prevent
|
|
|
|
/// folding.
|
|
|
|
static bool FilterFoldedOps(MachineInstr *MI,
|
|
|
|
SmallVector<unsigned, 2> &Ops,
|
|
|
|
unsigned &MRInfo,
|
|
|
|
SmallVector<unsigned, 2> &FoldOps) {
|
2008-01-07 07:27:27 +00:00
|
|
|
const TargetInstrDesc &TID = MI->getDesc();
|
2007-12-12 23:12:09 +00:00
|
|
|
|
2008-02-25 08:50:41 +00:00
|
|
|
MRInfo = 0;
|
2007-12-02 08:30:39 +00:00
|
|
|
for (unsigned i = 0, e = Ops.size(); i != e; ++i) {
|
|
|
|
unsigned OpIdx = Ops[i];
|
2008-02-22 09:24:50 +00:00
|
|
|
MachineOperand &MO = MI->getOperand(OpIdx);
|
2007-12-02 08:30:39 +00:00
|
|
|
// FIXME: fold subreg use.
|
2008-02-22 09:24:50 +00:00
|
|
|
if (MO.getSubReg())
|
2008-02-25 08:50:41 +00:00
|
|
|
return true;
|
2008-02-22 09:24:50 +00:00
|
|
|
if (MO.isDef())
|
2007-12-02 08:30:39 +00:00
|
|
|
MRInfo |= (unsigned)VirtRegMap::isMod;
|
|
|
|
else {
|
|
|
|
// Filter out two-address use operand(s).
|
2008-02-22 09:24:50 +00:00
|
|
|
if (!MO.isImplicit() &&
|
|
|
|
TID.getOperandConstraint(OpIdx, TOI::TIED_TO) != -1) {
|
2007-12-02 08:30:39 +00:00
|
|
|
MRInfo = VirtRegMap::isModRef;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
MRInfo |= (unsigned)VirtRegMap::isRef;
|
|
|
|
}
|
|
|
|
FoldOps.push_back(OpIdx);
|
2007-12-01 02:07:52 +00:00
|
|
|
}
|
2008-02-25 08:50:41 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// tryFoldMemoryOperand - Attempts to fold either a spill / restore from
|
|
|
|
/// slot / to reg or any rematerialized load into ith operand of specified
|
|
|
|
/// MI. If it is successul, MI is updated with the newly created MI and
|
|
|
|
/// returns true.
|
|
|
|
bool LiveIntervals::tryFoldMemoryOperand(MachineInstr* &MI,
|
|
|
|
VirtRegMap &vrm, MachineInstr *DefMI,
|
|
|
|
unsigned InstrIdx,
|
|
|
|
SmallVector<unsigned, 2> &Ops,
|
|
|
|
bool isSS, int Slot, unsigned Reg) {
|
|
|
|
const TargetInstrDesc &TID = MI->getDesc();
|
|
|
|
// If it is an implicit def instruction, just delete it.
|
|
|
|
if (TID.isImplicitDef()) {
|
|
|
|
RemoveMachineInstrFromMaps(MI);
|
|
|
|
vrm.RemoveMachineInstrFromMaps(MI);
|
|
|
|
MI->eraseFromParent();
|
|
|
|
++numFolds;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Filter the list of operand indexes that are to be folded. Abort if
|
|
|
|
// any operand will prevent folding.
|
|
|
|
unsigned MRInfo = 0;
|
|
|
|
SmallVector<unsigned, 2> FoldOps;
|
|
|
|
if (FilterFoldedOps(MI, Ops, MRInfo, FoldOps))
|
|
|
|
return false;
|
2007-11-30 21:23:43 +00:00
|
|
|
|
2008-02-23 03:38:34 +00:00
|
|
|
// Can't fold a load from fixed stack slot into a two address instruction.
|
|
|
|
if (isSS && DefMI && (MRInfo & VirtRegMap::isMod))
|
|
|
|
return false;
|
|
|
|
|
2008-02-08 22:05:27 +00:00
|
|
|
MachineInstr *fmi = isSS ? tii_->foldMemoryOperand(*mf_, MI, FoldOps, Slot)
|
|
|
|
: tii_->foldMemoryOperand(*mf_, MI, FoldOps, DefMI);
|
2007-11-12 06:35:08 +00:00
|
|
|
if (fmi) {
|
2008-02-27 03:04:06 +00:00
|
|
|
// Remember this instruction uses the spill slot.
|
|
|
|
if (isSS) vrm.addSpillSlotUse(Slot, fmi);
|
|
|
|
|
2007-11-12 06:35:08 +00:00
|
|
|
// Attempt to fold the memory reference into the instruction. If
|
|
|
|
// we can do this, we don't need to insert spill code.
|
|
|
|
if (lv_)
|
|
|
|
lv_->instructionChanged(MI, fmi);
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
else
|
2008-02-10 18:45:23 +00:00
|
|
|
fmi->copyKillDeadInfo(MI, tri_);
|
2007-11-12 06:35:08 +00:00
|
|
|
MachineBasicBlock &MBB = *MI->getParent();
|
2008-01-10 08:24:38 +00:00
|
|
|
if (isSS && !mf_->getFrameInfo()->isImmutableObjectIndex(Slot))
|
2007-12-02 08:30:39 +00:00
|
|
|
vrm.virtFolded(Reg, MI, fmi, (VirtRegMap::ModRef)MRInfo);
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
vrm.transferSpillPts(MI, fmi);
|
2007-11-29 01:06:25 +00:00
|
|
|
vrm.transferRestorePts(MI, fmi);
|
2007-11-12 06:35:08 +00:00
|
|
|
mi2iMap_.erase(MI);
|
2007-11-30 21:23:43 +00:00
|
|
|
i2miMap_[InstrIdx /InstrSlots::NUM] = fmi;
|
|
|
|
mi2iMap_[fmi] = InstrIdx;
|
2007-11-12 06:35:08 +00:00
|
|
|
MI = MBB.insert(MBB.erase(MI), fmi);
|
2007-11-29 01:06:25 +00:00
|
|
|
++numFolds;
|
2007-11-12 06:35:08 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-12-05 03:22:34 +00:00
|
|
|
/// canFoldMemoryOperand - Returns true if the specified load / store
|
|
|
|
/// folding is possible.
|
|
|
|
bool LiveIntervals::canFoldMemoryOperand(MachineInstr *MI,
|
2008-02-25 08:50:41 +00:00
|
|
|
SmallVector<unsigned, 2> &Ops,
|
2008-02-25 19:24:01 +00:00
|
|
|
bool ReMatLoad) const {
|
2008-02-25 08:50:41 +00:00
|
|
|
// Filter the list of operand indexes that are to be folded. Abort if
|
|
|
|
// any operand will prevent folding.
|
|
|
|
unsigned MRInfo = 0;
|
2007-12-05 03:22:34 +00:00
|
|
|
SmallVector<unsigned, 2> FoldOps;
|
2008-02-25 08:50:41 +00:00
|
|
|
if (FilterFoldedOps(MI, Ops, MRInfo, FoldOps))
|
|
|
|
return false;
|
2007-12-05 03:22:34 +00:00
|
|
|
|
2008-02-25 19:24:01 +00:00
|
|
|
// Can't fold a remat'ed load into a two address instruction.
|
|
|
|
if (ReMatLoad && (MRInfo & VirtRegMap::isMod))
|
2008-02-25 08:50:41 +00:00
|
|
|
return false;
|
2007-12-05 03:22:34 +00:00
|
|
|
|
2008-02-22 09:24:50 +00:00
|
|
|
return tii_->canFoldMemoryOperand(MI, FoldOps);
|
|
|
|
}
|
|
|
|
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
bool LiveIntervals::intervalIsInOneMBB(const LiveInterval &li) const {
|
|
|
|
SmallPtrSet<MachineBasicBlock*, 4> MBBs;
|
|
|
|
for (LiveInterval::Ranges::const_iterator
|
|
|
|
I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
|
|
|
|
std::vector<IdxMBBPair>::const_iterator II =
|
|
|
|
std::lower_bound(Idx2MBBMap.begin(), Idx2MBBMap.end(), I->start);
|
|
|
|
if (II == Idx2MBBMap.end())
|
|
|
|
continue;
|
|
|
|
if (I->end > II->first) // crossing a MBB.
|
|
|
|
return false;
|
|
|
|
MBBs.insert(II->second);
|
|
|
|
if (MBBs.size() > 1)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-02-22 09:24:50 +00:00
|
|
|
/// rewriteImplicitOps - Rewrite implicit use operands of MI (i.e. uses of
|
|
|
|
/// interval on to-be re-materialized operands of MI) with new register.
|
|
|
|
void LiveIntervals::rewriteImplicitOps(const LiveInterval &li,
|
|
|
|
MachineInstr *MI, unsigned NewVReg,
|
|
|
|
VirtRegMap &vrm) {
|
|
|
|
// There is an implicit use. That means one of the other operand is
|
|
|
|
// being remat'ed and the remat'ed instruction has li.reg as an
|
|
|
|
// use operand. Make sure we rewrite that as well.
|
|
|
|
for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
|
|
|
|
MachineOperand &MO = MI->getOperand(i);
|
|
|
|
if (!MO.isRegister())
|
|
|
|
continue;
|
|
|
|
unsigned Reg = MO.getReg();
|
|
|
|
if (Reg == 0 || TargetRegisterInfo::isPhysicalRegister(Reg))
|
|
|
|
continue;
|
|
|
|
if (!vrm.isReMaterialized(Reg))
|
|
|
|
continue;
|
|
|
|
MachineInstr *ReMatMI = vrm.getReMaterializedMI(Reg);
|
|
|
|
int OpIdx = ReMatMI->findRegisterUseOperandIdx(li.reg);
|
|
|
|
if (OpIdx != -1)
|
|
|
|
ReMatMI->getOperand(OpIdx).setReg(NewVReg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-11-12 06:35:08 +00:00
|
|
|
/// rewriteInstructionForSpills, rewriteInstructionsForSpills - Helper functions
|
|
|
|
/// for addIntervalsForSpills to rewrite uses / defs for the given live range.
|
2007-12-05 03:22:34 +00:00
|
|
|
bool LiveIntervals::
|
2008-02-22 09:24:50 +00:00
|
|
|
rewriteInstructionForSpills(const LiveInterval &li, const VNInfo *VNI,
|
|
|
|
bool TrySplit, unsigned index, unsigned end, MachineInstr *MI,
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
MachineInstr *ReMatOrigDefMI, MachineInstr *ReMatDefMI,
|
2007-11-12 06:35:08 +00:00
|
|
|
unsigned Slot, int LdSlot,
|
|
|
|
bool isLoad, bool isLoadSS, bool DefIsReMat, bool CanDelete,
|
2008-02-22 09:24:50 +00:00
|
|
|
VirtRegMap &vrm,
|
2007-11-12 06:35:08 +00:00
|
|
|
const TargetRegisterClass* rc,
|
|
|
|
SmallVector<int, 4> &ReMatIds,
|
2007-12-11 02:09:15 +00:00
|
|
|
const MachineLoopInfo *loopInfo,
|
2008-02-23 00:33:04 +00:00
|
|
|
unsigned &NewVReg, unsigned ImpUse, bool &HasDef, bool &HasUse,
|
2007-11-29 10:12:14 +00:00
|
|
|
std::map<unsigned,unsigned> &MBBVRegsMap,
|
2007-11-12 06:35:08 +00:00
|
|
|
std::vector<LiveInterval*> &NewLIs) {
|
2007-12-05 03:22:34 +00:00
|
|
|
bool CanFold = false;
|
2007-11-12 06:35:08 +00:00
|
|
|
RestartInstruction:
|
|
|
|
for (unsigned i = 0; i != MI->getNumOperands(); ++i) {
|
|
|
|
MachineOperand& mop = MI->getOperand(i);
|
|
|
|
if (!mop.isRegister())
|
|
|
|
continue;
|
|
|
|
unsigned Reg = mop.getReg();
|
|
|
|
unsigned RegI = Reg;
|
2008-02-10 18:45:23 +00:00
|
|
|
if (Reg == 0 || TargetRegisterInfo::isPhysicalRegister(Reg))
|
2007-11-12 06:35:08 +00:00
|
|
|
continue;
|
|
|
|
if (Reg != li.reg)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
bool TryFold = !DefIsReMat;
|
2007-11-29 23:02:50 +00:00
|
|
|
bool FoldSS = true; // Default behavior unless it's a remat.
|
2007-11-12 06:35:08 +00:00
|
|
|
int FoldSlot = Slot;
|
|
|
|
if (DefIsReMat) {
|
|
|
|
// If this is the rematerializable definition MI itself and
|
|
|
|
// all of its uses are rematerialized, simply delete it.
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
if (MI == ReMatOrigDefMI && CanDelete) {
|
2007-11-30 21:23:43 +00:00
|
|
|
DOUT << "\t\t\t\tErasing re-materlizable def: ";
|
|
|
|
DOUT << MI << '\n';
|
2008-02-22 09:24:50 +00:00
|
|
|
unsigned ImpUse = getReMatImplicitUse(li, MI);
|
|
|
|
if (ImpUse) {
|
|
|
|
// To be deleted MI has a virtual register operand, update the
|
|
|
|
// spill weight of the register interval.
|
|
|
|
unsigned loopDepth = loopInfo->getLoopDepth(MI->getParent());
|
|
|
|
LiveInterval &ImpLi = getInterval(ImpUse);
|
2008-02-23 00:33:04 +00:00
|
|
|
ImpLi.weight -=
|
|
|
|
getSpillWeight(false, true, loopDepth) / ImpLi.getSize();
|
2008-02-22 09:24:50 +00:00
|
|
|
}
|
2007-11-12 06:35:08 +00:00
|
|
|
RemoveMachineInstrFromMaps(MI);
|
2007-11-28 01:28:46 +00:00
|
|
|
vrm.RemoveMachineInstrFromMaps(MI);
|
2007-11-12 06:35:08 +00:00
|
|
|
MI->eraseFromParent();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If def for this use can't be rematerialized, then try folding.
|
2007-11-29 01:06:25 +00:00
|
|
|
// If def is rematerializable and it's a load, also try folding.
|
2007-11-29 23:02:50 +00:00
|
|
|
TryFold = !ReMatDefMI || (ReMatDefMI && (MI == ReMatOrigDefMI || isLoad));
|
2007-11-12 06:35:08 +00:00
|
|
|
if (isLoad) {
|
|
|
|
// Try fold loads (from stack slot, constant pool, etc.) into uses.
|
|
|
|
FoldSS = isLoadSS;
|
|
|
|
FoldSlot = LdSlot;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Scan all of the operands of this instruction rewriting operands
|
|
|
|
// to use NewVReg instead of li.reg as appropriate. We do this for
|
|
|
|
// two reasons:
|
|
|
|
//
|
|
|
|
// 1. If the instr reads the same spilled vreg multiple times, we
|
|
|
|
// want to reuse the NewVReg.
|
|
|
|
// 2. If the instr is a two-addr instruction, we are required to
|
|
|
|
// keep the src/dst regs pinned.
|
|
|
|
//
|
|
|
|
// Keep track of whether we replace a use and/or def so that we can
|
|
|
|
// create the spill interval with the appropriate range.
|
2007-11-30 21:23:43 +00:00
|
|
|
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
HasUse = mop.isUse();
|
|
|
|
HasDef = mop.isDef();
|
2007-12-02 08:30:39 +00:00
|
|
|
SmallVector<unsigned, 2> Ops;
|
|
|
|
Ops.push_back(i);
|
2007-11-12 06:35:08 +00:00
|
|
|
for (unsigned j = i+1, e = MI->getNumOperands(); j != e; ++j) {
|
2007-12-02 08:30:39 +00:00
|
|
|
const MachineOperand &MOj = MI->getOperand(j);
|
|
|
|
if (!MOj.isRegister())
|
2007-11-12 06:35:08 +00:00
|
|
|
continue;
|
2007-12-02 08:30:39 +00:00
|
|
|
unsigned RegJ = MOj.getReg();
|
2008-02-10 18:45:23 +00:00
|
|
|
if (RegJ == 0 || TargetRegisterInfo::isPhysicalRegister(RegJ))
|
2007-11-12 06:35:08 +00:00
|
|
|
continue;
|
|
|
|
if (RegJ == RegI) {
|
2007-12-02 08:30:39 +00:00
|
|
|
Ops.push_back(j);
|
|
|
|
HasUse |= MOj.isUse();
|
|
|
|
HasDef |= MOj.isDef();
|
2007-11-12 06:35:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-05 03:22:34 +00:00
|
|
|
if (TryFold) {
|
|
|
|
// Do not fold load / store here if we are splitting. We'll find an
|
|
|
|
// optimal point to insert a load / store later.
|
|
|
|
if (!TrySplit) {
|
|
|
|
if (tryFoldMemoryOperand(MI, vrm, ReMatDefMI, index,
|
|
|
|
Ops, FoldSS, FoldSlot, Reg)) {
|
|
|
|
// Folding the load/store can completely change the instruction in
|
|
|
|
// unpredictable ways, rescan it from the beginning.
|
|
|
|
HasUse = false;
|
|
|
|
HasDef = false;
|
|
|
|
CanFold = false;
|
|
|
|
goto RestartInstruction;
|
|
|
|
}
|
|
|
|
} else {
|
2008-02-25 19:24:01 +00:00
|
|
|
CanFold = canFoldMemoryOperand(MI, Ops, DefIsReMat && isLoad);
|
2007-12-05 03:22:34 +00:00
|
|
|
}
|
2007-12-12 23:12:09 +00:00
|
|
|
} else
|
|
|
|
CanFold = false;
|
2007-11-30 21:23:43 +00:00
|
|
|
|
|
|
|
// Create a new virtual register for the spill interval.
|
|
|
|
bool CreatedNewVReg = false;
|
|
|
|
if (NewVReg == 0) {
|
2008-02-22 09:24:50 +00:00
|
|
|
NewVReg = mri_->createVirtualRegister(rc);
|
2007-11-30 21:23:43 +00:00
|
|
|
vrm.grow();
|
|
|
|
CreatedNewVReg = true;
|
|
|
|
}
|
|
|
|
mop.setReg(NewVReg);
|
2008-02-22 09:24:50 +00:00
|
|
|
if (mop.isImplicit())
|
|
|
|
rewriteImplicitOps(li, MI, NewVReg, vrm);
|
2007-11-30 21:23:43 +00:00
|
|
|
|
|
|
|
// Reuse NewVReg for other reads.
|
2008-02-22 09:24:50 +00:00
|
|
|
for (unsigned j = 0, e = Ops.size(); j != e; ++j) {
|
|
|
|
MachineOperand &mopj = MI->getOperand(Ops[j]);
|
|
|
|
mopj.setReg(NewVReg);
|
|
|
|
if (mopj.isImplicit())
|
|
|
|
rewriteImplicitOps(li, MI, NewVReg, vrm);
|
|
|
|
}
|
2007-11-30 21:23:43 +00:00
|
|
|
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
if (CreatedNewVReg) {
|
|
|
|
if (DefIsReMat) {
|
|
|
|
vrm.setVirtIsReMaterialized(NewVReg, ReMatDefMI/*, CanDelete*/);
|
2008-02-22 09:24:50 +00:00
|
|
|
if (ReMatIds[VNI->id] == VirtRegMap::MAX_STACK_SLOT) {
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
// Each valnum may have its own remat id.
|
2008-02-22 09:24:50 +00:00
|
|
|
ReMatIds[VNI->id] = vrm.assignVirtReMatId(NewVReg);
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
} else {
|
2008-02-22 09:24:50 +00:00
|
|
|
vrm.assignVirtReMatId(NewVReg, ReMatIds[VNI->id]);
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
}
|
|
|
|
if (!CanDelete || (HasUse && HasDef)) {
|
|
|
|
// If this is a two-addr instruction then its use operands are
|
|
|
|
// rematerializable but its def is not. It should be assigned a
|
|
|
|
// stack slot.
|
|
|
|
vrm.assignVirt2StackSlot(NewVReg, Slot);
|
|
|
|
}
|
2007-11-12 06:35:08 +00:00
|
|
|
} else {
|
|
|
|
vrm.assignVirt2StackSlot(NewVReg, Slot);
|
|
|
|
}
|
2007-11-29 23:02:50 +00:00
|
|
|
} else if (HasUse && HasDef &&
|
|
|
|
vrm.getStackSlot(NewVReg) == VirtRegMap::NO_STACK_SLOT) {
|
|
|
|
// If this interval hasn't been assigned a stack slot (because earlier
|
|
|
|
// def is a deleted remat def), do it now.
|
|
|
|
assert(Slot != VirtRegMap::NO_STACK_SLOT);
|
|
|
|
vrm.assignVirt2StackSlot(NewVReg, Slot);
|
2007-11-12 06:35:08 +00:00
|
|
|
}
|
|
|
|
|
2008-02-23 00:33:04 +00:00
|
|
|
// Re-matting an instruction with virtual register use. Add the
|
|
|
|
// register as an implicit use on the use MI.
|
|
|
|
if (DefIsReMat && ImpUse)
|
|
|
|
MI->addOperand(MachineOperand::CreateReg(ImpUse, false, true));
|
|
|
|
|
2007-11-12 06:35:08 +00:00
|
|
|
// create a new register interval for this spill / remat.
|
|
|
|
LiveInterval &nI = getOrCreateInterval(NewVReg);
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
if (CreatedNewVReg) {
|
|
|
|
NewLIs.push_back(&nI);
|
2007-11-29 10:12:14 +00:00
|
|
|
MBBVRegsMap.insert(std::make_pair(MI->getParent()->getNumber(), NewVReg));
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
if (TrySplit)
|
|
|
|
vrm.setIsSplitFromReg(NewVReg, li.reg);
|
|
|
|
}
|
2007-11-12 06:35:08 +00:00
|
|
|
|
|
|
|
if (HasUse) {
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
if (CreatedNewVReg) {
|
|
|
|
LiveRange LR(getLoadIndex(index), getUseIndex(index)+1,
|
|
|
|
nI.getNextValue(~0U, 0, VNInfoAllocator));
|
|
|
|
DOUT << " +" << LR;
|
|
|
|
nI.addRange(LR);
|
|
|
|
} else {
|
|
|
|
// Extend the split live interval to this def / use.
|
|
|
|
unsigned End = getUseIndex(index)+1;
|
|
|
|
LiveRange LR(nI.ranges[nI.ranges.size()-1].end, End,
|
|
|
|
nI.getValNumInfo(nI.getNumValNums()-1));
|
|
|
|
DOUT << " +" << LR;
|
|
|
|
nI.addRange(LR);
|
|
|
|
}
|
2007-11-12 06:35:08 +00:00
|
|
|
}
|
|
|
|
if (HasDef) {
|
|
|
|
LiveRange LR(getDefIndex(index), getStoreIndex(index),
|
|
|
|
nI.getNextValue(~0U, 0, VNInfoAllocator));
|
|
|
|
DOUT << " +" << LR;
|
|
|
|
nI.addRange(LR);
|
|
|
|
}
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
|
2007-11-12 06:35:08 +00:00
|
|
|
DOUT << "\t\t\t\tAdded new interval: ";
|
2008-02-10 18:45:23 +00:00
|
|
|
nI.print(DOUT, tri_);
|
2007-11-12 06:35:08 +00:00
|
|
|
DOUT << '\n';
|
|
|
|
}
|
2007-12-05 03:22:34 +00:00
|
|
|
return CanFold;
|
2007-11-12 06:35:08 +00:00
|
|
|
}
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
bool LiveIntervals::anyKillInMBBAfterIdx(const LiveInterval &li,
|
2007-11-29 01:06:25 +00:00
|
|
|
const VNInfo *VNI,
|
|
|
|
MachineBasicBlock *MBB, unsigned Idx) const {
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
unsigned End = getMBBEndIdx(MBB);
|
2007-11-29 01:06:25 +00:00
|
|
|
for (unsigned j = 0, ee = VNI->kills.size(); j != ee; ++j) {
|
|
|
|
unsigned KillIdx = VNI->kills[j];
|
|
|
|
if (KillIdx > Idx && KillIdx < End)
|
|
|
|
return true;
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-11-29 10:12:14 +00:00
|
|
|
static const VNInfo *findDefinedVNInfo(const LiveInterval &li, unsigned DefIdx) {
|
|
|
|
const VNInfo *VNI = NULL;
|
|
|
|
for (LiveInterval::const_vni_iterator i = li.vni_begin(),
|
|
|
|
e = li.vni_end(); i != e; ++i)
|
|
|
|
if ((*i)->def == DefIdx) {
|
|
|
|
VNI = *i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return VNI;
|
|
|
|
}
|
|
|
|
|
2008-02-21 00:34:19 +00:00
|
|
|
/// RewriteInfo - Keep track of machine instrs that will be rewritten
|
|
|
|
/// during spilling.
|
|
|
|
struct RewriteInfo {
|
|
|
|
unsigned Index;
|
|
|
|
MachineInstr *MI;
|
|
|
|
bool HasUse;
|
|
|
|
bool HasDef;
|
|
|
|
RewriteInfo(unsigned i, MachineInstr *mi, bool u, bool d)
|
|
|
|
: Index(i), MI(mi), HasUse(u), HasDef(d) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct RewriteInfoCompare {
|
|
|
|
bool operator()(const RewriteInfo &LHS, const RewriteInfo &RHS) const {
|
|
|
|
return LHS.Index < RHS.Index;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2007-11-12 06:35:08 +00:00
|
|
|
void LiveIntervals::
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
rewriteInstructionsForSpills(const LiveInterval &li, bool TrySplit,
|
2007-11-12 06:35:08 +00:00
|
|
|
LiveInterval::Ranges::const_iterator &I,
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
MachineInstr *ReMatOrigDefMI, MachineInstr *ReMatDefMI,
|
2007-11-12 06:35:08 +00:00
|
|
|
unsigned Slot, int LdSlot,
|
|
|
|
bool isLoad, bool isLoadSS, bool DefIsReMat, bool CanDelete,
|
2008-02-22 09:24:50 +00:00
|
|
|
VirtRegMap &vrm,
|
2007-11-12 06:35:08 +00:00
|
|
|
const TargetRegisterClass* rc,
|
|
|
|
SmallVector<int, 4> &ReMatIds,
|
2007-12-11 02:09:15 +00:00
|
|
|
const MachineLoopInfo *loopInfo,
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
BitVector &SpillMBBs,
|
2007-11-29 10:12:14 +00:00
|
|
|
std::map<unsigned, std::vector<SRInfo> > &SpillIdxes,
|
2007-11-29 01:06:25 +00:00
|
|
|
BitVector &RestoreMBBs,
|
2007-11-29 10:12:14 +00:00
|
|
|
std::map<unsigned, std::vector<SRInfo> > &RestoreIdxes,
|
|
|
|
std::map<unsigned,unsigned> &MBBVRegsMap,
|
2007-11-12 06:35:08 +00:00
|
|
|
std::vector<LiveInterval*> &NewLIs) {
|
2007-12-05 03:22:34 +00:00
|
|
|
bool AllCanFold = true;
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
unsigned NewVReg = 0;
|
2008-02-21 00:34:19 +00:00
|
|
|
unsigned start = getBaseIndex(I->start);
|
2007-11-12 06:35:08 +00:00
|
|
|
unsigned end = getBaseIndex(I->end-1) + InstrSlots::NUM;
|
|
|
|
|
2008-02-21 00:34:19 +00:00
|
|
|
// First collect all the def / use in this live range that will be rewritten.
|
|
|
|
// Make sure they are sorted according instruction index.
|
|
|
|
std::vector<RewriteInfo> RewriteMIs;
|
2008-02-22 09:24:50 +00:00
|
|
|
for (MachineRegisterInfo::reg_iterator ri = mri_->reg_begin(li.reg),
|
|
|
|
re = mri_->reg_end(); ri != re; ) {
|
2008-02-21 00:34:19 +00:00
|
|
|
MachineInstr *MI = &(*ri);
|
|
|
|
MachineOperand &O = ri.getOperand();
|
|
|
|
++ri;
|
|
|
|
unsigned index = getInstructionIndex(MI);
|
|
|
|
if (index < start || index >= end)
|
|
|
|
continue;
|
|
|
|
RewriteMIs.push_back(RewriteInfo(index, MI, O.isUse(), O.isDef()));
|
|
|
|
}
|
|
|
|
std::sort(RewriteMIs.begin(), RewriteMIs.end(), RewriteInfoCompare());
|
|
|
|
|
2008-02-23 00:33:04 +00:00
|
|
|
unsigned ImpUse = DefIsReMat ? getReMatImplicitUse(li, ReMatDefMI) : 0;
|
2008-02-21 00:34:19 +00:00
|
|
|
// Now rewrite the defs and uses.
|
|
|
|
for (unsigned i = 0, e = RewriteMIs.size(); i != e; ) {
|
|
|
|
RewriteInfo &rwi = RewriteMIs[i];
|
|
|
|
++i;
|
|
|
|
unsigned index = rwi.Index;
|
|
|
|
bool MIHasUse = rwi.HasUse;
|
|
|
|
bool MIHasDef = rwi.HasDef;
|
|
|
|
MachineInstr *MI = rwi.MI;
|
|
|
|
// If MI def and/or use the same register multiple times, then there
|
|
|
|
// are multiple entries.
|
2008-02-23 00:33:04 +00:00
|
|
|
unsigned NumUses = MIHasUse;
|
2008-02-21 00:34:19 +00:00
|
|
|
while (i != e && RewriteMIs[i].MI == MI) {
|
|
|
|
assert(RewriteMIs[i].Index == index);
|
2008-02-23 00:33:04 +00:00
|
|
|
bool isUse = RewriteMIs[i].HasUse;
|
|
|
|
if (isUse) ++NumUses;
|
|
|
|
MIHasUse |= isUse;
|
2008-02-21 00:34:19 +00:00
|
|
|
MIHasDef |= RewriteMIs[i].HasDef;
|
|
|
|
++i;
|
|
|
|
}
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
MachineBasicBlock *MBB = MI->getParent();
|
2008-02-23 00:33:04 +00:00
|
|
|
|
|
|
|
if (ImpUse && MI != ReMatDefMI) {
|
|
|
|
// Re-matting an instruction with virtual register use. Update the
|
|
|
|
// register interval's spill weight.
|
|
|
|
unsigned loopDepth = loopInfo->getLoopDepth(MI->getParent());
|
|
|
|
LiveInterval &ImpLi = getInterval(ImpUse);
|
|
|
|
ImpLi.weight +=
|
|
|
|
getSpillWeight(false, true, loopDepth) * NumUses / ImpLi.getSize();
|
|
|
|
}
|
|
|
|
|
2008-02-21 00:34:19 +00:00
|
|
|
unsigned MBBId = MBB->getNumber();
|
2007-12-05 03:22:34 +00:00
|
|
|
unsigned ThisVReg = 0;
|
2007-12-03 09:58:48 +00:00
|
|
|
if (TrySplit) {
|
2008-02-21 00:34:19 +00:00
|
|
|
std::map<unsigned,unsigned>::const_iterator NVI = MBBVRegsMap.find(MBBId);
|
2007-11-29 10:12:14 +00:00
|
|
|
if (NVI != MBBVRegsMap.end()) {
|
2007-12-05 03:22:34 +00:00
|
|
|
ThisVReg = NVI->second;
|
2007-11-29 10:12:14 +00:00
|
|
|
// One common case:
|
|
|
|
// x = use
|
|
|
|
// ...
|
|
|
|
// ...
|
|
|
|
// def = ...
|
|
|
|
// = use
|
|
|
|
// It's better to start a new interval to avoid artifically
|
|
|
|
// extend the new interval.
|
|
|
|
if (MIHasDef && !MIHasUse) {
|
|
|
|
MBBVRegsMap.erase(MBB->getNumber());
|
2007-12-05 03:22:34 +00:00
|
|
|
ThisVReg = 0;
|
2007-11-29 10:12:14 +00:00
|
|
|
}
|
|
|
|
}
|
2007-11-28 01:28:46 +00:00
|
|
|
}
|
2007-12-05 03:22:34 +00:00
|
|
|
|
|
|
|
bool IsNew = ThisVReg == 0;
|
|
|
|
if (IsNew) {
|
|
|
|
// This ends the previous live interval. If all of its def / use
|
|
|
|
// can be folded, give it a low spill weight.
|
|
|
|
if (NewVReg && TrySplit && AllCanFold) {
|
|
|
|
LiveInterval &nI = getOrCreateInterval(NewVReg);
|
|
|
|
nI.weight /= 10.0F;
|
|
|
|
}
|
|
|
|
AllCanFold = true;
|
|
|
|
}
|
|
|
|
NewVReg = ThisVReg;
|
|
|
|
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
bool HasDef = false;
|
|
|
|
bool HasUse = false;
|
2008-02-22 09:24:50 +00:00
|
|
|
bool CanFold = rewriteInstructionForSpills(li, I->valno, TrySplit,
|
2007-12-05 03:22:34 +00:00
|
|
|
index, end, MI, ReMatOrigDefMI, ReMatDefMI,
|
|
|
|
Slot, LdSlot, isLoad, isLoadSS, DefIsReMat,
|
2008-02-22 09:24:50 +00:00
|
|
|
CanDelete, vrm, rc, ReMatIds, loopInfo, NewVReg,
|
2008-02-23 00:33:04 +00:00
|
|
|
ImpUse, HasDef, HasUse, MBBVRegsMap, NewLIs);
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
if (!HasDef && !HasUse)
|
|
|
|
continue;
|
|
|
|
|
2007-12-05 03:22:34 +00:00
|
|
|
AllCanFold &= CanFold;
|
|
|
|
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
// Update weight of spill interval.
|
|
|
|
LiveInterval &nI = getOrCreateInterval(NewVReg);
|
2007-12-03 09:58:48 +00:00
|
|
|
if (!TrySplit) {
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
// The spill weight is now infinity as it cannot be spilled again.
|
|
|
|
nI.weight = HUGE_VALF;
|
2007-11-29 01:06:25 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Keep track of the last def and first use in each MBB.
|
|
|
|
if (HasDef) {
|
|
|
|
if (MI != ReMatOrigDefMI || !CanDelete) {
|
|
|
|
bool HasKill = false;
|
|
|
|
if (!HasUse)
|
|
|
|
HasKill = anyKillInMBBAfterIdx(li, I->valno, MBB, getDefIndex(index));
|
|
|
|
else {
|
2007-11-29 10:12:14 +00:00
|
|
|
// If this is a two-address code, then this index starts a new VNInfo.
|
|
|
|
const VNInfo *VNI = findDefinedVNInfo(li, getDefIndex(index));
|
2007-11-29 01:06:25 +00:00
|
|
|
if (VNI)
|
|
|
|
HasKill = anyKillInMBBAfterIdx(li, VNI, MBB, getDefIndex(index));
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
}
|
2007-12-01 04:42:39 +00:00
|
|
|
std::map<unsigned, std::vector<SRInfo> >::iterator SII =
|
|
|
|
SpillIdxes.find(MBBId);
|
2007-11-29 01:06:25 +00:00
|
|
|
if (!HasKill) {
|
2007-11-29 10:12:14 +00:00
|
|
|
if (SII == SpillIdxes.end()) {
|
|
|
|
std::vector<SRInfo> S;
|
|
|
|
S.push_back(SRInfo(index, NewVReg, true));
|
|
|
|
SpillIdxes.insert(std::make_pair(MBBId, S));
|
|
|
|
} else if (SII->second.back().vreg != NewVReg) {
|
|
|
|
SII->second.push_back(SRInfo(index, NewVReg, true));
|
|
|
|
} else if ((int)index > SII->second.back().index) {
|
2007-11-29 01:06:25 +00:00
|
|
|
// If there is an earlier def and this is a two-address
|
|
|
|
// instruction, then it's not possible to fold the store (which
|
|
|
|
// would also fold the load).
|
2007-11-29 10:12:14 +00:00
|
|
|
SRInfo &Info = SII->second.back();
|
|
|
|
Info.index = index;
|
|
|
|
Info.canFold = !HasUse;
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
}
|
2007-11-29 01:06:25 +00:00
|
|
|
SpillMBBs.set(MBBId);
|
2007-12-01 04:42:39 +00:00
|
|
|
} else if (SII != SpillIdxes.end() &&
|
|
|
|
SII->second.back().vreg == NewVReg &&
|
|
|
|
(int)index > SII->second.back().index) {
|
|
|
|
// There is an earlier def that's not killed (must be two-address).
|
|
|
|
// The spill is no longer needed.
|
|
|
|
SII->second.pop_back();
|
|
|
|
if (SII->second.empty()) {
|
|
|
|
SpillIdxes.erase(MBBId);
|
|
|
|
SpillMBBs.reset(MBBId);
|
|
|
|
}
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
}
|
|
|
|
}
|
2007-11-29 01:06:25 +00:00
|
|
|
}
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
|
2007-11-29 01:06:25 +00:00
|
|
|
if (HasUse) {
|
2007-11-29 10:12:14 +00:00
|
|
|
std::map<unsigned, std::vector<SRInfo> >::iterator SII =
|
2007-11-29 01:06:25 +00:00
|
|
|
SpillIdxes.find(MBBId);
|
2007-11-29 10:12:14 +00:00
|
|
|
if (SII != SpillIdxes.end() &&
|
|
|
|
SII->second.back().vreg == NewVReg &&
|
|
|
|
(int)index > SII->second.back().index)
|
2007-11-29 01:06:25 +00:00
|
|
|
// Use(s) following the last def, it's not safe to fold the spill.
|
2007-11-29 10:12:14 +00:00
|
|
|
SII->second.back().canFold = false;
|
|
|
|
std::map<unsigned, std::vector<SRInfo> >::iterator RII =
|
2007-11-29 01:06:25 +00:00
|
|
|
RestoreIdxes.find(MBBId);
|
2007-11-29 10:12:14 +00:00
|
|
|
if (RII != RestoreIdxes.end() && RII->second.back().vreg == NewVReg)
|
2007-11-29 01:06:25 +00:00
|
|
|
// If we are splitting live intervals, only fold if it's the first
|
|
|
|
// use and there isn't another use later in the MBB.
|
2007-11-29 10:12:14 +00:00
|
|
|
RII->second.back().canFold = false;
|
2007-11-29 01:06:25 +00:00
|
|
|
else if (IsNew) {
|
|
|
|
// Only need a reload if there isn't an earlier def / use.
|
2007-11-29 10:12:14 +00:00
|
|
|
if (RII == RestoreIdxes.end()) {
|
|
|
|
std::vector<SRInfo> Infos;
|
|
|
|
Infos.push_back(SRInfo(index, NewVReg, true));
|
|
|
|
RestoreIdxes.insert(std::make_pair(MBBId, Infos));
|
|
|
|
} else {
|
|
|
|
RII->second.push_back(SRInfo(index, NewVReg, true));
|
|
|
|
}
|
2007-11-29 01:06:25 +00:00
|
|
|
RestoreMBBs.set(MBBId);
|
|
|
|
}
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
}
|
2007-11-29 01:06:25 +00:00
|
|
|
|
|
|
|
// Update spill weight.
|
2007-12-11 02:09:15 +00:00
|
|
|
unsigned loopDepth = loopInfo->getLoopDepth(MBB);
|
2007-11-29 01:06:25 +00:00
|
|
|
nI.weight += getSpillWeight(HasDef, HasUse, loopDepth);
|
2007-11-12 06:35:08 +00:00
|
|
|
}
|
2007-12-05 03:22:34 +00:00
|
|
|
|
|
|
|
if (NewVReg && TrySplit && AllCanFold) {
|
|
|
|
// If all of its def / use can be folded, give it a low spill weight.
|
|
|
|
LiveInterval &nI = getOrCreateInterval(NewVReg);
|
|
|
|
nI.weight /= 10.0F;
|
|
|
|
}
|
2007-11-12 06:35:08 +00:00
|
|
|
}
|
|
|
|
|
2007-11-29 10:12:14 +00:00
|
|
|
bool LiveIntervals::alsoFoldARestore(int Id, int index, unsigned vr,
|
|
|
|
BitVector &RestoreMBBs,
|
|
|
|
std::map<unsigned,std::vector<SRInfo> > &RestoreIdxes) {
|
|
|
|
if (!RestoreMBBs[Id])
|
|
|
|
return false;
|
|
|
|
std::vector<SRInfo> &Restores = RestoreIdxes[Id];
|
|
|
|
for (unsigned i = 0, e = Restores.size(); i != e; ++i)
|
|
|
|
if (Restores[i].index == index &&
|
|
|
|
Restores[i].vreg == vr &&
|
|
|
|
Restores[i].canFold)
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LiveIntervals::eraseRestoreInfo(int Id, int index, unsigned vr,
|
|
|
|
BitVector &RestoreMBBs,
|
|
|
|
std::map<unsigned,std::vector<SRInfo> > &RestoreIdxes) {
|
|
|
|
if (!RestoreMBBs[Id])
|
|
|
|
return;
|
|
|
|
std::vector<SRInfo> &Restores = RestoreIdxes[Id];
|
|
|
|
for (unsigned i = 0, e = Restores.size(); i != e; ++i)
|
|
|
|
if (Restores[i].index == index && Restores[i].vreg)
|
|
|
|
Restores[i].index = -1;
|
|
|
|
}
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
|
|
|
|
|
2007-11-12 06:35:08 +00:00
|
|
|
std::vector<LiveInterval*> LiveIntervals::
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
addIntervalsForSpills(const LiveInterval &li,
|
2007-12-11 02:09:15 +00:00
|
|
|
const MachineLoopInfo *loopInfo, VirtRegMap &vrm) {
|
2007-11-12 06:35:08 +00:00
|
|
|
// Since this is called after the analysis is done we don't know if
|
|
|
|
// LiveVariables is available
|
|
|
|
lv_ = getAnalysisToUpdate<LiveVariables>();
|
|
|
|
|
|
|
|
assert(li.weight != HUGE_VALF &&
|
|
|
|
"attempt to spill already spilled interval!");
|
|
|
|
|
|
|
|
DOUT << "\t\t\t\tadding intervals for spills for interval: ";
|
2008-02-10 18:45:23 +00:00
|
|
|
li.print(DOUT, tri_);
|
2007-11-12 06:35:08 +00:00
|
|
|
DOUT << '\n';
|
|
|
|
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
// Each bit specify whether it a spill is required in the MBB.
|
|
|
|
BitVector SpillMBBs(mf_->getNumBlockIDs());
|
2007-11-29 10:12:14 +00:00
|
|
|
std::map<unsigned, std::vector<SRInfo> > SpillIdxes;
|
2007-11-29 01:06:25 +00:00
|
|
|
BitVector RestoreMBBs(mf_->getNumBlockIDs());
|
2007-11-29 10:12:14 +00:00
|
|
|
std::map<unsigned, std::vector<SRInfo> > RestoreIdxes;
|
|
|
|
std::map<unsigned,unsigned> MBBVRegsMap;
|
2007-11-12 06:35:08 +00:00
|
|
|
std::vector<LiveInterval*> NewLIs;
|
2008-02-22 09:24:50 +00:00
|
|
|
const TargetRegisterClass* rc = mri_->getRegClass(li.reg);
|
2007-11-12 06:35:08 +00:00
|
|
|
|
|
|
|
unsigned NumValNums = li.getNumValNums();
|
|
|
|
SmallVector<MachineInstr*, 4> ReMatDefs;
|
|
|
|
ReMatDefs.resize(NumValNums, NULL);
|
|
|
|
SmallVector<MachineInstr*, 4> ReMatOrigDefs;
|
|
|
|
ReMatOrigDefs.resize(NumValNums, NULL);
|
|
|
|
SmallVector<int, 4> ReMatIds;
|
|
|
|
ReMatIds.resize(NumValNums, VirtRegMap::MAX_STACK_SLOT);
|
|
|
|
BitVector ReMatDelete(NumValNums);
|
|
|
|
unsigned Slot = VirtRegMap::MAX_STACK_SLOT;
|
|
|
|
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
// Spilling a split live interval. It cannot be split any further. Also,
|
|
|
|
// it's also guaranteed to be a single val# / range interval.
|
|
|
|
if (vrm.getPreSplitReg(li.reg)) {
|
|
|
|
vrm.setIsSplitFromReg(li.reg, 0);
|
2007-12-05 10:24:35 +00:00
|
|
|
// Unset the split kill marker on the last use.
|
|
|
|
unsigned KillIdx = vrm.getKillPoint(li.reg);
|
|
|
|
if (KillIdx) {
|
|
|
|
MachineInstr *KillMI = getInstructionFromIndex(KillIdx);
|
|
|
|
assert(KillMI && "Last use disappeared?");
|
|
|
|
int KillOp = KillMI->findRegisterUseOperandIdx(li.reg, true);
|
|
|
|
assert(KillOp != -1 && "Last use disappeared?");
|
2007-12-30 21:56:09 +00:00
|
|
|
KillMI->getOperand(KillOp).setIsKill(false);
|
2007-12-05 10:24:35 +00:00
|
|
|
}
|
2007-12-05 09:51:10 +00:00
|
|
|
vrm.removeKillPoint(li.reg);
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
bool DefIsReMat = vrm.isReMaterialized(li.reg);
|
|
|
|
Slot = vrm.getStackSlot(li.reg);
|
|
|
|
assert(Slot != VirtRegMap::MAX_STACK_SLOT);
|
|
|
|
MachineInstr *ReMatDefMI = DefIsReMat ?
|
|
|
|
vrm.getReMaterializedMI(li.reg) : NULL;
|
|
|
|
int LdSlot = 0;
|
|
|
|
bool isLoadSS = DefIsReMat && tii_->isLoadFromStackSlot(ReMatDefMI, LdSlot);
|
|
|
|
bool isLoad = isLoadSS ||
|
2008-01-07 07:27:27 +00:00
|
|
|
(DefIsReMat && (ReMatDefMI->getDesc().isSimpleLoad()));
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
bool IsFirstRange = true;
|
|
|
|
for (LiveInterval::Ranges::const_iterator
|
|
|
|
I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
|
|
|
|
// If this is a split live interval with multiple ranges, it means there
|
|
|
|
// are two-address instructions that re-defined the value. Only the
|
|
|
|
// first def can be rematerialized!
|
|
|
|
if (IsFirstRange) {
|
2007-11-29 23:02:50 +00:00
|
|
|
// Note ReMatOrigDefMI has already been deleted.
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
rewriteInstructionsForSpills(li, false, I, NULL, ReMatDefMI,
|
|
|
|
Slot, LdSlot, isLoad, isLoadSS, DefIsReMat,
|
2008-02-22 09:24:50 +00:00
|
|
|
false, vrm, rc, ReMatIds, loopInfo,
|
2007-11-29 01:06:25 +00:00
|
|
|
SpillMBBs, SpillIdxes, RestoreMBBs, RestoreIdxes,
|
2007-11-29 10:12:14 +00:00
|
|
|
MBBVRegsMap, NewLIs);
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
} else {
|
|
|
|
rewriteInstructionsForSpills(li, false, I, NULL, 0,
|
|
|
|
Slot, 0, false, false, false,
|
2008-02-22 09:24:50 +00:00
|
|
|
false, vrm, rc, ReMatIds, loopInfo,
|
2007-11-29 01:06:25 +00:00
|
|
|
SpillMBBs, SpillIdxes, RestoreMBBs, RestoreIdxes,
|
2007-11-29 10:12:14 +00:00
|
|
|
MBBVRegsMap, NewLIs);
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
}
|
|
|
|
IsFirstRange = false;
|
|
|
|
}
|
|
|
|
return NewLIs;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TrySplit = SplitAtBB && !intervalIsInOneMBB(li);
|
2007-11-29 01:06:25 +00:00
|
|
|
if (SplitLimit != -1 && (int)numSplits >= SplitLimit)
|
|
|
|
TrySplit = false;
|
|
|
|
if (TrySplit)
|
|
|
|
++numSplits;
|
2007-11-12 06:35:08 +00:00
|
|
|
bool NeedStackSlot = false;
|
|
|
|
for (LiveInterval::const_vni_iterator i = li.vni_begin(), e = li.vni_end();
|
|
|
|
i != e; ++i) {
|
|
|
|
const VNInfo *VNI = *i;
|
|
|
|
unsigned VN = VNI->id;
|
|
|
|
unsigned DefIdx = VNI->def;
|
|
|
|
if (DefIdx == ~1U)
|
|
|
|
continue; // Dead val#.
|
|
|
|
// Is the def for the val# rematerializable?
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
MachineInstr *ReMatDefMI = (DefIdx == ~0u)
|
|
|
|
? 0 : getInstructionFromIndex(DefIdx);
|
2007-12-06 00:01:56 +00:00
|
|
|
bool dummy;
|
|
|
|
if (ReMatDefMI && isReMaterializable(li, VNI, ReMatDefMI, dummy)) {
|
2007-11-12 06:35:08 +00:00
|
|
|
// Remember how to remat the def of this val#.
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
ReMatOrigDefs[VN] = ReMatDefMI;
|
2007-11-12 06:35:08 +00:00
|
|
|
// Original def may be modified so we have to make a copy here. vrm must
|
|
|
|
// delete these!
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
ReMatDefs[VN] = ReMatDefMI = ReMatDefMI->clone();
|
2007-11-12 06:35:08 +00:00
|
|
|
|
|
|
|
bool CanDelete = true;
|
2007-11-29 09:49:23 +00:00
|
|
|
if (VNI->hasPHIKill) {
|
|
|
|
// A kill is a phi node, not all of its uses can be rematerialized.
|
2007-11-12 06:35:08 +00:00
|
|
|
// It must not be deleted.
|
2007-11-29 09:49:23 +00:00
|
|
|
CanDelete = false;
|
|
|
|
// Need a stack slot if there is any live range where uses cannot be
|
|
|
|
// rematerialized.
|
|
|
|
NeedStackSlot = true;
|
2007-11-12 06:35:08 +00:00
|
|
|
}
|
|
|
|
if (CanDelete)
|
|
|
|
ReMatDelete.set(VN);
|
|
|
|
} else {
|
|
|
|
// Need a stack slot if there is any live range where uses cannot be
|
|
|
|
// rematerialized.
|
|
|
|
NeedStackSlot = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// One stack slot per live interval.
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
if (NeedStackSlot && vrm.getPreSplitReg(li.reg) == 0)
|
2007-11-12 06:35:08 +00:00
|
|
|
Slot = vrm.assignVirt2StackSlot(li.reg);
|
|
|
|
|
|
|
|
// Create new intervals and rewrite defs and uses.
|
|
|
|
for (LiveInterval::Ranges::const_iterator
|
|
|
|
I = li.ranges.begin(), E = li.ranges.end(); I != E; ++I) {
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
MachineInstr *ReMatDefMI = ReMatDefs[I->valno->id];
|
|
|
|
MachineInstr *ReMatOrigDefMI = ReMatOrigDefs[I->valno->id];
|
|
|
|
bool DefIsReMat = ReMatDefMI != NULL;
|
2007-11-12 06:35:08 +00:00
|
|
|
bool CanDelete = ReMatDelete[I->valno->id];
|
|
|
|
int LdSlot = 0;
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
bool isLoadSS = DefIsReMat && tii_->isLoadFromStackSlot(ReMatDefMI, LdSlot);
|
2007-11-12 06:35:08 +00:00
|
|
|
bool isLoad = isLoadSS ||
|
2008-01-07 07:27:27 +00:00
|
|
|
(DefIsReMat && ReMatDefMI->getDesc().isSimpleLoad());
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
rewriteInstructionsForSpills(li, TrySplit, I, ReMatOrigDefMI, ReMatDefMI,
|
2007-11-29 01:06:25 +00:00
|
|
|
Slot, LdSlot, isLoad, isLoadSS, DefIsReMat,
|
2008-02-22 09:24:50 +00:00
|
|
|
CanDelete, vrm, rc, ReMatIds, loopInfo,
|
2007-11-29 01:06:25 +00:00
|
|
|
SpillMBBs, SpillIdxes, RestoreMBBs, RestoreIdxes,
|
2007-11-29 10:12:14 +00:00
|
|
|
MBBVRegsMap, NewLIs);
|
2007-11-12 06:35:08 +00:00
|
|
|
}
|
|
|
|
|
2007-11-29 01:06:25 +00:00
|
|
|
// Insert spills / restores if we are splitting.
|
2007-11-29 10:12:14 +00:00
|
|
|
if (!TrySplit)
|
|
|
|
return NewLIs;
|
|
|
|
|
2007-12-05 08:16:32 +00:00
|
|
|
SmallPtrSet<LiveInterval*, 4> AddedKill;
|
2007-12-02 08:30:39 +00:00
|
|
|
SmallVector<unsigned, 2> Ops;
|
2007-11-29 10:12:14 +00:00
|
|
|
if (NeedStackSlot) {
|
|
|
|
int Id = SpillMBBs.find_first();
|
|
|
|
while (Id != -1) {
|
|
|
|
std::vector<SRInfo> &spills = SpillIdxes[Id];
|
|
|
|
for (unsigned i = 0, e = spills.size(); i != e; ++i) {
|
|
|
|
int index = spills[i].index;
|
|
|
|
unsigned VReg = spills[i].vreg;
|
2007-12-04 00:32:23 +00:00
|
|
|
LiveInterval &nI = getOrCreateInterval(VReg);
|
2007-11-29 01:06:25 +00:00
|
|
|
bool isReMat = vrm.isReMaterialized(VReg);
|
|
|
|
MachineInstr *MI = getInstructionFromIndex(index);
|
2007-12-02 08:30:39 +00:00
|
|
|
bool CanFold = false;
|
|
|
|
bool FoundUse = false;
|
|
|
|
Ops.clear();
|
2007-11-30 21:23:43 +00:00
|
|
|
if (spills[i].canFold) {
|
2007-12-02 08:30:39 +00:00
|
|
|
CanFold = true;
|
2007-11-29 01:06:25 +00:00
|
|
|
for (unsigned j = 0, ee = MI->getNumOperands(); j != ee; ++j) {
|
|
|
|
MachineOperand &MO = MI->getOperand(j);
|
|
|
|
if (!MO.isRegister() || MO.getReg() != VReg)
|
|
|
|
continue;
|
2007-12-02 08:30:39 +00:00
|
|
|
|
|
|
|
Ops.push_back(j);
|
|
|
|
if (MO.isDef())
|
2007-11-30 21:23:43 +00:00
|
|
|
continue;
|
2007-12-02 08:30:39 +00:00
|
|
|
if (isReMat ||
|
|
|
|
(!FoundUse && !alsoFoldARestore(Id, index, VReg,
|
|
|
|
RestoreMBBs, RestoreIdxes))) {
|
|
|
|
// MI has two-address uses of the same register. If the use
|
|
|
|
// isn't the first and only use in the BB, then we can't fold
|
|
|
|
// it. FIXME: Move this to rewriteInstructionsForSpills.
|
|
|
|
CanFold = false;
|
2007-11-30 21:23:43 +00:00
|
|
|
break;
|
|
|
|
}
|
2007-12-02 08:30:39 +00:00
|
|
|
FoundUse = true;
|
2007-11-29 01:06:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// Fold the store into the def if possible.
|
2007-11-30 21:23:43 +00:00
|
|
|
bool Folded = false;
|
2007-12-02 08:30:39 +00:00
|
|
|
if (CanFold && !Ops.empty()) {
|
|
|
|
if (tryFoldMemoryOperand(MI, vrm, NULL, index, Ops, true, Slot,VReg)){
|
2007-11-30 21:23:43 +00:00
|
|
|
Folded = true;
|
2007-12-05 09:05:34 +00:00
|
|
|
if (FoundUse > 0) {
|
2007-12-02 08:30:39 +00:00
|
|
|
// Also folded uses, do not issue a load.
|
|
|
|
eraseRestoreInfo(Id, index, VReg, RestoreMBBs, RestoreIdxes);
|
2007-12-05 09:05:34 +00:00
|
|
|
nI.removeRange(getLoadIndex(index), getUseIndex(index)+1);
|
|
|
|
}
|
2007-12-04 00:32:23 +00:00
|
|
|
nI.removeRange(getDefIndex(index), getStoreIndex(index));
|
2007-11-30 21:23:43 +00:00
|
|
|
}
|
2007-11-29 01:06:25 +00:00
|
|
|
}
|
|
|
|
|
2007-12-02 08:30:39 +00:00
|
|
|
// Else tell the spiller to issue a spill.
|
2007-12-05 08:16:32 +00:00
|
|
|
if (!Folded) {
|
|
|
|
LiveRange *LR = &nI.ranges[nI.ranges.size()-1];
|
|
|
|
bool isKill = LR->end == getStoreIndex(index);
|
|
|
|
vrm.addSpillPoint(VReg, isKill, MI);
|
|
|
|
if (isKill)
|
|
|
|
AddedKill.insert(&nI);
|
|
|
|
}
|
2007-11-29 01:06:25 +00:00
|
|
|
}
|
2007-11-29 10:12:14 +00:00
|
|
|
Id = SpillMBBs.find_next(Id);
|
2007-11-29 01:06:25 +00:00
|
|
|
}
|
2007-11-29 10:12:14 +00:00
|
|
|
}
|
2007-11-29 01:06:25 +00:00
|
|
|
|
2007-11-29 10:12:14 +00:00
|
|
|
int Id = RestoreMBBs.find_first();
|
|
|
|
while (Id != -1) {
|
|
|
|
std::vector<SRInfo> &restores = RestoreIdxes[Id];
|
|
|
|
for (unsigned i = 0, e = restores.size(); i != e; ++i) {
|
|
|
|
int index = restores[i].index;
|
|
|
|
if (index == -1)
|
|
|
|
continue;
|
|
|
|
unsigned VReg = restores[i].vreg;
|
2007-12-04 00:32:23 +00:00
|
|
|
LiveInterval &nI = getOrCreateInterval(VReg);
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
MachineInstr *MI = getInstructionFromIndex(index);
|
2007-12-02 08:30:39 +00:00
|
|
|
bool CanFold = false;
|
|
|
|
Ops.clear();
|
2007-11-30 21:23:43 +00:00
|
|
|
if (restores[i].canFold) {
|
2007-12-02 08:30:39 +00:00
|
|
|
CanFold = true;
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
for (unsigned j = 0, ee = MI->getNumOperands(); j != ee; ++j) {
|
|
|
|
MachineOperand &MO = MI->getOperand(j);
|
|
|
|
if (!MO.isRegister() || MO.getReg() != VReg)
|
|
|
|
continue;
|
2007-12-02 08:30:39 +00:00
|
|
|
|
2007-11-29 01:06:25 +00:00
|
|
|
if (MO.isDef()) {
|
2007-12-02 08:30:39 +00:00
|
|
|
// If this restore were to be folded, it would have been folded
|
|
|
|
// already.
|
|
|
|
CanFold = false;
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
break;
|
|
|
|
}
|
2007-12-02 08:30:39 +00:00
|
|
|
Ops.push_back(j);
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
}
|
|
|
|
}
|
2007-11-29 01:06:25 +00:00
|
|
|
|
|
|
|
// Fold the load into the use if possible.
|
2007-11-30 21:23:43 +00:00
|
|
|
bool Folded = false;
|
2007-12-02 08:30:39 +00:00
|
|
|
if (CanFold && !Ops.empty()) {
|
|
|
|
if (!vrm.isReMaterialized(VReg))
|
|
|
|
Folded = tryFoldMemoryOperand(MI, vrm, NULL,index,Ops,true,Slot,VReg);
|
|
|
|
else {
|
2007-11-29 01:06:25 +00:00
|
|
|
MachineInstr *ReMatDefMI = vrm.getReMaterializedMI(VReg);
|
|
|
|
int LdSlot = 0;
|
|
|
|
bool isLoadSS = tii_->isLoadFromStackSlot(ReMatDefMI, LdSlot);
|
|
|
|
// If the rematerializable def is a load, also try to fold it.
|
2008-01-07 07:27:27 +00:00
|
|
|
if (isLoadSS || ReMatDefMI->getDesc().isSimpleLoad())
|
2007-12-02 08:30:39 +00:00
|
|
|
Folded = tryFoldMemoryOperand(MI, vrm, ReMatDefMI, index,
|
|
|
|
Ops, isLoadSS, LdSlot, VReg);
|
2008-02-22 09:24:50 +00:00
|
|
|
unsigned ImpUse = getReMatImplicitUse(li, ReMatDefMI);
|
|
|
|
if (ImpUse) {
|
|
|
|
// Re-matting an instruction with virtual register use. Add the
|
|
|
|
// register as an implicit use on the use MI and update the register
|
|
|
|
// interval's spill weight.
|
|
|
|
unsigned loopDepth = loopInfo->getLoopDepth(MI->getParent());
|
|
|
|
LiveInterval &ImpLi = getInterval(ImpUse);
|
2008-02-23 00:33:04 +00:00
|
|
|
ImpLi.weight +=
|
|
|
|
getSpillWeight(false, true, loopDepth) / ImpLi.getSize();
|
|
|
|
|
2008-02-22 09:24:50 +00:00
|
|
|
MI->addOperand(MachineOperand::CreateReg(ImpUse, false, true));
|
|
|
|
}
|
2007-12-02 08:30:39 +00:00
|
|
|
}
|
2007-11-29 01:06:25 +00:00
|
|
|
}
|
|
|
|
// If folding is not possible / failed, then tell the spiller to issue a
|
|
|
|
// load / rematerialization for us.
|
2007-12-04 00:32:23 +00:00
|
|
|
if (Folded)
|
|
|
|
nI.removeRange(getLoadIndex(index), getUseIndex(index)+1);
|
2007-12-05 08:16:32 +00:00
|
|
|
else
|
2007-11-29 01:06:25 +00:00
|
|
|
vrm.addRestorePoint(VReg, MI);
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
}
|
2007-11-29 10:12:14 +00:00
|
|
|
Id = RestoreMBBs.find_next(Id);
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
}
|
|
|
|
|
2007-12-05 08:16:32 +00:00
|
|
|
// Finalize intervals: add kills, finalize spill weights, and filter out
|
|
|
|
// dead intervals.
|
2007-12-04 00:32:23 +00:00
|
|
|
std::vector<LiveInterval*> RetNewLIs;
|
|
|
|
for (unsigned i = 0, e = NewLIs.size(); i != e; ++i) {
|
|
|
|
LiveInterval *LI = NewLIs[i];
|
|
|
|
if (!LI->empty()) {
|
|
|
|
LI->weight /= LI->getSize();
|
2007-12-05 08:16:32 +00:00
|
|
|
if (!AddedKill.count(LI)) {
|
|
|
|
LiveRange *LR = &LI->ranges[LI->ranges.size()-1];
|
2007-12-05 10:24:35 +00:00
|
|
|
unsigned LastUseIdx = getBaseIndex(LR->end);
|
|
|
|
MachineInstr *LastUse = getInstructionFromIndex(LastUseIdx);
|
2007-12-05 08:16:32 +00:00
|
|
|
int UseIdx = LastUse->findRegisterUseOperandIdx(LI->reg);
|
|
|
|
assert(UseIdx != -1);
|
2008-02-22 09:24:50 +00:00
|
|
|
if (LastUse->getOperand(UseIdx).isImplicit() ||
|
|
|
|
LastUse->getDesc().getOperandConstraint(UseIdx,TOI::TIED_TO) == -1){
|
2007-12-05 08:16:32 +00:00
|
|
|
LastUse->getOperand(UseIdx).setIsKill();
|
2007-12-05 10:24:35 +00:00
|
|
|
vrm.addKillPoint(LI->reg, LastUseIdx);
|
2007-12-05 09:51:10 +00:00
|
|
|
}
|
2007-12-05 08:16:32 +00:00
|
|
|
}
|
2007-12-04 00:32:23 +00:00
|
|
|
RetNewLIs.push_back(LI);
|
|
|
|
}
|
|
|
|
}
|
Live interval splitting:
When a live interval is being spilled, rather than creating short, non-spillable
intervals for every def / use, split the interval at BB boundaries. That is, for
every BB where the live interval is defined or used, create a new interval that
covers all the defs and uses in the BB.
This is designed to eliminate one common problem: multiple reloads of the same
value in a single basic block. Note, it does *not* decrease the number of spills
since no copies are inserted so the split intervals are *connected* through
spill and reloads (or rematerialization). The newly created intervals can be
spilled again, in that case, since it does not span multiple basic blocks, it's
spilled in the usual manner. However, it can reuse the same stack slot as the
previously split interval.
This is currently controlled by -split-intervals-at-bb.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44198 91177308-0d34-0410-b5e6-96231b3b80d8
2007-11-17 00:40:40 +00:00
|
|
|
|
2007-12-04 00:32:23 +00:00
|
|
|
return RetNewLIs;
|
2007-11-12 06:35:08 +00:00
|
|
|
}
|