X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=blobdiff_plain;f=lib%2FTransforms%2FInstCombine%2FInstCombineCasts.cpp;fp=lib%2FTransforms%2FInstCombine%2FInstCombineCasts.cpp;h=4afe1bb243ffde2f9f44bcfd1675b19b15c29843;hp=23bf40124b57ff5d936b6bba88a40929199f3537;hb=cf1e58c00294ee005b4b5269a75de4c80096ba50;hpb=4c8fe28374d0fee214c9af21329f5b0e93a14615 diff --git a/lib/Transforms/InstCombine/InstCombineCasts.cpp b/lib/Transforms/InstCombine/InstCombineCasts.cpp index 23bf40124b5..4afe1bb243f 100644 --- a/lib/Transforms/InstCombine/InstCombineCasts.cpp +++ b/lib/Transforms/InstCombine/InstCombineCasts.cpp @@ -1715,40 +1715,6 @@ static Value *optimizeIntegerToVectorInsertions(BitCastInst &CI, return Result; } -/// Given a bitcasted vector fed into an extract element instruction and then -/// bitcasted again, eliminate at least one bitcast by changing the vector type -/// of the extractelement instruction. -/// Example: -/// bitcast (extractelement (bitcast <2 x float> %X to <2 x i32>), 1) to float -/// ---> -/// extractelement <2 x float> %X, i32 1 -static Instruction *foldBitCastExtElt(BitCastInst &BitCast, InstCombiner &IC, - const DataLayout &DL) { - // TODO: Create and use a pattern matcher for ExtractElementInst. - auto *ExtElt = dyn_cast(BitCast.getOperand(0)); - if (!ExtElt || !ExtElt->hasOneUse()) - return nullptr; - - Value *InnerBitCast = nullptr; - if (!match(ExtElt->getOperand(0), m_BitCast(m_Value(InnerBitCast)))) - return nullptr; - - VectorType *VecType = cast(InnerBitCast->getType()); - Type *DestType = BitCast.getType(); - - // If the element type of the vector doesn't match the result type, - // bitcast it to a vector type that we can extract from. - if (VecType->getElementType() != DestType) { - unsigned VecWidth = VecType->getPrimitiveSizeInBits(); - unsigned DestWidth = DestType->getPrimitiveSizeInBits(); - unsigned NumElts = VecWidth / DestWidth; - VecType = VectorType::get(DestType, NumElts); - InnerBitCast = IC.Builder->CreateBitCast(InnerBitCast, VecType, "bc"); - } - - return ExtractElementInst::Create(InnerBitCast, ExtElt->getOperand(1)); -} - static Instruction *foldVecTruncToExtElt(Value *VecInput, Type *DestTy, unsigned ShiftAmt, InstCombiner &IC, const DataLayout &DL) { @@ -1920,9 +1886,6 @@ Instruction *InstCombiner::visitBitCast(BitCastInst &CI) { } } - if (Instruction *I = foldBitCastExtElt(CI, *this, DL)) - return I; - if (SrcTy->isPointerTy()) return commonPointerCastTransforms(CI); return commonCastTransforms(CI);