Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/sys/powerpc/include/ieeefp.h
103499 views
1
/* -
2
* Written by J.T. Conklin, Apr 6, 1995
3
* Public domain.
4
* $NetBSD: ieeefp.h,v 1.2 1999/07/07 01:52:26 danw Exp $
5
*/
6
7
#ifndef _MACHINE_IEEEFP_H_
8
#define _MACHINE_IEEEFP_H_
9
10
/* Deprecated historical FPU control interface */
11
12
typedef int fp_except_t;
13
#define FP_X_IMP 0x01 /* imprecise (loss of precision) */
14
#define FP_X_DZ 0x02 /* divide-by-zero exception */
15
#define FP_X_UFL 0x04 /* underflow exception */
16
#define FP_X_OFL 0x08 /* overflow exception */
17
#define FP_X_INV 0x10 /* invalid operation exception */
18
19
typedef enum {
20
FP_RN=0, /* round to nearest representable number */
21
FP_RZ=1, /* round to zero (truncate) */
22
FP_RP=2, /* round toward positive infinity */
23
FP_RM=3 /* round toward negative infinity */
24
} fp_rnd_t;
25
26
__BEGIN_DECLS
27
extern fp_rnd_t fpgetround(void);
28
extern fp_rnd_t fpsetround(fp_rnd_t);
29
extern fp_except_t fpgetmask(void);
30
extern fp_except_t fpsetmask(fp_except_t);
31
extern fp_except_t fpgetsticky(void);
32
__END_DECLS
33
34
#endif /* _MACHINE_IEEEFP_H_ */
35
36