More fcopysign correctness and performance fix.
[oota-llvm.git] / test / CodeGen / ARM / fcopysign.ll
1 ; RUN: llc < %s -mtriple=armv7-apple-darwin -mcpu=cortex-a8 | FileCheck %s -check-prefix=SOFT
2 ; RUN: llc < %s -mtriple=armv7-gnueabi -float-abi=hard -mcpu=cortex-a8 | FileCheck %s -check-prefix=HARD
3
4 ; rdar://8984306
5 define float @test1(float %x, float %y) nounwind {
6 entry:
7 ; SOFT: test1:
8 ; SOFT: lsr r1, r1, #31
9 ; SOFT: bfi r0, r1, #31, #1
10
11 ; HARD: test1:
12 ; HARD: vmov.i32 [[REG1:(d[0-9]+)]], #0x80000000
13 ; HARD: vbsl [[REG1]], d2, d0
14   %0 = tail call float @copysignf(float %x, float %y) nounwind
15   ret float %0
16 }
17
18 define double @test2(double %x, double %y) nounwind {
19 entry:
20 ; SOFT: test2:
21 ; SOFT: lsr r2, r3, #31
22 ; SOFT: bfi r1, r2, #31, #1
23
24 ; HARD: test2:
25 ; HARD: vmov.i32 [[REG2:(d[0-9]+)]], #0x80000000
26 ; HARD: vshl.i64 [[REG2]], [[REG2]], #32
27 ; HARD: vbsl [[REG2]], d1, d0
28   %0 = tail call double @copysign(double %x, double %y) nounwind
29   ret double %0
30 }
31
32 define double @test3(double %x, double %y, double %z) nounwind {
33 entry:
34 ; SOFT: test3:
35 ; SOFT: vmov.i32 [[REG3:(d[0-9]+)]], #0x80000000
36 ; SOFT: vshl.i64 [[REG3]], [[REG3]], #32
37 ; SOFT: vbsl [[REG3]],
38   %0 = fmul double %x, %y
39   %1 = tail call double @copysign(double %0, double %z) nounwind
40   ret double %1
41 }
42
43 declare double @copysign(double, double) nounwind
44 declare float @copysignf(float, float) nounwind