30 lines · plain
1; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py2; RUN: llc < %s -mtriple=i686-unknown -mattr=+sse2 | FileCheck %s3; RUN: llc < %s -mtriple=x86_64-unknown -mattr=+sse2 | FileCheck %s4 5define <2 x i64> @t1(<2 x i64> %b1, <2 x i64> %c) nounwind {6; CHECK-LABEL: t1:7; CHECK: # %bb.0:8; CHECK-NEXT: psrlw $14, %xmm09; CHECK-NEXT: ret{{[l|q]}}10 %tmp1 = bitcast <2 x i64> %b1 to <8 x i16>11 %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 readnone12 %tmp3 = bitcast <8 x i16> %tmp2 to <2 x i64>13 ret <2 x i64> %tmp314}15 16define <4 x i32> @t2(<2 x i64> %b1, <2 x i64> %c) nounwind {17; CHECK-LABEL: t2:18; CHECK: # %bb.0:19; CHECK-NEXT: movl $14, %eax20; CHECK-NEXT: movd %eax, %xmm121; CHECK-NEXT: pslld %xmm1, %xmm022; CHECK-NEXT: ret{{[l|q]}}23 %tmp1 = bitcast <2 x i64> %b1 to <4 x i32>24 %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 readnone25 ret <4 x i32> %tmp226}27 28declare <8 x i16> @llvm.x86.sse2.psrl.w(<8 x i16>, <8 x i16>) nounwind readnone29declare <4 x i32> @llvm.x86.sse2.psll.d(<4 x i32>, <4 x i32>) nounwind readnone30