/*-1* SPDX-License-Identifier: BSD-2-Clause2*3* Copyright (C) 2012 Andrew Turner4* All rights reserved.5*6* Redistribution and use in source and binary forms, with or without7* modification, are permitted provided that the following conditions8* are met:9* 1. Redistributions of source code must retain the above copyright10* notice, this list of conditions and the following disclaimer.11* 2. Redistributions in binary form must reproduce the above copyright12* notice, this list of conditions and the following disclaimer in the13* documentation and/or other materials provided with the distribution.14*15* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND16* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE17* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE18* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE19* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL20* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS21* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)22* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT23* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY24* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF25* SUCH DAMAGE.26*27*/2829#include "softfloat-for-gcc.h"30#include "milieu.h"31#include "softfloat.h"3233#include "aeabi_vfp.h"3435extern int _libc_arm_fpu_present;3637flag __unorddf2(float64, float64);3839/* These are written in asm and are only called from this file */40int __aeabi_dcmpeq_vfp(float64, float64);41int __aeabi_dcmplt_vfp(float64, float64);42int __aeabi_dcmple_vfp(float64, float64);43int __aeabi_dcmpgt_vfp(float64, float64);44int __aeabi_dcmpge_vfp(float64, float64);45int __aeabi_dcmpun_vfp(float64, float64);46int __aeabi_d2iz_vfp(float64);47float32 __aeabi_d2f_vfp(float64);48float64 __aeabi_i2d_vfp(int);49float64 __aeabi_dadd_vfp(float64, float64);50float64 __aeabi_ddiv_vfp(float64, float64);51float64 __aeabi_dmul_vfp(float64, float64);52float64 __aeabi_dsub_vfp(float64, float64);5354/*55* Depending on the target these will:56* On armv7 with a vfp call the above function, or57* Call the softfloat function in the 3rd argument.58*/59int AEABI_FUNC2(dcmpeq, float64, float64_eq)60int AEABI_FUNC2(dcmplt, float64, float64_lt)61int AEABI_FUNC2(dcmple, float64, float64_le)62int AEABI_FUNC2_REV(dcmpge, float64, float64_le)63int AEABI_FUNC2_REV(dcmpgt, float64, float64_lt)64int AEABI_FUNC2(dcmpun, float64, __unorddf2)6566int AEABI_FUNC(d2iz, float64, float64_to_int32_round_to_zero)67float32 AEABI_FUNC(d2f, float64, float64_to_float32)68float64 AEABI_FUNC(i2d, int, int32_to_float64)6970float64 AEABI_FUNC2(dadd, float64, float64_add)71float64 AEABI_FUNC2(ddiv, float64, float64_div)72float64 AEABI_FUNC2(dmul, float64, float64_mul)73float64 AEABI_FUNC2(dsub, float64, float64_sub)7475int76__aeabi_cdcmpeq_helper(float64 a, float64 b)77{78int quiet = 0;7980/* Check if a is a NaN */81if ((a << 1) > 0xffe0000000000000ull) {82/* If it's a signalling NaN we will always signal */83if ((a & 0x0008000000000000ull) == 0)84return (0);8586quiet = 1;87}8889/* Check if b is a NaN */90if ((b << 1) > 0xffe0000000000000ull) {91/* If it's a signalling NaN we will always signal */92if ((b & 0x0008000000000000ull) == 0)93return (0);9495quiet = 1;96}9798return (quiet);99}100101102