From: Dan Gohman Date: Fri, 1 May 2009 17:00:00 +0000 (+0000) Subject: Short-circuit inttoptr-ptrtoint constant expressions; these aren't X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=80dcdee0f48820ecea86c15768324945bb0d68d1;p=oota-llvm.git Short-circuit inttoptr-ptrtoint constant expressions; these aren't always folded by the regular constant folder because it doesn't have TargetData information. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@70553 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/ScalarEvolutionExpander.cpp b/lib/Analysis/ScalarEvolutionExpander.cpp index 9676ea20af5..be91c0d7249 100644 --- a/lib/Analysis/ScalarEvolutionExpander.cpp +++ b/lib/Analysis/ScalarEvolutionExpander.cpp @@ -27,13 +27,20 @@ Value *SCEVExpander::InsertCastOfTo(Instruction::CastOps opcode, Value *V, // Short-circuit unnecessary inttoptr<->ptrtoint casts. if ((opcode == Instruction::PtrToInt || opcode == Instruction::IntToPtr) && - SE.getTypeSizeInBits(Ty) == SE.getTypeSizeInBits(V->getType())) + SE.getTypeSizeInBits(Ty) == SE.getTypeSizeInBits(V->getType())) { if (CastInst *CI = dyn_cast(V)) if ((CI->getOpcode() == Instruction::PtrToInt || CI->getOpcode() == Instruction::IntToPtr) && SE.getTypeSizeInBits(CI->getType()) == SE.getTypeSizeInBits(CI->getOperand(0)->getType())) return CI->getOperand(0); + if (ConstantExpr *CE = dyn_cast(V)) + if ((CE->getOpcode() == Instruction::PtrToInt || + CE->getOpcode() == Instruction::IntToPtr) && + SE.getTypeSizeInBits(CE->getType()) == + SE.getTypeSizeInBits(CE->getOperand(0)->getType())) + return CE->getOperand(0); + } // FIXME: keep track of the cast instruction. if (Constant *C = dyn_cast(V))