diff --git a/lib/Analysis/BasicAliasAnalysis.cpp b/lib/Analysis/BasicAliasAnalysis.cpp index c10c6f3f279..dcb5903a14e 100644 --- a/lib/Analysis/BasicAliasAnalysis.cpp +++ b/lib/Analysis/BasicAliasAnalysis.cpp @@ -23,6 +23,7 @@ #include "llvm/Instructions.h" #include "llvm/IntrinsicInst.h" #include "llvm/LLVMContext.h" +#include "llvm/Operator.h" #include "llvm/Pass.h" #include "llvm/Target/TargetData.h" #include "llvm/ADT/SmallVector.h" @@ -38,10 +39,11 @@ using namespace llvm; //===----------------------------------------------------------------------===// static const User *isGEP(const Value *V) { - if (isa(V) || - (isa(V) && - cast(V)->getOpcode() == Instruction::GetElementPtr)) - return cast(V); + if (const GEPOperator *GEP = dyn_cast(V)) + // For the purposes of BasicAliasAnalysis, if the GEP has overflow it + // could do crazy things. + if (GEP->hasNoPointerOverflow()) + return GEP; return 0; } diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index 9ddd0e0d923..dbdf449f60f 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp @@ -2310,7 +2310,10 @@ Instruction *InstCombiner::visitAdd(BinaryOperator &I) { cast(CI->getOperand(0)->getType())->getAddressSpace(); Value *I2 = InsertBitCastBefore(CI->getOperand(0), Context->getPointerType(Type::Int8Ty, AS), I); - I2 = InsertNewInstBefore(GetElementPtrInst::Create(I2, Other, "ctg2"), I); + GetElementPtrInst *GEP = GetElementPtrInst::Create(I2, Other, "ctg2"); + // A GEP formed from an arbitrary add may overflow. + cast(GEP)->setHasNoPointerOverflow(false); + I2 = InsertNewInstBefore(GEP, I); return new PtrToIntInst(I2, CI->getType()); } } @@ -8942,7 +8945,12 @@ Instruction *InstCombiner::visitIntToPtr(IntToPtrInst &CI) { // If Offset is evenly divisible by Size, we can do this xform. if (Size && !APIntOps::srem(Offset, APInt(Offset.getBitWidth(), Size))){ Offset = APIntOps::sdiv(Offset, APInt(Offset.getBitWidth(), Size)); - return GetElementPtrInst::Create(X, Context->getConstantInt(Offset)); + GetElementPtrInst *GEP = + GetElementPtrInst::Create(X, Context->getConstantInt(Offset)); + // A gep synthesized from inttoptr+add+ptrtoint must be assumed to + // potentially overflow, in the absense of further analysis. + cast(GEP)->setHasNoPointerOverflow(false); + return GEP; } } // TODO: Could handle other cases, e.g. where add is indexing into field of @@ -8966,8 +8974,12 @@ Instruction *InstCombiner::visitIntToPtr(IntToPtrInst &CI) { Instruction *P = InsertNewInstBefore(new IntToPtrInst(X, CI.getType(), "tmp"), CI); - return GetElementPtrInst::Create(P, - Context->getConstantInt(Offset), "tmp"); + GetElementPtrInst *GEP = + GetElementPtrInst::Create(P, Context->getConstantInt(Offset), "tmp"); + // A gep synthesized from inttoptr+add+ptrtoint must be assumed to + // potentially overflow, in the absense of further analysis. + cast(GEP)->setHasNoPointerOverflow(false); + return GEP; } } return 0; diff --git a/lib/VMCore/Value.cpp b/lib/VMCore/Value.cpp index b35ad507984..3322c681d8e 100644 --- a/lib/VMCore/Value.cpp +++ b/lib/VMCore/Value.cpp @@ -16,6 +16,7 @@ #include "llvm/DerivedTypes.h" #include "llvm/InstrTypes.h" #include "llvm/Instructions.h" +#include "llvm/Operator.h" #include "llvm/Module.h" #include "llvm/ValueSymbolTable.h" #include "llvm/Support/Debug.h" @@ -372,15 +373,12 @@ Value *Value::getUnderlyingObject() { Value *V = this; unsigned MaxLookup = 6; do { - if (Instruction *I = dyn_cast(V)) { - if (!isa(I) && !isa(I)) + if (Operator *O = dyn_cast(V)) { + if (O->getOpcode() != Instruction::BitCast && + (O->getOpcode() != Instruction::GetElementPtr || + !cast(V)->hasNoPointerOverflow())) return V; - V = I->getOperand(0); - } else if (ConstantExpr *CE = dyn_cast(V)) { - if (CE->getOpcode() != Instruction::BitCast && - CE->getOpcode() != Instruction::GetElementPtr) - return V; - V = CE->getOperand(0); + V = O->getOperand(0); } else { return V; }