X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FCodeGen%2FPowerPC%2Frounding-ops.ll;h=42f12364eff3b89a8f49f753acd33a55d43e7e2f;hb=e48caeb48f4af56d1bb401951fb9d38496186050;hp=2b5e1c9a289ba2cc8b5d2a145e4c9a471f2a6323;hpb=5ee67e8e76dfcaffa5e776ef3d5eeb80807a627b;p=oota-llvm.git diff --git a/test/CodeGen/PowerPC/rounding-ops.ll b/test/CodeGen/PowerPC/rounding-ops.ll index 2b5e1c9a289..42f12364eff 100644 --- a/test/CodeGen/PowerPC/rounding-ops.ll +++ b/test/CodeGen/PowerPC/rounding-ops.ll @@ -1,5 +1,5 @@ -; RUN: llc < %s -mtriple=powerpc64-unknown-linux-gnu -mcpu=pwr7 | FileCheck %s -; RUN: llc < %s -mtriple=powerpc64-unknown-linux-gnu -mcpu=pwr7 -enable-unsafe-fp-math | FileCheck -check-prefix=CHECK-FM %s +; RUN: llc -mtriple=powerpc64-unknown-linux-gnu -mcpu=pwr7 -mattr=-vsx < %s | FileCheck %s +; RUN: llc -mtriple=powerpc64-unknown-linux-gnu -mcpu=pwr7 -mattr=+vsx < %s | FileCheck -check-prefix=CHECK-VSX %s target datalayout = "E-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f128:128:128-v128:128:128-n32:64" target triple = "powerpc64-unknown-linux-gnu" @@ -7,11 +7,10 @@ define float @test1(float %x) nounwind { %call = tail call float @floorf(float %x) nounwind readnone ret float %call -; CHECK: test1: +; CHECK-LABEL: test1: ; CHECK: frim 1, 1 - -; CHECK-FM: test1: -; CHECK-FM: frim 1, 1 +; CHECK-VSX-LABEL: test1: +; CHECK-VSX: frim 1, 1 } declare float @floorf(float) nounwind readnone @@ -20,50 +19,46 @@ define double @test2(double %x) nounwind { %call = tail call double @floor(double %x) nounwind readnone ret double %call -; CHECK: test2: +; CHECK-LABEL: test2: ; CHECK: frim 1, 1 - -; CHECK-FM: test2: -; CHECK-FM: frim 1, 1 +; CHECK-VSX-LABEL: test2: +; CHECK-VSX: xsrdpim 1, 1 } declare double @floor(double) nounwind readnone define float @test3(float %x) nounwind { - %call = tail call float @nearbyintf(float %x) nounwind readnone + %call = tail call float @roundf(float %x) nounwind readnone ret float %call -; CHECK: test3: -; CHECK-NOT: frin - -; CHECK-FM: test3: -; CHECK-FM: frin 1, 1 +; CHECK-LABEL: test3: +; CHECK: frin 1, 1 +; CHECK-VSX-LABEL: test3: +; CHECK-VSX: frin 1, 1 } -declare float @nearbyintf(float) nounwind readnone +declare float @roundf(float) nounwind readnone define double @test4(double %x) nounwind { - %call = tail call double @nearbyint(double %x) nounwind readnone + %call = tail call double @round(double %x) nounwind readnone ret double %call -; CHECK: test4: -; CHECK-NOT: frin - -; CHECK-FM: test4: -; CHECK-FM: frin 1, 1 +; CHECK-LABEL: test4: +; CHECK: frin 1, 1 +; CHECK-VSX-LABEL: test4: +; CHECK-VSX: xsrdpi 1, 1 } -declare double @nearbyint(double) nounwind readnone +declare double @round(double) nounwind readnone define float @test5(float %x) nounwind { %call = tail call float @ceilf(float %x) nounwind readnone ret float %call -; CHECK: test5: +; CHECK-LABEL: test5: ; CHECK: frip 1, 1 - -; CHECK-FM: test5: -; CHECK-FM: frip 1, 1 +; CHECK-VSX-LABEL: test5: +; CHECK-VSX: frip 1, 1 } declare float @ceilf(float) nounwind readnone @@ -72,11 +67,10 @@ define double @test6(double %x) nounwind { %call = tail call double @ceil(double %x) nounwind readnone ret double %call -; CHECK: test6: +; CHECK-LABEL: test6: ; CHECK: frip 1, 1 - -; CHECK-FM: test6: -; CHECK-FM: frip 1, 1 +; CHECK-VSX-LABEL: test6: +; CHECK-VSX: xsrdpip 1, 1 } declare double @ceil(double) nounwind readnone @@ -85,11 +79,10 @@ define float @test9(float %x) nounwind { %call = tail call float @truncf(float %x) nounwind readnone ret float %call -; CHECK: test9: +; CHECK-LABEL: test9: ; CHECK: friz 1, 1 - -; CHECK-FM: test9: -; CHECK-FM: friz 1, 1 +; CHECK-VSX-LABEL: test9: +; CHECK-VSX: friz 1, 1 } declare float @truncf(float) nounwind readnone @@ -98,50 +91,11 @@ define double @test10(double %x) nounwind { %call = tail call double @trunc(double %x) nounwind readnone ret double %call -; CHECK: test10: +; CHECK-LABEL: test10: ; CHECK: friz 1, 1 - -; CHECK-FM: test10: -; CHECK-FM: friz 1, 1 +; CHECK-VSX-LABEL: test10: +; CHECK-VSX: xsrdpiz 1, 1 } declare double @trunc(double) nounwind readnone -define void @test11(float %x, float* %y) nounwind { - %call = tail call float @rintf(float %x) nounwind readnone - store float %call, float* %y - ret void - -; CHECK: test11: -; CHECK-NOT: frin - -; CHECK-FM: test11: -; CHECK-FM: frin [[R2:[0-9]+]], [[R1:[0-9]+]] -; CHECK-FM: fcmpu [[CR:[0-9]+]], [[R2]], [[R1]] -; CHECK-FM: beq [[CR]], .LBB[[BB:[0-9]+]]_2 -; CHECK-FM: mtfsb1 6 -; CHECK-FM: .LBB[[BB]]_2: -; CHECK-FM: blr -} - -declare float @rintf(float) nounwind readnone - -define void @test12(double %x, double* %y) nounwind { - %call = tail call double @rint(double %x) nounwind readnone - store double %call, double* %y - ret void - -; CHECK: test12: -; CHECK-NOT: frin - -; CHECK-FM: test12: -; CHECK-FM: frin [[R2:[0-9]+]], [[R1:[0-9]+]] -; CHECK-FM: fcmpu [[CR:[0-9]+]], [[R2]], [[R1]] -; CHECK-FM: beq [[CR]], .LBB[[BB:[0-9]+]]_2 -; CHECK-FM: mtfsb1 6 -; CHECK-FM: .LBB[[BB]]_2: -; CHECK-FM: blr -} - -declare double @rint(double) nounwind readnone -