[InstCombine] fold bitcasts around an extractelement (3rd try)
authorSanjay Patel <spatel@rotateright.com>
Thu, 10 Dec 2015 17:09:28 +0000 (17:09 +0000)
committerSanjay Patel <spatel@rotateright.com>
Thu, 10 Dec 2015 17:09:28 +0000 (17:09 +0000)
commit2bce43140280644b88443f306a2858a5718a89f5
treec010f87e12854cc4043f91186837de613c8eed33
parent1b061251f0979e2fbf45fe959b1d15355991578a
[InstCombine] fold bitcasts around an extractelement (3rd try)

This is a redo of r255137 (reverted at r255227) which was a redo of
r255124 (reverted at r255126) with a fixed check for a scalar source
type and an added test for the failure that caused the revert.

Original commit message:

Example:
  bitcast (extractelement (bitcast <2 x float> %X to <2 x i32>), 1) to float
    --->
  extractelement <2 x float> %X, i32 1

This is part of fixing PR25543:
https://llvm.org/bugs/show_bug.cgi?id=25543

The next step will be to generalize this fold:
trunc ( lshr ( bitcast X) ) -> extractelement (X)

Ie, I'm hoping to replace the existing transform of:
bitcast ( trunc ( lshr ( bitcast X)))
added by:
http://reviews.llvm.org/rL112232

with 2 less specific transforms to catch the case in the bug report.

Differential Revision: http://reviews.llvm.org/D14879

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@255261 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Transforms/InstCombine/InstCombineCasts.cpp
test/Transforms/InstCombine/bitcast.ll