2009-09-12 04:02:01 +08:00
|
|
|
//===-- divsf3vfp.S - Implement divsf3vfp ---------------------------------===//
|
|
|
|
//
|
|
|
|
// 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 __divsf3vfp(float a, float b);
|
|
|
|
//
|
|
|
|
// Divides two single precision floating point numbers 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(__divsf3vfp)
|
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
|
|
|
|
vdiv.f32 s13, s14, s15
|
|
|
|
vmov r0, s13 // move result back to r0
|
2009-09-12 04:02:01 +08:00
|
|
|
bx lr
|
2014-01-24 22:33:42 +08:00
|
|
|
END_COMPILERRT_FUNCTION(__divsf3vfp)
|
2016-06-23 06:09:42 +08:00
|
|
|
|
|
|
|
NO_EXEC_STACK_DIRECTIVE
|
|
|
|
|