[X86] Add an isel pattern for (i8 (trunc (i16 (bitconvert (v16i1 X))))) to avoid...
authorCraig Topper <craig.topper@intel.com>
Wed, 26 Aug 2020 01:20:41 +0000 (18:20 -0700)
committerCraig Topper <craig.topper@intel.com>
Wed, 26 Aug 2020 01:20:43 +0000 (18:20 -0700)
commit1d1515a9e28c7f32af548584ebed66cd8caae84f
tree35d5bc2c1ba4c7ec057e201a3785353f7fbabf27
parent8839e278ffcadc62b333423de07756488cae980f
[X86] Add an isel pattern for (i8 (trunc (i16 (bitconvert (v16i1 X))))) to avoid an extra EXTRACT_SUBREG

Since we can only copy to GR32 we had to EXTRACT from GR32, but
we would first go to GR16 and then the truncate would extra again
to GR8. This adds a special case to go directly from GR32 to GR8.
This would eventually get cleaned up, but though maybe we should
avoid doing it in the first place. Our k-register handling is weird
and we could probably stand to have some more special ISD nodes
for the conversions so the i32 type would be explicit.
llvm/lib/Target/X86/X86InstrAVX512.td