diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2008-05-06 22:52:30 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2008-05-06 22:52:30 +0000 |
commit | 82c02b28f3a1a3adef1638e801999952a2e47f1b (patch) | |
tree | e6892060704d4f123712bf8efc02824f7591f08e /llvm/lib/VMCore/Value.cpp | |
parent | ac81a5aad54e2d0c95a4fa436765006b671283dd (diff) | |
download | bcm5719-llvm-82c02b28f3a1a3adef1638e801999952a2e47f1b.tar.gz bcm5719-llvm-82c02b28f3a1a3adef1638e801999952a2e47f1b.zip |
Make StripPointerCast a common function (should we mak it method of Value instead?)
llvm-svn: 50775
Diffstat (limited to 'llvm/lib/VMCore/Value.cpp')
-rw-r--r-- | llvm/lib/VMCore/Value.cpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/llvm/lib/VMCore/Value.cpp b/llvm/lib/VMCore/Value.cpp index e55e558e0f9..93a71518eb1 100644 --- a/llvm/lib/VMCore/Value.cpp +++ b/llvm/lib/VMCore/Value.cpp @@ -12,6 +12,7 @@ //===----------------------------------------------------------------------===// #include "llvm/Constant.h" +#include "llvm/Constants.h" #include "llvm/DerivedTypes.h" #include "llvm/InstrTypes.h" #include "llvm/Instructions.h" @@ -331,3 +332,30 @@ void User::replaceUsesOfWith(Value *From, Value *To) { } } +//===----------------------------------------------------------------------===// +// Utility functions +//===----------------------------------------------------------------------===// + +Value *llvm::StripPointerCasts(Value *Ptr) { + if (ConstantExpr *CE = dyn_cast<ConstantExpr>(Ptr)) { + if (CE->getOpcode() == Instruction::BitCast) { + if (isa<PointerType>(CE->getOperand(0)->getType())) + return StripPointerCasts(CE->getOperand(0)); + } else if (CE->getOpcode() == Instruction::GetElementPtr) { + for (unsigned i = 1, e = CE->getNumOperands(); i != e; ++i) + if (!CE->getOperand(i)->isNullValue()) + return Ptr; + return StripPointerCasts(CE->getOperand(0)); + } + return Ptr; + } + + if (BitCastInst *CI = dyn_cast<BitCastInst>(Ptr)) { + if (isa<PointerType>(CI->getOperand(0)->getType())) + return StripPointerCasts(CI->getOperand(0)); + } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Ptr)) { + if (GEP->hasAllZeroIndices()) + return StripPointerCasts(GEP->getOperand(0)); + } + return Ptr; +} |