2011-08-10 03:46:27 +00:00
|
|
|
//===-- SimplifyIndVar.cpp - Induction variable simplification ------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements induction variable simplification. It does
|
|
|
|
// not define any actual pass or policy, but provides a single function to
|
|
|
|
// simplify a loop's induction variables based on ScalarEvolution.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/Transforms/Utils/SimplifyIndVar.h"
|
2014-01-07 11:48:04 +00:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
|
|
|
#include "llvm/ADT/Statistic.h"
|
2011-08-10 03:46:27 +00:00
|
|
|
#include "llvm/Analysis/IVUsers.h"
|
|
|
|
#include "llvm/Analysis/LoopInfo.h"
|
|
|
|
#include "llvm/Analysis/LoopPass.h"
|
|
|
|
#include "llvm/Analysis/ScalarEvolutionExpressions.h"
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/DataLayout.h"
|
2014-01-13 09:26:24 +00:00
|
|
|
#include "llvm/IR/Dominators.h"
|
2014-01-07 11:48:04 +00:00
|
|
|
#include "llvm/IR/IRBuilder.h"
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/Instructions.h"
|
2013-12-23 23:31:49 +00:00
|
|
|
#include "llvm/IR/IntrinsicInst.h"
|
2011-08-10 03:46:27 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
|
|
|
#include "llvm/Support/Debug.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2014-04-22 02:55:47 +00:00
|
|
|
#define DEBUG_TYPE "indvars"
|
|
|
|
|
2011-08-10 03:46:27 +00:00
|
|
|
STATISTIC(NumElimIdentity, "Number of IV identities eliminated");
|
|
|
|
STATISTIC(NumElimOperand, "Number of IV operands folded into a use");
|
|
|
|
STATISTIC(NumElimRem , "Number of IV remainder operations eliminated");
|
|
|
|
STATISTIC(NumElimCmp , "Number of IV comparisons eliminated");
|
|
|
|
|
|
|
|
namespace {
|
2014-11-12 18:07:42 +00:00
|
|
|
/// This is a utility for simplifying induction variables
|
2011-08-10 03:46:27 +00:00
|
|
|
/// based on ScalarEvolution. It is the primary instrument of the
|
|
|
|
/// IndvarSimplify pass, but it may also be directly invoked to cleanup after
|
|
|
|
/// other loop passes that preserve SCEV.
|
|
|
|
class SimplifyIndvar {
|
|
|
|
Loop *L;
|
|
|
|
LoopInfo *LI;
|
|
|
|
ScalarEvolution *SE;
|
|
|
|
|
|
|
|
SmallVectorImpl<WeakVH> &DeadInsts;
|
|
|
|
|
|
|
|
bool Changed;
|
|
|
|
|
|
|
|
public:
|
2015-01-17 14:16:18 +00:00
|
|
|
SimplifyIndvar(Loop *Loop, ScalarEvolution *SE, LoopInfo *LI,
|
2015-01-17 14:31:35 +00:00
|
|
|
SmallVectorImpl<WeakVH> &Dead, IVUsers *IVU = nullptr)
|
|
|
|
: L(Loop), LI(LI), SE(SE), DeadInsts(Dead), Changed(false) {
|
2011-08-10 04:22:26 +00:00
|
|
|
assert(LI && "IV simplification requires LoopInfo");
|
2011-08-10 03:46:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool hasChanged() const { return Changed; }
|
|
|
|
|
|
|
|
/// Iteratively perform simplification on a worklist of users of the
|
|
|
|
/// specified induction variable. This is the top-level driver that applies
|
|
|
|
/// all simplicitions to users of an IV.
|
2014-04-25 05:29:35 +00:00
|
|
|
void simplifyUsers(PHINode *CurrIV, IVVisitor *V = nullptr);
|
2011-08-10 03:46:27 +00:00
|
|
|
|
2011-08-10 04:01:31 +00:00
|
|
|
Value *foldIVUser(Instruction *UseInst, Instruction *IVOperand);
|
2011-08-10 03:46:27 +00:00
|
|
|
|
|
|
|
bool eliminateIVUser(Instruction *UseInst, Instruction *IVOperand);
|
|
|
|
void eliminateIVComparison(ICmpInst *ICmp, Value *IVOperand);
|
|
|
|
void eliminateIVRemainder(BinaryOperator *Rem, Value *IVOperand,
|
|
|
|
bool IsSigned);
|
This patch teaches IndVarSimplify to add nuw and nsw to certain kinds
of operations that provably don't overflow. For example, we can prove
%civ.inc below does not sign-overflow. With this change,
IndVarSimplify changes %civ.inc to an add nsw.
define i32 @foo(i32* %array, i32* %length_ptr, i32 %init) {
entry:
%length = load i32* %length_ptr, !range !0
%len.sub.1 = sub i32 %length, 1
%upper = icmp slt i32 %init, %len.sub.1
br i1 %upper, label %loop, label %exit
loop:
%civ = phi i32 [ %init, %entry ], [ %civ.inc, %latch ]
%civ.inc = add i32 %civ, 1
%cmp = icmp slt i32 %civ.inc, %length
br i1 %cmp, label %latch, label %break
latch:
store i32 0, i32* %array
%check = icmp slt i32 %civ.inc, %len.sub.1
br i1 %check, label %loop, label %break
break:
ret i32 %civ.inc
exit:
ret i32 42
}
Differential Revision: http://reviews.llvm.org/D6748
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225282 91177308-0d34-0410-b5e6-96231b3b80d8
2015-01-06 19:02:56 +00:00
|
|
|
bool strengthenOverflowingOperation(BinaryOperator *OBO, Value *IVOperand);
|
2013-12-23 23:31:49 +00:00
|
|
|
|
|
|
|
Instruction *splitOverflowIntrinsic(Instruction *IVUser,
|
|
|
|
const DominatorTree *DT);
|
2011-08-10 03:46:27 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2014-11-12 18:07:42 +00:00
|
|
|
/// Fold an IV operand into its use. This removes increments of an
|
2011-08-10 03:46:27 +00:00
|
|
|
/// aligned IV when used by a instruction that ignores the low bits.
|
2011-08-10 04:01:31 +00:00
|
|
|
///
|
2011-09-19 17:54:39 +00:00
|
|
|
/// IVOperand is guaranteed SCEVable, but UseInst may not be.
|
|
|
|
///
|
2011-08-10 04:01:31 +00:00
|
|
|
/// Return the operand of IVOperand for this induction variable if IVOperand can
|
2011-08-10 18:07:05 +00:00
|
|
|
/// be folded (in case more folding opportunities have been exposed).
|
2011-08-10 04:01:31 +00:00
|
|
|
/// Otherwise return null.
|
|
|
|
Value *SimplifyIndvar::foldIVUser(Instruction *UseInst, Instruction *IVOperand) {
|
2014-04-25 05:29:35 +00:00
|
|
|
Value *IVSrc = nullptr;
|
2011-08-10 03:46:27 +00:00
|
|
|
unsigned OperIdx = 0;
|
2014-04-25 05:29:35 +00:00
|
|
|
const SCEV *FoldedExpr = nullptr;
|
2011-08-10 03:46:27 +00:00
|
|
|
switch (UseInst->getOpcode()) {
|
|
|
|
default:
|
2014-04-25 05:29:35 +00:00
|
|
|
return nullptr;
|
2011-08-10 03:46:27 +00:00
|
|
|
case Instruction::UDiv:
|
|
|
|
case Instruction::LShr:
|
|
|
|
// We're only interested in the case where we know something about
|
|
|
|
// the numerator and have a constant denominator.
|
|
|
|
if (IVOperand != UseInst->getOperand(OperIdx) ||
|
|
|
|
!isa<ConstantInt>(UseInst->getOperand(1)))
|
2014-04-25 05:29:35 +00:00
|
|
|
return nullptr;
|
2011-08-10 03:46:27 +00:00
|
|
|
|
|
|
|
// Attempt to fold a binary operator with constant operand.
|
|
|
|
// e.g. ((I + 1) >> 2) => I >> 2
|
2011-11-17 23:36:35 +00:00
|
|
|
if (!isa<BinaryOperator>(IVOperand)
|
|
|
|
|| !isa<ConstantInt>(IVOperand->getOperand(1)))
|
2014-04-25 05:29:35 +00:00
|
|
|
return nullptr;
|
2011-08-10 03:46:27 +00:00
|
|
|
|
|
|
|
IVSrc = IVOperand->getOperand(0);
|
|
|
|
// IVSrc must be the (SCEVable) IV, since the other operand is const.
|
|
|
|
assert(SE->isSCEVable(IVSrc->getType()) && "Expect SCEVable IV operand");
|
|
|
|
|
|
|
|
ConstantInt *D = cast<ConstantInt>(UseInst->getOperand(1));
|
|
|
|
if (UseInst->getOpcode() == Instruction::LShr) {
|
|
|
|
// Get a constant for the divisor. See createSCEV.
|
|
|
|
uint32_t BitWidth = cast<IntegerType>(UseInst->getType())->getBitWidth();
|
|
|
|
if (D->getValue().uge(BitWidth))
|
2014-04-25 05:29:35 +00:00
|
|
|
return nullptr;
|
2011-08-10 03:46:27 +00:00
|
|
|
|
|
|
|
D = ConstantInt::get(UseInst->getContext(),
|
2013-07-11 16:05:50 +00:00
|
|
|
APInt::getOneBitSet(BitWidth, D->getZExtValue()));
|
2011-08-10 03:46:27 +00:00
|
|
|
}
|
|
|
|
FoldedExpr = SE->getUDivExpr(SE->getSCEV(IVSrc), SE->getSCEV(D));
|
|
|
|
}
|
|
|
|
// We have something that might fold it's operand. Compare SCEVs.
|
|
|
|
if (!SE->isSCEVable(UseInst->getType()))
|
2014-04-25 05:29:35 +00:00
|
|
|
return nullptr;
|
2011-08-10 03:46:27 +00:00
|
|
|
|
|
|
|
// Bypass the operand if SCEV can prove it has no effect.
|
|
|
|
if (SE->getSCEV(UseInst) != FoldedExpr)
|
2014-04-25 05:29:35 +00:00
|
|
|
return nullptr;
|
2011-08-10 03:46:27 +00:00
|
|
|
|
|
|
|
DEBUG(dbgs() << "INDVARS: Eliminated IV operand: " << *IVOperand
|
|
|
|
<< " -> " << *UseInst << '\n');
|
|
|
|
|
|
|
|
UseInst->setOperand(OperIdx, IVSrc);
|
|
|
|
assert(SE->getSCEV(UseInst) == FoldedExpr && "bad SCEV with folded oper");
|
|
|
|
|
|
|
|
++NumElimOperand;
|
|
|
|
Changed = true;
|
|
|
|
if (IVOperand->use_empty())
|
|
|
|
DeadInsts.push_back(IVOperand);
|
2011-08-10 04:01:31 +00:00
|
|
|
return IVSrc;
|
2011-08-10 03:46:27 +00:00
|
|
|
}
|
|
|
|
|
2014-11-12 18:07:42 +00:00
|
|
|
/// SimplifyIVUsers helper for eliminating useless
|
2011-08-10 03:46:27 +00:00
|
|
|
/// comparisons against an induction variable.
|
|
|
|
void SimplifyIndvar::eliminateIVComparison(ICmpInst *ICmp, Value *IVOperand) {
|
|
|
|
unsigned IVOperIdx = 0;
|
|
|
|
ICmpInst::Predicate Pred = ICmp->getPredicate();
|
|
|
|
if (IVOperand != ICmp->getOperand(0)) {
|
|
|
|
// Swapped
|
|
|
|
assert(IVOperand == ICmp->getOperand(1) && "Can't find IVOperand");
|
|
|
|
IVOperIdx = 1;
|
|
|
|
Pred = ICmpInst::getSwappedPredicate(Pred);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the SCEVs for the ICmp operands.
|
|
|
|
const SCEV *S = SE->getSCEV(ICmp->getOperand(IVOperIdx));
|
|
|
|
const SCEV *X = SE->getSCEV(ICmp->getOperand(1 - IVOperIdx));
|
|
|
|
|
|
|
|
// Simplify unnecessary loops away.
|
|
|
|
const Loop *ICmpLoop = LI->getLoopFor(ICmp->getParent());
|
|
|
|
S = SE->getSCEVAtScope(S, ICmpLoop);
|
|
|
|
X = SE->getSCEVAtScope(X, ICmpLoop);
|
|
|
|
|
|
|
|
// If the condition is always true or always false, replace it with
|
|
|
|
// a constant value.
|
|
|
|
if (SE->isKnownPredicate(Pred, S, X))
|
|
|
|
ICmp->replaceAllUsesWith(ConstantInt::getTrue(ICmp->getContext()));
|
|
|
|
else if (SE->isKnownPredicate(ICmpInst::getInversePredicate(Pred), S, X))
|
|
|
|
ICmp->replaceAllUsesWith(ConstantInt::getFalse(ICmp->getContext()));
|
|
|
|
else
|
|
|
|
return;
|
|
|
|
|
|
|
|
DEBUG(dbgs() << "INDVARS: Eliminated comparison: " << *ICmp << '\n');
|
|
|
|
++NumElimCmp;
|
|
|
|
Changed = true;
|
|
|
|
DeadInsts.push_back(ICmp);
|
|
|
|
}
|
|
|
|
|
2014-11-12 18:07:42 +00:00
|
|
|
/// SimplifyIVUsers helper for eliminating useless
|
2011-08-10 03:46:27 +00:00
|
|
|
/// remainder operations operating on an induction variable.
|
|
|
|
void SimplifyIndvar::eliminateIVRemainder(BinaryOperator *Rem,
|
|
|
|
Value *IVOperand,
|
|
|
|
bool IsSigned) {
|
|
|
|
// We're only interested in the case where we know something about
|
|
|
|
// the numerator.
|
|
|
|
if (IVOperand != Rem->getOperand(0))
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Get the SCEVs for the ICmp operands.
|
|
|
|
const SCEV *S = SE->getSCEV(Rem->getOperand(0));
|
|
|
|
const SCEV *X = SE->getSCEV(Rem->getOperand(1));
|
|
|
|
|
|
|
|
// Simplify unnecessary loops away.
|
|
|
|
const Loop *ICmpLoop = LI->getLoopFor(Rem->getParent());
|
|
|
|
S = SE->getSCEVAtScope(S, ICmpLoop);
|
|
|
|
X = SE->getSCEVAtScope(X, ICmpLoop);
|
|
|
|
|
|
|
|
// i % n --> i if i is in [0,n).
|
|
|
|
if ((!IsSigned || SE->isKnownNonNegative(S)) &&
|
|
|
|
SE->isKnownPredicate(IsSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
|
|
|
|
S, X))
|
|
|
|
Rem->replaceAllUsesWith(Rem->getOperand(0));
|
|
|
|
else {
|
|
|
|
// (i+1) % n --> (i+1)==n?0:(i+1) if i is in [0,n).
|
|
|
|
const SCEV *LessOne =
|
|
|
|
SE->getMinusSCEV(S, SE->getConstant(S->getType(), 1));
|
|
|
|
if (IsSigned && !SE->isKnownNonNegative(LessOne))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!SE->isKnownPredicate(IsSigned ?
|
|
|
|
ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
|
|
|
|
LessOne, X))
|
|
|
|
return;
|
|
|
|
|
|
|
|
ICmpInst *ICmp = new ICmpInst(Rem, ICmpInst::ICMP_EQ,
|
2011-09-27 20:39:19 +00:00
|
|
|
Rem->getOperand(0), Rem->getOperand(1));
|
2011-08-10 03:46:27 +00:00
|
|
|
SelectInst *Sel =
|
|
|
|
SelectInst::Create(ICmp,
|
|
|
|
ConstantInt::get(Rem->getType(), 0),
|
|
|
|
Rem->getOperand(0), "tmp", Rem);
|
|
|
|
Rem->replaceAllUsesWith(Sel);
|
|
|
|
}
|
|
|
|
|
|
|
|
DEBUG(dbgs() << "INDVARS: Simplified rem: " << *Rem << '\n');
|
|
|
|
++NumElimRem;
|
|
|
|
Changed = true;
|
|
|
|
DeadInsts.push_back(Rem);
|
|
|
|
}
|
|
|
|
|
2014-11-12 18:07:42 +00:00
|
|
|
/// Eliminate an operation that consumes a simple IV and has
|
2011-08-10 03:46:27 +00:00
|
|
|
/// no observable side-effect given the range of IV values.
|
2011-09-19 17:54:39 +00:00
|
|
|
/// IVOperand is guaranteed SCEVable, but UseInst may not be.
|
2011-08-10 03:46:27 +00:00
|
|
|
bool SimplifyIndvar::eliminateIVUser(Instruction *UseInst,
|
|
|
|
Instruction *IVOperand) {
|
|
|
|
if (ICmpInst *ICmp = dyn_cast<ICmpInst>(UseInst)) {
|
|
|
|
eliminateIVComparison(ICmp, IVOperand);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (BinaryOperator *Rem = dyn_cast<BinaryOperator>(UseInst)) {
|
|
|
|
bool IsSigned = Rem->getOpcode() == Instruction::SRem;
|
|
|
|
if (IsSigned || Rem->getOpcode() == Instruction::URem) {
|
|
|
|
eliminateIVRemainder(Rem, IVOperand, IsSigned);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Eliminate any operation that SCEV can prove is an identity function.
|
|
|
|
if (!SE->isSCEVable(UseInst->getType()) ||
|
|
|
|
(UseInst->getType() != IVOperand->getType()) ||
|
|
|
|
(SE->getSCEV(UseInst) != SE->getSCEV(IVOperand)))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
DEBUG(dbgs() << "INDVARS: Eliminated identity: " << *UseInst << '\n');
|
|
|
|
|
|
|
|
UseInst->replaceAllUsesWith(IVOperand);
|
|
|
|
++NumElimIdentity;
|
|
|
|
Changed = true;
|
|
|
|
DeadInsts.push_back(UseInst);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
This patch teaches IndVarSimplify to add nuw and nsw to certain kinds
of operations that provably don't overflow. For example, we can prove
%civ.inc below does not sign-overflow. With this change,
IndVarSimplify changes %civ.inc to an add nsw.
define i32 @foo(i32* %array, i32* %length_ptr, i32 %init) {
entry:
%length = load i32* %length_ptr, !range !0
%len.sub.1 = sub i32 %length, 1
%upper = icmp slt i32 %init, %len.sub.1
br i1 %upper, label %loop, label %exit
loop:
%civ = phi i32 [ %init, %entry ], [ %civ.inc, %latch ]
%civ.inc = add i32 %civ, 1
%cmp = icmp slt i32 %civ.inc, %length
br i1 %cmp, label %latch, label %break
latch:
store i32 0, i32* %array
%check = icmp slt i32 %civ.inc, %len.sub.1
br i1 %check, label %loop, label %break
break:
ret i32 %civ.inc
exit:
ret i32 42
}
Differential Revision: http://reviews.llvm.org/D6748
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225282 91177308-0d34-0410-b5e6-96231b3b80d8
2015-01-06 19:02:56 +00:00
|
|
|
/// Annotate BO with nsw / nuw if it provably does not signed-overflow /
|
|
|
|
/// unsigned-overflow. Returns true if anything changed, false otherwise.
|
|
|
|
bool SimplifyIndvar::strengthenOverflowingOperation(BinaryOperator *BO,
|
|
|
|
Value *IVOperand) {
|
|
|
|
|
2015-03-04 22:24:23 +00:00
|
|
|
// Fastpath: we don't have any work to do if `BO` is `nuw` and `nsw`.
|
|
|
|
if (BO->hasNoUnsignedWrap() && BO->hasNoSignedWrap())
|
This patch teaches IndVarSimplify to add nuw and nsw to certain kinds
of operations that provably don't overflow. For example, we can prove
%civ.inc below does not sign-overflow. With this change,
IndVarSimplify changes %civ.inc to an add nsw.
define i32 @foo(i32* %array, i32* %length_ptr, i32 %init) {
entry:
%length = load i32* %length_ptr, !range !0
%len.sub.1 = sub i32 %length, 1
%upper = icmp slt i32 %init, %len.sub.1
br i1 %upper, label %loop, label %exit
loop:
%civ = phi i32 [ %init, %entry ], [ %civ.inc, %latch ]
%civ.inc = add i32 %civ, 1
%cmp = icmp slt i32 %civ.inc, %length
br i1 %cmp, label %latch, label %break
latch:
store i32 0, i32* %array
%check = icmp slt i32 %civ.inc, %len.sub.1
br i1 %check, label %loop, label %break
break:
ret i32 %civ.inc
exit:
ret i32 42
}
Differential Revision: http://reviews.llvm.org/D6748
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225282 91177308-0d34-0410-b5e6-96231b3b80d8
2015-01-06 19:02:56 +00:00
|
|
|
return false;
|
|
|
|
|
2015-03-04 22:24:23 +00:00
|
|
|
const SCEV *(ScalarEvolution::*GetExprForBO)(const SCEV *, const SCEV *,
|
|
|
|
SCEV::NoWrapFlags);
|
|
|
|
|
|
|
|
switch (BO->getOpcode()) {
|
|
|
|
default:
|
This patch teaches IndVarSimplify to add nuw and nsw to certain kinds
of operations that provably don't overflow. For example, we can prove
%civ.inc below does not sign-overflow. With this change,
IndVarSimplify changes %civ.inc to an add nsw.
define i32 @foo(i32* %array, i32* %length_ptr, i32 %init) {
entry:
%length = load i32* %length_ptr, !range !0
%len.sub.1 = sub i32 %length, 1
%upper = icmp slt i32 %init, %len.sub.1
br i1 %upper, label %loop, label %exit
loop:
%civ = phi i32 [ %init, %entry ], [ %civ.inc, %latch ]
%civ.inc = add i32 %civ, 1
%cmp = icmp slt i32 %civ.inc, %length
br i1 %cmp, label %latch, label %break
latch:
store i32 0, i32* %array
%check = icmp slt i32 %civ.inc, %len.sub.1
br i1 %check, label %loop, label %break
break:
ret i32 %civ.inc
exit:
ret i32 42
}
Differential Revision: http://reviews.llvm.org/D6748
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225282 91177308-0d34-0410-b5e6-96231b3b80d8
2015-01-06 19:02:56 +00:00
|
|
|
return false;
|
|
|
|
|
2015-03-04 22:24:23 +00:00
|
|
|
case Instruction::Add:
|
|
|
|
GetExprForBO = &ScalarEvolution::getAddExpr;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Instruction::Sub:
|
|
|
|
GetExprForBO = &ScalarEvolution::getMinusSCEV;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Instruction::Mul:
|
|
|
|
GetExprForBO = &ScalarEvolution::getMulExpr;
|
|
|
|
break;
|
This patch teaches IndVarSimplify to add nuw and nsw to certain kinds
of operations that provably don't overflow. For example, we can prove
%civ.inc below does not sign-overflow. With this change,
IndVarSimplify changes %civ.inc to an add nsw.
define i32 @foo(i32* %array, i32* %length_ptr, i32 %init) {
entry:
%length = load i32* %length_ptr, !range !0
%len.sub.1 = sub i32 %length, 1
%upper = icmp slt i32 %init, %len.sub.1
br i1 %upper, label %loop, label %exit
loop:
%civ = phi i32 [ %init, %entry ], [ %civ.inc, %latch ]
%civ.inc = add i32 %civ, 1
%cmp = icmp slt i32 %civ.inc, %length
br i1 %cmp, label %latch, label %break
latch:
store i32 0, i32* %array
%check = icmp slt i32 %civ.inc, %len.sub.1
br i1 %check, label %loop, label %break
break:
ret i32 %civ.inc
exit:
ret i32 42
}
Differential Revision: http://reviews.llvm.org/D6748
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225282 91177308-0d34-0410-b5e6-96231b3b80d8
2015-01-06 19:02:56 +00:00
|
|
|
}
|
|
|
|
|
2015-03-04 22:24:23 +00:00
|
|
|
unsigned BitWidth = cast<IntegerType>(BO->getType())->getBitWidth();
|
|
|
|
Type *WideTy = IntegerType::get(BO->getContext(), BitWidth * 2);
|
|
|
|
const SCEV *LHS = SE->getSCEV(BO->getOperand(0));
|
|
|
|
const SCEV *RHS = SE->getSCEV(BO->getOperand(1));
|
This patch teaches IndVarSimplify to add nuw and nsw to certain kinds
of operations that provably don't overflow. For example, we can prove
%civ.inc below does not sign-overflow. With this change,
IndVarSimplify changes %civ.inc to an add nsw.
define i32 @foo(i32* %array, i32* %length_ptr, i32 %init) {
entry:
%length = load i32* %length_ptr, !range !0
%len.sub.1 = sub i32 %length, 1
%upper = icmp slt i32 %init, %len.sub.1
br i1 %upper, label %loop, label %exit
loop:
%civ = phi i32 [ %init, %entry ], [ %civ.inc, %latch ]
%civ.inc = add i32 %civ, 1
%cmp = icmp slt i32 %civ.inc, %length
br i1 %cmp, label %latch, label %break
latch:
store i32 0, i32* %array
%check = icmp slt i32 %civ.inc, %len.sub.1
br i1 %check, label %loop, label %break
break:
ret i32 %civ.inc
exit:
ret i32 42
}
Differential Revision: http://reviews.llvm.org/D6748
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225282 91177308-0d34-0410-b5e6-96231b3b80d8
2015-01-06 19:02:56 +00:00
|
|
|
|
2015-03-04 22:24:23 +00:00
|
|
|
bool Changed = false;
|
This patch teaches IndVarSimplify to add nuw and nsw to certain kinds
of operations that provably don't overflow. For example, we can prove
%civ.inc below does not sign-overflow. With this change,
IndVarSimplify changes %civ.inc to an add nsw.
define i32 @foo(i32* %array, i32* %length_ptr, i32 %init) {
entry:
%length = load i32* %length_ptr, !range !0
%len.sub.1 = sub i32 %length, 1
%upper = icmp slt i32 %init, %len.sub.1
br i1 %upper, label %loop, label %exit
loop:
%civ = phi i32 [ %init, %entry ], [ %civ.inc, %latch ]
%civ.inc = add i32 %civ, 1
%cmp = icmp slt i32 %civ.inc, %length
br i1 %cmp, label %latch, label %break
latch:
store i32 0, i32* %array
%check = icmp slt i32 %civ.inc, %len.sub.1
br i1 %check, label %loop, label %break
break:
ret i32 %civ.inc
exit:
ret i32 42
}
Differential Revision: http://reviews.llvm.org/D6748
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225282 91177308-0d34-0410-b5e6-96231b3b80d8
2015-01-06 19:02:56 +00:00
|
|
|
|
2015-03-04 22:24:23 +00:00
|
|
|
if (!BO->hasNoUnsignedWrap()) {
|
|
|
|
const SCEV *ExtendAfterOp = SE->getZeroExtendExpr(SE->getSCEV(BO), WideTy);
|
|
|
|
const SCEV *OpAfterExtend = (SE->*GetExprForBO)(
|
|
|
|
SE->getZeroExtendExpr(LHS, WideTy), SE->getZeroExtendExpr(RHS, WideTy),
|
|
|
|
SCEV::FlagAnyWrap);
|
|
|
|
if (ExtendAfterOp == OpAfterExtend) {
|
|
|
|
BO->setHasNoUnsignedWrap();
|
|
|
|
SE->forgetValue(BO);
|
|
|
|
Changed = true;
|
This patch teaches IndVarSimplify to add nuw and nsw to certain kinds
of operations that provably don't overflow. For example, we can prove
%civ.inc below does not sign-overflow. With this change,
IndVarSimplify changes %civ.inc to an add nsw.
define i32 @foo(i32* %array, i32* %length_ptr, i32 %init) {
entry:
%length = load i32* %length_ptr, !range !0
%len.sub.1 = sub i32 %length, 1
%upper = icmp slt i32 %init, %len.sub.1
br i1 %upper, label %loop, label %exit
loop:
%civ = phi i32 [ %init, %entry ], [ %civ.inc, %latch ]
%civ.inc = add i32 %civ, 1
%cmp = icmp slt i32 %civ.inc, %length
br i1 %cmp, label %latch, label %break
latch:
store i32 0, i32* %array
%check = icmp slt i32 %civ.inc, %len.sub.1
br i1 %check, label %loop, label %break
break:
ret i32 %civ.inc
exit:
ret i32 42
}
Differential Revision: http://reviews.llvm.org/D6748
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225282 91177308-0d34-0410-b5e6-96231b3b80d8
2015-01-06 19:02:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-04 22:24:23 +00:00
|
|
|
if (!BO->hasNoSignedWrap()) {
|
|
|
|
const SCEV *ExtendAfterOp = SE->getSignExtendExpr(SE->getSCEV(BO), WideTy);
|
|
|
|
const SCEV *OpAfterExtend = (SE->*GetExprForBO)(
|
|
|
|
SE->getSignExtendExpr(LHS, WideTy), SE->getSignExtendExpr(RHS, WideTy),
|
|
|
|
SCEV::FlagAnyWrap);
|
|
|
|
if (ExtendAfterOp == OpAfterExtend) {
|
|
|
|
BO->setHasNoSignedWrap();
|
|
|
|
SE->forgetValue(BO);
|
This patch teaches IndVarSimplify to add nuw and nsw to certain kinds
of operations that provably don't overflow. For example, we can prove
%civ.inc below does not sign-overflow. With this change,
IndVarSimplify changes %civ.inc to an add nsw.
define i32 @foo(i32* %array, i32* %length_ptr, i32 %init) {
entry:
%length = load i32* %length_ptr, !range !0
%len.sub.1 = sub i32 %length, 1
%upper = icmp slt i32 %init, %len.sub.1
br i1 %upper, label %loop, label %exit
loop:
%civ = phi i32 [ %init, %entry ], [ %civ.inc, %latch ]
%civ.inc = add i32 %civ, 1
%cmp = icmp slt i32 %civ.inc, %length
br i1 %cmp, label %latch, label %break
latch:
store i32 0, i32* %array
%check = icmp slt i32 %civ.inc, %len.sub.1
br i1 %check, label %loop, label %break
break:
ret i32 %civ.inc
exit:
ret i32 42
}
Differential Revision: http://reviews.llvm.org/D6748
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225282 91177308-0d34-0410-b5e6-96231b3b80d8
2015-01-06 19:02:56 +00:00
|
|
|
Changed = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return Changed;
|
|
|
|
}
|
|
|
|
|
2013-12-23 23:31:49 +00:00
|
|
|
/// \brief Split sadd.with.overflow into add + sadd.with.overflow to allow
|
|
|
|
/// analysis and optimization.
|
|
|
|
///
|
|
|
|
/// \return A new value representing the non-overflowing add if possible,
|
|
|
|
/// otherwise return the original value.
|
|
|
|
Instruction *SimplifyIndvar::splitOverflowIntrinsic(Instruction *IVUser,
|
|
|
|
const DominatorTree *DT) {
|
|
|
|
IntrinsicInst *II = dyn_cast<IntrinsicInst>(IVUser);
|
|
|
|
if (!II || II->getIntrinsicID() != Intrinsic::sadd_with_overflow)
|
|
|
|
return IVUser;
|
|
|
|
|
|
|
|
// Find a branch guarded by the overflow check.
|
2014-04-25 05:29:35 +00:00
|
|
|
BranchInst *Branch = nullptr;
|
|
|
|
Instruction *AddVal = nullptr;
|
2014-03-09 03:16:01 +00:00
|
|
|
for (User *U : II->users()) {
|
|
|
|
if (ExtractValueInst *ExtractInst = dyn_cast<ExtractValueInst>(U)) {
|
2013-12-23 23:31:49 +00:00
|
|
|
if (ExtractInst->getNumIndices() != 1)
|
|
|
|
continue;
|
|
|
|
if (ExtractInst->getIndices()[0] == 0)
|
|
|
|
AddVal = ExtractInst;
|
|
|
|
else if (ExtractInst->getIndices()[0] == 1 && ExtractInst->hasOneUse())
|
2014-03-09 03:16:01 +00:00
|
|
|
Branch = dyn_cast<BranchInst>(ExtractInst->user_back());
|
2013-12-23 23:31:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!AddVal || !Branch)
|
|
|
|
return IVUser;
|
|
|
|
|
|
|
|
BasicBlock *ContinueBB = Branch->getSuccessor(1);
|
2014-03-02 12:27:27 +00:00
|
|
|
if (std::next(pred_begin(ContinueBB)) != pred_end(ContinueBB))
|
2013-12-23 23:31:49 +00:00
|
|
|
return IVUser;
|
|
|
|
|
|
|
|
// Check if all users of the add are provably NSW.
|
|
|
|
bool AllNSW = true;
|
2014-03-09 03:16:01 +00:00
|
|
|
for (Use &U : AddVal->uses()) {
|
|
|
|
if (Instruction *UseInst = dyn_cast<Instruction>(U.getUser())) {
|
2013-12-23 23:31:49 +00:00
|
|
|
BasicBlock *UseBB = UseInst->getParent();
|
|
|
|
if (PHINode *PHI = dyn_cast<PHINode>(UseInst))
|
2014-03-09 03:16:01 +00:00
|
|
|
UseBB = PHI->getIncomingBlock(U);
|
2013-12-23 23:31:49 +00:00
|
|
|
if (!DT->dominates(ContinueBB, UseBB)) {
|
|
|
|
AllNSW = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!AllNSW)
|
|
|
|
return IVUser;
|
|
|
|
|
|
|
|
// Go for it...
|
|
|
|
IRBuilder<> Builder(IVUser);
|
|
|
|
Instruction *AddInst = dyn_cast<Instruction>(
|
|
|
|
Builder.CreateNSWAdd(II->getOperand(0), II->getOperand(1)));
|
|
|
|
|
|
|
|
// The caller expects the new add to have the same form as the intrinsic. The
|
|
|
|
// IV operand position must be the same.
|
|
|
|
assert((AddInst->getOpcode() == Instruction::Add &&
|
|
|
|
AddInst->getOperand(0) == II->getOperand(0)) &&
|
|
|
|
"Bad add instruction created from overflow intrinsic.");
|
|
|
|
|
|
|
|
AddVal->replaceAllUsesWith(AddInst);
|
|
|
|
DeadInsts.push_back(AddVal);
|
|
|
|
return AddInst;
|
|
|
|
}
|
|
|
|
|
2014-11-12 18:07:42 +00:00
|
|
|
/// Add all uses of Def to the current IV's worklist.
|
2011-08-10 03:46:27 +00:00
|
|
|
static void pushIVUsers(
|
|
|
|
Instruction *Def,
|
|
|
|
SmallPtrSet<Instruction*,16> &Simplified,
|
|
|
|
SmallVectorImpl< std::pair<Instruction*,Instruction*> > &SimpleIVUsers) {
|
|
|
|
|
2014-03-09 03:16:01 +00:00
|
|
|
for (User *U : Def->users()) {
|
|
|
|
Instruction *UI = cast<Instruction>(U);
|
2011-08-10 03:46:27 +00:00
|
|
|
|
|
|
|
// Avoid infinite or exponential worklist processing.
|
|
|
|
// Also ensure unique worklist users.
|
|
|
|
// If Def is a LoopPhi, it may not be in the Simplified set, so check for
|
|
|
|
// self edges first.
|
2014-11-19 07:49:26 +00:00
|
|
|
if (UI != Def && Simplified.insert(UI).second)
|
2014-03-09 03:16:01 +00:00
|
|
|
SimpleIVUsers.push_back(std::make_pair(UI, Def));
|
2011-08-10 03:46:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-12 18:07:42 +00:00
|
|
|
/// Return true if this instruction generates a simple SCEV
|
2011-08-10 03:46:27 +00:00
|
|
|
/// expression in terms of that IV.
|
|
|
|
///
|
2011-08-10 18:07:05 +00:00
|
|
|
/// This is similar to IVUsers' isInteresting() but processes each instruction
|
2011-08-10 03:46:27 +00:00
|
|
|
/// non-recursively when the operand is already known to be a simpleIVUser.
|
|
|
|
///
|
|
|
|
static bool isSimpleIVUser(Instruction *I, const Loop *L, ScalarEvolution *SE) {
|
|
|
|
if (!SE->isSCEVable(I->getType()))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Get the symbolic expression for this instruction.
|
|
|
|
const SCEV *S = SE->getSCEV(I);
|
|
|
|
|
|
|
|
// Only consider affine recurrences.
|
|
|
|
const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S);
|
|
|
|
if (AR && AR->getLoop() == L)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-11-12 18:07:42 +00:00
|
|
|
/// Iteratively perform simplification on a worklist of users
|
2011-08-10 03:46:27 +00:00
|
|
|
/// of the specified induction variable. Each successive simplification may push
|
|
|
|
/// more users which may themselves be candidates for simplification.
|
|
|
|
///
|
|
|
|
/// This algorithm does not require IVUsers analysis. Instead, it simplifies
|
|
|
|
/// instructions in-place during analysis. Rather than rewriting induction
|
|
|
|
/// variables bottom-up from their users, it transforms a chain of IVUsers
|
|
|
|
/// top-down, updating the IR only when it encouters a clear optimization
|
|
|
|
/// opportunitiy.
|
|
|
|
///
|
|
|
|
/// Once DisableIVRewrite is default, LSR will be the only client of IVUsers.
|
|
|
|
///
|
|
|
|
void SimplifyIndvar::simplifyUsers(PHINode *CurrIV, IVVisitor *V) {
|
2011-09-19 17:54:39 +00:00
|
|
|
if (!SE->isSCEVable(CurrIV->getType()))
|
|
|
|
return;
|
|
|
|
|
2011-08-10 03:46:27 +00:00
|
|
|
// Instructions processed by SimplifyIndvar for CurrIV.
|
|
|
|
SmallPtrSet<Instruction*,16> Simplified;
|
|
|
|
|
|
|
|
// Use-def pairs if IV users waiting to be processed for CurrIV.
|
|
|
|
SmallVector<std::pair<Instruction*, Instruction*>, 8> SimpleIVUsers;
|
|
|
|
|
|
|
|
// Push users of the current LoopPhi. In rare cases, pushIVUsers may be
|
|
|
|
// called multiple times for the same LoopPhi. This is the proper thing to
|
|
|
|
// do for loop header phis that use each other.
|
|
|
|
pushIVUsers(CurrIV, Simplified, SimpleIVUsers);
|
|
|
|
|
|
|
|
while (!SimpleIVUsers.empty()) {
|
|
|
|
std::pair<Instruction*, Instruction*> UseOper =
|
|
|
|
SimpleIVUsers.pop_back_val();
|
2013-12-23 23:31:49 +00:00
|
|
|
Instruction *UseInst = UseOper.first;
|
|
|
|
|
2011-08-10 03:46:27 +00:00
|
|
|
// Bypass back edges to avoid extra work.
|
2013-12-23 23:31:49 +00:00
|
|
|
if (UseInst == CurrIV) continue;
|
|
|
|
|
|
|
|
if (V && V->shouldSplitOverflowInstrinsics()) {
|
|
|
|
UseInst = splitOverflowIntrinsic(UseInst, V->getDomTree());
|
|
|
|
if (!UseInst)
|
|
|
|
continue;
|
|
|
|
}
|
2011-08-10 03:46:27 +00:00
|
|
|
|
2011-08-10 04:01:31 +00:00
|
|
|
Instruction *IVOperand = UseOper.second;
|
|
|
|
for (unsigned N = 0; IVOperand; ++N) {
|
|
|
|
assert(N <= Simplified.size() && "runaway iteration");
|
|
|
|
|
|
|
|
Value *NewOper = foldIVUser(UseOper.first, IVOperand);
|
|
|
|
if (!NewOper)
|
|
|
|
break; // done folding
|
|
|
|
IVOperand = dyn_cast<Instruction>(NewOper);
|
|
|
|
}
|
|
|
|
if (!IVOperand)
|
|
|
|
continue;
|
2011-08-10 03:46:27 +00:00
|
|
|
|
2011-08-10 04:01:31 +00:00
|
|
|
if (eliminateIVUser(UseOper.first, IVOperand)) {
|
|
|
|
pushIVUsers(IVOperand, Simplified, SimpleIVUsers);
|
2011-08-10 03:46:27 +00:00
|
|
|
continue;
|
|
|
|
}
|
This patch teaches IndVarSimplify to add nuw and nsw to certain kinds
of operations that provably don't overflow. For example, we can prove
%civ.inc below does not sign-overflow. With this change,
IndVarSimplify changes %civ.inc to an add nsw.
define i32 @foo(i32* %array, i32* %length_ptr, i32 %init) {
entry:
%length = load i32* %length_ptr, !range !0
%len.sub.1 = sub i32 %length, 1
%upper = icmp slt i32 %init, %len.sub.1
br i1 %upper, label %loop, label %exit
loop:
%civ = phi i32 [ %init, %entry ], [ %civ.inc, %latch ]
%civ.inc = add i32 %civ, 1
%cmp = icmp slt i32 %civ.inc, %length
br i1 %cmp, label %latch, label %break
latch:
store i32 0, i32* %array
%check = icmp slt i32 %civ.inc, %len.sub.1
br i1 %check, label %loop, label %break
break:
ret i32 %civ.inc
exit:
ret i32 42
}
Differential Revision: http://reviews.llvm.org/D6748
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225282 91177308-0d34-0410-b5e6-96231b3b80d8
2015-01-06 19:02:56 +00:00
|
|
|
|
|
|
|
if (BinaryOperator *BO = dyn_cast<BinaryOperator>(UseOper.first)) {
|
|
|
|
if (isa<OverflowingBinaryOperator>(BO) &&
|
|
|
|
strengthenOverflowingOperation(BO, IVOperand)) {
|
|
|
|
// re-queue uses of the now modified binary operator and fall
|
|
|
|
// through to the checks that remain.
|
|
|
|
pushIVUsers(IVOperand, Simplified, SimpleIVUsers);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-10 03:46:27 +00:00
|
|
|
CastInst *Cast = dyn_cast<CastInst>(UseOper.first);
|
|
|
|
if (V && Cast) {
|
|
|
|
V->visitCast(Cast);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (isSimpleIVUser(UseOper.first, L, SE)) {
|
|
|
|
pushIVUsers(UseOper.first, Simplified, SimpleIVUsers);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2011-12-20 02:50:00 +00:00
|
|
|
void IVVisitor::anchor() { }
|
|
|
|
|
2014-11-12 18:07:42 +00:00
|
|
|
/// Simplify instructions that use this induction variable
|
2011-08-10 03:46:27 +00:00
|
|
|
/// by using ScalarEvolution to analyze the IV's recurrence.
|
2011-08-10 04:22:26 +00:00
|
|
|
bool simplifyUsersOfIV(PHINode *CurrIV, ScalarEvolution *SE, LPPassManager *LPM,
|
2011-08-10 03:46:27 +00:00
|
|
|
SmallVectorImpl<WeakVH> &Dead, IVVisitor *V)
|
|
|
|
{
|
2015-01-17 14:16:18 +00:00
|
|
|
LoopInfo *LI = &LPM->getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
|
2015-01-17 14:31:35 +00:00
|
|
|
SimplifyIndvar SIV(LI->getLoopFor(CurrIV->getParent()), SE, LI, Dead);
|
2011-08-10 03:46:27 +00:00
|
|
|
SIV.simplifyUsers(CurrIV, V);
|
|
|
|
return SIV.hasChanged();
|
|
|
|
}
|
|
|
|
|
2014-11-12 18:07:42 +00:00
|
|
|
/// Simplify users of induction variables within this
|
2011-08-10 03:46:27 +00:00
|
|
|
/// loop. This does not actually change or add IVs.
|
2011-08-10 04:22:26 +00:00
|
|
|
bool simplifyLoopIVs(Loop *L, ScalarEvolution *SE, LPPassManager *LPM,
|
2011-08-10 03:46:27 +00:00
|
|
|
SmallVectorImpl<WeakVH> &Dead) {
|
|
|
|
bool Changed = false;
|
|
|
|
for (BasicBlock::iterator I = L->getHeader()->begin(); isa<PHINode>(I); ++I) {
|
2011-08-10 04:22:26 +00:00
|
|
|
Changed |= simplifyUsersOfIV(cast<PHINode>(I), SE, LPM, Dead);
|
2011-08-10 03:46:27 +00:00
|
|
|
}
|
|
|
|
return Changed;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace llvm
|