]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/compiler-rt/lib/builtins/arm/negsf2vfp.S
Merge compiler-rt release_40 branch r292009.
[FreeBSD/FreeBSD.git] / contrib / compiler-rt / lib / builtins / arm / negsf2vfp.S
1 //===-- negsf2vfp.S - Implement negsf2vfp ---------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is dual licensed under the MIT and the University of Illinois Open
6 // Source Licenses. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #include "../assembly.h"
11
12 //
13 // extern float __negsf2vfp(float a);
14 //
15 // Returns the negation of a single precision floating point numbers using the 
16 // Darwin calling convention where single arguments are passsed like 32-bit ints
17 //
18         .syntax unified
19         .p2align 2
20 DEFINE_COMPILERRT_FUNCTION(__negsf2vfp)
21 #if defined(COMPILER_RT_ARMHF_TARGET)
22         vneg.f32 s0, s0
23 #else
24         eor     r0, r0, #-2147483648    // flip sign bit on float in r0
25 #endif
26         bx      lr
27 END_COMPILERRT_FUNCTION(__negsf2vfp)
28
29 NO_EXEC_STACK_DIRECTIVE
30