CellSPU:
[oota-llvm.git] / test / CodeGen / CellSPU / fneg-fabs.ll
1 ; RUN: llvm-as -o - %s | llc -march=cellspu > %t1.s
2 ; RUN: grep fsmbi   %t1.s | count 3
3 ; RUN: grep 32768   %t1.s | count 2
4 ; RUN: grep xor     %t1.s | count 4
5 ; RUN: grep and     %t1.s | count 5
6 ; RUN: grep andbi   %t1.s | count 3
7
8 target datalayout = "E-p:32:32:128-f64:64:128-f32:32:128-i64:32:128-i32:32:128-i16:16:128-i8:8:128-i1:8:128-a0:0:128-v128:128:128-s0:128:128"
9 target triple = "spu"
10
11 define double @fneg_dp(double %X) {
12         %Y = sub double -0.000000e+00, %X
13         ret double %Y
14 }
15
16 define <2 x double> @fneg_dp_vec(<2 x double> %X) {
17         %Y = sub <2 x double> < double -0.0000e+00, double -0.0000e+00 >, %X
18         ret <2 x double> %Y
19 }
20
21 define float @fneg_sp(float %X) {
22         %Y = sub float -0.000000e+00, %X
23         ret float %Y
24 }
25
26 define <4 x float> @fneg_sp_vec(<4 x float> %X) {
27         %Y = sub <4 x float> <float -0.000000e+00, float -0.000000e+00,
28                               float -0.000000e+00, float -0.000000e+00>, %X
29         ret <4 x float> %Y
30 }
31
32 declare double @fabs(double)
33
34 declare float @fabsf(float)
35
36 define double @fabs_dp(double %X) {
37         %Y = call double @fabs( double %X )
38         ret double %Y
39 }
40
41 define float @fabs_sp(float %X) {
42         %Y = call float @fabsf( float %X )
43         ret float %Y
44 }