]> granicus.if.org Git - llvm/commit
Merging r310552:
authorHans Wennborg <hans@hanshq.net>
Thu, 10 Aug 2017 17:36:36 +0000 (17:36 +0000)
committerHans Wennborg <hans@hanshq.net>
Thu, 10 Aug 2017 17:36:36 +0000 (17:36 +0000)
commit999f7b7049cddf652f0630e9094ee96ab1b4f5ee
treef6bd1932327c0888c2da91e54c3cfd7b0c96e135
parent366b5faf38a7644e6ae8a927ce5b363e7e814b78
Merging r310552:
------------------------------------------------------------------------
r310552 | eladcohen | 2017-08-10 00:44:23 -0700 (Thu, 10 Aug 2017) | 19 lines

[SelectionDAG] When scalarizing vselect, don't assert on
a legal cond operand.

When scalarizing the result of a vselect, the legalizer currently expects
to already have scalarized the operands. While this is true for the true/false
operands (which have the same type as the result), it is not case for the
condition operand. On X86 AVX512, v1i1 is legal - this leads to operations such
as '< N x type> vselect < N x i1> < N x type> < N x type>' where < N x type > is
illegal to hit an assertion during the scalarization.

The handling is similar to r205625.
This also exposes the fact that (v1i1 extract_subvector) should be legal
and selectable on AVX512 - We do this by custom lowering to vector_extract_elt.
This still leaves us in some cases with redundant dag nodes which will be
combined in a separate soon to come patch.

This fixes pr33349.

Differential revision: https://reviews.llvm.org/D36511
------------------------------------------------------------------------

git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_50@310635 91177308-0d34-0410-b5e6-96231b3b80d8
lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
lib/Target/X86/X86ISelLowering.cpp
test/CodeGen/X86/pr33349.ll [new file with mode: 0644]