[llvm-commits] [llvm] r76218 - /llvm/trunk/include/llvm/Instructions.h

Dan Gohman gohman at apple.com
Fri Jul 17 12:01:15 PDT 2009


Author: djg
Date: Fri Jul 17 14:01:15 2009
New Revision: 76218

URL: http://llvm.org/viewvc/llvm-project?rev=76218&view=rev
Log:
Define a no-pointer-overflow flag for GetElementPtr instructions.

Modified:
    llvm/trunk/include/llvm/Instructions.h

Modified: llvm/trunk/include/llvm/Instructions.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Instructions.h?rev=76218&r1=76217&r2=76218&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Instructions.h (original)
+++ llvm/trunk/include/llvm/Instructions.h Fri Jul 17 14:01:15 2009
@@ -573,6 +573,23 @@
   /// a constant offset between them.
   bool hasAllConstantIndices() const;
 
+  /// hasNoPointerOverflow - Return true if this GetElementPtr is known to
+  /// never have overflow in the pointer addition portions of its effective
+  /// computation. GetElementPtr computation involves several phases;
+  /// overflow can be considered to occur in index typecasting, array index
+  /// scaling, and the addition of the base pointer with offsets. This flag
+  /// only applies to the last of these. The operands are added to the base
+  /// pointer one at a time from left to right. This function returns false
+  /// if any of these additions results in an address value which is not
+  /// known to be within the allocated address space that the base pointer
+  /// points into, or within one element (of the original allocation) past
+  /// the end.
+  bool hasNoPointerOverflow() const {
+    return SubclassOptionalData & (1 << 0);
+  }
+  void setHasNoPointerOverflow(bool B) {
+    SubclassOptionalData = (SubclassOptionalData & ~(1 << 0)) | (B << 0);
+  }
 
   // Methods for support type inquiry through isa, cast, and dyn_cast:
   static inline bool classof(const GetElementPtrInst *) { return true; }





More information about the llvm-commits mailing list