X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=include%2Fllvm%2FIntrinsicInst.h;h=b8480551b5987dde9bfa0afc86140ac6dbca52a7;hb=4b938958bcc59586508bc9681e75c2e3f5164672;hp=2ef07af379f5213856940d3cb87580f2b5f908eb;hpb=dc770929cb2f97397970e2942b746839fc387992;p=oota-llvm.git diff --git a/include/llvm/IntrinsicInst.h b/include/llvm/IntrinsicInst.h index 2ef07af379f..b8480551b59 100644 --- a/include/llvm/IntrinsicInst.h +++ b/include/llvm/IntrinsicInst.h @@ -176,9 +176,13 @@ namespace llvm { Value *getRawDest() const { return const_cast(getOperand(1)); } Value *getLength() const { return const_cast(getOperand(3)); } - ConstantInt *getAlignment() const { + ConstantInt *getAlignmentCst() const { return cast(const_cast(getOperand(4))); } + + unsigned getAlignment() const { + return getAlignmentCst()->getZExtValue(); + } /// getDest - This is just like getRawDest, but it strips off any cast /// instructions that feed it, giving the original input. The returned @@ -198,22 +202,22 @@ namespace llvm { "setLength called with value of wrong type!"); setOperand(3, L); } - void setAlignment(ConstantInt *A) { - assert(getAlignment()->getType() == A->getType() && - "setAlignment called with value of wrong type!"); + + void setAlignment(Constant* A) { setOperand(4, A); } - + + const Type *getAlignmentType() const { + return getOperand(4)->getType(); + } + // Methods for support type inquiry through isa, cast, and dyn_cast: static inline bool classof(const MemIntrinsic *) { return true; } static inline bool classof(const IntrinsicInst *I) { switch (I->getIntrinsicID()) { - case Intrinsic::memcpy_i32: - case Intrinsic::memcpy_i64: - case Intrinsic::memmove_i32: - case Intrinsic::memmove_i64: - case Intrinsic::memset_i32: - case Intrinsic::memset_i64: + case Intrinsic::memcpy: + case Intrinsic::memmove: + case Intrinsic::memset: return true; default: return false; } @@ -223,84 +227,79 @@ namespace llvm { } }; - - /// MemCpyInst - This class wraps the llvm.memcpy intrinsic. + /// MemSetInst - This class wraps the llvm.memset intrinsic. /// - struct MemCpyInst : public MemIntrinsic { + struct MemSetInst : public MemIntrinsic { /// get* - Return the arguments to the instruction. /// - Value *getRawSource() const { return const_cast(getOperand(2)); } - - /// getSource - This is just like getRawSource, but it strips off any cast - /// instructions that feed it, giving the original input. The returned - /// value is guaranteed to be a pointer. - Value *getSource() const { return getRawSource()->stripPointerCasts(); } - - - void setSource(Value *Ptr) { - assert(getRawSource()->getType() == Ptr->getType() && + Value *getValue() const { return const_cast(getOperand(2)); } + + void setValue(Value *Val) { + assert(getValue()->getType() == Val->getType() && "setSource called with pointer of wrong type!"); - setOperand(2, Ptr); + setOperand(2, Val); } - + // Methods for support type inquiry through isa, cast, and dyn_cast: - static inline bool classof(const MemCpyInst *) { return true; } + static inline bool classof(const MemSetInst *) { return true; } static inline bool classof(const IntrinsicInst *I) { - return I->getIntrinsicID() == Intrinsic::memcpy_i32 || - I->getIntrinsicID() == Intrinsic::memcpy_i64; + return I->getIntrinsicID() == Intrinsic::memset; } static inline bool classof(const Value *V) { return isa(V) && classof(cast(V)); } }; - - /// MemMoveInst - This class wraps the llvm.memmove intrinsic. + + /// MemTransferInst - This class wraps the llvm.memcpy/memmove intrinsics. /// - struct MemMoveInst : public MemIntrinsic { + struct MemTransferInst : public MemIntrinsic { /// get* - Return the arguments to the instruction. /// Value *getRawSource() const { return const_cast(getOperand(2)); } - + /// getSource - This is just like getRawSource, but it strips off any cast /// instructions that feed it, giving the original input. The returned /// value is guaranteed to be a pointer. Value *getSource() const { return getRawSource()->stripPointerCasts(); } - + void setSource(Value *Ptr) { assert(getRawSource()->getType() == Ptr->getType() && "setSource called with pointer of wrong type!"); setOperand(2, Ptr); } - + // Methods for support type inquiry through isa, cast, and dyn_cast: - static inline bool classof(const MemMoveInst *) { return true; } + static inline bool classof(const MemTransferInst *) { return true; } static inline bool classof(const IntrinsicInst *I) { - return I->getIntrinsicID() == Intrinsic::memmove_i32 || - I->getIntrinsicID() == Intrinsic::memmove_i64; + return I->getIntrinsicID() == Intrinsic::memcpy || + I->getIntrinsicID() == Intrinsic::memmove; } static inline bool classof(const Value *V) { return isa(V) && classof(cast(V)); } }; - - /// MemSetInst - This class wraps the llvm.memset intrinsic. + + + /// MemCpyInst - This class wraps the llvm.memcpy intrinsic. /// - struct MemSetInst : public MemIntrinsic { - /// get* - Return the arguments to the instruction. - /// - Value *getValue() const { return const_cast(getOperand(2)); } - - void setValue(Value *Val) { - assert(getValue()->getType() == Val->getType() && - "setSource called with pointer of wrong type!"); - setOperand(2, Val); + struct MemCpyInst : public MemTransferInst { + // Methods for support type inquiry through isa, cast, and dyn_cast: + static inline bool classof(const MemCpyInst *) { return true; } + static inline bool classof(const IntrinsicInst *I) { + return I->getIntrinsicID() == Intrinsic::memcpy; } + static inline bool classof(const Value *V) { + return isa(V) && classof(cast(V)); + } + }; + /// MemMoveInst - This class wraps the llvm.memmove intrinsic. + /// + struct MemMoveInst : public MemTransferInst { // Methods for support type inquiry through isa, cast, and dyn_cast: - static inline bool classof(const MemSetInst *) { return true; } + static inline bool classof(const MemMoveInst *) { return true; } static inline bool classof(const IntrinsicInst *I) { - return I->getIntrinsicID() == Intrinsic::memset_i32 || - I->getIntrinsicID() == Intrinsic::memset_i64; + return I->getIntrinsicID() == Intrinsic::memmove; } static inline bool classof(const Value *V) { return isa(V) && classof(cast(V));