The TargetData is not used for the isPowerOfTwo determination. It has never
[oota-llvm.git] / include / llvm / Analysis / IVUsers.h
index 7aa34f1cff4d0898bf793e41657a277ef99f90ec..9b98013a1683deb83b671182bca2d919633597c0 100644 (file)
@@ -27,8 +27,8 @@ class Value;
 class IVUsers;
 class ScalarEvolution;
 class SCEV;
-class SCEVAddRecExpr;
 class IVUsers;
+class DataLayout;
 
 /// IVStrideUse - Keep track of one use of a strided induction variable.
 /// The Expr member keeps track of the expression, User is the actual user
@@ -123,7 +123,8 @@ class IVUsers : public LoopPass {
   LoopInfo *LI;
   DominatorTree *DT;
   ScalarEvolution *SE;
-  SmallPtrSet<Instruction *, 16> Processed;
+  DataLayout *TD;
+  SmallPtrSet<Instruction*,16> Processed;
 
   /// IVUses - A list of all tracked IV uses of induction variable expressions
   /// we are interested in.
@@ -135,16 +136,16 @@ class IVUsers : public LoopPass {
 
   virtual void releaseMemory();
 
-  const SCEVAddRecExpr *findInterestingAddRec(const SCEV *S) const;
-  bool isInterestingUser(const Instruction *User) const;
-
 public:
   static char ID; // Pass ID, replacement for typeid
   IVUsers();
 
-  /// AddUsersIfInteresting - Inspect the def-use graph starting at the
-  /// specified Instruction and add IVUsers.
-  void AddUsersIfInteresting(Instruction *I);
+  Loop *getLoop() const { return L; }
+
+  /// AddUsersIfInteresting - Inspect the specified Instruction.  If it is a
+  /// reducible SCEV, recursively add its users to the IVUsesByStride set and
+  /// return true.  Otherwise, return false.
+  bool AddUsersIfInteresting(Instruction *I);
 
   IVStrideUse &AddUser(Instruction *User, Value *Operand);
 
@@ -165,10 +166,16 @@ public:
   const_iterator end() const   { return IVUses.end(); }
   bool empty() const { return IVUses.empty(); }
 
+  bool isIVUserOrOperand(Instruction *Inst) const {
+    return Processed.count(Inst);
+  }
+
   void print(raw_ostream &OS, const Module* = 0) const;
 
   /// dump - This method is used for debugging.
   void dump() const;
+protected:
+  bool AddUsersImpl(Instruction *I, SmallPtrSet<Loop*,16> &SimpleLoopNests);
 };
 
 Pass *createIVUsersPass();