[x86] Teach the new vector shuffle lowering to be even more aggressive
authorChandler Carruth <chandlerc@gmail.com>
Wed, 1 Oct 2014 03:19:43 +0000 (03:19 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Wed, 1 Oct 2014 03:19:43 +0000 (03:19 +0000)
commit9e2fe4648453e9926348e394af0570448d0af083
treed1aa8899d41c97f6fad2094ecc6d9fb55204e7df
parent429670f0e8e25f6f6deb41a4e17a4ca0f91f1325
[x86] Teach the new vector shuffle lowering to be even more aggressive
in exposing the scalar value to the broadcast DAG fragment so that we
can catch even reloads and fold them into the broadcast.

This is somewhat magical I'm afraid but seems to work. It is also what
the old lowering did, and I've switched an old test to run both
lowerings demonstrating that we get the same result.

Unlike the old code, I'm not lowering f32 or f64 scalars through this
path when we only have AVX1. The target patterns include pretty heinous
code to re-cast those as shuffles when the scalar happens to not be
spilled because AVX1 provides no broadcast mechanism from registers
what-so-ever. This is terribly brittle. I'd much rather go through our
generic lowering code to get this. If needed, we can add a peephole to
get even more opportunities to broadcast-from-spill-slots that are
exposed post-RA, but my suspicion is this just doesn't matter that much.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218734 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Target/X86/X86ISelLowering.cpp
test/CodeGen/X86/2012-07-15-broadcastfold.ll