2009-09-12 04:02:01 +08:00
|
|
|
//===-- subsf3vfp.S - Implement subsf3vfp ---------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2010-11-17 06:13:33 +08:00
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
2009-09-12 04:02:01 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-10-28 01:49:50 +08:00
|
|
|
#include "../assembly.h"
|
2009-09-12 04:02:01 +08:00
|
|
|
|
|
|
|
//
|
|
|
|
// extern float __subsf3vfp(float a, float b);
|
|
|
|
//
|
2017-01-12 00:19:25 +08:00
|
|
|
// Returns the difference between two single precision floating point numbers
|
2009-09-12 04:02:01 +08:00
|
|
|
// using the Darwin calling convention where single arguments are passsed
|
|
|
|
// like 32-bit ints.
|
|
|
|
//
|
2011-08-24 00:40:18 +08:00
|
|
|
.syntax unified
|
2014-05-12 23:23:37 +08:00
|
|
|
.p2align 2
|
2009-10-28 01:50:21 +08:00
|
|
|
DEFINE_COMPILERRT_FUNCTION(__subsf3vfp)
|
2017-01-12 00:19:25 +08:00
|
|
|
#if defined(COMPILER_RT_ARMHF_TARGET)
|
|
|
|
vsub.f32 s0, s0, s1
|
2017-02-12 13:10:25 +08:00
|
|
|
#else
|
2011-08-24 00:40:18 +08:00
|
|
|
vmov s14, r0 // move first param from r0 into float register
|
|
|
|
vmov s15, r1 // move second param from r1 into float register
|
|
|
|
vsub.f32 s14, s14, s15
|
|
|
|
vmov r0, s14 // move result back to r0
|
2017-01-12 00:19:25 +08:00
|
|
|
#endif
|
2009-09-12 04:02:01 +08:00
|
|
|
bx lr
|
2014-01-24 22:33:42 +08:00
|
|
|
END_COMPILERRT_FUNCTION(__subsf3vfp)
|
2016-06-23 06:09:42 +08:00
|
|
|
|
|
|
|
NO_EXEC_STACK_DIRECTIVE
|
|
|
|
|