[LLVM][Alignment] Make functions using log of alignment explicit
[llvm-complete.git] / test / CodeGen / PowerPC / qpx-rounding-ops.ll
blobee3357156a6c0af634206391308087be872a4ef2
1 ; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc64-unknown-linux-gnu -mcpu=a2q | FileCheck %s
2 ; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc64-unknown-linux-gnu -mcpu=a2q -enable-unsafe-fp-math | FileCheck -check-prefix=CHECK-FM %s
3 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"
4 target triple = "powerpc64-unknown-linux-gnu"
6 define <4 x float> @test1(<4 x float> %x) nounwind  {
7   %call = tail call <4 x float> @llvm.floor.v4f32(<4 x float> %x) nounwind readnone
8   ret <4 x float> %call
10 ; CHECK: test1:
11 ; CHECK: qvfrim 1, 1
13 ; CHECK-FM: test1:
14 ; CHECK-FM: qvfrim 1, 1
17 declare <4 x float> @llvm.floor.v4f32(<4 x float>) nounwind readnone
19 define <4 x double> @test2(<4 x double> %x) nounwind  {
20   %call = tail call <4 x double> @llvm.floor.v4f64(<4 x double> %x) nounwind readnone
21   ret <4 x double> %call
23 ; CHECK: test2:
24 ; CHECK: qvfrim 1, 1
26 ; CHECK-FM: test2:
27 ; CHECK-FM: qvfrim 1, 1
30 declare <4 x double> @llvm.floor.v4f64(<4 x double>) nounwind readnone
32 define <4 x float> @test3(<4 x float> %x) nounwind  {
33   %call = tail call <4 x float> @llvm.nearbyint.v4f32(<4 x float> %x) nounwind readnone
34   ret <4 x float> %call
36 ; CHECK: test3:
37 ; CHECK-NOT: qvfrin
39 ; CHECK-FM: test3:
40 ; CHECK-FM-NOT: qvfrin
43 declare <4 x float> @llvm.nearbyint.v4f32(<4 x float>) nounwind readnone
45 define <4 x double> @test4(<4 x double> %x) nounwind  {
46   %call = tail call <4 x double> @llvm.nearbyint.v4f64(<4 x double> %x) nounwind readnone
47   ret <4 x double> %call
49 ; CHECK: test4:
50 ; CHECK-NOT: qvfrin
52 ; CHECK-FM: test4:
53 ; CHECK-FM-NOT: qvfrin
56 declare <4 x double> @llvm.nearbyint.v4f64(<4 x double>) nounwind readnone
58 define <4 x float> @test5(<4 x float> %x) nounwind  {
59   %call = tail call <4 x float> @llvm.ceil.v4f32(<4 x float> %x) nounwind readnone
60   ret <4 x float> %call
62 ; CHECK: test5:
63 ; CHECK: qvfrip 1, 1
65 ; CHECK-FM: test5:
66 ; CHECK-FM: qvfrip 1, 1
69 declare <4 x float> @llvm.ceil.v4f32(<4 x float>) nounwind readnone
71 define <4 x double> @test6(<4 x double> %x) nounwind  {
72   %call = tail call <4 x double> @llvm.ceil.v4f64(<4 x double> %x) nounwind readnone
73   ret <4 x double> %call
75 ; CHECK: test6:
76 ; CHECK: qvfrip 1, 1
78 ; CHECK-FM: test6:
79 ; CHECK-FM: qvfrip 1, 1
82 declare <4 x double> @llvm.ceil.v4f64(<4 x double>) nounwind readnone
84 define <4 x float> @test9(<4 x float> %x) nounwind  {
85   %call = tail call <4 x float> @llvm.trunc.v4f32(<4 x float> %x) nounwind readnone
86   ret <4 x float> %call
88 ; CHECK: test9:
89 ; CHECK: qvfriz 1, 1
91 ; CHECK-FM: test9:
92 ; CHECK-FM: qvfriz 1, 1
95 declare <4 x float> @llvm.trunc.v4f32(<4 x float>) nounwind readnone
97 define <4 x double> @test10(<4 x double> %x) nounwind  {
98   %call = tail call <4 x double> @llvm.trunc.v4f64(<4 x double> %x) nounwind readnone
99   ret <4 x double> %call
101 ; CHECK: test10:
102 ; CHECK: qvfriz 1, 1
104 ; CHECK-FM: test10:
105 ; CHECK-FM: qvfriz 1, 1
108 declare <4 x double> @llvm.trunc.v4f64(<4 x double>) nounwind readnone