[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / X86 / vec_shift2.ll
bloba38187f190f993eb592f93ac22ffff384af94d33
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc < %s -mtriple=i686-unknown -mattr=+sse2 | FileCheck %s --check-prefix=X32
3 ; RUN: llc < %s -mtriple=x86_64-unknown -mattr=+sse2 | FileCheck %s --check-prefix=X64
5 define <2 x i64> @t1(<2 x i64> %b1, <2 x i64> %c) nounwind  {
6 ; X32-LABEL: t1:
7 ; X32:       # %bb.0:
8 ; X32-NEXT:    psrlw $14, %xmm0
9 ; X32-NEXT:    retl
11 ; X64-LABEL: t1:
12 ; X64:       # %bb.0:
13 ; X64-NEXT:    psrlw $14, %xmm0
14 ; X64-NEXT:    retq
15         %tmp1 = bitcast <2 x i64> %b1 to <8 x i16>
16         %tmp2 = tail call <8 x i16> @llvm.x86.sse2.psrl.w( <8 x i16> %tmp1, <8 x i16> bitcast (<4 x i32> < i32 14, i32 undef, i32 undef, i32 undef > to <8 x i16>) ) nounwind readnone
17         %tmp3 = bitcast <8 x i16> %tmp2 to <2 x i64>
18         ret <2 x i64> %tmp3
21 define <4 x i32> @t2(<2 x i64> %b1, <2 x i64> %c) nounwind  {
22 ; X32-LABEL: t2:
23 ; X32:       # %bb.0:
24 ; X32-NEXT:    movl $14, %eax
25 ; X32-NEXT:    movd %eax, %xmm1
26 ; X32-NEXT:    pslld %xmm1, %xmm0
27 ; X32-NEXT:    retl
29 ; X64-LABEL: t2:
30 ; X64:       # %bb.0:
31 ; X64-NEXT:    movl $14, %eax
32 ; X64-NEXT:    movd %eax, %xmm1
33 ; X64-NEXT:    pslld %xmm1, %xmm0
34 ; X64-NEXT:    retq
35         %tmp1 = bitcast <2 x i64> %b1 to <4 x i32>
36         %tmp2 = tail call <4 x i32> @llvm.x86.sse2.psll.d( <4 x i32> %tmp1, <4 x i32> < i32 14, i32 undef, i32 undef, i32 undef > ) nounwind readnone
37         ret <4 x i32> %tmp2
40 declare <8 x i16> @llvm.x86.sse2.psrl.w(<8 x i16>, <8 x i16>) nounwind readnone
41 declare <4 x i32> @llvm.x86.sse2.psll.d(<4 x i32>, <4 x i32>) nounwind readnone