1214152Sed//===-- floatsisfvfp.S - Implement floatsisfvfp ---------------------------===//
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 float __floatsisfvfp(int a);
14214152Sed//
15214152Sed// Converts single precision float to a 32-bit int rounding towards zero.
16214152Sed// Uses Darwin calling convention where a single precision result is
17214152Sed// return in a GPR..
18214152Sed//
19229135Sed	.syntax unified
20214152Sed	.align 2
21214152SedDEFINE_COMPILERRT_FUNCTION(__floatsisfvfp)
22229135Sed	vmov	s15, r0	       // move int to float register s15
23229135Sed	vcvt.f32.s32 s15, s15  // convert 32-bit int in s15 to float in s15
24229135Sed	vmov	r0, s15        // move s15 to result register
25214152Sed	bx	lr
26