[llvm] r254862 - Add vector fmaxnum tests that correspond to the existing fminnum tests

Sanjay Patel via llvm-commits llvm-commits at lists.llvm.org
Sat Dec 5 12:27:10 PST 2015


Author: spatel
Date: Sat Dec  5 14:27:10 2015
New Revision: 254862

URL: http://llvm.org/viewvc/llvm-project?rev=254862&view=rev
Log:
Add vector fmaxnum tests that correspond to the existing fminnum tests

Note: missing 256-bit tests for min and max should also be added.


Modified:
    llvm/trunk/test/CodeGen/X86/fmaxnum.ll

Modified: llvm/trunk/test/CodeGen/X86/fmaxnum.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/fmaxnum.ll?rev=254862&r1=254861&r2=254862&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/fmaxnum.ll (original)
+++ llvm/trunk/test/CodeGen/X86/fmaxnum.ll Sat Dec  5 14:27:10 2015
@@ -7,6 +7,12 @@ declare float @llvm.maxnum.f32(float, fl
 declare double @llvm.maxnum.f64(double, double)
 declare x86_fp80 @llvm.maxnum.f80(x86_fp80, x86_fp80)
 
+declare <2 x float> @llvm.maxnum.v2f32(<2 x float>, <2 x float>)
+declare <4 x float> @llvm.maxnum.v4f32(<4 x float>, <4 x float>)
+declare <2 x double> @llvm.maxnum.v2f64(<2 x double>, <2 x double>)
+declare <8 x double> @llvm.maxnum.v8f64(<8 x double>, <8 x double>)
+
+
 ; CHECK-LABEL: @test_fmaxf
 ; CHECK: calll fmaxf
 define float @test_fmaxf(float %x, float %y) {
@@ -48,3 +54,44 @@ define x86_fp80 @test_intrinsic_fmaxl(x8
   %z = call x86_fp80 @llvm.maxnum.f80(x86_fp80 %x, x86_fp80 %y) readnone
   ret x86_fp80 %z
 }
+
+; CHECK-LABEL: @test_intrinsic_fmax_v2f32
+; CHECK: calll fmaxf
+; CHECK: calll fmaxf
+define <2 x float> @test_intrinsic_fmax_v2f32(<2 x float> %x, <2 x float> %y) {
+  %z = call <2 x float> @llvm.maxnum.v2f32(<2 x float> %x, <2 x float> %y) readnone
+  ret <2 x float> %z
+}
+
+; CHECK-LABEL: @test_intrinsic_fmax_v4f32
+; CHECK: calll fmaxf
+; CHECK: calll fmaxf
+; CHECK: calll fmaxf
+; CHECK: calll fmaxf
+define <4 x float> @test_intrinsic_fmax_v4f32(<4 x float> %x, <4 x float> %y) {
+  %z = call <4 x float> @llvm.maxnum.v4f32(<4 x float> %x, <4 x float> %y) readnone
+  ret <4 x float> %z
+}
+
+; CHECK-LABEL: @test_intrinsic_fmax_v2f64
+; CHECK: calll fmax
+; CHECK: calll fmax
+define <2 x double> @test_intrinsic_fmax_v2f64(<2 x double> %x, <2 x double> %y) {
+  %z = call <2 x double> @llvm.maxnum.v2f64(<2 x double> %x, <2 x double> %y) readnone
+  ret <2 x double> %z
+}
+
+; CHECK-LABEL: @test_intrinsic_fmax_v8f64
+; CHECK: calll fmax
+; CHECK: calll fmax
+; CHECK: calll fmax
+; CHECK: calll fmax
+; CHECK: calll fmax
+; CHECK: calll fmax
+; CHECK: calll fmax
+; CHECK: calll fmax
+define <8 x double> @test_intrinsic_fmax_v8f64(<8 x double> %x, <8 x double> %y) {
+  %z = call <8 x double> @llvm.maxnum.v8f64(<8 x double> %x, <8 x double> %y) readnone
+  ret <8 x double> %z
+}
+




More information about the llvm-commits mailing list