[AVX512] add PSRAV Intrinsic
[oota-llvm.git] / test / CodeGen / X86 / scalar_sse_minmax.ll
index 61894a4a20c50565248263b07c257d8ff0f765cd..5ca3f85ce029897fca03005b1e9108ccff7cc382 100644 (file)
@@ -1,44 +1,53 @@
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -mattr=+sse1,+sse2 | \
-; RUN:   grep mins | wc -l | grep 3
-; RUN: llvm-upgrade < %s | llvm-as | llc -march=x86 -mattr=+sse1,+sse2 | \
-; RUN:   grep maxs | wc -l | grep 2
+; RUN: llc < %s -march=x86 -mattr=+sse,+sse2 | FileCheck %s
 
-declare bool %llvm.isunordered.f64( double %x, double %y )
-declare bool %llvm.isunordered.f32( float %x, float %y )
-
-implementation
-
-float %min1(float %x, float %y) {
-        %tmp = setlt float %x, %y               ; <bool> [#uses=1]
-        %retval = select bool %tmp, float %x, float %y          ; <float> [#uses=1]
-        ret float %retval
+define float @min1(float %x, float %y) {
+; CHECK-LABEL: min1
+; CHECK: mins
+       %tmp = fcmp olt float %x, %y
+       %retval = select i1 %tmp, float %x, float %y
+       ret float %retval
 }
-double %min2(double %x, double %y) {
-        %tmp = setlt double %x, %y
-        %retval = select bool %tmp, double %x, double %y
-        ret double %retval
+
+define double @min2(double %x, double %y) {
+; CHECK-LABEL: min2
+; CHECK: mins
+       %tmp = fcmp olt double %x, %y
+       %retval = select i1 %tmp, double %x, double %y
+       ret double %retval
 }
 
-float %max1(float %x, float %y) {
-        %tmp = setge float %x, %y               ; <bool> [#uses=1]
-        %tmp2 = tail call bool %llvm.isunordered.f32( float %x, float %y )
-        %tmp3 = or bool %tmp2, %tmp             ; <bool> [#uses=1]
-        %retval = select bool %tmp3, float %x, float %y         
-        ret float %retval
+declare <4 x float> @llvm.x86.sse.min.ss(<4 x float>, <4 x float>)
+define <4 x float> @min3(float %x, float %y) {
+; CHECK-LABEL: min3
+; CHECK: mins
+       %vec0 = insertelement <4 x float> undef, float %x, i32 0
+       %vec1 = insertelement <4 x float> undef, float %y, i32 0
+       %retval = tail call <4 x float> @llvm.x86.sse.min.ss(<4 x float> %vec0, <4 x float> %vec1)
+       ret <4 x float> %retval
 }
 
-double %max2(double %x, double %y) {
-        %tmp = setge double %x, %y               ; <bool> [#uses=1]
-        %tmp2 = tail call bool %llvm.isunordered.f64( double %x, double %y )
-        %tmp3 = or bool %tmp2, %tmp             ; <bool> [#uses=1]
-        %retval = select bool %tmp3, double %x, double %y
-        ret double %retval
+define float @max1(float %x, float %y) {
+; CHECK-LABEL: max1
+; CHECK: maxs
+       %tmp = fcmp uge float %x, %y
+       %retval = select i1 %tmp, float %x, float %y
+       ret float %retval
 }
 
-<4 x float> %min3(float %tmp37) {
-        %tmp375 = insertelement <4 x float> undef, float %tmp37, uint 0
-        %tmp48 = tail call <4 x float> %llvm.x86.sse.min.ss( <4 x float> %tmp375, <4 x float> < float 6.553500e+04, float undef, float undef, float undef > )
-       ret <4 x float> %tmp48
+define double @max2(double %x, double %y) {
+; CHECK-LABEL: max2
+; CHECK: maxs
+       %tmp = fcmp uge double %x, %y
+       %retval = select i1 %tmp, double %x, double %y
+       ret double %retval
 }
 
-declare <4 x float> %llvm.x86.sse.min.ss(<4 x float>, <4 x float>)
+declare <4 x float> @llvm.x86.sse.max.ss(<4 x float>, <4 x float>)
+define <4 x float> @max3(float %x, float %y) {
+; CHECK-LABEL: max3
+; CHECK: maxs
+       %vec0 = insertelement <4 x float> undef, float %x, i32 0
+       %vec1 = insertelement <4 x float> undef, float %y, i32 0
+       %retval = tail call <4 x float> @llvm.x86.sse.max.ss(<4 x float> %vec0, <4 x float> %vec1)
+       ret <4 x float> %retval
+}