[X86][SSE] Reimplement SSE fp2si conversion intrinsics instead of using generic IR
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Wed, 20 Jul 2016 10:18:01 +0000 (10:18 +0000)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Wed, 20 Jul 2016 10:18:01 +0000 (10:18 +0000)
commite3b9ee0645a62b0be69c31f8a45cfd2195545998
treedd1f590f87c6eefaba0c436c14f71b1697138156
parentf345d40ae2a94a00cdb881934f6dae78e0dd0786
[X86][SSE] Reimplement SSE fp2si conversion intrinsics instead of using generic IR

D20859 and D20860 attempted to replace the SSE (V)CVTTPS2DQ and VCVTTPD2DQ truncating conversions with generic IR instead.

It turns out that the behaviour of these intrinsics is different enough from generic IR that this will cause problems, INF/NAN/out of range values are guaranteed to result in a 0x80000000 value - which plays havoc with constant folding which converts them to either zero or UNDEF. This is also an issue with the scalar implementations (which were already generic IR and what I was trying to match).

This patch changes both scalar and packed versions back to using x86-specific builtins.

It also deals with the other scalar conversion cases that are runtime rounding mode dependent and can have similar issues with constant folding.

Differential Revision: https://reviews.llvm.org/D22105

llvm-svn: 276102
clang/include/clang/Basic/BuiltinsX86.def
clang/lib/Headers/avxintrin.h
clang/lib/Headers/emmintrin.h
clang/lib/Headers/xmmintrin.h
clang/test/CodeGen/avx-builtins.c
clang/test/CodeGen/builtins-x86.c
clang/test/CodeGen/sse-builtins.c
clang/test/CodeGen/sse2-builtins.c