[x86] Give movss and movsd execution domains in the x86 backend.
authorChandler Carruth <chandlerc@gmail.com>
Wed, 4 Feb 2015 10:58:53 +0000 (10:58 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Wed, 4 Feb 2015 10:58:53 +0000 (10:58 +0000)
commit4d31f58c8833427bb51a49c48868f4ce46fe5fa9
tree906b8577e4d0f5639030a937c83e2355fe03f4d2
parent9180f96cfe0aa1157cc76961f75a513c9f2f47e5
[x86] Give movss and movsd execution domains in the x86 backend.

This associates movss and movsd with the packed single and packed double
execution domains (resp.). While this is largely cosmetic, as we now
don't have weird ping-pong-ing between single and double precision, it
is also useful because it avoids the domain fixing algorithm from seeing
domain breaks that don't actually exist. It will also be much more
important if we have an execution domain default other than packed
single, as that would cause us to mix movss and movsd with integer
vector code on a regular basis, a very bad mixture.

llvm-svn: 228135
llvm/lib/Target/X86/X86InstrFormats.td
llvm/lib/Target/X86/X86InstrSSE.td
llvm/test/CodeGen/X86/sse2.ll
llvm/test/CodeGen/X86/uint_to_fp-2.ll
llvm/test/CodeGen/X86/vector-blend.ll
llvm/test/CodeGen/X86/vector-shuffle-128-v2.ll
llvm/test/CodeGen/X86/vector-shuffle-128-v4.ll
llvm/test/CodeGen/X86/vector-shuffle-256-v4.ll
llvm/test/CodeGen/X86/vector-shuffle-combining.ll
llvm/test/CodeGen/X86/vselect-2.ll
llvm/test/CodeGen/X86/vselect.ll