diff options
author | Duncan Sands <baldrick@free.fr> | 2010-11-21 13:53:09 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2010-11-21 13:53:09 +0000 |
commit | cf4bceba49a8ce888ec205b90a2159256ec915bd (patch) | |
tree | ad487eeca0239e263ebbdef334b7654d95076024 /llvm/lib/Analysis | |
parent | 1f86be9164d4cf049e63659238d5fceea4a7174d (diff) | |
download | bcm5719-llvm-cf4bceba49a8ce888ec205b90a2159256ec915bd.tar.gz bcm5719-llvm-cf4bceba49a8ce888ec205b90a2159256ec915bd.zip |
Add a rather pointless InstructionSimplify transform, inspired by recent constant
folding improvements: if P points to a type of size zero, turn "gep P, N" into "P".
More generally, if a gep index type has size zero, instcombine could replace the
index with zero, but that is not done here.
llvm-svn: 119942
Diffstat (limited to 'llvm/lib/Analysis')
-rw-r--r-- | llvm/lib/Analysis/InstructionSimplify.cpp | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/InstructionSimplify.cpp b/llvm/lib/Analysis/InstructionSimplify.cpp index 97612f46d32..6b51b222e2f 100644 --- a/llvm/lib/Analysis/InstructionSimplify.cpp +++ b/llvm/lib/Analysis/InstructionSimplify.cpp @@ -18,6 +18,7 @@ #include "llvm/Analysis/Dominators.h" #include "llvm/Support/PatternMatch.h" #include "llvm/Support/ValueHandle.h" +#include "llvm/Target/TargetData.h" using namespace llvm; using namespace llvm::PatternMatch; @@ -698,11 +699,18 @@ Value *llvm::SimplifyGEPInst(Value *const *Ops, unsigned NumOps, //if (isa<UndefValue>(Ops[0])) // return UndefValue::get(GEP.getType()); - // getelementptr P, 0 -> P. - if (NumOps == 2) + if (NumOps == 2) { + // getelementptr P, 0 -> P. if (ConstantInt *C = dyn_cast<ConstantInt>(Ops[1])) if (C->isZero()) return Ops[0]; + // getelementptr P, N -> P if P points to a type of zero size. + if (TD) { + const Type *Ty = cast<PointerType>(Ops[0]->getType())->getElementType(); + if (Ty->isSized() && !TD->getTypeAllocSize(Ty)) + return Ops[0]; + } + } // Check to see if this is constant foldable. for (unsigned i = 0; i != NumOps; ++i) |