]> granicus.if.org Git - llvm/commit
Merging r313366:
authorCraig Topper <craig.topper@intel.com>
Sun, 8 Oct 2017 23:49:29 +0000 (23:49 +0000)
committerCraig Topper <craig.topper@intel.com>
Sun, 8 Oct 2017 23:49:29 +0000 (23:49 +0000)
commitcbc2c76b286c38a1fd006543b6b224c06cd96df1
tree6b918659df7e4336e82c4c6784ca543e3b100629
parent9bc59d4c9b890fa1da21add315b63f3aa278c682
Merging r313366:
------------------------------------------------------------------------
r313366 | ctopper | 2017-09-15 10:09:03 -0700 (Fri, 15 Sep 2017) | 9 lines

[X86] Don't create i64 constants on 32-bit targets when lowering v64i1 constant build vectors

When handling a v64i1 build vector of constants on 32-bit targets we were creating an illegal i64 constant that we then bitcasted back to v64i1. We need to instead create two 32-bit constants, bitcast them to v32i1 and concat the result. We should also take care to handle the halves being all zeros/ones after the split.

This patch splits the build vector and then recursively lowers the two pieces. This allows us to handle the all ones and all zeros cases with minimal effort. Ideally we'd just do the split and concat, and let lowering get called again on the new nodes, but getNode has special handling for CONCAT_VECTORS that reassembles the pieces back into a single BUILD_VECTOR. Hopefully the two temporary BUILD_VECTORS we had to create to do this that don't get returned don't cause any issues.

Fixes PR34605.

Differential Revision: https://reviews.llvm.org/D37858
------------------------------------------------------------------------

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