2007-08-07 00:25:56 +00:00
|
|
|
//===- LoopIndexSplit.cpp - Loop Index Splitting Pass ---------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by Devang Patel and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements Loop Index Splitting Pass.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#define DEBUG_TYPE "loop-index-split"
|
|
|
|
|
|
|
|
#include "llvm/Transforms/Scalar.h"
|
2007-08-07 23:17:52 +00:00
|
|
|
#include "llvm/Function.h"
|
2007-08-07 00:25:56 +00:00
|
|
|
#include "llvm/Analysis/LoopPass.h"
|
|
|
|
#include "llvm/Analysis/ScalarEvolutionExpander.h"
|
2007-08-08 21:39:47 +00:00
|
|
|
#include "llvm/Analysis/Dominators.h"
|
2007-08-10 18:07:13 +00:00
|
|
|
#include "llvm/Transforms/Utils/BasicBlockUtils.h"
|
|
|
|
#include "llvm/Transforms/Utils/Cloning.h"
|
2007-08-07 00:25:56 +00:00
|
|
|
#include "llvm/Support/Compiler.h"
|
|
|
|
#include "llvm/ADT/Statistic.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
STATISTIC(NumIndexSplit, "Number of loops index split");
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
class VISIBILITY_HIDDEN LoopIndexSplit : public LoopPass {
|
|
|
|
|
|
|
|
public:
|
|
|
|
static char ID; // Pass ID, replacement for typeid
|
|
|
|
LoopIndexSplit() : LoopPass((intptr_t)&ID) {}
|
|
|
|
|
|
|
|
// Index split Loop L. Return true if loop is split.
|
|
|
|
bool runOnLoop(Loop *L, LPPassManager &LPM);
|
|
|
|
|
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.addRequired<ScalarEvolution>();
|
|
|
|
AU.addPreserved<ScalarEvolution>();
|
|
|
|
AU.addRequiredID(LCSSAID);
|
|
|
|
AU.addPreservedID(LCSSAID);
|
2007-08-10 18:07:13 +00:00
|
|
|
AU.addRequired<LoopInfo>();
|
2007-08-07 00:25:56 +00:00
|
|
|
AU.addPreserved<LoopInfo>();
|
|
|
|
AU.addRequiredID(LoopSimplifyID);
|
|
|
|
AU.addPreservedID(LoopSimplifyID);
|
2007-08-08 22:25:28 +00:00
|
|
|
AU.addRequired<DominatorTree>();
|
2007-08-08 21:39:47 +00:00
|
|
|
AU.addPreserved<DominatorTree>();
|
|
|
|
AU.addPreserved<DominanceFrontier>();
|
2007-08-07 00:25:56 +00:00
|
|
|
}
|
|
|
|
|
2007-08-08 21:02:17 +00:00
|
|
|
private:
|
|
|
|
|
|
|
|
class SplitInfo {
|
|
|
|
public:
|
2007-08-10 00:33:50 +00:00
|
|
|
SplitInfo() : SplitValue(NULL), SplitCondition(NULL) {}
|
2007-08-09 01:39:01 +00:00
|
|
|
|
2007-08-08 21:02:17 +00:00
|
|
|
// Induction variable's range is split at this value.
|
|
|
|
Value *SplitValue;
|
|
|
|
|
|
|
|
// This compare instruction compares IndVar against SplitValue.
|
|
|
|
ICmpInst *SplitCondition;
|
|
|
|
|
2007-08-08 21:18:27 +00:00
|
|
|
// Clear split info.
|
|
|
|
void clear() {
|
|
|
|
SplitValue = NULL;
|
|
|
|
SplitCondition = NULL;
|
|
|
|
}
|
2007-08-09 01:39:01 +00:00
|
|
|
|
2007-08-08 21:02:17 +00:00
|
|
|
};
|
2007-08-10 00:33:50 +00:00
|
|
|
|
2007-08-07 00:25:56 +00:00
|
|
|
private:
|
|
|
|
/// Find condition inside a loop that is suitable candidate for index split.
|
|
|
|
void findSplitCondition();
|
|
|
|
|
2007-08-10 00:33:50 +00:00
|
|
|
/// Find loop's exit condition.
|
|
|
|
void findLoopConditionals();
|
|
|
|
|
|
|
|
/// Return induction variable associated with value V.
|
|
|
|
void findIndVar(Value *V, Loop *L);
|
|
|
|
|
2007-08-07 00:25:56 +00:00
|
|
|
/// processOneIterationLoop - Current loop L contains compare instruction
|
|
|
|
/// that compares induction variable, IndVar, agains loop invariant. If
|
|
|
|
/// entire (i.e. meaningful) loop body is dominated by this compare
|
|
|
|
/// instruction then loop body is executed only for one iteration. In
|
|
|
|
/// such case eliminate loop structure surrounding this loop body. For
|
2007-08-10 18:07:13 +00:00
|
|
|
bool processOneIterationLoop(SplitInfo &SD);
|
2007-08-07 00:25:56 +00:00
|
|
|
|
2007-08-08 22:25:28 +00:00
|
|
|
/// If loop header includes loop variant instruction operands then
|
|
|
|
/// this loop may not be eliminated.
|
2007-08-08 21:02:17 +00:00
|
|
|
bool safeHeader(SplitInfo &SD, BasicBlock *BB);
|
2007-08-07 00:25:56 +00:00
|
|
|
|
2007-08-08 22:25:28 +00:00
|
|
|
/// If Exit block includes loop variant instructions then this
|
|
|
|
/// loop may not be eliminated.
|
2007-08-08 21:02:17 +00:00
|
|
|
bool safeExitBlock(SplitInfo &SD, BasicBlock *BB);
|
2007-08-07 00:25:56 +00:00
|
|
|
|
2007-08-12 07:02:51 +00:00
|
|
|
/// removeBlocks - Remove basic block BB and all blocks dominated by BB.
|
|
|
|
void removeBlocks(BasicBlock *InBB);
|
|
|
|
|
2007-08-08 22:25:28 +00:00
|
|
|
/// Find cost of spliting loop L.
|
|
|
|
unsigned findSplitCost(Loop *L, SplitInfo &SD);
|
2007-08-08 21:02:17 +00:00
|
|
|
bool splitLoop(SplitInfo &SD);
|
2007-08-07 00:25:56 +00:00
|
|
|
|
2007-08-10 00:33:50 +00:00
|
|
|
void initialize() {
|
|
|
|
IndVar = NULL;
|
|
|
|
IndVarIncrement = NULL;
|
|
|
|
ExitCondition = NULL;
|
2007-08-12 07:02:51 +00:00
|
|
|
StartValue = NULL;
|
|
|
|
ExitValueNum = 0;
|
|
|
|
SplitData.clear();
|
2007-08-10 00:33:50 +00:00
|
|
|
}
|
|
|
|
|
2007-08-07 00:25:56 +00:00
|
|
|
private:
|
|
|
|
|
|
|
|
// Current Loop.
|
|
|
|
Loop *L;
|
2007-08-10 18:07:13 +00:00
|
|
|
LPPassManager *LPM;
|
|
|
|
LoopInfo *LI;
|
2007-08-07 00:25:56 +00:00
|
|
|
ScalarEvolution *SE;
|
2007-08-08 22:25:28 +00:00
|
|
|
DominatorTree *DT;
|
2007-08-08 21:02:17 +00:00
|
|
|
SmallVector<SplitInfo, 4> SplitData;
|
2007-08-10 00:33:50 +00:00
|
|
|
|
|
|
|
// Induction variable whose range is being split by this transformation.
|
|
|
|
PHINode *IndVar;
|
|
|
|
Instruction *IndVarIncrement;
|
|
|
|
|
|
|
|
// Loop exit condition.
|
|
|
|
ICmpInst *ExitCondition;
|
|
|
|
|
|
|
|
// Induction variable's initial value.
|
|
|
|
Value *StartValue;
|
|
|
|
|
2007-08-12 07:02:51 +00:00
|
|
|
// Induction variable's final loop exit value operand number in exit condition..
|
|
|
|
unsigned ExitValueNum;
|
2007-08-07 00:25:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
char LoopIndexSplit::ID = 0;
|
|
|
|
RegisterPass<LoopIndexSplit> X ("loop-index-split", "Index Split Loops");
|
|
|
|
}
|
|
|
|
|
|
|
|
LoopPass *llvm::createLoopIndexSplitPass() {
|
|
|
|
return new LoopIndexSplit();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Index split Loop L. Return true if loop is split.
|
2007-08-10 18:07:13 +00:00
|
|
|
bool LoopIndexSplit::runOnLoop(Loop *IncomingLoop, LPPassManager &LPM_Ref) {
|
2007-08-07 00:25:56 +00:00
|
|
|
bool Changed = false;
|
|
|
|
L = IncomingLoop;
|
2007-08-10 18:07:13 +00:00
|
|
|
LPM = &LPM_Ref;
|
2007-08-08 21:02:17 +00:00
|
|
|
|
2007-08-07 00:25:56 +00:00
|
|
|
SE = &getAnalysis<ScalarEvolution>();
|
2007-08-08 22:25:28 +00:00
|
|
|
DT = &getAnalysis<DominatorTree>();
|
2007-08-10 18:07:13 +00:00
|
|
|
LI = &getAnalysis<LoopInfo>();
|
2007-08-07 00:25:56 +00:00
|
|
|
|
2007-08-10 00:33:50 +00:00
|
|
|
initialize();
|
|
|
|
|
|
|
|
findLoopConditionals();
|
|
|
|
|
|
|
|
if (!ExitCondition)
|
|
|
|
return false;
|
|
|
|
|
2007-08-07 00:25:56 +00:00
|
|
|
findSplitCondition();
|
|
|
|
|
2007-08-08 21:02:17 +00:00
|
|
|
if (SplitData.empty())
|
2007-08-07 00:25:56 +00:00
|
|
|
return false;
|
|
|
|
|
2007-08-08 21:02:17 +00:00
|
|
|
// First see if it is possible to eliminate loop itself or not.
|
|
|
|
for (SmallVector<SplitInfo, 4>::iterator SI = SplitData.begin(),
|
|
|
|
E = SplitData.end(); SI != E; ++SI) {
|
|
|
|
SplitInfo &SD = *SI;
|
|
|
|
if (SD.SplitCondition->getPredicate() == ICmpInst::ICMP_EQ) {
|
2007-08-10 18:07:13 +00:00
|
|
|
Changed = processOneIterationLoop(SD);
|
2007-08-08 21:02:17 +00:00
|
|
|
if (Changed) {
|
|
|
|
++NumIndexSplit;
|
|
|
|
// If is loop is eliminated then nothing else to do here.
|
|
|
|
return Changed;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-08 22:25:28 +00:00
|
|
|
unsigned MaxCost = 99;
|
|
|
|
unsigned Index = 0;
|
|
|
|
unsigned MostProfitableSDIndex = 0;
|
2007-08-08 21:02:17 +00:00
|
|
|
for (SmallVector<SplitInfo, 4>::iterator SI = SplitData.begin(),
|
2007-08-08 22:25:28 +00:00
|
|
|
E = SplitData.end(); SI != E; ++SI, ++Index) {
|
|
|
|
SplitInfo SD = *SI;
|
2007-08-08 21:02:17 +00:00
|
|
|
|
|
|
|
// ICM_EQs are already handled above.
|
2007-08-08 22:25:28 +00:00
|
|
|
if (SD.SplitCondition->getPredicate() == ICmpInst::ICMP_EQ)
|
2007-08-08 21:02:17 +00:00
|
|
|
continue;
|
2007-08-08 22:25:28 +00:00
|
|
|
|
|
|
|
unsigned Cost = findSplitCost(L, SD);
|
|
|
|
if (Cost < MaxCost)
|
|
|
|
MostProfitableSDIndex = Index;
|
2007-08-08 21:02:17 +00:00
|
|
|
}
|
2007-08-07 00:25:56 +00:00
|
|
|
|
2007-08-08 22:25:28 +00:00
|
|
|
// Split most profitiable condition.
|
|
|
|
Changed = splitLoop(SplitData[MostProfitableSDIndex]);
|
|
|
|
|
2007-08-07 00:25:56 +00:00
|
|
|
if (Changed)
|
|
|
|
++NumIndexSplit;
|
2007-08-08 21:02:17 +00:00
|
|
|
|
2007-08-07 00:25:56 +00:00
|
|
|
return Changed;
|
|
|
|
}
|
|
|
|
|
2007-08-09 01:39:01 +00:00
|
|
|
/// Return true if V is a induction variable or induction variable's
|
|
|
|
/// increment for loop L.
|
2007-08-10 00:33:50 +00:00
|
|
|
void LoopIndexSplit::findIndVar(Value *V, Loop *L) {
|
2007-08-09 01:39:01 +00:00
|
|
|
|
|
|
|
Instruction *I = dyn_cast<Instruction>(V);
|
|
|
|
if (!I)
|
2007-08-10 00:33:50 +00:00
|
|
|
return;
|
2007-08-09 01:39:01 +00:00
|
|
|
|
|
|
|
// Check if I is a phi node from loop header or not.
|
|
|
|
if (PHINode *PN = dyn_cast<PHINode>(V)) {
|
|
|
|
if (PN->getParent() == L->getHeader()) {
|
2007-08-10 00:33:50 +00:00
|
|
|
IndVar = PN;
|
|
|
|
return;
|
2007-08-09 01:39:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if I is a add instruction whose one operand is
|
|
|
|
// phi node from loop header and second operand is constant.
|
|
|
|
if (I->getOpcode() != Instruction::Add)
|
2007-08-10 00:33:50 +00:00
|
|
|
return;
|
2007-08-09 01:39:01 +00:00
|
|
|
|
|
|
|
Value *Op0 = I->getOperand(0);
|
|
|
|
Value *Op1 = I->getOperand(1);
|
|
|
|
|
|
|
|
if (PHINode *PN = dyn_cast<PHINode>(Op0)) {
|
|
|
|
if (PN->getParent() == L->getHeader()
|
|
|
|
&& isa<ConstantInt>(Op1)) {
|
|
|
|
IndVar = PN;
|
|
|
|
IndVarIncrement = I;
|
2007-08-10 00:33:50 +00:00
|
|
|
return;
|
2007-08-09 01:39:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (PHINode *PN = dyn_cast<PHINode>(Op1)) {
|
|
|
|
if (PN->getParent() == L->getHeader()
|
|
|
|
&& isa<ConstantInt>(Op0)) {
|
|
|
|
IndVar = PN;
|
|
|
|
IndVarIncrement = I;
|
2007-08-10 00:33:50 +00:00
|
|
|
return;
|
2007-08-09 01:39:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-10 00:33:50 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find loop's exit condition and associated induction variable.
|
|
|
|
void LoopIndexSplit::findLoopConditionals() {
|
|
|
|
|
|
|
|
BasicBlock *ExitBlock = NULL;
|
|
|
|
|
|
|
|
for (Loop::block_iterator I = L->block_begin(), E = L->block_end();
|
|
|
|
I != E; ++I) {
|
|
|
|
BasicBlock *BB = *I;
|
|
|
|
if (!L->isLoopExit(BB))
|
|
|
|
continue;
|
|
|
|
if (ExitBlock)
|
|
|
|
return;
|
|
|
|
ExitBlock = BB;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ExitBlock)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// If exit block's terminator is conditional branch inst then we have found
|
|
|
|
// exit condition.
|
|
|
|
BranchInst *BR = dyn_cast<BranchInst>(ExitBlock->getTerminator());
|
|
|
|
if (!BR || BR->isUnconditional())
|
|
|
|
return;
|
|
|
|
|
|
|
|
ICmpInst *CI = dyn_cast<ICmpInst>(BR->getCondition());
|
|
|
|
if (!CI)
|
|
|
|
return;
|
|
|
|
|
|
|
|
ExitCondition = CI;
|
|
|
|
|
|
|
|
// Exit condition's one operand is loop invariant exit value and second
|
|
|
|
// operand is SCEVAddRecExpr based on induction variable.
|
|
|
|
Value *V0 = CI->getOperand(0);
|
|
|
|
Value *V1 = CI->getOperand(1);
|
|
|
|
|
|
|
|
SCEVHandle SH0 = SE->getSCEV(V0);
|
|
|
|
SCEVHandle SH1 = SE->getSCEV(V1);
|
|
|
|
|
|
|
|
if (SH0->isLoopInvariant(L) && isa<SCEVAddRecExpr>(SH1)) {
|
2007-08-12 07:02:51 +00:00
|
|
|
ExitValueNum = 0;
|
2007-08-10 00:33:50 +00:00
|
|
|
findIndVar(V1, L);
|
|
|
|
}
|
|
|
|
else if (SH1->isLoopInvariant(L) && isa<SCEVAddRecExpr>(SH0)) {
|
2007-08-12 07:02:51 +00:00
|
|
|
ExitValueNum = 1;
|
2007-08-10 00:33:50 +00:00
|
|
|
findIndVar(V0, L);
|
|
|
|
}
|
|
|
|
|
2007-08-12 07:02:51 +00:00
|
|
|
if (!IndVar)
|
2007-08-10 00:33:50 +00:00
|
|
|
ExitCondition = NULL;
|
|
|
|
else if (IndVar) {
|
|
|
|
BasicBlock *Preheader = L->getLoopPreheader();
|
|
|
|
StartValue = IndVar->getIncomingValueForBlock(Preheader);
|
|
|
|
}
|
2007-08-09 01:39:01 +00:00
|
|
|
}
|
|
|
|
|
2007-08-07 00:25:56 +00:00
|
|
|
/// Find condition inside a loop that is suitable candidate for index split.
|
|
|
|
void LoopIndexSplit::findSplitCondition() {
|
|
|
|
|
2007-08-08 21:02:17 +00:00
|
|
|
SplitInfo SD;
|
2007-08-09 01:39:01 +00:00
|
|
|
// Check all basic block's terminators.
|
2007-08-07 00:25:56 +00:00
|
|
|
|
2007-08-09 01:39:01 +00:00
|
|
|
for (Loop::block_iterator I = L->block_begin(), E = L->block_end();
|
|
|
|
I != E; ++I) {
|
|
|
|
BasicBlock *BB = *I;
|
2007-08-07 00:25:56 +00:00
|
|
|
|
2007-08-09 01:39:01 +00:00
|
|
|
// If this basic block does not terminate in a conditional branch
|
|
|
|
// then terminator is not a suitable split condition.
|
|
|
|
BranchInst *BR = dyn_cast<BranchInst>(BB->getTerminator());
|
|
|
|
if (!BR)
|
2007-08-07 00:25:56 +00:00
|
|
|
continue;
|
2007-08-09 01:39:01 +00:00
|
|
|
|
|
|
|
if (BR->isUnconditional())
|
2007-08-07 00:25:56 +00:00
|
|
|
continue;
|
|
|
|
|
2007-08-09 01:39:01 +00:00
|
|
|
ICmpInst *CI = dyn_cast<ICmpInst>(BR->getCondition());
|
2007-08-10 00:33:50 +00:00
|
|
|
if (!CI || CI == ExitCondition)
|
2007-08-09 01:39:01 +00:00
|
|
|
return;
|
2007-08-07 00:25:56 +00:00
|
|
|
|
2007-08-09 01:39:01 +00:00
|
|
|
// If one operand is loop invariant and second operand is SCEVAddRecExpr
|
|
|
|
// based on induction variable then CI is a candidate split condition.
|
|
|
|
Value *V0 = CI->getOperand(0);
|
|
|
|
Value *V1 = CI->getOperand(1);
|
2007-08-07 00:25:56 +00:00
|
|
|
|
2007-08-09 01:39:01 +00:00
|
|
|
SCEVHandle SH0 = SE->getSCEV(V0);
|
|
|
|
SCEVHandle SH1 = SE->getSCEV(V1);
|
|
|
|
|
|
|
|
if (SH0->isLoopInvariant(L) && isa<SCEVAddRecExpr>(SH1)) {
|
|
|
|
SD.SplitValue = V0;
|
|
|
|
SD.SplitCondition = CI;
|
2007-08-10 00:33:50 +00:00
|
|
|
if (PHINode *PN = dyn_cast<PHINode>(V1)) {
|
|
|
|
if (PN == IndVar)
|
|
|
|
SplitData.push_back(SD);
|
|
|
|
}
|
|
|
|
else if (Instruction *Insn = dyn_cast<Instruction>(V1)) {
|
|
|
|
if (IndVarIncrement && IndVarIncrement == Insn)
|
|
|
|
SplitData.push_back(SD);
|
|
|
|
}
|
2007-08-09 01:39:01 +00:00
|
|
|
}
|
|
|
|
else if (SH1->isLoopInvariant(L) && isa<SCEVAddRecExpr>(SH0)) {
|
|
|
|
SD.SplitValue = V1;
|
|
|
|
SD.SplitCondition = CI;
|
2007-08-10 00:33:50 +00:00
|
|
|
if (PHINode *PN = dyn_cast<PHINode>(V0)) {
|
|
|
|
if (PN == IndVar)
|
|
|
|
SplitData.push_back(SD);
|
|
|
|
}
|
|
|
|
else if (Instruction *Insn = dyn_cast<Instruction>(V0)) {
|
|
|
|
if (IndVarIncrement && IndVarIncrement == Insn)
|
|
|
|
SplitData.push_back(SD);
|
|
|
|
}
|
2007-08-07 00:25:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// processOneIterationLoop - Current loop L contains compare instruction
|
|
|
|
/// that compares induction variable, IndVar, against loop invariant. If
|
|
|
|
/// entire (i.e. meaningful) loop body is dominated by this compare
|
|
|
|
/// instruction then loop body is executed only once. In such case eliminate
|
|
|
|
/// loop structure surrounding this loop body. For example,
|
|
|
|
/// for (int i = start; i < end; ++i) {
|
|
|
|
/// if ( i == somevalue) {
|
|
|
|
/// loop_body
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// can be transformed into
|
|
|
|
/// if (somevalue >= start && somevalue < end) {
|
|
|
|
/// i = somevalue;
|
|
|
|
/// loop_body
|
|
|
|
/// }
|
2007-08-10 18:07:13 +00:00
|
|
|
bool LoopIndexSplit::processOneIterationLoop(SplitInfo &SD) {
|
2007-08-07 00:25:56 +00:00
|
|
|
|
|
|
|
BasicBlock *Header = L->getHeader();
|
|
|
|
|
|
|
|
// First of all, check if SplitCondition dominates entire loop body
|
|
|
|
// or not.
|
|
|
|
|
|
|
|
// If SplitCondition is not in loop header then this loop is not suitable
|
|
|
|
// for this transformation.
|
2007-08-08 21:02:17 +00:00
|
|
|
if (SD.SplitCondition->getParent() != Header)
|
2007-08-07 00:25:56 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// If loop header includes loop variant instruction operands then
|
|
|
|
// this loop may not be eliminated.
|
2007-08-08 21:02:17 +00:00
|
|
|
if (!safeHeader(SD, Header))
|
2007-08-07 00:25:56 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// If Exit block includes loop variant instructions then this
|
|
|
|
// loop may not be eliminated.
|
2007-08-10 00:59:03 +00:00
|
|
|
if (!safeExitBlock(SD, ExitCondition->getParent()))
|
2007-08-07 00:25:56 +00:00
|
|
|
return false;
|
|
|
|
|
2007-08-08 01:51:27 +00:00
|
|
|
// Update CFG.
|
|
|
|
|
|
|
|
// As a first step to break this loop, remove Latch to Header edge.
|
2007-08-07 00:25:56 +00:00
|
|
|
BasicBlock *Latch = L->getLoopLatch();
|
2007-08-08 01:51:27 +00:00
|
|
|
BasicBlock *LatchSucc = NULL;
|
|
|
|
BranchInst *BR = dyn_cast<BranchInst>(Latch->getTerminator());
|
|
|
|
if (!BR)
|
|
|
|
return false;
|
|
|
|
Header->removePredecessor(Latch);
|
|
|
|
for (succ_iterator SI = succ_begin(Latch), E = succ_end(Latch);
|
|
|
|
SI != E; ++SI) {
|
|
|
|
if (Header != *SI)
|
|
|
|
LatchSucc = *SI;
|
|
|
|
}
|
|
|
|
BR->setUnconditionalDest(LatchSucc);
|
|
|
|
|
2007-08-07 00:25:56 +00:00
|
|
|
BasicBlock *Preheader = L->getLoopPreheader();
|
|
|
|
Instruction *Terminator = Header->getTerminator();
|
2007-08-10 00:33:50 +00:00
|
|
|
StartValue = IndVar->getIncomingValueForBlock(Preheader);
|
2007-08-07 00:25:56 +00:00
|
|
|
|
|
|
|
// Replace split condition in header.
|
|
|
|
// Transform
|
|
|
|
// SplitCondition : icmp eq i32 IndVar, SplitValue
|
|
|
|
// into
|
|
|
|
// c1 = icmp uge i32 SplitValue, StartValue
|
|
|
|
// c2 = icmp ult i32 vSplitValue, ExitValue
|
|
|
|
// and i32 c1, c2
|
2007-08-10 00:33:50 +00:00
|
|
|
bool SignedPredicate = ExitCondition->isSignedPredicate();
|
2007-08-07 00:25:56 +00:00
|
|
|
Instruction *C1 = new ICmpInst(SignedPredicate ?
|
|
|
|
ICmpInst::ICMP_SGE : ICmpInst::ICMP_UGE,
|
2007-08-08 21:02:17 +00:00
|
|
|
SD.SplitValue, StartValue, "lisplit",
|
|
|
|
Terminator);
|
2007-08-07 00:25:56 +00:00
|
|
|
Instruction *C2 = new ICmpInst(SignedPredicate ?
|
|
|
|
ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
|
2007-08-12 07:02:51 +00:00
|
|
|
SD.SplitValue,
|
|
|
|
ExitCondition->getOperand(ExitValueNum), "lisplit",
|
2007-08-08 21:02:17 +00:00
|
|
|
Terminator);
|
|
|
|
Instruction *NSplitCond = BinaryOperator::createAnd(C1, C2, "lisplit",
|
|
|
|
Terminator);
|
|
|
|
SD.SplitCondition->replaceAllUsesWith(NSplitCond);
|
|
|
|
SD.SplitCondition->eraseFromParent();
|
2007-08-07 00:25:56 +00:00
|
|
|
|
|
|
|
// Now, clear latch block. Remove instructions that are responsible
|
|
|
|
// to increment induction variable.
|
|
|
|
Instruction *LTerminator = Latch->getTerminator();
|
|
|
|
for (BasicBlock::iterator LB = Latch->begin(), LE = Latch->end();
|
|
|
|
LB != LE; ) {
|
|
|
|
Instruction *I = LB;
|
|
|
|
++LB;
|
|
|
|
if (isa<PHINode>(I) || I == LTerminator)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
I->replaceAllUsesWith(UndefValue::get(I->getType()));
|
2007-08-07 17:45:35 +00:00
|
|
|
I->eraseFromParent();
|
2007-08-07 00:25:56 +00:00
|
|
|
}
|
|
|
|
|
2007-08-10 18:07:13 +00:00
|
|
|
LPM->deleteLoopFromQueue(L);
|
2007-08-08 21:39:47 +00:00
|
|
|
|
|
|
|
// Update Dominator Info.
|
|
|
|
// Only CFG change done is to remove Latch to Header edge. This
|
|
|
|
// does not change dominator tree because Latch did not dominate
|
|
|
|
// Header.
|
|
|
|
if (DominanceFrontier *DF = getAnalysisToUpdate<DominanceFrontier>()) {
|
|
|
|
DominanceFrontier::iterator HeaderDF = DF->find(Header);
|
|
|
|
if (HeaderDF != DF->end())
|
|
|
|
DF->removeFromFrontier(HeaderDF, Header);
|
|
|
|
|
|
|
|
DominanceFrontier::iterator LatchDF = DF->find(Latch);
|
|
|
|
if (LatchDF != DF->end())
|
|
|
|
DF->removeFromFrontier(LatchDF, Header);
|
|
|
|
}
|
2007-08-07 00:25:56 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If loop header includes loop variant instruction operands then
|
|
|
|
// this loop can not be eliminated. This is used by processOneIterationLoop().
|
2007-08-08 21:02:17 +00:00
|
|
|
bool LoopIndexSplit::safeHeader(SplitInfo &SD, BasicBlock *Header) {
|
2007-08-07 00:25:56 +00:00
|
|
|
|
|
|
|
Instruction *Terminator = Header->getTerminator();
|
|
|
|
for(BasicBlock::iterator BI = Header->begin(), BE = Header->end();
|
|
|
|
BI != BE; ++BI) {
|
|
|
|
Instruction *I = BI;
|
|
|
|
|
2007-08-08 01:51:27 +00:00
|
|
|
// PHI Nodes are OK. FIXME : Handle last value assignments.
|
2007-08-07 00:25:56 +00:00
|
|
|
if (isa<PHINode>(I))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// SplitCondition itself is OK.
|
2007-08-08 21:02:17 +00:00
|
|
|
if (I == SD.SplitCondition)
|
2007-08-08 01:51:27 +00:00
|
|
|
continue;
|
2007-08-07 00:25:56 +00:00
|
|
|
|
2007-08-09 01:39:01 +00:00
|
|
|
// Induction variable is OK.
|
2007-08-10 00:33:50 +00:00
|
|
|
if (I == IndVar)
|
2007-08-09 01:39:01 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
// Induction variable increment is OK.
|
2007-08-10 00:33:50 +00:00
|
|
|
if (I == IndVarIncrement)
|
2007-08-09 01:39:01 +00:00
|
|
|
continue;
|
|
|
|
|
2007-08-07 00:25:56 +00:00
|
|
|
// Terminator is also harmless.
|
|
|
|
if (I == Terminator)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Otherwise we have a instruction that may not be safe.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If Exit block includes loop variant instructions then this
|
|
|
|
// loop may not be eliminated. This is used by processOneIterationLoop().
|
2007-08-08 21:02:17 +00:00
|
|
|
bool LoopIndexSplit::safeExitBlock(SplitInfo &SD, BasicBlock *ExitBlock) {
|
2007-08-07 00:25:56 +00:00
|
|
|
|
|
|
|
for (BasicBlock::iterator BI = ExitBlock->begin(), BE = ExitBlock->end();
|
|
|
|
BI != BE; ++BI) {
|
|
|
|
Instruction *I = BI;
|
|
|
|
|
2007-08-08 01:51:27 +00:00
|
|
|
// PHI Nodes are OK. FIXME : Handle last value assignments.
|
2007-08-07 00:25:56 +00:00
|
|
|
if (isa<PHINode>(I))
|
|
|
|
continue;
|
|
|
|
|
2007-08-09 01:39:01 +00:00
|
|
|
// Induction variable increment is OK.
|
2007-08-10 00:33:50 +00:00
|
|
|
if (IndVarIncrement && IndVarIncrement == I)
|
2007-08-09 01:39:01 +00:00
|
|
|
continue;
|
|
|
|
|
2007-08-07 00:25:56 +00:00
|
|
|
// Check if I is induction variable increment instruction.
|
2007-08-10 00:33:50 +00:00
|
|
|
if (!IndVarIncrement && I->getOpcode() == Instruction::Add) {
|
2007-08-07 00:25:56 +00:00
|
|
|
|
2007-08-09 01:39:01 +00:00
|
|
|
Value *Op0 = I->getOperand(0);
|
|
|
|
Value *Op1 = I->getOperand(1);
|
2007-08-07 00:25:56 +00:00
|
|
|
PHINode *PN = NULL;
|
|
|
|
ConstantInt *CI = NULL;
|
|
|
|
|
|
|
|
if ((PN = dyn_cast<PHINode>(Op0))) {
|
|
|
|
if ((CI = dyn_cast<ConstantInt>(Op1)))
|
2007-08-10 00:33:50 +00:00
|
|
|
IndVarIncrement = I;
|
2007-08-07 00:25:56 +00:00
|
|
|
} else
|
|
|
|
if ((PN = dyn_cast<PHINode>(Op1))) {
|
|
|
|
if ((CI = dyn_cast<ConstantInt>(Op0)))
|
2007-08-10 00:33:50 +00:00
|
|
|
IndVarIncrement = I;
|
2007-08-07 00:25:56 +00:00
|
|
|
}
|
|
|
|
|
2007-08-10 00:33:50 +00:00
|
|
|
if (IndVarIncrement && PN == IndVar && CI->isOne())
|
2007-08-07 00:25:56 +00:00
|
|
|
continue;
|
|
|
|
}
|
2007-08-08 01:51:27 +00:00
|
|
|
|
2007-08-07 00:25:56 +00:00
|
|
|
// I is an Exit condition if next instruction is block terminator.
|
|
|
|
// Exit condition is OK if it compares loop invariant exit value,
|
|
|
|
// which is checked below.
|
2007-08-07 23:17:52 +00:00
|
|
|
else if (ICmpInst *EC = dyn_cast<ICmpInst>(I)) {
|
2007-08-10 00:33:50 +00:00
|
|
|
if (EC == ExitCondition)
|
2007-08-08 01:51:27 +00:00
|
|
|
continue;
|
2007-08-07 00:25:56 +00:00
|
|
|
}
|
|
|
|
|
2007-08-10 00:33:50 +00:00
|
|
|
if (I == ExitBlock->getTerminator())
|
|
|
|
continue;
|
|
|
|
|
2007-08-07 00:25:56 +00:00
|
|
|
// Otherwise we have instruction that may not be safe.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We could not find any reason to consider ExitBlock unsafe.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2007-08-08 22:25:28 +00:00
|
|
|
/// Find cost of spliting loop L. Cost is measured in terms of size growth.
|
|
|
|
/// Size is growth is calculated based on amount of code duplicated in second
|
|
|
|
/// loop.
|
|
|
|
unsigned LoopIndexSplit::findSplitCost(Loop *L, SplitInfo &SD) {
|
|
|
|
|
|
|
|
unsigned Cost = 0;
|
|
|
|
BasicBlock *SDBlock = SD.SplitCondition->getParent();
|
|
|
|
for (Loop::block_iterator I = L->block_begin(), E = L->block_end();
|
|
|
|
I != E; ++I) {
|
|
|
|
BasicBlock *BB = *I;
|
|
|
|
// If a block is not dominated by split condition block then
|
|
|
|
// it must be duplicated in both loops.
|
|
|
|
if (!DT->dominates(SDBlock, BB))
|
|
|
|
Cost += BB->size();
|
|
|
|
}
|
|
|
|
|
|
|
|
return Cost;
|
|
|
|
}
|
|
|
|
|
2007-08-12 07:02:51 +00:00
|
|
|
/// removeBlocks - Remove basic block BB and all blocks dominated by BB.
|
|
|
|
void LoopIndexSplit::removeBlocks(BasicBlock *InBB) {
|
|
|
|
|
|
|
|
SmallVector<BasicBlock *, 8> WorkList;
|
|
|
|
WorkList.push_back(InBB);
|
|
|
|
while (!WorkList.empty()) {
|
|
|
|
BasicBlock *BB = WorkList.back(); WorkList.pop_back();
|
|
|
|
|
|
|
|
// First process all successor
|
|
|
|
for (succ_iterator SI = succ_begin(BB), E = succ_end(BB); SI != E; ++SI) {
|
|
|
|
BasicBlock *SuccBB = *SI;
|
|
|
|
if (DT->dominates(BB, SuccBB)) {
|
|
|
|
WorkList.push_back(SuccBB);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If SuccBB is not dominated by BB then it is not removed, however remove
|
|
|
|
// any PHI incoming edge from BB.
|
|
|
|
for(BasicBlock::iterator SBI = SuccBB->begin(), SBE = SuccBB->end();
|
|
|
|
SBI != SBE; ++SBI) {
|
|
|
|
if (PHINode *PN = dyn_cast<PHINode>(SBI))
|
|
|
|
PN->removeIncomingValue(BB);
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now delete BB;
|
|
|
|
for(BasicBlock::iterator BBI = BB->begin(), BBE = BB->end();
|
|
|
|
BBI != BBE; ++BBI) {
|
|
|
|
Instruction *I = BBI;
|
|
|
|
I->replaceAllUsesWith(UndefValue::get(I->getType()));
|
|
|
|
I->eraseFromParent();
|
|
|
|
}
|
|
|
|
LI->removeBlock(BB);
|
|
|
|
BB->eraseFromParent();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-08 21:02:17 +00:00
|
|
|
bool LoopIndexSplit::splitLoop(SplitInfo &SD) {
|
2007-08-10 00:53:35 +00:00
|
|
|
|
|
|
|
BasicBlock *Preheader = L->getLoopPreheader();
|
|
|
|
|
2007-08-10 00:33:50 +00:00
|
|
|
// True loop is original loop. False loop is cloned loop.
|
2007-08-10 00:53:35 +00:00
|
|
|
|
|
|
|
bool SignedPredicate = ExitCondition->isSignedPredicate();
|
2007-08-10 00:33:50 +00:00
|
|
|
//[*] Calculate True loop's new Exit Value in loop preheader.
|
2007-08-10 00:53:35 +00:00
|
|
|
// TLExitValue = min(SplitValue, ExitValue)
|
2007-08-10 00:33:50 +00:00
|
|
|
//[*] Calculate False loop's new Start Value in loop preheader.
|
2007-08-10 00:53:35 +00:00
|
|
|
// FLStartValue = min(SplitValue, TrueLoop.StartValue)
|
|
|
|
Value *TLExitValue = NULL;
|
|
|
|
Value *FLStartValue = NULL;
|
|
|
|
if (isa<ConstantInt>(SD.SplitValue)) {
|
|
|
|
TLExitValue = SD.SplitValue;
|
|
|
|
FLStartValue = SD.SplitValue;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Value *C1 = new ICmpInst(SignedPredicate ?
|
|
|
|
ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
|
2007-08-12 07:02:51 +00:00
|
|
|
SD.SplitValue,
|
|
|
|
ExitCondition->getOperand(ExitValueNum),
|
|
|
|
"lsplit.ev",
|
2007-08-10 00:53:35 +00:00
|
|
|
Preheader->getTerminator());
|
2007-08-12 07:02:51 +00:00
|
|
|
TLExitValue = new SelectInst(C1, SD.SplitValue,
|
|
|
|
ExitCondition->getOperand(ExitValueNum),
|
2007-08-10 00:53:35 +00:00
|
|
|
"lsplit.ev", Preheader->getTerminator());
|
|
|
|
|
|
|
|
Value *C2 = new ICmpInst(SignedPredicate ?
|
|
|
|
ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
|
|
|
|
SD.SplitValue, StartValue, "lsplit.sv",
|
|
|
|
Preheader->getTerminator());
|
|
|
|
FLStartValue = new SelectInst(C2, SD.SplitValue, StartValue,
|
|
|
|
"lsplit.sv", Preheader->getTerminator());
|
|
|
|
}
|
2007-08-10 18:07:13 +00:00
|
|
|
|
2007-08-12 07:02:51 +00:00
|
|
|
//[*] Clone loop. Avoid true destination of split condition and
|
|
|
|
// the blocks dominated by true destination.
|
|
|
|
DenseMap<const Value *, Value *> ValueMap;
|
|
|
|
Loop *FalseLoop = CloneLoop(L, LPM, LI, ValueMap, this);
|
|
|
|
BasicBlock *FalseHeader = FalseLoop->getHeader();
|
|
|
|
|
|
|
|
//[*] True loop's exit edge enters False loop.
|
|
|
|
PHINode *IndVarClone = cast<PHINode>(ValueMap[IndVar]);
|
2007-08-10 18:07:13 +00:00
|
|
|
BasicBlock *ExitBlock = ExitCondition->getParent();
|
|
|
|
BranchInst *ExitInsn = dyn_cast<BranchInst>(ExitBlock->getTerminator());
|
|
|
|
assert (ExitInsn && "Unable to find suitable loop exit branch");
|
|
|
|
BasicBlock *ExitDest = ExitInsn->getSuccessor(1);
|
2007-08-12 07:02:51 +00:00
|
|
|
|
|
|
|
for (BasicBlock::iterator BI = FalseHeader->begin(), BE = FalseHeader->end();
|
|
|
|
BI != BE; ++BI) {
|
|
|
|
if (PHINode *PN = dyn_cast<PHINode>(BI)) {
|
|
|
|
PN->removeIncomingValue(Preheader);
|
|
|
|
if (PN == IndVarClone)
|
|
|
|
PN->addIncoming(FLStartValue, ExitBlock);
|
|
|
|
// else { FIXME : Handl last value assignments.}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (L->contains(ExitDest)) {
|
2007-08-10 18:07:13 +00:00
|
|
|
ExitDest = ExitInsn->getSuccessor(0);
|
2007-08-12 07:02:51 +00:00
|
|
|
ExitInsn->setSuccessor(0, FalseHeader);
|
|
|
|
} else
|
|
|
|
ExitInsn->setSuccessor(1, FalseHeader);
|
|
|
|
|
2007-08-10 18:07:13 +00:00
|
|
|
assert (!L->contains(ExitDest) && " Unable to find exit edge destination");
|
|
|
|
|
2007-08-12 07:02:51 +00:00
|
|
|
//[*] Split Exit Edge.
|
|
|
|
SplitEdge(ExitBlock, FalseHeader, this);
|
2007-08-10 18:07:13 +00:00
|
|
|
|
2007-08-10 00:33:50 +00:00
|
|
|
//[*] Eliminate split condition's false branch from True loop.
|
2007-08-12 07:02:51 +00:00
|
|
|
// Update true loop dom info (FIXME).
|
|
|
|
BasicBlock *SplitBlock = SD.SplitCondition->getParent();
|
|
|
|
BranchInst *BR = cast<BranchInst>(SplitBlock->getTerminator());
|
|
|
|
BasicBlock *FBB = BR->getSuccessor(1);
|
|
|
|
BR->setUnconditionalDest(BR->getSuccessor(0));
|
|
|
|
removeBlocks(FBB);
|
|
|
|
|
|
|
|
//[*] Update True loop's exit value using new exit value.
|
|
|
|
ExitCondition->setOperand(ExitValueNum, TLExitValue);
|
|
|
|
|
|
|
|
//[*] Eliminate split condition's true branch in False loop CFG.
|
|
|
|
// Update false loop dom info (FXME).
|
|
|
|
BasicBlock *FSplitBlock = cast<BasicBlock>(ValueMap[SplitBlock]);
|
|
|
|
BranchInst *FBR = cast<BranchInst>(FSplitBlock->getTerminator());
|
|
|
|
BasicBlock *TBB = FBR->getSuccessor(0);
|
|
|
|
FBR->setUnconditionalDest(FBR->getSuccessor(1));
|
|
|
|
removeBlocks(TBB);
|
|
|
|
|
|
|
|
//[*] Update dom info in general (FIXME).
|
|
|
|
return true;
|
2007-08-07 00:25:56 +00:00
|
|
|
}
|
2007-08-12 07:02:51 +00:00
|
|
|
|