diff options
author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2015-09-23 08:48:33 +0000 |
---|---|---|
committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2015-09-23 08:48:33 +0000 |
commit | 9cb018b6b66ceb2ae999d4f4c5e299d3062cb9d6 (patch) | |
tree | 31cb046792242ecd5b7f2bd3ccd27351a1a8a90c /llvm/lib/Transforms/InstCombine | |
parent | d89ae9d3accb4cb8b7357932c3dfba8f4ae383c4 (diff) | |
download | bcm5719-llvm-9cb018b6b66ceb2ae999d4f4c5e299d3062cb9d6.tar.gz bcm5719-llvm-9cb018b6b66ceb2ae999d4f4c5e299d3062cb9d6.zip |
[X86][SSE] Replace 128-bit SSE41 PMOVSX intrinsics with native IR
This patches removes the x86.sse41.pmovsx* intrinsics, provides a suitable upgrade path and updates relevant tests to sign extend a subvector instead.
LLVM counterpart to D12835
Differential Revision: http://reviews.llvm.org/D13002
llvm-svn: 248368
Diffstat (limited to 'llvm/lib/Transforms/InstCombine')
-rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp b/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp index 1cb0b59b867..33e26b12e01 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp +++ b/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp @@ -936,12 +936,6 @@ Instruction *InstCombiner::visitCallInst(CallInst &CI) { break; } - case Intrinsic::x86_sse41_pmovsxbd: - case Intrinsic::x86_sse41_pmovsxbq: - case Intrinsic::x86_sse41_pmovsxbw: - case Intrinsic::x86_sse41_pmovsxdq: - case Intrinsic::x86_sse41_pmovsxwd: - case Intrinsic::x86_sse41_pmovsxwq: case Intrinsic::x86_avx2_pmovsxbd: case Intrinsic::x86_avx2_pmovsxbq: case Intrinsic::x86_avx2_pmovsxbw: |