Home | History | Annotate | Line # | Download | only in include
fenv.h revision 1.1.4.2
      1  1.1.4.2  pgoyette /*	$NetBSD: fenv.h,v 1.1.4.2 2017/04/26 02:53:06 pgoyette Exp $	*/
      2      1.1  christos 
      3      1.1  christos /*-
      4      1.1  christos  * Copyright (c) 2004-2005 David Schultz <das (at) FreeBSD.ORG>
      5      1.1  christos  * All rights reserved.
      6      1.1  christos  *
      7      1.1  christos  * Redistribution and use in source and binary forms, with or without
      8      1.1  christos  * modification, are permitted provided that the following conditions
      9      1.1  christos  * are met:
     10      1.1  christos  * 1. Redistributions of source code must retain the above copyright
     11      1.1  christos  *    notice, this list of conditions and the following disclaimer.
     12      1.1  christos  * 2. Redistributions in binary form must reproduce the above copyright
     13      1.1  christos  *    notice, this list of conditions and the following disclaimer in the
     14      1.1  christos  *    documentation and/or other materials provided with the distribution.
     15      1.1  christos  *
     16      1.1  christos  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     17      1.1  christos  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     18      1.1  christos  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     19      1.1  christos  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     20      1.1  christos  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     21      1.1  christos  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     22      1.1  christos  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     23      1.1  christos  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     24      1.1  christos  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25      1.1  christos  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26      1.1  christos  * SUCH DAMAGE.
     27      1.1  christos  *
     28      1.1  christos  * $FreeBSD: head/lib/msun/powerpc/fenv.h 226218 2011-10-10 15:43:09Z das $
     29      1.1  christos  */
     30      1.1  christos 
     31      1.1  christos #ifndef	_POWERPC_FENV_H_
     32      1.1  christos #define	_POWERPC_FENV_H_
     33      1.1  christos 
     34      1.1  christos #include <sys/stdint.h>
     35      1.1  christos 
     36      1.1  christos /* Exception flags */
     37      1.1  christos #define	FE_INEXACT	0x02000000
     38      1.1  christos #define	FE_DIVBYZERO	0x04000000
     39      1.1  christos #define	FE_UNDERFLOW	0x08000000
     40      1.1  christos #define	FE_OVERFLOW	0x10000000
     41      1.1  christos #define	FE_INVALID	0x20000000	/* all types of invalid FP ops */
     42      1.1  christos 
     43      1.1  christos /*
     44      1.1  christos  * The PowerPC architecture has extra invalid flags that indicate the
     45      1.1  christos  * specific type of invalid operation occurred.  These flags may be
     46      1.1  christos  * tested, set, and cleared---but not masked---separately.  All of
     47      1.1  christos  * these bits are cleared when FE_INVALID is cleared, but only
     48      1.1  christos  * FE_VXSOFT is set when FE_INVALID is explicitly set in software.
     49      1.1  christos  */
     50      1.1  christos #define	FE_VXCVI	0x00000100	/* invalid integer convert */
     51      1.1  christos #define	FE_VXSQRT	0x00000200	/* square root of a negative */
     52      1.1  christos #define	FE_VXSOFT	0x00000400	/* software-requested exception */
     53      1.1  christos #define	FE_VXVC		0x00080000	/* ordered comparison involving NaN */
     54      1.1  christos #define	FE_VXIMZ	0x00100000	/* inf * 0 */
     55      1.1  christos #define	FE_VXZDZ	0x00200000	/* 0 / 0 */
     56      1.1  christos #define	FE_VXIDI	0x00400000	/* inf / inf */
     57      1.1  christos #define	FE_VXISI	0x00800000	/* inf - inf */
     58      1.1  christos #define	FE_VXSNAN	0x01000000	/* operation on a signalling NaN */
     59      1.1  christos #define	FE_ALL_INVALID	(FE_VXCVI | FE_VXSQRT | FE_VXSOFT | FE_VXVC | \
     60      1.1  christos 			 FE_VXIMZ | FE_VXZDZ | FE_VXIDI | FE_VXISI | \
     61      1.1  christos 			 FE_VXSNAN | FE_INVALID)
     62      1.1  christos #define	FE_ALL_EXCEPT	(FE_DIVBYZERO | FE_INEXACT | \
     63      1.1  christos 			 FE_ALL_INVALID | FE_OVERFLOW | FE_UNDERFLOW)
     64      1.1  christos 
     65      1.1  christos /* Rounding modes */
     66      1.1  christos #define	FE_TONEAREST	0x0000
     67      1.1  christos #define	FE_TOWARDZERO	0x0001
     68      1.1  christos #define	FE_UPWARD	0x0002
     69      1.1  christos #define	FE_DOWNWARD	0x0003
     70      1.1  christos #define	_ROUND_MASK	(FE_TONEAREST | FE_DOWNWARD | \
     71      1.1  christos 			 FE_UPWARD | FE_TOWARDZERO)
     72      1.1  christos 
     73  1.1.4.2  pgoyette #ifndef _SOFT_FLOAT
     74  1.1.4.2  pgoyette 
     75  1.1.4.2  pgoyette #ifndef	__fenv_static
     76  1.1.4.2  pgoyette #define	__fenv_static	static
     77  1.1.4.2  pgoyette #endif
     78  1.1.4.2  pgoyette 
     79  1.1.4.2  pgoyette typedef	uint32_t	fenv_t;
     80  1.1.4.2  pgoyette typedef	uint32_t	fexcept_t;
     81  1.1.4.2  pgoyette 
     82      1.1  christos #ifndef _KERNEL
     83      1.1  christos __BEGIN_DECLS
     84      1.1  christos 
     85      1.1  christos /* Default floating-point environment */
     86      1.1  christos extern const fenv_t	__fe_dfl_env;
     87      1.1  christos #define	FE_DFL_ENV	(&__fe_dfl_env)
     88      1.1  christos 
     89      1.1  christos /* We need to be able to map status flag positions to mask flag positions */
     90      1.1  christos #define	_FPUSW_SHIFT	22
     91      1.1  christos #define	_ENABLE_MASK	((FE_DIVBYZERO | FE_INEXACT | FE_INVALID | \
     92      1.1  christos 			 FE_OVERFLOW | FE_UNDERFLOW) >> _FPUSW_SHIFT)
     93      1.1  christos 
     94      1.1  christos #ifndef _SOFT_FLOAT
     95      1.1  christos #define	__mffs(__env)	__asm __volatile("mffs %0" : "=f" (*(__env)))
     96      1.1  christos #define	__mtfsf(__env)	__asm __volatile("mtfsf 255,%0" : : "f" (__env))
     97  1.1.4.1  pgoyette 
     98  1.1.4.1  pgoyette static inline uint32_t
     99  1.1.4.1  pgoyette __mfmsr(void)
    100  1.1.4.1  pgoyette {
    101  1.1.4.1  pgoyette 	uint32_t __msr;
    102  1.1.4.1  pgoyette 
    103  1.1.4.1  pgoyette 	__asm volatile ("mfmsr %0" : "=r"(__msr));
    104  1.1.4.1  pgoyette 	return __msr;
    105  1.1.4.1  pgoyette }
    106  1.1.4.1  pgoyette 
    107  1.1.4.1  pgoyette static inline void
    108  1.1.4.1  pgoyette __mtmsr(uint32_t __msr)
    109  1.1.4.1  pgoyette {
    110  1.1.4.1  pgoyette 
    111  1.1.4.1  pgoyette 	__asm volatile ("mtmsr %0" : : "r"(__msr));
    112  1.1.4.1  pgoyette }
    113  1.1.4.1  pgoyette 
    114  1.1.4.1  pgoyette #define __MSR_FE_MASK	(0x00000800 | 0x00000100)
    115  1.1.4.1  pgoyette #define __MSR_FE_DIS	(0)
    116  1.1.4.1  pgoyette #define __MSR_FE_PREC	(0x00000800 | 0x00000100)
    117  1.1.4.1  pgoyette 
    118  1.1.4.1  pgoyette static inline void
    119  1.1.4.1  pgoyette __updatemsr(uint32_t __reg)
    120  1.1.4.1  pgoyette {
    121  1.1.4.1  pgoyette 	uint32_t __msr;
    122  1.1.4.1  pgoyette 
    123  1.1.4.1  pgoyette 	__msr = __mfmsr() & ~__MSR_FE_MASK;
    124  1.1.4.1  pgoyette 	if (__reg != 0) {
    125  1.1.4.1  pgoyette 		__msr |= __MSR_FE_PREC;
    126  1.1.4.1  pgoyette 	} else {
    127  1.1.4.1  pgoyette 		__msr |= __MSR_FE_DIS;
    128  1.1.4.1  pgoyette 	}
    129  1.1.4.1  pgoyette 	__mtmsr(__msr);
    130  1.1.4.1  pgoyette }
    131  1.1.4.1  pgoyette 
    132      1.1  christos #else
    133      1.1  christos #define	__mffs(__env)
    134      1.1  christos #define	__mtfsf(__env)
    135  1.1.4.1  pgoyette #define __updatemsr(__reg)
    136      1.1  christos #endif
    137      1.1  christos 
    138      1.1  christos union __fpscr {
    139      1.1  christos 	double __d;
    140      1.1  christos 	struct {
    141      1.1  christos 		uint32_t __junk;
    142      1.1  christos 		fenv_t __reg;
    143      1.1  christos 	} __bits;
    144      1.1  christos };
    145      1.1  christos 
    146      1.1  christos __fenv_static inline int
    147      1.1  christos feclearexcept(int __excepts)
    148      1.1  christos {
    149      1.1  christos 	union __fpscr __r;
    150      1.1  christos 
    151      1.1  christos 	if (__excepts & FE_INVALID)
    152      1.1  christos 		__excepts |= FE_ALL_INVALID;
    153      1.1  christos 	__mffs(&__r.__d);
    154      1.1  christos 	__r.__bits.__reg &= ~__excepts;
    155      1.1  christos 	__mtfsf(__r.__d);
    156      1.1  christos 	return (0);
    157      1.1  christos }
    158      1.1  christos 
    159      1.1  christos __fenv_static inline int
    160      1.1  christos fegetexceptflag(fexcept_t *__flagp, int __excepts)
    161      1.1  christos {
    162      1.1  christos 	union __fpscr __r;
    163      1.1  christos 
    164      1.1  christos 	__mffs(&__r.__d);
    165      1.1  christos 	*__flagp = __r.__bits.__reg & __excepts;
    166      1.1  christos 	return (0);
    167      1.1  christos }
    168      1.1  christos 
    169      1.1  christos __fenv_static inline int
    170      1.1  christos fesetexceptflag(const fexcept_t *__flagp, int __excepts)
    171      1.1  christos {
    172      1.1  christos 	union __fpscr __r;
    173      1.1  christos 
    174      1.1  christos 	if (__excepts & FE_INVALID)
    175      1.1  christos 		__excepts |= FE_ALL_EXCEPT;
    176      1.1  christos 	__mffs(&__r.__d);
    177      1.1  christos 	__r.__bits.__reg &= ~__excepts;
    178      1.1  christos 	__r.__bits.__reg |= *__flagp & __excepts;
    179      1.1  christos 	__mtfsf(__r.__d);
    180      1.1  christos 	return (0);
    181      1.1  christos }
    182      1.1  christos 
    183      1.1  christos __fenv_static inline int
    184      1.1  christos feraiseexcept(int __excepts)
    185      1.1  christos {
    186      1.1  christos 	union __fpscr __r;
    187      1.1  christos 
    188      1.1  christos 	if (__excepts & FE_INVALID)
    189      1.1  christos 		__excepts |= FE_VXSOFT;
    190      1.1  christos 	__mffs(&__r.__d);
    191      1.1  christos 	__r.__bits.__reg |= __excepts;
    192      1.1  christos 	__mtfsf(__r.__d);
    193      1.1  christos 	return (0);
    194      1.1  christos }
    195      1.1  christos 
    196      1.1  christos __fenv_static inline int
    197      1.1  christos fetestexcept(int __excepts)
    198      1.1  christos {
    199      1.1  christos 	union __fpscr __r;
    200      1.1  christos 
    201      1.1  christos 	__mffs(&__r.__d);
    202      1.1  christos 	return (__r.__bits.__reg & __excepts);
    203      1.1  christos }
    204      1.1  christos 
    205      1.1  christos __fenv_static inline int
    206      1.1  christos fegetround(void)
    207      1.1  christos {
    208      1.1  christos 	union __fpscr __r;
    209      1.1  christos 
    210      1.1  christos 	__mffs(&__r.__d);
    211      1.1  christos 	return (__r.__bits.__reg & _ROUND_MASK);
    212      1.1  christos }
    213      1.1  christos 
    214      1.1  christos __fenv_static inline int
    215      1.1  christos fesetround(int __round)
    216      1.1  christos {
    217      1.1  christos 	union __fpscr __r;
    218      1.1  christos 
    219      1.1  christos 	if (__round & ~_ROUND_MASK)
    220      1.1  christos 		return (-1);
    221      1.1  christos 	__mffs(&__r.__d);
    222      1.1  christos 	__r.__bits.__reg &= ~_ROUND_MASK;
    223      1.1  christos 	__r.__bits.__reg |= __round;
    224      1.1  christos 	__mtfsf(__r.__d);
    225      1.1  christos 	return (0);
    226      1.1  christos }
    227      1.1  christos 
    228      1.1  christos __fenv_static inline int
    229      1.1  christos fegetenv(fenv_t *__envp)
    230      1.1  christos {
    231      1.1  christos 	union __fpscr __r;
    232      1.1  christos 
    233      1.1  christos 	__mffs(&__r.__d);
    234      1.1  christos 	*__envp = __r.__bits.__reg;
    235      1.1  christos 	return (0);
    236      1.1  christos }
    237      1.1  christos 
    238      1.1  christos __fenv_static inline int
    239      1.1  christos feholdexcept(fenv_t *__envp)
    240      1.1  christos {
    241      1.1  christos 	union __fpscr __r;
    242  1.1.4.1  pgoyette 	uint32_t msr;
    243      1.1  christos 
    244      1.1  christos 	__mffs(&__r.__d);
    245      1.1  christos 	*__envp = __r.__d;
    246      1.1  christos 	__r.__bits.__reg &= ~(FE_ALL_EXCEPT | _ENABLE_MASK);
    247      1.1  christos 	__mtfsf(__r.__d);
    248  1.1.4.1  pgoyette 	__updatemsr(__r.__bits.__reg);
    249      1.1  christos 	return (0);
    250      1.1  christos }
    251      1.1  christos 
    252      1.1  christos __fenv_static inline int
    253      1.1  christos fesetenv(const fenv_t *__envp)
    254      1.1  christos {
    255      1.1  christos 	union __fpscr __r;
    256      1.1  christos 
    257      1.1  christos 	__r.__bits.__reg = *__envp;
    258      1.1  christos 	__mtfsf(__r.__d);
    259  1.1.4.1  pgoyette 	__updatemsr(__r.__bits.__reg);
    260      1.1  christos 	return (0);
    261      1.1  christos }
    262      1.1  christos 
    263      1.1  christos __fenv_static inline int
    264      1.1  christos feupdateenv(const fenv_t *__envp)
    265      1.1  christos {
    266      1.1  christos 	union __fpscr __r;
    267      1.1  christos 
    268      1.1  christos 	__mffs(&__r.__d);
    269      1.1  christos 	__r.__bits.__reg &= FE_ALL_EXCEPT;
    270      1.1  christos 	__r.__bits.__reg |= *__envp;
    271      1.1  christos 	__mtfsf(__r.__d);
    272  1.1.4.1  pgoyette 	__updatemsr(__r.__bits.__reg);
    273      1.1  christos 	return (0);
    274      1.1  christos }
    275      1.1  christos 
    276      1.1  christos #if defined(_NETBSD_SOURCE) || defined(_GNU_SOURCE)
    277      1.1  christos 
    278  1.1.4.2  pgoyette __fenv_static inline int
    279      1.1  christos feenableexcept(int __mask)
    280      1.1  christos {
    281      1.1  christos 	union __fpscr __r;
    282      1.1  christos 	fenv_t __oldmask;
    283      1.1  christos 
    284      1.1  christos 	__mffs(&__r.__d);
    285      1.1  christos 	__oldmask = __r.__bits.__reg;
    286      1.1  christos 	__r.__bits.__reg |= (__mask & FE_ALL_EXCEPT) >> _FPUSW_SHIFT;
    287      1.1  christos 	__mtfsf(__r.__d);
    288  1.1.4.1  pgoyette 	__updatemsr(__r.__bits.__reg);
    289      1.1  christos 	return ((__oldmask & _ENABLE_MASK) << _FPUSW_SHIFT);
    290      1.1  christos }
    291      1.1  christos 
    292  1.1.4.2  pgoyette __fenv_static inline int
    293      1.1  christos fedisableexcept(int __mask)
    294      1.1  christos {
    295      1.1  christos 	union __fpscr __r;
    296      1.1  christos 	fenv_t __oldmask;
    297      1.1  christos 
    298      1.1  christos 	__mffs(&__r.__d);
    299      1.1  christos 	__oldmask = __r.__bits.__reg;
    300      1.1  christos 	__r.__bits.__reg &= ~((__mask & FE_ALL_EXCEPT) >> _FPUSW_SHIFT);
    301      1.1  christos 	__mtfsf(__r.__d);
    302  1.1.4.1  pgoyette 	__updatemsr(__r.__bits.__reg);
    303      1.1  christos 	return ((__oldmask & _ENABLE_MASK) << _FPUSW_SHIFT);
    304      1.1  christos }
    305      1.1  christos 
    306  1.1.4.2  pgoyette __fenv_static inline int
    307      1.1  christos fegetexcept(void)
    308      1.1  christos {
    309      1.1  christos 	union __fpscr __r;
    310      1.1  christos 
    311      1.1  christos 	__mffs(&__r.__d);
    312      1.1  christos 	return ((__r.__bits.__reg & _ENABLE_MASK) << _FPUSW_SHIFT);
    313      1.1  christos }
    314      1.1  christos 
    315      1.1  christos #endif /* _NETBSD_SOURCE || _GNU_SOURCE */
    316      1.1  christos 
    317      1.1  christos __END_DECLS
    318  1.1.4.2  pgoyette 
    319      1.1  christos #endif
    320  1.1.4.2  pgoyette #endif	/* _SOFT_FLOAT */
    321      1.1  christos 
    322      1.1  christos #endif	/* !_POWERPC_FENV_H_ */
    323