1214152Sed//===-- fixsfsivfp.S - Implement fixsfsivfp -----------------------===//
2214152Sed//
3214152Sed//                     The LLVM Compiler Infrastructure
4214152Sed//
5222656Sed// This file is dual licensed under the MIT and the University of Illinois Open
6222656Sed// Source Licenses. See LICENSE.TXT for details.
7214152Sed//
8214152Sed//===----------------------------------------------------------------------===//
9214152Sed
10214152Sed#include "../assembly.h"
11214152Sed
12214152Sed//
13214152Sed// extern int __fixsfsivfp(float a);
14214152Sed//
15214152Sed// Converts single precision float to a 32-bit int rounding towards zero.
16214152Sed// Uses Darwin calling convention where a single precision parameter is
17214152Sed// passed in a GPR..
18214152Sed//
19229135Sed	.syntax unified
20214152Sed	.align 2
21214152SedDEFINE_COMPILERRT_FUNCTION(__fixsfsivfp)
22229135Sed	vmov	s15, r0        // load float register from R0
23229135Sed	vcvt.s32.f32 s15, s15  // convert single to 32-bit int into s15
24229135Sed	vmov	r0, s15	       // move s15 to result register
25214152Sed	bx	lr
26