2009-09-15 07:26:56 +08:00
|
|
|
//===-- floatunssisfvfp.S - Implement floatunssisfvfp ---------------------===//
|
|
|
|
//
|
2019-01-19 18:56:40 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2009-09-15 07:26:56 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-10-28 01:49:50 +08:00
|
|
|
#include "../assembly.h"
|
2009-09-15 07:26:56 +08:00
|
|
|
|
|
|
|
//
|
|
|
|
// extern float __floatunssisfvfp(unsigned int a);
|
|
|
|
//
|
|
|
|
// Converts single precision float to a 32-bit int rounding towards zero.
|
2019-04-29 06:47:49 +08:00
|
|
|
// Uses Darwin calling convention where a single precision result is
|
2009-09-15 07:26:56 +08:00
|
|
|
// return in a GPR..
|
|
|
|
//
|
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(__floatunssisfvfp)
|
2017-01-12 00:19:25 +08:00
|
|
|
#if defined(COMPILER_RT_ARMHF_TARGET)
|
|
|
|
vmov s0, r0
|
|
|
|
vcvt.f32.u32 s0, s0
|
|
|
|
#else
|
2011-08-24 00:40:18 +08:00
|
|
|
vmov s15, r0 // move int to float register s15
|
|
|
|
vcvt.f32.u32 s15, s15 // convert 32-bit int in s15 to float in s15
|
|
|
|
vmov r0, s15 // move s15 to result register
|
2017-01-12 00:19:25 +08:00
|
|
|
#endif
|
2009-09-15 07:26:56 +08:00
|
|
|
bx lr
|
2014-01-24 22:33:42 +08:00
|
|
|
END_COMPILERRT_FUNCTION(__floatunssisfvfp)
|
2016-06-23 06:09:42 +08:00
|
|
|
|
|
|
|
NO_EXEC_STACK_DIRECTIVE
|
|
|
|
|