[X86][FastIsel] Avoid introducing legacy SSE instructions if the target has AVX.
authorAndrea Di Biagio <Andrea_DiBiagio@sn.scee.net>
Tue, 10 Feb 2015 12:04:41 +0000 (12:04 +0000)
committerAndrea Di Biagio <Andrea_DiBiagio@sn.scee.net>
Tue, 10 Feb 2015 12:04:41 +0000 (12:04 +0000)
commitbd1729e5d4d0c860732d5d1560554dd3e049452e
tree123206768fa091a6b4498372e036e1e8d2fca2ea
parent3e77df419d70e01fdfdb71bd89dbefa5ae220a55
[X86][FastIsel] Avoid introducing legacy SSE instructions if the target has AVX.

This patch teaches X86FastISel how to select AVX instructions for scalar
float/double convert operations.

Before this patch, X86FastISel always selected legacy SSE instructions
for FPExt (from float to double) and FPTrunc (from double to float).

For example:
\code
  define double @foo(float %f) {
    %conv = fpext float %f to double
    ret double %conv
  }
\end code

Before (with -mattr=+avx -fast-isel) X86FastIsel selected a CVTSS2SDrr which is
legacy SSE:
  cvtss2sd %xmm0, %xmm0

With this patch, X86FastIsel selects a VCVTSS2SDrr instead:
  vcvtss2sd %xmm0, %xmm0, %xmm0

Added test fast-isel-fptrunc-fpext.ll to check both the register-register and
the register-memory float/double conversion variants.

Differential Revision: http://reviews.llvm.org/D7438

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@228682 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Target/X86/X86FastISel.cpp
test/CodeGen/X86/fast-isel-fptrunc-fpext.ll [new file with mode: 0644]