Scott Michel | 0a92af4 | 2007-12-19 20:50:49 +0000 | [diff] [blame] | 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 |
Scott Michel | 9de5d0d | 2008-01-11 02:53:15 +0000 | [diff] [blame^] | 7 | 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" |
| 8 | target triple = "spu" |
Scott Michel | 0a92af4 | 2007-12-19 20:50:49 +0000 | [diff] [blame] | 9 | |
| 10 | define double @fneg_dp(double %X) { |
| 11 | %Y = sub double -0.000000e+00, %X |
| 12 | ret double %Y |
| 13 | } |
| 14 | |
| 15 | define <2 x double> @fneg_dp_vec(<2 x double> %X) { |
| 16 | %Y = sub <2 x double> < double -0.0000e+00, double -0.0000e+00 >, %X |
| 17 | ret <2 x double> %Y |
| 18 | } |
| 19 | |
| 20 | define float @fneg_sp(float %X) { |
| 21 | %Y = sub float -0.000000e+00, %X |
| 22 | ret float %Y |
| 23 | } |
| 24 | |
| 25 | define <4 x float> @fneg_sp_vec(<4 x float> %X) { |
| 26 | %Y = sub <4 x float> <float -0.000000e+00, float -0.000000e+00, |
| 27 | float -0.000000e+00, float -0.000000e+00>, %X |
| 28 | ret <4 x float> %Y |
| 29 | } |
| 30 | |
| 31 | declare double @fabs(double) |
| 32 | |
| 33 | declare float @fabsf(float) |
| 34 | |
| 35 | define double @fabs_dp(double %X) { |
| 36 | %Y = call double @fabs( double %X ) ; <double> [#uses=1] |
| 37 | ret double %Y |
| 38 | } |
| 39 | |
| 40 | define float @fabs_sp(float %X) { |
| 41 | %Y = call float @fabsf( float %X ) ; <float> [#uses=1] |
| 42 | ret float %Y |
| 43 | } |