2010-07-20 23:41:07 +08:00
|
|
|
//===---------- SplitKit.cpp - Toolkit for splitting live ranges ----------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the SplitAnalysis class as well as mutator functions for
|
|
|
|
// live range splitting.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-11-04 04:39:23 +08:00
|
|
|
#define DEBUG_TYPE "regalloc"
|
2010-07-20 23:41:07 +08:00
|
|
|
#include "SplitKit.h"
|
2010-10-15 07:49:52 +08:00
|
|
|
#include "LiveRangeEdit.h"
|
2010-07-27 07:44:11 +08:00
|
|
|
#include "VirtRegMap.h"
|
2010-08-11 01:07:22 +08:00
|
|
|
#include "llvm/CodeGen/CalcSpillWeights.h"
|
2010-07-20 23:41:07 +08:00
|
|
|
#include "llvm/CodeGen/LiveIntervalAnalysis.h"
|
2010-10-29 04:34:50 +08:00
|
|
|
#include "llvm/CodeGen/MachineDominators.h"
|
2010-07-27 07:44:11 +08:00
|
|
|
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
2010-07-20 23:41:07 +08:00
|
|
|
#include "llvm/CodeGen/MachineLoopInfo.h"
|
|
|
|
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
2010-07-21 05:46:58 +08:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2010-07-20 23:41:07 +08:00
|
|
|
#include "llvm/Support/Debug.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2010-07-21 05:46:58 +08:00
|
|
|
#include "llvm/Target/TargetInstrInfo.h"
|
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2010-07-20 23:41:07 +08:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2010-07-21 05:46:58 +08:00
|
|
|
static cl::opt<bool>
|
|
|
|
AllowSplit("spiller-splits-edges",
|
|
|
|
cl::desc("Allow critical edge splitting during spilling"));
|
2010-07-20 23:41:07 +08:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Split Analysis
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-07-21 07:50:15 +08:00
|
|
|
SplitAnalysis::SplitAnalysis(const MachineFunction &mf,
|
|
|
|
const LiveIntervals &lis,
|
|
|
|
const MachineLoopInfo &mli)
|
2011-01-26 08:50:53 +08:00
|
|
|
: MF(mf),
|
|
|
|
LIS(lis),
|
|
|
|
Loops(mli),
|
|
|
|
TII(*mf.getTarget().getInstrInfo()),
|
|
|
|
CurLI(0) {}
|
2010-07-20 23:41:07 +08:00
|
|
|
|
|
|
|
void SplitAnalysis::clear() {
|
2011-01-19 05:13:27 +08:00
|
|
|
UseSlots.clear();
|
2011-01-26 08:50:53 +08:00
|
|
|
UsingInstrs.clear();
|
|
|
|
UsingBlocks.clear();
|
|
|
|
UsingLoops.clear();
|
|
|
|
CurLI = 0;
|
2010-07-20 23:41:07 +08:00
|
|
|
}
|
|
|
|
|
2010-07-21 05:46:58 +08:00
|
|
|
bool SplitAnalysis::canAnalyzeBranch(const MachineBasicBlock *MBB) {
|
|
|
|
MachineBasicBlock *T, *F;
|
|
|
|
SmallVector<MachineOperand, 4> Cond;
|
2011-01-26 08:50:53 +08:00
|
|
|
return !TII.AnalyzeBranch(const_cast<MachineBasicBlock&>(*MBB), T, F, Cond);
|
2010-07-21 05:46:58 +08:00
|
|
|
}
|
|
|
|
|
2011-01-26 08:50:53 +08:00
|
|
|
/// analyzeUses - Count instructions, basic blocks, and loops using CurLI.
|
2010-07-21 00:12:37 +08:00
|
|
|
void SplitAnalysis::analyzeUses() {
|
2011-01-26 08:50:53 +08:00
|
|
|
const MachineRegisterInfo &MRI = MF.getRegInfo();
|
|
|
|
for (MachineRegisterInfo::reg_iterator I = MRI.reg_begin(CurLI->reg);
|
2010-07-20 23:41:07 +08:00
|
|
|
MachineInstr *MI = I.skipInstruction();) {
|
2011-01-26 08:50:53 +08:00
|
|
|
if (MI->isDebugValue() || !UsingInstrs.insert(MI))
|
2010-07-20 23:41:07 +08:00
|
|
|
continue;
|
2011-01-26 08:50:53 +08:00
|
|
|
UseSlots.push_back(LIS.getInstructionIndex(MI).getDefIndex());
|
2010-07-20 23:41:07 +08:00
|
|
|
MachineBasicBlock *MBB = MI->getParent();
|
2011-01-26 08:50:53 +08:00
|
|
|
if (UsingBlocks[MBB]++)
|
2010-07-20 23:41:07 +08:00
|
|
|
continue;
|
2011-01-26 08:50:53 +08:00
|
|
|
for (MachineLoop *Loop = Loops.getLoopFor(MBB); Loop;
|
2010-10-06 07:10:12 +08:00
|
|
|
Loop = Loop->getParentLoop())
|
2011-01-26 08:50:53 +08:00
|
|
|
UsingLoops[Loop]++;
|
2010-07-20 23:41:07 +08:00
|
|
|
}
|
2011-01-19 05:13:27 +08:00
|
|
|
array_pod_sort(UseSlots.begin(), UseSlots.end());
|
2010-08-13 02:50:55 +08:00
|
|
|
DEBUG(dbgs() << " counted "
|
2011-01-26 08:50:53 +08:00
|
|
|
<< UsingInstrs.size() << " instrs, "
|
|
|
|
<< UsingBlocks.size() << " blocks, "
|
|
|
|
<< UsingLoops.size() << " loops.\n");
|
2010-07-20 23:41:07 +08:00
|
|
|
}
|
|
|
|
|
2010-10-23 04:28:21 +08:00
|
|
|
void SplitAnalysis::print(const BlockPtrSet &B, raw_ostream &OS) const {
|
|
|
|
for (BlockPtrSet::const_iterator I = B.begin(), E = B.end(); I != E; ++I) {
|
2011-01-26 08:50:53 +08:00
|
|
|
unsigned count = UsingBlocks.lookup(*I);
|
2010-10-23 04:28:21 +08:00
|
|
|
OS << " BB#" << (*I)->getNumber();
|
|
|
|
if (count)
|
|
|
|
OS << '(' << count << ')';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-21 05:46:58 +08:00
|
|
|
// Get three sets of basic blocks surrounding a loop: Blocks inside the loop,
|
|
|
|
// predecessor blocks, and exit blocks.
|
|
|
|
void SplitAnalysis::getLoopBlocks(const MachineLoop *Loop, LoopBlocks &Blocks) {
|
|
|
|
Blocks.clear();
|
|
|
|
|
|
|
|
// Blocks in the loop.
|
|
|
|
Blocks.Loop.insert(Loop->block_begin(), Loop->block_end());
|
|
|
|
|
|
|
|
// Predecessor blocks.
|
|
|
|
const MachineBasicBlock *Header = Loop->getHeader();
|
|
|
|
for (MachineBasicBlock::const_pred_iterator I = Header->pred_begin(),
|
|
|
|
E = Header->pred_end(); I != E; ++I)
|
|
|
|
if (!Blocks.Loop.count(*I))
|
|
|
|
Blocks.Preds.insert(*I);
|
2010-07-20 23:41:07 +08:00
|
|
|
|
2010-07-21 05:46:58 +08:00
|
|
|
// Exit blocks.
|
|
|
|
for (MachineLoop::block_iterator I = Loop->block_begin(),
|
|
|
|
E = Loop->block_end(); I != E; ++I) {
|
|
|
|
const MachineBasicBlock *MBB = *I;
|
|
|
|
for (MachineBasicBlock::const_succ_iterator SI = MBB->succ_begin(),
|
|
|
|
SE = MBB->succ_end(); SI != SE; ++SI)
|
|
|
|
if (!Blocks.Loop.count(*SI))
|
|
|
|
Blocks.Exits.insert(*SI);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-23 04:28:21 +08:00
|
|
|
void SplitAnalysis::print(const LoopBlocks &B, raw_ostream &OS) const {
|
|
|
|
OS << "Loop:";
|
|
|
|
print(B.Loop, OS);
|
|
|
|
OS << ", preds:";
|
|
|
|
print(B.Preds, OS);
|
|
|
|
OS << ", exits:";
|
|
|
|
print(B.Exits, OS);
|
|
|
|
}
|
|
|
|
|
2011-01-26 08:50:53 +08:00
|
|
|
/// analyzeLoopPeripheralUse - Return an enum describing how CurLI is used in
|
2010-07-21 05:46:58 +08:00
|
|
|
/// and around the Loop.
|
|
|
|
SplitAnalysis::LoopPeripheralUse SplitAnalysis::
|
|
|
|
analyzeLoopPeripheralUse(const SplitAnalysis::LoopBlocks &Blocks) {
|
2010-07-20 23:41:07 +08:00
|
|
|
LoopPeripheralUse use = ContainedInLoop;
|
2011-01-26 08:50:53 +08:00
|
|
|
for (BlockCountMap::iterator I = UsingBlocks.begin(), E = UsingBlocks.end();
|
2010-07-20 23:41:07 +08:00
|
|
|
I != E; ++I) {
|
|
|
|
const MachineBasicBlock *MBB = I->first;
|
|
|
|
// Is this a peripheral block?
|
|
|
|
if (use < MultiPeripheral &&
|
2010-07-21 05:46:58 +08:00
|
|
|
(Blocks.Preds.count(MBB) || Blocks.Exits.count(MBB))) {
|
2010-07-20 23:41:07 +08:00
|
|
|
if (I->second > 1) use = MultiPeripheral;
|
|
|
|
else use = SinglePeripheral;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// Is it a loop block?
|
2010-07-21 05:46:58 +08:00
|
|
|
if (Blocks.Loop.count(MBB))
|
2010-07-20 23:41:07 +08:00
|
|
|
continue;
|
|
|
|
// It must be an unrelated block.
|
2010-10-23 04:28:21 +08:00
|
|
|
DEBUG(dbgs() << ", outside: BB#" << MBB->getNumber());
|
2010-07-20 23:41:07 +08:00
|
|
|
return OutsideLoop;
|
|
|
|
}
|
|
|
|
return use;
|
|
|
|
}
|
|
|
|
|
2010-07-21 05:46:58 +08:00
|
|
|
/// getCriticalExits - It may be necessary to partially break critical edges
|
2010-10-23 04:28:23 +08:00
|
|
|
/// leaving the loop if an exit block has predecessors from outside the loop
|
|
|
|
/// periphery.
|
2010-07-21 05:46:58 +08:00
|
|
|
void SplitAnalysis::getCriticalExits(const SplitAnalysis::LoopBlocks &Blocks,
|
|
|
|
BlockPtrSet &CriticalExits) {
|
|
|
|
CriticalExits.clear();
|
|
|
|
|
2011-01-26 08:50:53 +08:00
|
|
|
// A critical exit block has CurLI live-in, and has a predecessor that is not
|
2010-10-23 04:28:23 +08:00
|
|
|
// in the loop nor a loop predecessor. For such an exit block, the edges
|
|
|
|
// carrying the new variable must be moved to a new pre-exit block.
|
2010-07-21 05:46:58 +08:00
|
|
|
for (BlockPtrSet::iterator I = Blocks.Exits.begin(), E = Blocks.Exits.end();
|
|
|
|
I != E; ++I) {
|
2010-10-23 04:28:23 +08:00
|
|
|
const MachineBasicBlock *Exit = *I;
|
|
|
|
// A single-predecessor exit block is definitely not a critical edge.
|
|
|
|
if (Exit->pred_size() == 1)
|
2010-07-21 05:46:58 +08:00
|
|
|
continue;
|
2011-01-26 08:50:53 +08:00
|
|
|
// This exit may not have CurLI live in at all. No need to split.
|
|
|
|
if (!LIS.isLiveInToMBB(*CurLI, Exit))
|
2010-07-21 05:46:58 +08:00
|
|
|
continue;
|
2010-10-23 04:28:23 +08:00
|
|
|
// Does this exit block have a predecessor that is not a loop block or loop
|
|
|
|
// predecessor?
|
|
|
|
for (MachineBasicBlock::const_pred_iterator PI = Exit->pred_begin(),
|
|
|
|
PE = Exit->pred_end(); PI != PE; ++PI) {
|
2010-07-21 05:46:58 +08:00
|
|
|
const MachineBasicBlock *Pred = *PI;
|
|
|
|
if (Blocks.Loop.count(Pred) || Blocks.Preds.count(Pred))
|
|
|
|
continue;
|
|
|
|
// This is a critical exit block, and we need to split the exit edge.
|
2010-10-23 04:28:23 +08:00
|
|
|
CriticalExits.insert(Exit);
|
2010-07-21 05:46:58 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-27 08:39:05 +08:00
|
|
|
void SplitAnalysis::getCriticalPreds(const SplitAnalysis::LoopBlocks &Blocks,
|
|
|
|
BlockPtrSet &CriticalPreds) {
|
|
|
|
CriticalPreds.clear();
|
|
|
|
|
2011-01-26 08:50:53 +08:00
|
|
|
// A critical predecessor block has CurLI live-out, and has a successor that
|
|
|
|
// has CurLI live-in and is not in the loop nor a loop exit block. For such a
|
2010-10-27 08:39:05 +08:00
|
|
|
// predecessor block, we must carry the value in both the 'inside' and
|
|
|
|
// 'outside' registers.
|
|
|
|
for (BlockPtrSet::iterator I = Blocks.Preds.begin(), E = Blocks.Preds.end();
|
|
|
|
I != E; ++I) {
|
|
|
|
const MachineBasicBlock *Pred = *I;
|
|
|
|
// Definitely not a critical edge.
|
|
|
|
if (Pred->succ_size() == 1)
|
|
|
|
continue;
|
2011-01-26 08:50:53 +08:00
|
|
|
// This block may not have CurLI live out at all if there is a PHI.
|
|
|
|
if (!LIS.isLiveOutOfMBB(*CurLI, Pred))
|
2010-10-27 08:39:05 +08:00
|
|
|
continue;
|
|
|
|
// Does this block have a successor outside the loop?
|
|
|
|
for (MachineBasicBlock::const_pred_iterator SI = Pred->succ_begin(),
|
|
|
|
SE = Pred->succ_end(); SI != SE; ++SI) {
|
|
|
|
const MachineBasicBlock *Succ = *SI;
|
|
|
|
if (Blocks.Loop.count(Succ) || Blocks.Exits.count(Succ))
|
|
|
|
continue;
|
2011-01-26 08:50:53 +08:00
|
|
|
if (!LIS.isLiveInToMBB(*CurLI, Succ))
|
2010-10-27 08:39:05 +08:00
|
|
|
continue;
|
|
|
|
// This is a critical predecessor block.
|
|
|
|
CriticalPreds.insert(Pred);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-21 05:46:58 +08:00
|
|
|
/// canSplitCriticalExits - Return true if it is possible to insert new exit
|
|
|
|
/// blocks before the blocks in CriticalExits.
|
|
|
|
bool
|
|
|
|
SplitAnalysis::canSplitCriticalExits(const SplitAnalysis::LoopBlocks &Blocks,
|
|
|
|
BlockPtrSet &CriticalExits) {
|
|
|
|
// If we don't allow critical edge splitting, require no critical exits.
|
|
|
|
if (!AllowSplit)
|
|
|
|
return CriticalExits.empty();
|
|
|
|
|
|
|
|
for (BlockPtrSet::iterator I = CriticalExits.begin(), E = CriticalExits.end();
|
|
|
|
I != E; ++I) {
|
|
|
|
const MachineBasicBlock *Succ = *I;
|
|
|
|
// We want to insert a new pre-exit MBB before Succ, and change all the
|
|
|
|
// in-loop blocks to branch to the pre-exit instead of Succ.
|
|
|
|
// Check that all the in-loop predecessors can be changed.
|
|
|
|
for (MachineBasicBlock::const_pred_iterator PI = Succ->pred_begin(),
|
|
|
|
PE = Succ->pred_end(); PI != PE; ++PI) {
|
|
|
|
const MachineBasicBlock *Pred = *PI;
|
|
|
|
// The external predecessors won't be altered.
|
|
|
|
if (!Blocks.Loop.count(Pred) && !Blocks.Preds.count(Pred))
|
|
|
|
continue;
|
|
|
|
if (!canAnalyzeBranch(Pred))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If Succ's layout predecessor falls through, that too must be analyzable.
|
|
|
|
// We need to insert the pre-exit block in the gap.
|
|
|
|
MachineFunction::const_iterator MFI = Succ;
|
2011-01-26 08:50:53 +08:00
|
|
|
if (MFI == MF.begin())
|
2010-07-21 05:46:58 +08:00
|
|
|
continue;
|
|
|
|
if (!canAnalyzeBranch(--MFI))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// No problems found.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-07-20 23:41:07 +08:00
|
|
|
void SplitAnalysis::analyze(const LiveInterval *li) {
|
|
|
|
clear();
|
2011-01-26 08:50:53 +08:00
|
|
|
CurLI = li;
|
2010-07-21 00:12:37 +08:00
|
|
|
analyzeUses();
|
2010-07-20 23:41:07 +08:00
|
|
|
}
|
|
|
|
|
2010-12-16 01:41:19 +08:00
|
|
|
void SplitAnalysis::getSplitLoops(LoopPtrSet &Loops) {
|
2011-01-26 08:50:53 +08:00
|
|
|
assert(CurLI && "Call analyze() before getSplitLoops");
|
|
|
|
if (UsingLoops.empty())
|
2010-12-16 01:41:19 +08:00
|
|
|
return;
|
2010-07-21 05:46:58 +08:00
|
|
|
|
|
|
|
LoopBlocks Blocks;
|
|
|
|
BlockPtrSet CriticalExits;
|
2010-07-20 23:41:07 +08:00
|
|
|
|
2011-01-26 08:50:53 +08:00
|
|
|
// We split around loops where CurLI is used outside the periphery.
|
|
|
|
for (LoopCountMap::const_iterator I = UsingLoops.begin(),
|
|
|
|
E = UsingLoops.end(); I != E; ++I) {
|
2010-08-13 07:02:55 +08:00
|
|
|
const MachineLoop *Loop = I->first;
|
|
|
|
getLoopBlocks(Loop, Blocks);
|
2010-10-23 04:28:21 +08:00
|
|
|
DEBUG({ dbgs() << " "; print(Blocks, dbgs()); });
|
2010-08-05 06:08:39 +08:00
|
|
|
|
2010-07-21 05:46:58 +08:00
|
|
|
switch(analyzeLoopPeripheralUse(Blocks)) {
|
2010-07-20 23:41:07 +08:00
|
|
|
case OutsideLoop:
|
|
|
|
break;
|
|
|
|
case MultiPeripheral:
|
2010-10-15 02:26:45 +08:00
|
|
|
// FIXME: We could split a live range with multiple uses in a peripheral
|
|
|
|
// block and still make progress. However, it is possible that splitting
|
|
|
|
// another live range will insert copies into a peripheral block, and
|
2010-12-16 01:41:19 +08:00
|
|
|
// there is a small chance we can enter an infinite loop, inserting copies
|
2010-10-15 02:26:45 +08:00
|
|
|
// forever.
|
|
|
|
// For safety, stick to splitting live ranges with uses outside the
|
|
|
|
// periphery.
|
2010-12-16 01:41:19 +08:00
|
|
|
DEBUG(dbgs() << ": multiple peripheral uses");
|
2010-07-20 23:41:07 +08:00
|
|
|
break;
|
2010-07-21 05:46:58 +08:00
|
|
|
case ContainedInLoop:
|
2010-10-23 04:28:21 +08:00
|
|
|
DEBUG(dbgs() << ": fully contained\n");
|
2010-07-21 05:46:58 +08:00
|
|
|
continue;
|
|
|
|
case SinglePeripheral:
|
2010-10-23 04:28:21 +08:00
|
|
|
DEBUG(dbgs() << ": single peripheral use\n");
|
2010-07-20 23:41:07 +08:00
|
|
|
continue;
|
|
|
|
}
|
2010-07-21 05:46:58 +08:00
|
|
|
// Will it be possible to split around this loop?
|
|
|
|
getCriticalExits(Blocks, CriticalExits);
|
2010-10-23 04:28:21 +08:00
|
|
|
DEBUG(dbgs() << ": " << CriticalExits.size() << " critical exits\n");
|
2010-07-21 05:46:58 +08:00
|
|
|
if (!canSplitCriticalExits(Blocks, CriticalExits))
|
|
|
|
continue;
|
|
|
|
// This is a possible split.
|
2010-10-15 02:26:45 +08:00
|
|
|
Loops.insert(Loop);
|
2010-07-21 05:46:58 +08:00
|
|
|
}
|
|
|
|
|
2010-12-16 01:41:19 +08:00
|
|
|
DEBUG(dbgs() << " getSplitLoops found " << Loops.size()
|
2010-10-15 02:26:45 +08:00
|
|
|
<< " candidate loops.\n");
|
2010-12-16 01:41:19 +08:00
|
|
|
}
|
2010-07-20 23:41:07 +08:00
|
|
|
|
2010-12-16 01:41:19 +08:00
|
|
|
const MachineLoop *SplitAnalysis::getBestSplitLoop() {
|
|
|
|
LoopPtrSet Loops;
|
|
|
|
getSplitLoops(Loops);
|
2010-07-20 23:41:07 +08:00
|
|
|
if (Loops.empty())
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// Pick the earliest loop.
|
|
|
|
// FIXME: Are there other heuristics to consider?
|
|
|
|
const MachineLoop *Best = 0;
|
|
|
|
SlotIndex BestIdx;
|
|
|
|
for (LoopPtrSet::const_iterator I = Loops.begin(), E = Loops.end(); I != E;
|
|
|
|
++I) {
|
2011-01-26 08:50:53 +08:00
|
|
|
SlotIndex Idx = LIS.getMBBStartIdx((*I)->getHeader());
|
2010-07-20 23:41:07 +08:00
|
|
|
if (!Best || Idx < BestIdx)
|
|
|
|
Best = *I, BestIdx = Idx;
|
|
|
|
}
|
2010-08-13 02:50:55 +08:00
|
|
|
DEBUG(dbgs() << " getBestSplitLoop found " << *Best);
|
2010-07-20 23:41:07 +08:00
|
|
|
return Best;
|
|
|
|
}
|
|
|
|
|
2011-01-26 08:50:53 +08:00
|
|
|
/// isBypassLoop - Return true if CurLI is live through Loop and has no uses
|
2010-12-16 01:49:52 +08:00
|
|
|
/// inside the loop. Bypass loops are candidates for splitting because it can
|
|
|
|
/// prevent interference inside the loop.
|
|
|
|
bool SplitAnalysis::isBypassLoop(const MachineLoop *Loop) {
|
2011-01-26 08:50:53 +08:00
|
|
|
// If CurLI is live into the loop header and there are no uses in the loop, it
|
2010-12-16 01:49:52 +08:00
|
|
|
// must be live in the entire loop and live on at least one exiting edge.
|
2011-01-26 08:50:53 +08:00
|
|
|
return !UsingLoops.count(Loop) &&
|
|
|
|
LIS.isLiveInToMBB(*CurLI, Loop->getHeader());
|
2010-12-16 01:49:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// getBypassLoops - Get all the maximal bypass loops. These are the bypass
|
|
|
|
/// loops whose parent is not a bypass loop.
|
|
|
|
void SplitAnalysis::getBypassLoops(LoopPtrSet &BypassLoops) {
|
2011-01-26 08:50:53 +08:00
|
|
|
SmallVector<MachineLoop*, 8> Todo(Loops.begin(), Loops.end());
|
2010-12-16 02:07:48 +08:00
|
|
|
while (!Todo.empty()) {
|
2010-12-16 01:49:52 +08:00
|
|
|
MachineLoop *Loop = Todo.pop_back_val();
|
2011-01-26 08:50:53 +08:00
|
|
|
if (!UsingLoops.count(Loop)) {
|
2010-12-16 01:49:52 +08:00
|
|
|
// This is either a bypass loop or completely irrelevant.
|
2011-01-26 08:50:53 +08:00
|
|
|
if (LIS.isLiveInToMBB(*CurLI, Loop->getHeader()))
|
2010-12-16 01:49:52 +08:00
|
|
|
BypassLoops.insert(Loop);
|
|
|
|
// Either way, skip the child loops.
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The child loops may be bypass loops.
|
|
|
|
Todo.append(Loop->begin(), Loop->end());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-08-19 03:00:08 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// LiveIntervalMap
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-09-14 05:29:45 +08:00
|
|
|
// Work around the fact that the std::pair constructors are broken for pointer
|
|
|
|
// pairs in some implementations. makeVV(x, 0) works.
|
|
|
|
static inline std::pair<const VNInfo*, VNInfo*>
|
|
|
|
makeVV(const VNInfo *a, VNInfo *b) {
|
|
|
|
return std::make_pair(a, b);
|
|
|
|
}
|
|
|
|
|
2010-09-14 07:29:09 +08:00
|
|
|
void LiveIntervalMap::reset(LiveInterval *li) {
|
2011-01-26 08:50:53 +08:00
|
|
|
LI = li;
|
|
|
|
Values.clear();
|
|
|
|
LiveOutCache.clear();
|
2010-09-14 07:29:09 +08:00
|
|
|
}
|
|
|
|
|
2010-09-22 06:32:21 +08:00
|
|
|
bool LiveIntervalMap::isComplexMapped(const VNInfo *ParentVNI) const {
|
2011-01-26 08:50:53 +08:00
|
|
|
ValueMap::const_iterator i = Values.find(ParentVNI);
|
|
|
|
return i != Values.end() && i->second == 0;
|
2010-09-22 06:32:21 +08:00
|
|
|
}
|
|
|
|
|
2011-01-26 08:50:53 +08:00
|
|
|
// defValue - Introduce a LI def for ParentVNI that could be later than
|
2010-08-19 03:00:08 +08:00
|
|
|
// ParentVNI->def.
|
|
|
|
VNInfo *LiveIntervalMap::defValue(const VNInfo *ParentVNI, SlotIndex Idx) {
|
2011-01-26 08:50:53 +08:00
|
|
|
assert(LI && "call reset first");
|
2010-08-19 03:00:08 +08:00
|
|
|
assert(ParentVNI && "Mapping NULL value");
|
|
|
|
assert(Idx.isValid() && "Invalid SlotIndex");
|
2011-01-26 08:50:53 +08:00
|
|
|
assert(ParentLI.getVNInfoAt(Idx) == ParentVNI && "Bad ParentVNI");
|
2010-08-19 03:00:08 +08:00
|
|
|
|
2010-09-22 06:32:21 +08:00
|
|
|
// Create a new value.
|
2011-01-26 08:50:53 +08:00
|
|
|
VNInfo *VNI = LI->getNextValue(Idx, 0, LIS.getVNInfoAllocator());
|
2010-09-22 06:32:21 +08:00
|
|
|
|
2010-10-27 06:36:02 +08:00
|
|
|
// Preserve the PHIDef bit.
|
|
|
|
if (ParentVNI->isPHIDef() && Idx == ParentVNI->def)
|
|
|
|
VNI->setIsPHIDef(true);
|
|
|
|
|
2010-09-22 06:32:21 +08:00
|
|
|
// Use insert for lookup, so we can add missing values with a second lookup.
|
|
|
|
std::pair<ValueMap::iterator,bool> InsP =
|
2011-01-26 08:50:53 +08:00
|
|
|
Values.insert(makeVV(ParentVNI, Idx == ParentVNI->def ? VNI : 0));
|
2010-08-19 03:00:08 +08:00
|
|
|
|
2010-09-16 08:01:36 +08:00
|
|
|
// This is now a complex def. Mark with a NULL in valueMap.
|
2010-09-22 06:32:21 +08:00
|
|
|
if (!InsP.second)
|
|
|
|
InsP.first->second = 0;
|
2010-08-19 03:00:08 +08:00
|
|
|
|
|
|
|
return VNI;
|
|
|
|
}
|
|
|
|
|
2010-09-22 06:32:21 +08:00
|
|
|
|
2010-08-19 03:00:08 +08:00
|
|
|
// mapValue - Find the mapped value for ParentVNI at Idx.
|
|
|
|
// Potentially create phi-def values.
|
2010-09-22 06:32:21 +08:00
|
|
|
VNInfo *LiveIntervalMap::mapValue(const VNInfo *ParentVNI, SlotIndex Idx,
|
|
|
|
bool *simple) {
|
2011-01-26 08:50:53 +08:00
|
|
|
assert(LI && "call reset first");
|
2010-08-19 03:00:08 +08:00
|
|
|
assert(ParentVNI && "Mapping NULL value");
|
|
|
|
assert(Idx.isValid() && "Invalid SlotIndex");
|
2011-01-26 08:50:53 +08:00
|
|
|
assert(ParentLI.getVNInfoAt(Idx) == ParentVNI && "Bad ParentVNI");
|
2010-08-19 03:00:08 +08:00
|
|
|
|
|
|
|
// Use insert for lookup, so we can add missing values with a second lookup.
|
|
|
|
std::pair<ValueMap::iterator,bool> InsP =
|
2011-01-26 08:50:53 +08:00
|
|
|
Values.insert(makeVV(ParentVNI, 0));
|
2010-08-19 03:00:08 +08:00
|
|
|
|
|
|
|
// This was an unknown value. Create a simple mapping.
|
2010-09-22 06:32:21 +08:00
|
|
|
if (InsP.second) {
|
|
|
|
if (simple) *simple = true;
|
2011-01-26 08:50:53 +08:00
|
|
|
return InsP.first->second = LI->createValueCopy(ParentVNI,
|
|
|
|
LIS.getVNInfoAllocator());
|
2010-09-22 06:32:21 +08:00
|
|
|
}
|
|
|
|
|
2010-08-19 03:00:08 +08:00
|
|
|
// This was a simple mapped value.
|
2010-09-22 06:32:21 +08:00
|
|
|
if (InsP.first->second) {
|
|
|
|
if (simple) *simple = true;
|
2010-08-19 03:00:08 +08:00
|
|
|
return InsP.first->second;
|
2010-09-22 06:32:21 +08:00
|
|
|
}
|
2010-08-19 03:00:08 +08:00
|
|
|
|
|
|
|
// This is a complex mapped value. There may be multiple defs, and we may need
|
|
|
|
// to create phi-defs.
|
2010-09-22 06:32:21 +08:00
|
|
|
if (simple) *simple = false;
|
2011-01-26 08:50:53 +08:00
|
|
|
MachineBasicBlock *IdxMBB = LIS.getMBBFromIndex(Idx);
|
2010-08-19 03:00:08 +08:00
|
|
|
assert(IdxMBB && "No MBB at Idx");
|
|
|
|
|
|
|
|
// Is there a def in the same MBB we can extend?
|
|
|
|
if (VNInfo *VNI = extendTo(IdxMBB, Idx))
|
|
|
|
return VNI;
|
|
|
|
|
|
|
|
// Now for the fun part. We know that ParentVNI potentially has multiple defs,
|
|
|
|
// and we may need to create even more phi-defs to preserve VNInfo SSA form.
|
2010-10-29 04:34:52 +08:00
|
|
|
// Perform a search for all predecessor blocks where we know the dominating
|
|
|
|
// VNInfo. Insert phi-def VNInfos along the path back to IdxMBB.
|
|
|
|
DEBUG(dbgs() << "\n Reaching defs for BB#" << IdxMBB->getNumber()
|
2011-01-26 08:50:53 +08:00
|
|
|
<< " at " << Idx << " in " << *LI << '\n');
|
2010-10-29 04:34:52 +08:00
|
|
|
|
2011-01-26 08:50:53 +08:00
|
|
|
// Blocks where LI should be live-in.
|
2010-10-29 04:34:52 +08:00
|
|
|
SmallVector<MachineDomTreeNode*, 16> LiveIn;
|
2011-01-26 08:50:53 +08:00
|
|
|
LiveIn.push_back(MDT[IdxMBB]);
|
2010-10-29 04:34:52 +08:00
|
|
|
|
2011-01-26 08:50:53 +08:00
|
|
|
// Using LiveOutCache as a visited set, perform a BFS for all reaching defs.
|
2010-10-29 04:34:52 +08:00
|
|
|
for (unsigned i = 0; i != LiveIn.size(); ++i) {
|
|
|
|
MachineBasicBlock *MBB = LiveIn[i]->getBlock();
|
|
|
|
for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
|
|
|
|
PE = MBB->pred_end(); PI != PE; ++PI) {
|
|
|
|
MachineBasicBlock *Pred = *PI;
|
|
|
|
// Is this a known live-out block?
|
|
|
|
std::pair<LiveOutMap::iterator,bool> LOIP =
|
2011-01-26 08:50:53 +08:00
|
|
|
LiveOutCache.insert(std::make_pair(Pred, LiveOutPair()));
|
2010-10-29 04:34:52 +08:00
|
|
|
// Yes, we have been here before.
|
|
|
|
if (!LOIP.second) {
|
2010-10-30 01:40:05 +08:00
|
|
|
DEBUG(if (VNInfo *VNI = LOIP.first->second.first)
|
|
|
|
dbgs() << " known valno #" << VNI->id
|
2010-10-29 04:34:52 +08:00
|
|
|
<< " at BB#" << Pred->getNumber() << '\n');
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Does Pred provide a live-out value?
|
2011-01-26 08:50:53 +08:00
|
|
|
SlotIndex Last = LIS.getMBBEndIdx(Pred).getPrevSlot();
|
2010-10-29 04:34:52 +08:00
|
|
|
if (VNInfo *VNI = extendTo(Pred, Last)) {
|
2011-01-26 08:50:53 +08:00
|
|
|
MachineBasicBlock *DefMBB = LIS.getMBBFromIndex(VNI->def);
|
2010-10-29 04:34:52 +08:00
|
|
|
DEBUG(dbgs() << " found valno #" << VNI->id
|
2010-10-30 01:37:25 +08:00
|
|
|
<< " from BB#" << DefMBB->getNumber()
|
|
|
|
<< " at BB#" << Pred->getNumber() << '\n');
|
2010-10-29 04:34:52 +08:00
|
|
|
LiveOutPair &LOP = LOIP.first->second;
|
|
|
|
LOP.first = VNI;
|
2011-01-26 08:50:53 +08:00
|
|
|
LOP.second = MDT[DefMBB];
|
2010-10-29 04:34:52 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// No, we need a live-in value for Pred as well
|
|
|
|
if (Pred != IdxMBB)
|
2011-01-26 08:50:53 +08:00
|
|
|
LiveIn.push_back(MDT[Pred]);
|
2010-08-19 03:00:08 +08:00
|
|
|
}
|
2010-10-29 04:34:52 +08:00
|
|
|
}
|
2010-08-19 03:00:08 +08:00
|
|
|
|
2010-10-29 04:34:52 +08:00
|
|
|
// We may need to add phi-def values to preserve the SSA form.
|
|
|
|
// This is essentially the same iterative algorithm that SSAUpdater uses,
|
|
|
|
// except we already have a dominator tree, so we don't have to recompute it.
|
|
|
|
VNInfo *IdxVNI = 0;
|
|
|
|
unsigned Changes;
|
|
|
|
do {
|
|
|
|
Changes = 0;
|
|
|
|
DEBUG(dbgs() << " Iterating over " << LiveIn.size() << " blocks.\n");
|
|
|
|
// Propagate live-out values down the dominator tree, inserting phi-defs when
|
|
|
|
// necessary. Since LiveIn was created by a BFS, going backwards makes it more
|
|
|
|
// likely for us to visit immediate dominators before their children.
|
|
|
|
for (unsigned i = LiveIn.size(); i; --i) {
|
|
|
|
MachineDomTreeNode *Node = LiveIn[i-1];
|
|
|
|
MachineBasicBlock *MBB = Node->getBlock();
|
|
|
|
MachineDomTreeNode *IDom = Node->getIDom();
|
|
|
|
LiveOutPair IDomValue;
|
|
|
|
// We need a live-in value to a block with no immediate dominator?
|
|
|
|
// This is probably an unreachable block that has survived somehow.
|
|
|
|
bool needPHI = !IDom;
|
|
|
|
|
|
|
|
// Get the IDom live-out value.
|
|
|
|
if (!needPHI) {
|
2011-01-26 08:50:53 +08:00
|
|
|
LiveOutMap::iterator I = LiveOutCache.find(IDom->getBlock());
|
|
|
|
if (I != LiveOutCache.end())
|
2010-10-29 04:34:52 +08:00
|
|
|
IDomValue = I->second;
|
|
|
|
else
|
|
|
|
// If IDom is outside our set of live-out blocks, there must be new
|
|
|
|
// defs, and we need a phi-def here.
|
|
|
|
needPHI = true;
|
|
|
|
}
|
2010-08-19 04:29:53 +08:00
|
|
|
|
2010-10-29 04:34:52 +08:00
|
|
|
// IDom dominates all of our predecessors, but it may not be the immediate
|
|
|
|
// dominator. Check if any of them have live-out values that are properly
|
|
|
|
// dominated by IDom. If so, we need a phi-def here.
|
|
|
|
if (!needPHI) {
|
|
|
|
for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
|
|
|
|
PE = MBB->pred_end(); PI != PE; ++PI) {
|
2011-01-26 08:50:53 +08:00
|
|
|
LiveOutPair Value = LiveOutCache[*PI];
|
2010-10-29 04:34:52 +08:00
|
|
|
if (!Value.first || Value.first == IDomValue.first)
|
|
|
|
continue;
|
|
|
|
// This predecessor is carrying something other than IDomValue.
|
|
|
|
// It could be because IDomValue hasn't propagated yet, or it could be
|
|
|
|
// because MBB is in the dominance frontier of that value.
|
2011-01-26 08:50:53 +08:00
|
|
|
if (MDT.dominates(IDom, Value.second)) {
|
2010-10-29 04:34:52 +08:00
|
|
|
needPHI = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-08-19 04:29:53 +08:00
|
|
|
|
2010-10-29 04:34:52 +08:00
|
|
|
// Create a phi-def if required.
|
|
|
|
if (needPHI) {
|
|
|
|
++Changes;
|
2011-01-26 08:50:53 +08:00
|
|
|
SlotIndex Start = LIS.getMBBStartIdx(MBB);
|
|
|
|
VNInfo *VNI = LI->getNextValue(Start, 0, LIS.getVNInfoAllocator());
|
2010-10-29 04:34:52 +08:00
|
|
|
VNI->setIsPHIDef(true);
|
|
|
|
DEBUG(dbgs() << " - BB#" << MBB->getNumber()
|
|
|
|
<< " phi-def #" << VNI->id << " at " << Start << '\n');
|
2011-01-26 08:50:53 +08:00
|
|
|
// We no longer need LI to be live-in.
|
2010-10-29 04:34:52 +08:00
|
|
|
LiveIn.erase(LiveIn.begin()+(i-1));
|
|
|
|
// Blocks in LiveIn are either IdxMBB, or have a value live-through.
|
|
|
|
if (MBB == IdxMBB)
|
|
|
|
IdxVNI = VNI;
|
|
|
|
// Check if we need to update live-out info.
|
2011-01-26 08:50:53 +08:00
|
|
|
LiveOutMap::iterator I = LiveOutCache.find(MBB);
|
|
|
|
if (I == LiveOutCache.end() || I->second.second == Node) {
|
2010-10-29 04:34:52 +08:00
|
|
|
// We already have a live-out defined in MBB, so this must be IdxMBB.
|
|
|
|
assert(MBB == IdxMBB && "Adding phi-def to known live-out");
|
2011-01-26 08:50:53 +08:00
|
|
|
LI->addRange(LiveRange(Start, Idx.getNextSlot(), VNI));
|
2010-10-29 04:34:52 +08:00
|
|
|
} else {
|
|
|
|
// This phi-def is also live-out, so color the whole block.
|
2011-01-26 08:50:53 +08:00
|
|
|
LI->addRange(LiveRange(Start, LIS.getMBBEndIdx(MBB), VNI));
|
2010-10-29 04:34:52 +08:00
|
|
|
I->second = LiveOutPair(VNI, Node);
|
|
|
|
}
|
|
|
|
} else if (IDomValue.first) {
|
2010-10-30 01:37:25 +08:00
|
|
|
// No phi-def here. Remember incoming value for IdxMBB.
|
2010-10-29 04:34:52 +08:00
|
|
|
if (MBB == IdxMBB)
|
|
|
|
IdxVNI = IDomValue.first;
|
2010-10-30 01:37:25 +08:00
|
|
|
// Propagate IDomValue if needed:
|
|
|
|
// MBB is live-out and doesn't define its own value.
|
2011-01-26 08:50:53 +08:00
|
|
|
LiveOutMap::iterator I = LiveOutCache.find(MBB);
|
|
|
|
if (I != LiveOutCache.end() && I->second.second != Node &&
|
2010-10-30 01:37:25 +08:00
|
|
|
I->second.first != IDomValue.first) {
|
2010-10-29 04:34:52 +08:00
|
|
|
++Changes;
|
|
|
|
I->second = IDomValue;
|
|
|
|
DEBUG(dbgs() << " - BB#" << MBB->getNumber()
|
|
|
|
<< " idom valno #" << IDomValue.first->id
|
|
|
|
<< " from BB#" << IDom->getBlock()->getNumber() << '\n');
|
|
|
|
}
|
2010-08-19 04:29:53 +08:00
|
|
|
}
|
2010-08-19 03:00:08 +08:00
|
|
|
}
|
2010-10-29 04:34:52 +08:00
|
|
|
DEBUG(dbgs() << " - made " << Changes << " changes.\n");
|
|
|
|
} while (Changes);
|
2010-08-19 03:00:08 +08:00
|
|
|
|
2010-10-29 04:34:52 +08:00
|
|
|
assert(IdxVNI && "Didn't find value for Idx");
|
2010-08-19 03:00:08 +08:00
|
|
|
|
2010-10-29 04:34:52 +08:00
|
|
|
#ifndef NDEBUG
|
2011-01-26 08:50:53 +08:00
|
|
|
// Check the LiveOutCache invariants.
|
|
|
|
for (LiveOutMap::iterator I = LiveOutCache.begin(), E = LiveOutCache.end();
|
2010-10-29 04:34:52 +08:00
|
|
|
I != E; ++I) {
|
|
|
|
assert(I->first && "Null MBB entry in cache");
|
|
|
|
assert(I->second.first && "Null VNInfo in cache");
|
|
|
|
assert(I->second.second && "Null DomTreeNode in cache");
|
|
|
|
if (I->second.second->getBlock() == I->first)
|
|
|
|
continue;
|
|
|
|
for (MachineBasicBlock::pred_iterator PI = I->first->pred_begin(),
|
|
|
|
PE = I->first->pred_end(); PI != PE; ++PI)
|
2011-01-26 08:50:53 +08:00
|
|
|
assert(LiveOutCache.lookup(*PI) == I->second && "Bad invariant");
|
2010-10-29 04:34:52 +08:00
|
|
|
}
|
|
|
|
#endif
|
2010-08-19 03:00:08 +08:00
|
|
|
|
2010-10-29 04:34:52 +08:00
|
|
|
// Since we went through the trouble of a full BFS visiting all reaching defs,
|
|
|
|
// the values in LiveIn are now accurate. No more phi-defs are needed
|
|
|
|
// for these blocks, so we can color the live ranges.
|
2010-08-19 03:00:08 +08:00
|
|
|
// This makes the next mapValue call much faster.
|
2010-10-29 04:34:52 +08:00
|
|
|
for (unsigned i = 0, e = LiveIn.size(); i != e; ++i) {
|
|
|
|
MachineBasicBlock *MBB = LiveIn[i]->getBlock();
|
2011-01-26 08:50:53 +08:00
|
|
|
SlotIndex Start = LIS.getMBBStartIdx(MBB);
|
|
|
|
VNInfo *VNI = LiveOutCache.lookup(MBB).first;
|
2011-02-04 04:29:36 +08:00
|
|
|
|
|
|
|
// Anything in LiveIn other than IdxMBB is live-through.
|
|
|
|
// In IdxMBB, we should stop at Idx unless the same value is live-out.
|
|
|
|
if (MBB == IdxMBB && IdxVNI != VNI)
|
|
|
|
LI->addRange(LiveRange(Start, Idx.getNextSlot(), IdxVNI));
|
|
|
|
else
|
|
|
|
LI->addRange(LiveRange(Start, LIS.getMBBEndIdx(MBB), VNI));
|
2010-08-19 03:00:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return IdxVNI;
|
|
|
|
}
|
|
|
|
|
2011-01-21 01:45:20 +08:00
|
|
|
#ifndef NDEBUG
|
|
|
|
void LiveIntervalMap::dumpCache() {
|
2011-01-26 08:50:53 +08:00
|
|
|
for (LiveOutMap::iterator I = LiveOutCache.begin(), E = LiveOutCache.end();
|
2011-01-21 01:45:20 +08:00
|
|
|
I != E; ++I) {
|
|
|
|
assert(I->first && "Null MBB entry in cache");
|
|
|
|
assert(I->second.first && "Null VNInfo in cache");
|
|
|
|
assert(I->second.second && "Null DomTreeNode in cache");
|
|
|
|
dbgs() << " cache: BB#" << I->first->getNumber()
|
|
|
|
<< " has valno #" << I->second.first->id << " from BB#"
|
|
|
|
<< I->second.second->getBlock()->getNumber() << ", preds";
|
|
|
|
for (MachineBasicBlock::pred_iterator PI = I->first->pred_begin(),
|
|
|
|
PE = I->first->pred_end(); PI != PE; ++PI)
|
|
|
|
dbgs() << " BB#" << (*PI)->getNumber();
|
|
|
|
dbgs() << '\n';
|
|
|
|
}
|
2011-01-26 08:50:53 +08:00
|
|
|
dbgs() << " cache: " << LiveOutCache.size() << " entries.\n";
|
2011-01-21 01:45:20 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-01-26 08:50:53 +08:00
|
|
|
// extendTo - Find the last LI value defined in MBB at or before Idx. The
|
|
|
|
// ParentLI is assumed to be live at Idx. Extend the live range to Idx.
|
2010-08-19 03:00:08 +08:00
|
|
|
// Return the found VNInfo, or NULL.
|
2010-10-27 08:39:07 +08:00
|
|
|
VNInfo *LiveIntervalMap::extendTo(const MachineBasicBlock *MBB, SlotIndex Idx) {
|
2011-01-26 08:50:53 +08:00
|
|
|
assert(LI && "call reset first");
|
|
|
|
LiveInterval::iterator I = std::upper_bound(LI->begin(), LI->end(), Idx);
|
|
|
|
if (I == LI->begin())
|
2010-08-19 03:00:08 +08:00
|
|
|
return 0;
|
|
|
|
--I;
|
2011-01-26 08:50:53 +08:00
|
|
|
if (I->end <= LIS.getMBBStartIdx(MBB))
|
2010-08-19 03:00:08 +08:00
|
|
|
return 0;
|
2010-09-16 08:01:36 +08:00
|
|
|
if (I->end <= Idx)
|
|
|
|
I->end = Idx.getNextSlot();
|
2010-08-19 03:00:08 +08:00
|
|
|
return I->valno;
|
|
|
|
}
|
|
|
|
|
2011-01-26 08:50:53 +08:00
|
|
|
// addSimpleRange - Add a simple range from ParentLI to LI.
|
2010-08-19 03:00:08 +08:00
|
|
|
// ParentVNI must be live in the [Start;End) interval.
|
|
|
|
void LiveIntervalMap::addSimpleRange(SlotIndex Start, SlotIndex End,
|
|
|
|
const VNInfo *ParentVNI) {
|
2011-01-26 08:50:53 +08:00
|
|
|
assert(LI && "call reset first");
|
2010-09-22 06:32:21 +08:00
|
|
|
bool simple;
|
|
|
|
VNInfo *VNI = mapValue(ParentVNI, Start, &simple);
|
|
|
|
// A simple mapping is easy.
|
|
|
|
if (simple) {
|
2011-01-26 08:50:53 +08:00
|
|
|
LI->addRange(LiveRange(Start, End, VNI));
|
2010-08-19 03:00:08 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ParentVNI is a complex value. We must map per MBB.
|
2011-01-26 08:50:53 +08:00
|
|
|
MachineFunction::iterator MBB = LIS.getMBBFromIndex(Start);
|
|
|
|
MachineFunction::iterator MBBE = LIS.getMBBFromIndex(End.getPrevSlot());
|
2010-08-19 03:00:08 +08:00
|
|
|
|
|
|
|
if (MBB == MBBE) {
|
2011-01-26 08:50:53 +08:00
|
|
|
LI->addRange(LiveRange(Start, End, VNI));
|
2010-08-19 03:00:08 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// First block.
|
2011-01-26 08:50:53 +08:00
|
|
|
LI->addRange(LiveRange(Start, LIS.getMBBEndIdx(MBB), VNI));
|
2010-08-19 03:00:08 +08:00
|
|
|
|
|
|
|
// Run sequence of full blocks.
|
|
|
|
for (++MBB; MBB != MBBE; ++MBB) {
|
2011-01-26 08:50:53 +08:00
|
|
|
Start = LIS.getMBBStartIdx(MBB);
|
|
|
|
LI->addRange(LiveRange(Start, LIS.getMBBEndIdx(MBB),
|
2010-09-14 07:29:09 +08:00
|
|
|
mapValue(ParentVNI, Start)));
|
2010-08-19 03:00:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Final block.
|
2011-01-26 08:50:53 +08:00
|
|
|
Start = LIS.getMBBStartIdx(MBB);
|
2010-08-19 03:00:08 +08:00
|
|
|
if (Start != End)
|
2011-01-26 08:50:53 +08:00
|
|
|
LI->addRange(LiveRange(Start, End, mapValue(ParentVNI, Start)));
|
2010-08-19 03:00:08 +08:00
|
|
|
}
|
|
|
|
|
2011-01-26 08:50:53 +08:00
|
|
|
/// addRange - Add live ranges to LI where [Start;End) intersects ParentLI.
|
2010-08-19 03:00:08 +08:00
|
|
|
/// All needed values whose def is not inside [Start;End) must be defined
|
|
|
|
/// beforehand so mapValue will work.
|
|
|
|
void LiveIntervalMap::addRange(SlotIndex Start, SlotIndex End) {
|
2011-01-26 08:50:53 +08:00
|
|
|
assert(LI && "call reset first");
|
|
|
|
LiveInterval::const_iterator B = ParentLI.begin(), E = ParentLI.end();
|
2010-08-19 03:00:08 +08:00
|
|
|
LiveInterval::const_iterator I = std::lower_bound(B, E, Start);
|
|
|
|
|
|
|
|
// Check if --I begins before Start and overlaps.
|
|
|
|
if (I != B) {
|
|
|
|
--I;
|
|
|
|
if (I->end > Start)
|
|
|
|
addSimpleRange(Start, std::min(End, I->end), I->valno);
|
|
|
|
++I;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The remaining ranges begin after Start.
|
|
|
|
for (;I != E && I->start < End; ++I)
|
|
|
|
addSimpleRange(I->start, std::min(End, I->end), I->valno);
|
|
|
|
}
|
|
|
|
|
2010-09-16 08:01:36 +08:00
|
|
|
|
2010-07-27 07:44:11 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Split Editor
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
/// Create a new SplitEditor for editing the LiveInterval analyzed by SA.
|
2010-10-29 04:34:50 +08:00
|
|
|
SplitEditor::SplitEditor(SplitAnalysis &sa,
|
|
|
|
LiveIntervals &lis,
|
|
|
|
VirtRegMap &vrm,
|
|
|
|
MachineDominatorTree &mdt,
|
2010-10-15 07:49:52 +08:00
|
|
|
LiveRangeEdit &edit)
|
2011-01-26 08:50:53 +08:00
|
|
|
: sa_(sa), LIS(lis), VRM(vrm),
|
|
|
|
MRI(vrm.getMachineFunction().getRegInfo()),
|
2011-02-03 14:18:29 +08:00
|
|
|
MDT(mdt),
|
2011-01-26 08:50:53 +08:00
|
|
|
TII(*vrm.getMachineFunction().getTarget().getInstrInfo()),
|
|
|
|
TRI(*vrm.getMachineFunction().getTarget().getRegisterInfo()),
|
|
|
|
Edit(edit),
|
2011-02-03 14:18:29 +08:00
|
|
|
OpenIdx(0),
|
|
|
|
RegAssign(Allocator)
|
2010-07-27 07:44:11 +08:00
|
|
|
{
|
2010-11-11 03:31:50 +08:00
|
|
|
// We don't need an AliasAnalysis since we will only be performing
|
|
|
|
// cheap-as-a-copy remats anyway.
|
2011-01-26 08:50:53 +08:00
|
|
|
Edit.anyRematerializable(LIS, TII, 0);
|
2010-07-27 07:44:11 +08:00
|
|
|
}
|
|
|
|
|
2011-02-03 14:18:29 +08:00
|
|
|
void SplitEditor::dump() const {
|
|
|
|
if (RegAssign.empty()) {
|
|
|
|
dbgs() << " empty\n";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (RegAssignMap::const_iterator I = RegAssign.begin(); I.valid(); ++I)
|
|
|
|
dbgs() << " [" << I.start() << ';' << I.stop() << "):" << I.value();
|
|
|
|
dbgs() << '\n';
|
2010-09-22 06:32:21 +08:00
|
|
|
}
|
|
|
|
|
2011-02-03 14:18:29 +08:00
|
|
|
VNInfo *SplitEditor::defFromParent(unsigned RegIdx,
|
2010-11-11 03:31:50 +08:00
|
|
|
VNInfo *ParentVNI,
|
|
|
|
SlotIndex UseIdx,
|
|
|
|
MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator I) {
|
|
|
|
MachineInstr *CopyMI = 0;
|
|
|
|
SlotIndex Def;
|
2011-02-03 14:18:29 +08:00
|
|
|
LiveInterval *LI = Edit.get(RegIdx);
|
2010-11-11 03:31:50 +08:00
|
|
|
|
|
|
|
// Attempt cheap-as-a-copy rematerialization.
|
|
|
|
LiveRangeEdit::Remat RM(ParentVNI);
|
2011-01-26 08:50:53 +08:00
|
|
|
if (Edit.canRematerializeAt(RM, UseIdx, true, LIS)) {
|
2011-02-03 14:18:29 +08:00
|
|
|
Def = Edit.rematerializeAt(MBB, I, LI->reg, RM, LIS, TII, TRI);
|
2010-11-11 03:31:50 +08:00
|
|
|
} else {
|
|
|
|
// Can't remat, just insert a copy from parent.
|
2011-02-03 14:18:29 +08:00
|
|
|
CopyMI = BuildMI(MBB, I, DebugLoc(), TII.get(TargetOpcode::COPY), LI->reg)
|
|
|
|
.addReg(Edit.getReg());
|
2011-01-26 08:50:53 +08:00
|
|
|
Def = LIS.InsertMachineInstrInMaps(CopyMI).getDefIndex();
|
2010-11-11 03:31:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Define the value in Reg.
|
2011-02-03 14:18:29 +08:00
|
|
|
VNInfo *VNI = LIMappers[RegIdx].defValue(ParentVNI, Def);
|
2010-11-11 03:31:50 +08:00
|
|
|
VNI->setCopy(CopyMI);
|
|
|
|
|
|
|
|
// Add minimal liveness for the new value.
|
2011-02-03 14:18:29 +08:00
|
|
|
Edit.get(RegIdx)->addRange(LiveRange(Def, Def.getNextSlot(), VNI));
|
2010-11-11 03:31:50 +08:00
|
|
|
return VNI;
|
|
|
|
}
|
|
|
|
|
2010-09-16 08:01:36 +08:00
|
|
|
/// Create a new virtual register and live interval.
|
|
|
|
void SplitEditor::openIntv() {
|
2011-02-03 14:18:29 +08:00
|
|
|
assert(!OpenIdx && "Previous LI not closed before openIntv");
|
2010-08-05 06:08:39 +08:00
|
|
|
|
2011-02-03 14:18:29 +08:00
|
|
|
// Create the complement as index 0.
|
|
|
|
if (Edit.empty()) {
|
|
|
|
Edit.create(MRI, LIS, VRM);
|
|
|
|
LIMappers.push_back(LiveIntervalMap(LIS, MDT, Edit.getParent()));
|
|
|
|
LIMappers.back().reset(Edit.get(0));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create the open interval.
|
|
|
|
OpenIdx = Edit.size();
|
|
|
|
Edit.create(MRI, LIS, VRM);
|
|
|
|
LIMappers.push_back(LiveIntervalMap(LIS, MDT, Edit.getParent()));
|
|
|
|
LIMappers[OpenIdx].reset(Edit.get(OpenIdx));
|
2010-07-27 07:44:11 +08:00
|
|
|
}
|
|
|
|
|
2011-02-04 01:04:16 +08:00
|
|
|
SlotIndex SplitEditor::enterIntvBefore(SlotIndex Idx) {
|
2011-02-03 14:18:29 +08:00
|
|
|
assert(OpenIdx && "openIntv not called before enterIntvBefore");
|
2010-10-08 01:56:35 +08:00
|
|
|
DEBUG(dbgs() << " enterIntvBefore " << Idx);
|
2011-02-04 01:04:16 +08:00
|
|
|
Idx = Idx.getBaseIndex();
|
2011-01-26 08:50:53 +08:00
|
|
|
VNInfo *ParentVNI = Edit.getParent().getVNInfoAt(Idx);
|
2010-09-16 08:01:36 +08:00
|
|
|
if (!ParentVNI) {
|
2010-10-08 01:56:35 +08:00
|
|
|
DEBUG(dbgs() << ": not live\n");
|
2011-02-04 01:04:16 +08:00
|
|
|
return Idx;
|
2010-08-13 01:07:14 +08:00
|
|
|
}
|
2011-02-04 01:04:16 +08:00
|
|
|
DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
|
2011-01-26 08:50:53 +08:00
|
|
|
MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
|
2010-09-16 08:01:36 +08:00
|
|
|
assert(MI && "enterIntvBefore called with invalid index");
|
2010-11-11 03:31:50 +08:00
|
|
|
|
2011-02-04 01:04:16 +08:00
|
|
|
VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Idx, *MI->getParent(), MI);
|
|
|
|
return VNI->def;
|
2010-08-13 01:07:14 +08:00
|
|
|
}
|
|
|
|
|
2011-02-04 01:04:16 +08:00
|
|
|
SlotIndex SplitEditor::enterIntvAtEnd(MachineBasicBlock &MBB) {
|
2011-02-03 14:18:29 +08:00
|
|
|
assert(OpenIdx && "openIntv not called before enterIntvAtEnd");
|
2011-02-04 01:04:16 +08:00
|
|
|
SlotIndex End = LIS.getMBBEndIdx(&MBB);
|
|
|
|
SlotIndex Last = End.getPrevSlot();
|
|
|
|
DEBUG(dbgs() << " enterIntvAtEnd BB#" << MBB.getNumber() << ", " << Last);
|
|
|
|
VNInfo *ParentVNI = Edit.getParent().getVNInfoAt(Last);
|
2010-09-16 08:01:36 +08:00
|
|
|
if (!ParentVNI) {
|
2010-10-08 01:56:35 +08:00
|
|
|
DEBUG(dbgs() << ": not live\n");
|
2011-02-04 01:04:16 +08:00
|
|
|
return End;
|
2010-07-27 07:44:11 +08:00
|
|
|
}
|
2010-10-08 01:56:35 +08:00
|
|
|
DEBUG(dbgs() << ": valno " << ParentVNI->id);
|
2011-02-04 01:04:16 +08:00
|
|
|
VNInfo *VNI = defFromParent(OpenIdx, ParentVNI, Last, MBB,
|
2011-02-05 03:33:11 +08:00
|
|
|
LIS.getLastSplitPoint(Edit.getParent(), &MBB));
|
2011-02-04 01:04:16 +08:00
|
|
|
RegAssign.insert(VNI->def, End, OpenIdx);
|
2011-02-03 14:18:29 +08:00
|
|
|
DEBUG(dump());
|
2011-02-04 01:04:16 +08:00
|
|
|
return VNI->def;
|
2010-07-27 07:44:11 +08:00
|
|
|
}
|
|
|
|
|
2011-01-26 08:50:53 +08:00
|
|
|
/// useIntv - indicate that all instructions in MBB should use OpenLI.
|
2010-08-05 06:08:39 +08:00
|
|
|
void SplitEditor::useIntv(const MachineBasicBlock &MBB) {
|
2011-01-26 08:50:53 +08:00
|
|
|
useIntv(LIS.getMBBStartIdx(&MBB), LIS.getMBBEndIdx(&MBB));
|
2010-07-27 07:44:11 +08:00
|
|
|
}
|
|
|
|
|
2010-08-05 06:08:39 +08:00
|
|
|
void SplitEditor::useIntv(SlotIndex Start, SlotIndex End) {
|
2011-02-03 14:18:29 +08:00
|
|
|
assert(OpenIdx && "openIntv not called before useIntv");
|
|
|
|
DEBUG(dbgs() << " useIntv [" << Start << ';' << End << "):");
|
|
|
|
RegAssign.insert(Start, End, OpenIdx);
|
|
|
|
DEBUG(dump());
|
2010-07-27 07:44:11 +08:00
|
|
|
}
|
|
|
|
|
2011-02-04 01:04:16 +08:00
|
|
|
SlotIndex SplitEditor::leaveIntvAfter(SlotIndex Idx) {
|
2011-02-03 14:18:29 +08:00
|
|
|
assert(OpenIdx && "openIntv not called before leaveIntvAfter");
|
2010-10-08 01:56:35 +08:00
|
|
|
DEBUG(dbgs() << " leaveIntvAfter " << Idx);
|
2010-08-13 01:07:14 +08:00
|
|
|
|
2010-09-16 08:01:36 +08:00
|
|
|
// The interval must be live beyond the instruction at Idx.
|
2010-11-11 03:31:50 +08:00
|
|
|
Idx = Idx.getBoundaryIndex();
|
2011-01-26 08:50:53 +08:00
|
|
|
VNInfo *ParentVNI = Edit.getParent().getVNInfoAt(Idx);
|
2010-09-16 08:01:36 +08:00
|
|
|
if (!ParentVNI) {
|
2010-10-08 01:56:35 +08:00
|
|
|
DEBUG(dbgs() << ": not live\n");
|
2011-02-04 01:04:16 +08:00
|
|
|
return Idx.getNextSlot();
|
2010-08-13 01:07:14 +08:00
|
|
|
}
|
2011-02-04 01:04:16 +08:00
|
|
|
DEBUG(dbgs() << ": valno " << ParentVNI->id << '\n');
|
2010-08-13 01:07:14 +08:00
|
|
|
|
2011-02-09 02:50:18 +08:00
|
|
|
MachineInstr *MI = LIS.getInstructionFromIndex(Idx);
|
|
|
|
assert(MI && "No instruction at index");
|
|
|
|
VNInfo *VNI = defFromParent(0, ParentVNI, Idx, *MI->getParent(),
|
|
|
|
llvm::next(MachineBasicBlock::iterator(MI)));
|
2011-02-04 01:04:16 +08:00
|
|
|
return VNI->def;
|
2010-08-13 01:07:14 +08:00
|
|
|
}
|
|
|
|
|
2011-02-04 01:04:16 +08:00
|
|
|
SlotIndex SplitEditor::leaveIntvAtTop(MachineBasicBlock &MBB) {
|
2011-02-03 14:18:29 +08:00
|
|
|
assert(OpenIdx && "openIntv not called before leaveIntvAtTop");
|
2011-01-26 08:50:53 +08:00
|
|
|
SlotIndex Start = LIS.getMBBStartIdx(&MBB);
|
2010-10-08 01:56:35 +08:00
|
|
|
DEBUG(dbgs() << " leaveIntvAtTop BB#" << MBB.getNumber() << ", " << Start);
|
2010-08-05 06:08:39 +08:00
|
|
|
|
2011-01-26 08:50:53 +08:00
|
|
|
VNInfo *ParentVNI = Edit.getParent().getVNInfoAt(Start);
|
2010-09-16 08:01:36 +08:00
|
|
|
if (!ParentVNI) {
|
2010-10-08 01:56:35 +08:00
|
|
|
DEBUG(dbgs() << ": not live\n");
|
2011-02-04 01:04:16 +08:00
|
|
|
return Start;
|
2010-08-05 06:08:39 +08:00
|
|
|
}
|
|
|
|
|
2011-02-03 14:18:29 +08:00
|
|
|
VNInfo *VNI = defFromParent(0, ParentVNI, Start, MBB,
|
2010-11-11 03:31:50 +08:00
|
|
|
MBB.SkipPHIsAndLabels(MBB.begin()));
|
2011-02-03 14:18:29 +08:00
|
|
|
RegAssign.insert(Start, VNI->def, OpenIdx);
|
|
|
|
DEBUG(dump());
|
2011-02-04 01:04:16 +08:00
|
|
|
return VNI->def;
|
2010-07-27 07:44:11 +08:00
|
|
|
}
|
|
|
|
|
2010-08-05 06:08:39 +08:00
|
|
|
/// closeIntv - Indicate that we are done editing the currently open
|
2010-07-27 07:44:11 +08:00
|
|
|
/// LiveInterval, and ranges can be trimmed.
|
2010-08-05 06:08:39 +08:00
|
|
|
void SplitEditor::closeIntv() {
|
2011-02-03 14:18:29 +08:00
|
|
|
assert(OpenIdx && "openIntv not called before closeIntv");
|
|
|
|
OpenIdx = 0;
|
2010-09-22 06:32:21 +08:00
|
|
|
}
|
2010-08-05 06:08:39 +08:00
|
|
|
|
2011-02-03 14:18:29 +08:00
|
|
|
/// rewriteAssigned - Rewrite all uses of Edit.getReg().
|
|
|
|
void SplitEditor::rewriteAssigned() {
|
|
|
|
for (MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(Edit.getReg()),
|
2011-01-26 08:50:53 +08:00
|
|
|
RE = MRI.reg_end(); RI != RE;) {
|
2010-10-09 07:42:21 +08:00
|
|
|
MachineOperand &MO = RI.getOperand();
|
|
|
|
MachineInstr *MI = MO.getParent();
|
|
|
|
++RI;
|
2011-02-03 14:18:29 +08:00
|
|
|
// LiveDebugVariables should have handled all DBG_VALUE instructions.
|
2010-10-09 07:42:21 +08:00
|
|
|
if (MI->isDebugValue()) {
|
|
|
|
DEBUG(dbgs() << "Zapping " << *MI);
|
|
|
|
MO.setReg(0);
|
|
|
|
continue;
|
|
|
|
}
|
2011-01-26 08:50:53 +08:00
|
|
|
SlotIndex Idx = LIS.getInstructionIndex(MI);
|
2010-10-09 07:42:21 +08:00
|
|
|
Idx = MO.isUse() ? Idx.getUseIndex() : Idx.getDefIndex();
|
2011-02-03 14:18:29 +08:00
|
|
|
|
|
|
|
// Rewrite to the mapped register at Idx.
|
|
|
|
unsigned RegIdx = RegAssign.lookup(Idx);
|
|
|
|
MO.setReg(Edit.get(RegIdx)->reg);
|
|
|
|
DEBUG(dbgs() << " rewr BB#" << MI->getParent()->getNumber() << '\t'
|
|
|
|
<< Idx << ':' << RegIdx << '\t' << *MI);
|
|
|
|
|
|
|
|
// Extend liveness to Idx.
|
|
|
|
const VNInfo *ParentVNI = Edit.getParent().getVNInfoAt(Idx);
|
|
|
|
LIMappers[RegIdx].mapValue(ParentVNI, Idx);
|
2010-10-09 07:42:21 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-03 14:18:29 +08:00
|
|
|
/// rewriteSplit - Rewrite uses of Intvs[0] according to the ConEQ mapping.
|
|
|
|
void SplitEditor::rewriteComponents(const SmallVectorImpl<LiveInterval*> &Intvs,
|
|
|
|
const ConnectedVNInfoEqClasses &ConEq) {
|
|
|
|
for (MachineRegisterInfo::reg_iterator RI = MRI.reg_begin(Intvs[0]->reg),
|
|
|
|
RE = MRI.reg_end(); RI != RE;) {
|
|
|
|
MachineOperand &MO = RI.getOperand();
|
|
|
|
MachineInstr *MI = MO.getParent();
|
|
|
|
++RI;
|
|
|
|
if (MO.isUse() && MO.isUndef())
|
2010-10-22 02:47:08 +08:00
|
|
|
continue;
|
2011-02-03 14:18:29 +08:00
|
|
|
// DBG_VALUE instructions should have been eliminated earlier.
|
|
|
|
SlotIndex Idx = LIS.getInstructionIndex(MI);
|
|
|
|
Idx = MO.isUse() ? Idx.getUseIndex() : Idx.getDefIndex();
|
|
|
|
DEBUG(dbgs() << " rewr BB#" << MI->getParent()->getNumber() << '\t'
|
|
|
|
<< Idx << ':');
|
|
|
|
const VNInfo *VNI = Intvs[0]->getVNInfoAt(Idx);
|
|
|
|
assert(VNI && "Interval not live at use.");
|
|
|
|
MO.setReg(Intvs[ConEq.getEqClass(VNI)]->reg);
|
|
|
|
DEBUG(dbgs() << VNI->id << '\t' << *MI);
|
2010-09-22 06:32:21 +08:00
|
|
|
}
|
2011-02-03 13:40:54 +08:00
|
|
|
}
|
2010-09-22 06:32:21 +08:00
|
|
|
|
2011-02-03 14:18:29 +08:00
|
|
|
void SplitEditor::finish() {
|
|
|
|
assert(OpenIdx == 0 && "Previous LI not closed before rewrite");
|
|
|
|
|
|
|
|
// At this point, the live intervals in Edit contain VNInfos corresponding to
|
|
|
|
// the inserted copies.
|
|
|
|
|
|
|
|
// Add the original defs from the parent interval.
|
|
|
|
for (LiveInterval::const_vni_iterator I = Edit.getParent().vni_begin(),
|
|
|
|
E = Edit.getParent().vni_end(); I != E; ++I) {
|
|
|
|
const VNInfo *ParentVNI = *I;
|
2011-02-04 08:59:23 +08:00
|
|
|
if (ParentVNI->isUnused())
|
|
|
|
continue;
|
2011-02-03 14:18:29 +08:00
|
|
|
LiveIntervalMap &LIM = LIMappers[RegAssign.lookup(ParentVNI->def)];
|
|
|
|
VNInfo *VNI = LIM.defValue(ParentVNI, ParentVNI->def);
|
|
|
|
LIM.getLI()->addRange(LiveRange(ParentVNI->def,
|
|
|
|
ParentVNI->def.getNextSlot(), VNI));
|
|
|
|
// Mark all values as complex to force liveness computation.
|
|
|
|
// This should really only be necessary for remat victims, but we are lazy.
|
|
|
|
LIM.markComplexMapped(ParentVNI);
|
2010-09-22 06:32:21 +08:00
|
|
|
}
|
2010-10-27 08:39:07 +08:00
|
|
|
|
2011-02-03 14:18:29 +08:00
|
|
|
#ifndef NDEBUG
|
|
|
|
// Every new interval must have a def by now, otherwise the split is bogus.
|
|
|
|
for (LiveRangeEdit::iterator I = Edit.begin(), E = Edit.end(); I != E; ++I)
|
|
|
|
assert((*I)->hasAtLeastOneValue() && "Split interval has no value");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// FIXME: Don't recompute the liveness of all values, infer it from the
|
|
|
|
// overlaps between the parent live interval and RegAssign.
|
|
|
|
// The mapValue algorithm is only necessary when:
|
|
|
|
// - The parent value maps to multiple defs, and new phis are needed, or
|
|
|
|
// - The value has been rematerialized before some uses, and we want to
|
|
|
|
// minimize the live range so it only reaches the remaining uses.
|
|
|
|
// All other values have simple liveness that can be computed from RegAssign
|
|
|
|
// and the parent live interval.
|
|
|
|
|
|
|
|
// Extend live ranges to be live-out for successor PHI values.
|
|
|
|
for (LiveInterval::const_vni_iterator I = Edit.getParent().vni_begin(),
|
|
|
|
E = Edit.getParent().vni_end(); I != E; ++I) {
|
|
|
|
const VNInfo *PHIVNI = *I;
|
2011-02-04 08:59:23 +08:00
|
|
|
if (PHIVNI->isUnused() || !PHIVNI->isPHIDef())
|
2011-02-03 14:18:29 +08:00
|
|
|
continue;
|
2011-02-04 04:29:39 +08:00
|
|
|
unsigned RegIdx = RegAssign.lookup(PHIVNI->def);
|
|
|
|
LiveIntervalMap &LIM = LIMappers[RegIdx];
|
2011-02-03 14:18:29 +08:00
|
|
|
MachineBasicBlock *MBB = LIS.getMBBFromIndex(PHIVNI->def);
|
2011-02-04 04:29:39 +08:00
|
|
|
DEBUG(dbgs() << " map phi in BB#" << MBB->getNumber() << '@' << PHIVNI->def
|
|
|
|
<< " -> " << RegIdx << '\n');
|
2011-02-03 14:18:29 +08:00
|
|
|
for (MachineBasicBlock::pred_iterator PI = MBB->pred_begin(),
|
|
|
|
PE = MBB->pred_end(); PI != PE; ++PI) {
|
|
|
|
SlotIndex End = LIS.getMBBEndIdx(*PI).getPrevSlot();
|
2011-02-04 04:29:39 +08:00
|
|
|
DEBUG(dbgs() << " pred BB#" << (*PI)->getNumber() << '@' << End);
|
2011-02-03 14:18:29 +08:00
|
|
|
// The predecessor may not have a live-out value. That is OK, like an
|
|
|
|
// undef PHI operand.
|
2011-02-04 04:29:39 +08:00
|
|
|
if (VNInfo *VNI = Edit.getParent().getVNInfoAt(End)) {
|
|
|
|
DEBUG(dbgs() << " has parent valno #" << VNI->id << " live out\n");
|
|
|
|
assert(RegAssign.lookup(End) == RegIdx &&
|
|
|
|
"Different register assignment in phi predecessor");
|
2011-02-03 14:18:29 +08:00
|
|
|
LIM.mapValue(VNI, End);
|
2011-02-04 04:29:39 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
DEBUG(dbgs() << " is not live-out\n");
|
2011-02-03 13:40:54 +08:00
|
|
|
}
|
2011-02-04 04:29:39 +08:00
|
|
|
DEBUG(dbgs() << " " << *LIM.getLI() << '\n');
|
2011-02-03 13:40:54 +08:00
|
|
|
}
|
2010-10-09 07:42:21 +08:00
|
|
|
|
2011-02-03 14:18:29 +08:00
|
|
|
// Rewrite instructions.
|
|
|
|
rewriteAssigned();
|
2011-02-03 13:40:54 +08:00
|
|
|
|
2011-02-03 14:18:29 +08:00
|
|
|
// FIXME: Delete defs that were rematted everywhere.
|
2010-09-22 06:32:21 +08:00
|
|
|
|
2010-10-08 07:34:34 +08:00
|
|
|
// Get rid of unused values and set phi-kill flags.
|
2011-01-26 08:50:53 +08:00
|
|
|
for (LiveRangeEdit::iterator I = Edit.begin(), E = Edit.end(); I != E; ++I)
|
|
|
|
(*I)->RenumberValues(LIS);
|
2010-10-08 07:34:34 +08:00
|
|
|
|
2010-10-27 06:36:09 +08:00
|
|
|
// Now check if any registers were separated into multiple components.
|
2011-01-26 08:50:53 +08:00
|
|
|
ConnectedVNInfoEqClasses ConEQ(LIS);
|
|
|
|
for (unsigned i = 0, e = Edit.size(); i != e; ++i) {
|
2010-10-27 06:36:09 +08:00
|
|
|
// Don't use iterators, they are invalidated by create() below.
|
2011-01-26 08:50:53 +08:00
|
|
|
LiveInterval *li = Edit.get(i);
|
2010-10-27 06:36:09 +08:00
|
|
|
unsigned NumComp = ConEQ.Classify(li);
|
|
|
|
if (NumComp <= 1)
|
|
|
|
continue;
|
|
|
|
DEBUG(dbgs() << " " << NumComp << " components: " << *li << '\n');
|
|
|
|
SmallVector<LiveInterval*, 8> dups;
|
|
|
|
dups.push_back(li);
|
|
|
|
for (unsigned i = 1; i != NumComp; ++i)
|
2011-01-26 08:50:53 +08:00
|
|
|
dups.push_back(&Edit.create(MRI, LIS, VRM));
|
2011-02-03 14:18:29 +08:00
|
|
|
rewriteComponents(dups, ConEQ);
|
2010-10-27 06:36:09 +08:00
|
|
|
ConEQ.Distribute(&dups[0]);
|
|
|
|
}
|
|
|
|
|
2010-08-11 01:07:22 +08:00
|
|
|
// Calculate spill weight and allocation hints for new intervals.
|
2011-01-26 08:50:53 +08:00
|
|
|
VirtRegAuxInfo vrai(VRM.getMachineFunction(), LIS, sa_.Loops);
|
|
|
|
for (LiveRangeEdit::iterator I = Edit.begin(), E = Edit.end(); I != E; ++I){
|
2010-10-15 07:49:52 +08:00
|
|
|
LiveInterval &li = **I;
|
2010-08-11 02:37:40 +08:00
|
|
|
vrai.CalculateRegClass(li.reg);
|
2010-08-11 01:07:22 +08:00
|
|
|
vrai.CalculateWeightAndHint(li);
|
2011-01-26 08:50:53 +08:00
|
|
|
DEBUG(dbgs() << " new interval " << MRI.getRegClass(li.reg)->getName()
|
2010-08-13 02:50:55 +08:00
|
|
|
<< ":" << li << '\n');
|
2010-08-11 01:07:22 +08:00
|
|
|
}
|
2010-07-27 07:44:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-07-20 23:41:07 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Loop Splitting
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-10-06 06:19:33 +08:00
|
|
|
void SplitEditor::splitAroundLoop(const MachineLoop *Loop) {
|
2010-07-27 07:44:11 +08:00
|
|
|
SplitAnalysis::LoopBlocks Blocks;
|
|
|
|
sa_.getLoopBlocks(Loop, Blocks);
|
|
|
|
|
2010-10-08 02:47:07 +08:00
|
|
|
DEBUG({
|
2010-10-23 04:28:21 +08:00
|
|
|
dbgs() << " splitAround"; sa_.print(Blocks, dbgs()); dbgs() << '\n';
|
2010-10-08 02:47:07 +08:00
|
|
|
});
|
|
|
|
|
2010-07-27 07:44:11 +08:00
|
|
|
// Break critical edges as needed.
|
|
|
|
SplitAnalysis::BlockPtrSet CriticalExits;
|
|
|
|
sa_.getCriticalExits(Blocks, CriticalExits);
|
|
|
|
assert(CriticalExits.empty() && "Cannot break critical exits yet");
|
|
|
|
|
|
|
|
// Create new live interval for the loop.
|
2010-08-05 06:08:39 +08:00
|
|
|
openIntv();
|
2010-07-27 07:44:11 +08:00
|
|
|
|
2010-12-18 09:06:19 +08:00
|
|
|
// Insert copies in the predecessors if live-in to the header.
|
2011-01-26 08:50:53 +08:00
|
|
|
if (LIS.isLiveInToMBB(Edit.getParent(), Loop->getHeader())) {
|
2010-12-18 09:06:19 +08:00
|
|
|
for (SplitAnalysis::BlockPtrSet::iterator I = Blocks.Preds.begin(),
|
|
|
|
E = Blocks.Preds.end(); I != E; ++I) {
|
|
|
|
MachineBasicBlock &MBB = const_cast<MachineBasicBlock&>(**I);
|
|
|
|
enterIntvAtEnd(MBB);
|
|
|
|
}
|
2010-07-27 07:44:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Switch all loop blocks.
|
|
|
|
for (SplitAnalysis::BlockPtrSet::iterator I = Blocks.Loop.begin(),
|
|
|
|
E = Blocks.Loop.end(); I != E; ++I)
|
2010-08-05 06:08:39 +08:00
|
|
|
useIntv(**I);
|
2010-07-27 07:44:11 +08:00
|
|
|
|
|
|
|
// Insert back copies in the exit blocks.
|
|
|
|
for (SplitAnalysis::BlockPtrSet::iterator I = Blocks.Exits.begin(),
|
|
|
|
E = Blocks.Exits.end(); I != E; ++I) {
|
|
|
|
MachineBasicBlock &MBB = const_cast<MachineBasicBlock&>(**I);
|
2010-08-05 06:08:39 +08:00
|
|
|
leaveIntvAtTop(MBB);
|
2010-07-27 07:44:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Done.
|
2010-08-05 06:08:39 +08:00
|
|
|
closeIntv();
|
2010-10-09 07:42:21 +08:00
|
|
|
finish();
|
2010-07-20 23:41:07 +08:00
|
|
|
}
|
|
|
|
|
2010-08-13 01:07:14 +08:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Single Block Splitting
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-01-26 08:50:53 +08:00
|
|
|
/// getMultiUseBlocks - if CurLI has more than one use in a basic block, it
|
|
|
|
/// may be an advantage to split CurLI for the duration of the block.
|
2010-10-23 06:48:56 +08:00
|
|
|
bool SplitAnalysis::getMultiUseBlocks(BlockPtrSet &Blocks) {
|
2011-01-26 08:50:53 +08:00
|
|
|
// If CurLI is local to one block, there is no point to splitting it.
|
|
|
|
if (UsingBlocks.size() <= 1)
|
2010-10-23 06:48:56 +08:00
|
|
|
return false;
|
|
|
|
// Add blocks with multiple uses.
|
2011-01-26 08:50:53 +08:00
|
|
|
for (BlockCountMap::iterator I = UsingBlocks.begin(), E = UsingBlocks.end();
|
2010-10-23 06:48:56 +08:00
|
|
|
I != E; ++I)
|
|
|
|
switch (I->second) {
|
|
|
|
case 0:
|
|
|
|
case 1:
|
|
|
|
continue;
|
|
|
|
case 2: {
|
2011-01-26 08:50:53 +08:00
|
|
|
// When there are only two uses and CurLI is both live in and live out,
|
2010-10-23 06:48:56 +08:00
|
|
|
// we don't really win anything by isolating the block since we would be
|
|
|
|
// inserting two copies.
|
|
|
|
// The remaing register would still have two uses in the block. (Unless it
|
|
|
|
// separates into disconnected components).
|
2011-01-26 08:50:53 +08:00
|
|
|
if (LIS.isLiveInToMBB(*CurLI, I->first) &&
|
|
|
|
LIS.isLiveOutOfMBB(*CurLI, I->first))
|
2010-10-23 06:48:56 +08:00
|
|
|
continue;
|
|
|
|
} // Fall through.
|
|
|
|
default:
|
|
|
|
Blocks.insert(I->first);
|
|
|
|
}
|
|
|
|
return !Blocks.empty();
|
|
|
|
}
|
|
|
|
|
2011-01-26 08:50:53 +08:00
|
|
|
/// splitSingleBlocks - Split CurLI into a separate live interval inside each
|
2010-10-06 06:19:33 +08:00
|
|
|
/// basic block in Blocks.
|
|
|
|
void SplitEditor::splitSingleBlocks(const SplitAnalysis::BlockPtrSet &Blocks) {
|
2010-08-13 02:50:55 +08:00
|
|
|
DEBUG(dbgs() << " splitSingleBlocks for " << Blocks.size() << " blocks.\n");
|
2011-01-26 08:50:53 +08:00
|
|
|
// Determine the first and last instruction using CurLI in each block.
|
2010-08-13 01:07:14 +08:00
|
|
|
typedef std::pair<SlotIndex,SlotIndex> IndexPair;
|
|
|
|
typedef DenseMap<const MachineBasicBlock*,IndexPair> IndexPairMap;
|
|
|
|
IndexPairMap MBBRange;
|
2011-01-26 08:50:53 +08:00
|
|
|
for (SplitAnalysis::InstrPtrSet::const_iterator I = sa_.UsingInstrs.begin(),
|
|
|
|
E = sa_.UsingInstrs.end(); I != E; ++I) {
|
2010-08-13 01:07:14 +08:00
|
|
|
const MachineBasicBlock *MBB = (*I)->getParent();
|
|
|
|
if (!Blocks.count(MBB))
|
|
|
|
continue;
|
2011-01-26 08:50:53 +08:00
|
|
|
SlotIndex Idx = LIS.getInstructionIndex(*I);
|
2010-08-13 02:50:55 +08:00
|
|
|
DEBUG(dbgs() << " BB#" << MBB->getNumber() << '\t' << Idx << '\t' << **I);
|
2010-08-13 01:07:14 +08:00
|
|
|
IndexPair &IP = MBBRange[MBB];
|
|
|
|
if (!IP.first.isValid() || Idx < IP.first)
|
|
|
|
IP.first = Idx;
|
|
|
|
if (!IP.second.isValid() || Idx > IP.second)
|
|
|
|
IP.second = Idx;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a new interval for each block.
|
|
|
|
for (SplitAnalysis::BlockPtrSet::const_iterator I = Blocks.begin(),
|
|
|
|
E = Blocks.end(); I != E; ++I) {
|
|
|
|
IndexPair &IP = MBBRange[*I];
|
2010-08-13 02:50:55 +08:00
|
|
|
DEBUG(dbgs() << " splitting for BB#" << (*I)->getNumber() << ": ["
|
2010-08-13 01:07:14 +08:00
|
|
|
<< IP.first << ';' << IP.second << ")\n");
|
|
|
|
assert(IP.first.isValid() && IP.second.isValid());
|
|
|
|
|
|
|
|
openIntv();
|
2011-02-04 01:04:16 +08:00
|
|
|
useIntv(enterIntvBefore(IP.first), leaveIntvAfter(IP.second));
|
2010-08-13 01:07:14 +08:00
|
|
|
closeIntv();
|
|
|
|
}
|
2010-10-09 07:42:21 +08:00
|
|
|
finish();
|
2010-08-13 01:07:14 +08:00
|
|
|
}
|
|
|
|
|
2010-08-14 05:18:48 +08:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Sub Block Splitting
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-01-26 08:50:53 +08:00
|
|
|
/// getBlockForInsideSplit - If CurLI is contained inside a single basic block,
|
2010-08-14 05:18:48 +08:00
|
|
|
/// and it wou pay to subdivide the interval inside that block, return it.
|
|
|
|
/// Otherwise return NULL. The returned block can be passed to
|
|
|
|
/// SplitEditor::splitInsideBlock.
|
|
|
|
const MachineBasicBlock *SplitAnalysis::getBlockForInsideSplit() {
|
|
|
|
// The interval must be exclusive to one block.
|
2011-01-26 08:50:53 +08:00
|
|
|
if (UsingBlocks.size() != 1)
|
2010-08-14 05:18:48 +08:00
|
|
|
return 0;
|
|
|
|
// Don't to this for less than 4 instructions. We want to be sure that
|
|
|
|
// splitting actually reduces the instruction count per interval.
|
2011-01-26 08:50:53 +08:00
|
|
|
if (UsingInstrs.size() < 4)
|
2010-08-14 05:18:48 +08:00
|
|
|
return 0;
|
2011-01-26 08:50:53 +08:00
|
|
|
return UsingBlocks.begin()->first;
|
2010-08-14 05:18:48 +08:00
|
|
|
}
|
|
|
|
|
2011-01-26 08:50:53 +08:00
|
|
|
/// splitInsideBlock - Split CurLI into multiple intervals inside MBB.
|
2010-10-06 06:19:33 +08:00
|
|
|
void SplitEditor::splitInsideBlock(const MachineBasicBlock *MBB) {
|
2010-08-14 05:18:48 +08:00
|
|
|
SmallVector<SlotIndex, 32> Uses;
|
2011-01-26 08:50:53 +08:00
|
|
|
Uses.reserve(sa_.UsingInstrs.size());
|
|
|
|
for (SplitAnalysis::InstrPtrSet::const_iterator I = sa_.UsingInstrs.begin(),
|
|
|
|
E = sa_.UsingInstrs.end(); I != E; ++I)
|
2010-08-14 05:18:48 +08:00
|
|
|
if ((*I)->getParent() == MBB)
|
2011-01-26 08:50:53 +08:00
|
|
|
Uses.push_back(LIS.getInstructionIndex(*I));
|
2010-08-14 05:18:48 +08:00
|
|
|
DEBUG(dbgs() << " splitInsideBlock BB#" << MBB->getNumber() << " for "
|
|
|
|
<< Uses.size() << " instructions.\n");
|
|
|
|
assert(Uses.size() >= 3 && "Need at least 3 instructions");
|
|
|
|
array_pod_sort(Uses.begin(), Uses.end());
|
|
|
|
|
|
|
|
// Simple algorithm: Find the largest gap between uses as determined by slot
|
|
|
|
// indices. Create new intervals for instructions before the gap and after the
|
|
|
|
// gap.
|
|
|
|
unsigned bestPos = 0;
|
|
|
|
int bestGap = 0;
|
|
|
|
DEBUG(dbgs() << " dist (" << Uses[0]);
|
|
|
|
for (unsigned i = 1, e = Uses.size(); i != e; ++i) {
|
|
|
|
int g = Uses[i-1].distance(Uses[i]);
|
|
|
|
DEBUG(dbgs() << ") -" << g << "- (" << Uses[i]);
|
|
|
|
if (g > bestGap)
|
|
|
|
bestPos = i, bestGap = g;
|
|
|
|
}
|
|
|
|
DEBUG(dbgs() << "), best: -" << bestGap << "-\n");
|
|
|
|
|
|
|
|
// bestPos points to the first use after the best gap.
|
|
|
|
assert(bestPos > 0 && "Invalid gap");
|
|
|
|
|
|
|
|
// FIXME: Don't create intervals for low densities.
|
|
|
|
|
|
|
|
// First interval before the gap. Don't create single-instr intervals.
|
|
|
|
if (bestPos > 1) {
|
|
|
|
openIntv();
|
2011-02-04 01:04:16 +08:00
|
|
|
useIntv(enterIntvBefore(Uses.front()), leaveIntvAfter(Uses[bestPos-1]));
|
2010-08-14 05:18:48 +08:00
|
|
|
closeIntv();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Second interval after the gap.
|
|
|
|
if (bestPos < Uses.size()-1) {
|
|
|
|
openIntv();
|
2011-02-04 01:04:16 +08:00
|
|
|
useIntv(enterIntvBefore(Uses[bestPos]), leaveIntvAfter(Uses.back()));
|
2010-08-14 05:18:48 +08:00
|
|
|
closeIntv();
|
|
|
|
}
|
|
|
|
|
2010-10-09 07:42:21 +08:00
|
|
|
finish();
|
2010-08-14 05:18:48 +08:00
|
|
|
}
|