1 1.2.142.1 yamt /* $NetBSD: ieeefp.h,v 1.2.142.1 2009/05/04 08:11:43 yamt Exp $ */ 2 1.1 thorpej 3 1.1 thorpej /* 4 1.1 thorpej * Written by J.T. Conklin, Apr 6, 1995 5 1.1 thorpej * Public domain. 6 1.1 thorpej */ 7 1.1 thorpej 8 1.1 thorpej #ifndef _POWERPC_IEEEFP_H_ 9 1.1 thorpej #define _POWERPC_IEEEFP_H_ 10 1.1 thorpej 11 1.2.142.1 yamt #include <sys/featuretest.h> 12 1.2.142.1 yamt 13 1.2.142.1 yamt #if defined(_NETBSD_SOURCE) || defined(_ISOC99_SOURCE) 14 1.2.142.1 yamt 15 1.2.142.1 yamt typedef int fenv_t; 16 1.2.142.1 yamt typedef int fexcept_t; 17 1.2.142.1 yamt 18 1.2.142.1 yamt #define FE_INEXACT 0x01 /* imprecise (loss of precision) */ 19 1.2.142.1 yamt #define FE_DIVBYZERO 0x02 /* divide-by-zero exception */ 20 1.2.142.1 yamt #define FE_OVERFLOW 0x04 /* underflow exception */ 21 1.2.142.1 yamt #define FE_UNDERFLOW 0x08 /* overflow exception */ 22 1.2.142.1 yamt #define FE_INVALID 0x10 /* invalid operation exception */ 23 1.2.142.1 yamt 24 1.2.142.1 yamt #define FE_ALL_EXCEPT 0x1f 25 1.2.142.1 yamt 26 1.2.142.1 yamt #define FE_TONEAREST 0 /* round to nearest representable number */ 27 1.2.142.1 yamt #define FE_TOWARDZERO 1 /* round to zero (truncate) */ 28 1.2.142.1 yamt #define FE_UPWARD 2 /* round toward positive infinity */ 29 1.2.142.1 yamt #define FE_DOWNWARD 3 /* round toward negative infinity */ 30 1.2.142.1 yamt 31 1.2.142.1 yamt #if !defined(_ISOC99_SOURCE) 32 1.2.142.1 yamt 33 1.1 thorpej typedef int fp_except; 34 1.2.142.1 yamt #define FP_X_IMP FE_INEXACT /* imprecise (loss of precision) */ 35 1.2.142.1 yamt #define FP_X_DZ FE_DIVBYZERO /* divide-by-zero exception */ 36 1.2.142.1 yamt #define FP_X_UFL FE_UNDERFLOW /* underflow exception */ 37 1.2.142.1 yamt #define FP_X_OFL FE_OVERFLOW /* overflow exception */ 38 1.2.142.1 yamt #define FP_X_INV FE_INVALID /* invalid operation exception */ 39 1.1 thorpej 40 1.1 thorpej typedef enum { 41 1.2.142.1 yamt FP_RN=FE_TONEAREST, /* round to nearest representable number */ 42 1.2.142.1 yamt FP_RZ=FE_TOWARDZERO, /* round to zero (truncate) */ 43 1.2.142.1 yamt FP_RP=FE_UPWARD, /* round toward positive infinity */ 44 1.2.142.1 yamt FP_RM=FE_DOWNWARD /* round toward negative infinity */ 45 1.1 thorpej } fp_rnd; 46 1.1 thorpej 47 1.2.142.1 yamt #endif /* !_ISOC99_SOURCE */ 48 1.2.142.1 yamt 49 1.2.142.1 yamt #endif /* _NETBSD_SOURCE || _ISOC99_SOURCE */ 50 1.2.142.1 yamt 51 1.1 thorpej #endif /* _POWERPC_IEEEFP_H_ */ 52