2009-09-12 09:23:48 +08:00
|
|
|
//===-- eqsf2vfp.S - Implement eqsf2vfp -----------------------------------===//
|
|
|
|
//
|
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-12 09:23:48 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-10-28 01:49:50 +08:00
|
|
|
#include "../assembly.h"
|
2009-09-12 09:23:48 +08:00
|
|
|
|
|
|
|
//
|
|
|
|
// extern int __eqsf2vfp(float a, float b);
|
|
|
|
//
|
|
|
|
// Returns one iff a == b and neither is NaN.
|
|
|
|
// Uses Darwin calling convention where single precision 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(__eqsf2vfp)
|
2017-01-12 00:19:25 +08:00
|
|
|
#if defined(COMPILER_RT_ARMHF_TARGET)
|
|
|
|
vcmp.f32 s0, s1
|
|
|
|
#else
|
2011-08-24 00:40:18 +08:00
|
|
|
vmov s14, r0 // move from GPR 0 to float register
|
|
|
|
vmov s15, r1 // move from GPR 1 to float register
|
|
|
|
vcmp.f32 s14, s15
|
2017-01-12 00:19:25 +08:00
|
|
|
#endif
|
2011-08-24 00:40:18 +08:00
|
|
|
vmrs apsr_nzcv, fpscr
|
2017-05-24 23:53:24 +08:00
|
|
|
ITE(eq)
|
2009-09-12 09:23:48 +08:00
|
|
|
moveq r0, #1 // set result register to 1 if equal
|
|
|
|
movne r0, #0
|
|
|
|
bx lr
|
2014-01-24 22:33:42 +08:00
|
|
|
END_COMPILERRT_FUNCTION(__eqsf2vfp)
|
2016-06-23 06:09:42 +08:00
|
|
|
|
|
|
|
NO_EXEC_STACK_DIRECTIVE
|
|
|
|
|