diff options
author | Dan Gohman <gohman@apple.com> | 2009-07-17 21:33:58 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-07-17 21:33:58 +0000 |
commit | 5c2cb324d8d6380e8753b7022a6bc0b49809701b (patch) | |
tree | 2f2716d59ecc232d1a8b1c378ea2627dad67a190 /include/llvm/Operator.h | |
parent | afa709d90b0d318f3f859503c54535a72189cfe0 (diff) |
Add a GEPOperator class, and move the hasNoPointerOverflow
accessors into it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76245 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Operator.h')
-rw-r--r-- | include/llvm/Operator.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/include/llvm/Operator.h b/include/llvm/Operator.h index 4da19219d2..1413ce3d20 100644 --- a/include/llvm/Operator.h +++ b/include/llvm/Operator.h @@ -127,6 +127,41 @@ public: } }; +class GEPOperator : public Operator { +public: + /// 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 GEPOperator *) { return true; } + static inline bool classof(const GetElementPtrInst *) { return true; } + static inline bool classof(const ConstantExpr *CE) { + return CE->getOpcode() == Instruction::GetElementPtr; + } + static inline bool classof(const Instruction *I) { + return I->getOpcode() == Instruction::GetElementPtr; + } + static inline bool classof(const Value *V) { + return isa<GetElementPtrInst>(V) || + (isa<ConstantExpr>(V) && classof(cast<ConstantExpr>(V))); + } +}; + } // End llvm namespace #endif |