]> granicus.if.org Git - llvm/commit
X86 ISel: Basic support for variable-index vector permutations
authorZvi Rackover <zvi.rackover@intel.com>
Mon, 6 Nov 2017 08:25:46 +0000 (08:25 +0000)
committerZvi Rackover <zvi.rackover@intel.com>
Mon, 6 Nov 2017 08:25:46 +0000 (08:25 +0000)
commit807235c9ea1c7104eeafc04e5401f8b1fb5c2313
treedc89924a5007fe3169c53f7bc647813d1b8397af
parent150ca1191c0b68e379c1711fcc621a22decffb9d
X86 ISel: Basic support for variable-index vector permutations

Summary:
Try to lower a BUILD_VECTOR composed of extract-extract chains that can be
reasoned to be a permutation of a vector by indices in a non-constant vector.

We saw this pattern created by ISPC, which resolts to creating it due to the
requirement that shufflevector's mask operand be a *constant* vector.
I didn't check this but we could possibly use this pattern for lowering the X86 permute
C-instrinsics instead of llvm.x86 instrinsics.

This change can be followed by more improvements:
1. Handle vectors with undef elements.
2. Utilize pshufb and zero-mask-blending to support more effiecient
   construction of vectors with constant-0 elements.
3. Use smaller-element vectors of same width, and "interpolate" the indices,
   when no native operation available.

Reviewers: RKSimon, craig.topper

Reviewed By: RKSimon

Subscribers: chandlerc, DavidKreitzer

Differential Revision: https://reviews.llvm.org/D39126

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@317463 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Target/X86/X86ISelLowering.cpp
test/CodeGen/X86/var-permute-128.ll
test/CodeGen/X86/var-permute-256.ll
test/CodeGen/X86/var-permute-512.ll