1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/ossrv_pub/math_operations_api/inc/stdapis/fenv.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,268 @@
1.4 +/*-
1.5 + * Copyright (c) 2004-2005 David Schultz <das@FreeBSD.ORG>
1.6 + * All rights reserved.
1.7 + *
1.8 + * Redistribution and use in source and binary forms, with or without
1.9 + * modification, are permitted provided that the following conditions
1.10 + * are met:
1.11 + * 1. Redistributions of source code must retain the above copyright
1.12 + * notice, this list of conditions and the following disclaimer.
1.13 + * 2. Redistributions in binary form must reproduce the above copyright
1.14 + * notice, this list of conditions and the following disclaimer in the
1.15 + * documentation and/or other materials provided with the distribution.
1.16 + *
1.17 + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1.18 + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1.19 + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1.20 + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1.21 + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1.22 + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
1.23 + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
1.24 + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
1.25 + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
1.26 + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
1.27 + * SUCH DAMAGE.
1.28 + *
1.29 + * $FreeBSD: src/lib/msun/arm/fenv.h,v 1.5 2005/03/16 19:03:45 das Exp $
1.30 + */
1.31 +
1.32 +#ifndef _FENV_H_
1.33 +#define _FENV_H_
1.34 +
1.35 +#if (defined(__SYMBIAN32__) && !defined(SYMBIAN))
1.36 +#define SYMBIAN
1.37 +#endif
1.38 +
1.39 +#include <sys/_types.h>
1.40 +
1.41 +#ifdef __WINSCW__
1.42 +/*to supress warnings 'arguments not used in function'
1.43 +This warnings crop up wherever fevn.h is included. So
1.44 +it is desirable to supress it here. The warning arises as a
1.45 +fact that these arguments are used within macros which get
1.46 +get replaced at the time of pre-processing and thus the
1.47 +compiler(s)warning 'argument/variable is not used in function*/
1.48 +#pragma warn_unusedarg off
1.49 +#endif //__WINSCW__
1.50 +
1.51 +typedef __uint32_t fenv_t;
1.52 +typedef __uint32_t fexcept_t;
1.53 +
1.54 +/* Exception flags */
1.55 +#define FE_INVALID 0x0001
1.56 +#define FE_DIVBYZERO 0x0002
1.57 +#define FE_OVERFLOW 0x0004
1.58 +#define FE_UNDERFLOW 0x0008
1.59 +#define FE_INEXACT 0x0010
1.60 +#define FE_ALL_EXCEPT (FE_DIVBYZERO | FE_INEXACT | \
1.61 + FE_INVALID | FE_OVERFLOW | FE_UNDERFLOW)
1.62 +
1.63 +/* Rounding modes */
1.64 +#define FE_TONEAREST 0x0000
1.65 +#define FE_TOWARDZERO 0x0001
1.66 +#define FE_UPWARD 0x0002
1.67 +#define FE_DOWNWARD 0x0003
1.68 +#define _ROUND_MASK (FE_TONEAREST | FE_DOWNWARD | \
1.69 + FE_UPWARD | FE_TOWARDZERO)
1.70 +__BEGIN_DECLS
1.71 +
1.72 +/* Default floating-point environment */
1.73 +extern const fenv_t __fe_dfl_env;
1.74 +#define FE_DFL_ENV (&__fe_dfl_env)
1.75 +
1.76 +/* We need to be able to map status flag positions to mask flag positions */
1.77 +#define _FPUSW_SHIFT 16
1.78 +#define _ENABLE_MASK (FE_ALL_EXCEPT << _FPUSW_SHIFT)
1.79 +
1.80 +#ifdef ARM_HARD_FLOAT
1.81 +#define __rfs(__fpsr) __asm __volatile("rfs %0" : "=r" (*(__fpsr)))
1.82 +#define __wfs(__fpsr) __asm __volatile("wfs %0" : : "r" (__fpsr))
1.83 +#else
1.84 +#define __rfs(__fpsr)
1.85 +#define __wfs(__fpsr)
1.86 +#endif
1.87 +
1.88 +static __inline int
1.89 +feclearexcept(int __excepts)
1.90 +{
1.91 + #ifdef __SYMBIAN32__
1.92 + fexcept_t __fpsr = 0;
1.93 + #else
1.94 + fexcept_t __fpsr ;
1.95 + #endif //__SYMBIAN32__
1.96 +
1.97 + __rfs(&__fpsr);
1.98 + __fpsr &= ~__excepts;
1.99 + __wfs(__fpsr);
1.100 + return (0);
1.101 +}
1.102 +
1.103 +static __inline int
1.104 +fegetexceptflag(fexcept_t *__flagp, int __excepts)
1.105 +{
1.106 + #ifdef __SYMBIAN32__
1.107 + fexcept_t __fpsr = 0;
1.108 + #else
1.109 + fexcept_t __fpsr ;
1.110 + #endif //__SYMBIAN32__
1.111 +
1.112 + __rfs(&__fpsr);
1.113 + *__flagp = __fpsr & __excepts;
1.114 + return (0);
1.115 +}
1.116 +
1.117 +static __inline int
1.118 +fesetexceptflag(const fexcept_t *__flagp, int __excepts)
1.119 +{
1.120 + #ifdef __SYMBIAN32__
1.121 + fexcept_t __fpsr = 0;
1.122 + #else
1.123 + fexcept_t __fpsr ;
1.124 + #endif //__SYMBIAN32__
1.125 +
1.126 + __rfs(&__fpsr);
1.127 + __fpsr &= ~__excepts;
1.128 + __fpsr |= *__flagp & __excepts;
1.129 + __wfs(__fpsr);
1.130 + return (0);
1.131 +}
1.132 +
1.133 +static __inline int
1.134 +feraiseexcept(int __excepts)
1.135 +{
1.136 + fexcept_t __ex = __excepts;
1.137 +
1.138 + fesetexceptflag(&__ex, __excepts); /* XXX */
1.139 + return (0);
1.140 +}
1.141 +
1.142 +static __inline int
1.143 +fetestexcept(int __excepts)
1.144 +{
1.145 + #ifdef __SYMBIAN32__
1.146 + fexcept_t __fpsr = 0;
1.147 + #else
1.148 + fexcept_t __fpsr ;
1.149 + #endif //__SYMBIAN32__
1.150 +
1.151 + __rfs(&__fpsr);
1.152 + return (__fpsr & __excepts);
1.153 +}
1.154 +
1.155 +static __inline int
1.156 +fegetround(void)
1.157 +{
1.158 +
1.159 + /*
1.160 + * Apparently, the rounding mode is specified as part of the
1.161 + * instruction format on ARM, so the dynamic rounding mode is
1.162 + * indeterminate. Some FPUs may differ.
1.163 + */
1.164 + return (-1);
1.165 +}
1.166 +
1.167 +static __inline int
1.168 +fesetround(int __round)
1.169 +{
1.170 +
1.171 + return (-1);
1.172 +}
1.173 +
1.174 +static __inline int
1.175 +fegetenv(fenv_t *__envp)
1.176 +{
1.177 +
1.178 + __rfs(__envp);
1.179 + return (0);
1.180 +}
1.181 +
1.182 +static __inline int
1.183 +feholdexcept(fenv_t *__envp)
1.184 +{
1.185 + #ifdef __SYMBIAN32__
1.186 + fenv_t __env = 0;
1.187 + #else
1.188 + fenv_t __env ;
1.189 + #endif //__SYMBIAN32__
1.190 +
1.191 + __rfs(&__env);
1.192 + *__envp = __env;
1.193 + __env &= ~(FE_ALL_EXCEPT | _ENABLE_MASK);
1.194 + __wfs(__env);
1.195 + return (0);
1.196 +}
1.197 +
1.198 +static __inline int
1.199 +fesetenv(const fenv_t *__envp)
1.200 +{
1.201 +
1.202 + __wfs(*__envp);
1.203 + return (0);
1.204 +}
1.205 +
1.206 +static __inline int
1.207 +feupdateenv(const fenv_t *__envp)
1.208 +{
1.209 + #ifdef __SYMBIAN32__
1.210 + fexcept_t __fpsr = 0;
1.211 + #else
1.212 + fexcept_t __fpsr ;
1.213 + #endif //__SYMBIAN32__
1.214 +
1.215 + __rfs(&__fpsr);
1.216 + __wfs(*__envp);
1.217 + feraiseexcept(__fpsr & FE_ALL_EXCEPT);
1.218 + return (0);
1.219 +}
1.220 +
1.221 +#if __BSD_VISIBLE
1.222 +
1.223 +static __inline int
1.224 +feenableexcept(int __mask)
1.225 +{
1.226 + #ifdef __SYMBIAN32__
1.227 + fenv_t __old_fpsr = 0, __new_fpsr= 0;
1.228 + #else
1.229 + fenv_t __old_fpsr, __new_fpsr;
1.230 + #endif //__SYMBIAN32__
1.231 +
1.232 + __rfs(&__old_fpsr);
1.233 + __new_fpsr = __old_fpsr | (__mask & FE_ALL_EXCEPT) << _FPUSW_SHIFT;
1.234 + __wfs(__new_fpsr);
1.235 + return ((__old_fpsr >> _FPUSW_SHIFT) & FE_ALL_EXCEPT);
1.236 +}
1.237 +
1.238 +static __inline int
1.239 +fedisableexcept(int __mask)
1.240 +{
1.241 +
1.242 + #ifdef __SYMBIAN32__
1.243 + fenv_t __old_fpsr =0, __new_fpsr =0;
1.244 + #else
1.245 + fenv_t __old_fpsr, __new_fpsr;
1.246 + #endif //__SYMBIAN32__
1.247 +
1.248 + __rfs(&__old_fpsr);
1.249 + __new_fpsr = __old_fpsr & ~((__mask & FE_ALL_EXCEPT) << _FPUSW_SHIFT);
1.250 + __wfs(__new_fpsr);
1.251 + return ((__old_fpsr >> _FPUSW_SHIFT) & FE_ALL_EXCEPT);
1.252 +}
1.253 +
1.254 +static __inline int
1.255 +fegetexcept(void)
1.256 +{
1.257 + #ifdef __SYMBIAN32__
1.258 + fexcept_t __fpsr = 0;
1.259 + #else
1.260 + fexcept_t __fpsr ;
1.261 + #endif //__SYMBIAN32__
1.262 +
1.263 + __rfs(&__fpsr);
1.264 + return ((__fpsr & _ENABLE_MASK) >> _FPUSW_SHIFT);
1.265 +}
1.266 +
1.267 +#endif /* __BSD_VISIBLE */
1.268 +
1.269 +__END_DECLS
1.270 +
1.271 +#endif /* !_FENV_H_ */