diff options
author | Mehdi Amini <mehdi.amini@apple.com> | 2015-12-09 16:31:39 +0000 |
---|---|---|
committer | Mehdi Amini <mehdi.amini@apple.com> | 2015-12-09 16:31:39 +0000 |
commit | 4e2b7c454cdbd6ae4a5d25fede257b0177c1bc91 (patch) | |
tree | 10d7399d6c35f8fb2003759f7b8578f3d5a77fe7 /llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp | |
parent | 1cf96c0c34a4398c2bc0531c649d56ca805d2e30 (diff) | |
download | llvm-4e2b7c454cdbd6ae4a5d25fede257b0177c1bc91.zip llvm-4e2b7c454cdbd6ae4a5d25fede257b0177c1bc91.tar.gz llvm-4e2b7c454cdbd6ae4a5d25fede257b0177c1bc91.tar.bz2 |
Revert "[InstCombine] fold bitcasts around an extractelement"
This reverts commit r255124.
Broke http://lab.llvm.org:8011/builders/llvm-clang-lld-x86_64-scei-ps4-ubuntu-fast/builds/4193/steps/test/logs/stdio
From: Mehdi Amini <mehdi.amini@apple.com>
llvm-svn: 255126
Diffstat (limited to 'llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp')
-rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp b/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp index 23bf401..4afe1bb 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp +++ b/llvm/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<ExtractElementInst>(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<VectorType>(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); |