2011-08-10 03:46:27 +00:00
|
|
|
//===-- llvm/Transforms/Utils/SimplifyIndVar.h - Indvar Utils ---*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines in interface for 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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_TRANSFORMS_UTILS_SIMPLIFYINDVAR_H
|
|
|
|
#define LLVM_TRANSFORMS_UTILS_SIMPLIFYINDVAR_H
|
|
|
|
|
2014-03-04 11:17:44 +00:00
|
|
|
#include "llvm/IR/ValueHandle.h"
|
2011-08-10 03:46:27 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2011-11-14 17:22:45 +00:00
|
|
|
class CastInst;
|
2013-12-23 23:31:49 +00:00
|
|
|
class DominatorTree;
|
2011-11-14 17:22:45 +00:00
|
|
|
class IVUsers;
|
2011-08-10 03:46:27 +00:00
|
|
|
class Loop;
|
|
|
|
class LPPassManager;
|
2011-11-14 17:22:45 +00:00
|
|
|
class PHINode;
|
|
|
|
class ScalarEvolution;
|
2011-08-10 03:46:27 +00:00
|
|
|
|
|
|
|
/// Interface for visiting interesting IV users that are recognized but not
|
|
|
|
/// simplified by this utility.
|
|
|
|
class IVVisitor {
|
2013-12-23 23:31:49 +00:00
|
|
|
protected:
|
|
|
|
const DominatorTree *DT;
|
|
|
|
bool ShouldSplitOverflowIntrinsics;
|
|
|
|
|
2011-12-20 02:50:00 +00:00
|
|
|
virtual void anchor();
|
2014-05-19 04:43:26 +00:00
|
|
|
|
2011-08-10 03:46:27 +00:00
|
|
|
public:
|
2014-04-25 05:29:35 +00:00
|
|
|
IVVisitor(): DT(nullptr), ShouldSplitOverflowIntrinsics(false) {}
|
2011-08-10 03:46:27 +00:00
|
|
|
virtual ~IVVisitor() {}
|
2013-12-23 23:31:49 +00:00
|
|
|
|
|
|
|
const DominatorTree *getDomTree() const { return DT; }
|
|
|
|
|
|
|
|
bool shouldSplitOverflowInstrinsics() const {
|
|
|
|
return ShouldSplitOverflowIntrinsics;
|
|
|
|
}
|
|
|
|
void setSplitOverflowIntrinsics() {
|
|
|
|
ShouldSplitOverflowIntrinsics = true;
|
|
|
|
assert(DT && "Splitting overflow intrinsics requires a DomTree.");
|
|
|
|
}
|
|
|
|
|
2011-08-10 03:46:27 +00:00
|
|
|
virtual void visitCast(CastInst *Cast) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
/// simplifyUsersOfIV - Simplify instructions that use this induction variable
|
|
|
|
/// 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,
|
2014-04-25 05:29:35 +00:00
|
|
|
SmallVectorImpl<WeakVH> &Dead, IVVisitor *V = nullptr);
|
2011-08-10 03:46:27 +00:00
|
|
|
|
|
|
|
/// SimplifyLoopIVs - Simplify users of induction variables within this
|
|
|
|
/// 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);
|
|
|
|
|
|
|
|
} // namespace llvm
|
|
|
|
|
|
|
|
#endif
|