add a new -enable-value-prop flag for llcbeta, that enables propagation
[oota-llvm.git] / include / llvm / Value.h
index af90b91c3bfba2f8bd51f6608796b6d83c7c299b..6d4d7cc74ac9bea27ed04d14d7e59f6f12fef077 100644 (file)
@@ -8,7 +8,6 @@
 //===----------------------------------------------------------------------===//
 //
 // This file declares the Value class. 
-// This file also defines the Use<> template for users of value.
 //
 //===----------------------------------------------------------------------===//
 
@@ -162,6 +161,8 @@ public:
   ///
   bool hasNUsesOrMore(unsigned N) const;
 
+  bool isUsedInBasicBlock(BasicBlock *BB) const;
+
   /// getNumUses - This method computes the number of uses of this Value.  This
   /// is a linear time operation.  Use hasOneUse, hasNUses, or hasMoreThanNUses
   /// to check for specific values.
@@ -225,6 +226,9 @@ public:
   /// casts from the specified value, returning the original uncasted value.
   /// Note that the returned value is guaranteed to have pointer type.
   Value *stripPointerCasts();
+  const Value *stripPointerCasts() const {
+    return const_cast<Value*>(this)->stripPointerCasts();
+  }
 };
 
 inline std::ostream &operator<<(std::ostream &OS, const Value &V) {