diff options
author | Dan Gohman <gohman@apple.com> | 2009-07-17 19:01:15 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-07-17 19:01:15 +0000 |
commit | b4cfd15d9901883cfb46ac3826e0a27573089372 (patch) | |
tree | 6856ddf1dd0c6166cffb5138766b3a5f23f7bb86 /include | |
parent | 31cc426d9a68aebd6795c48d888d7064f6e690d3 (diff) | |
download | external_llvm-b4cfd15d9901883cfb46ac3826e0a27573089372.zip external_llvm-b4cfd15d9901883cfb46ac3826e0a27573089372.tar.gz external_llvm-b4cfd15d9901883cfb46ac3826e0a27573089372.tar.bz2 |
Define a no-pointer-overflow flag for GetElementPtr instructions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76218 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Instructions.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/llvm/Instructions.h b/include/llvm/Instructions.h index 9a20a2f..f2253e1 100644 --- a/include/llvm/Instructions.h +++ b/include/llvm/Instructions.h @@ -573,6 +573,23 @@ public: /// 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; } |