1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 2004-2011 David Schultz <das@FreeBSD.ORG>
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  *
28  * $FreeBSD$
29  */
30 
31 /*
32  * This file implements the functionality of <fenv.h> on platforms that
33  * lack an FPU and use softfloat in libc for floating point.  To use it,
34  * you must write an <fenv.h> that provides the following:
35  *
36  *   - a typedef for fenv_t, which may be an integer or struct type
37  *   - a typedef for fexcept_t (XXX This file assumes fexcept_t is a
38  *     simple integer type containing the exception mask.)
39  *   - definitions of FE_* constants for the five exceptions and four
40  *     rounding modes in IEEE 754, as described in fenv(3)
41  *   - a definition, and the corresponding external symbol, for FE_DFL_ENV
42  *   - a macro __set_env(env, flags, mask, rnd), which sets the given fenv_t
43  *     from the exception flags, mask, and rounding mode
44  *   - macros __env_flags(env), __env_mask(env), and __env_round(env), which
45  *     extract fields from an fenv_t
46  *   - a definition of __fenv_static
47  *
48  * If the architecture supports an optional FPU, it's recommended that you
49  * define fenv_t and fexcept_t to match the hardware ABI.  Otherwise, it
50  * doesn't matter how you define them.
51  */
52 #include <errno.h>
53 
54 __declare_fenv_inline(int)
feclearexcept(int excepts)55 feclearexcept(int excepts)
56 {
57         (void) excepts;
58 	return (0);
59 }
60 
61 __declare_fenv_inline(int)
fegetexceptflag(fexcept_t * flagp,int excepts)62 fegetexceptflag(fexcept_t *flagp, int excepts)
63 {
64         (void) excepts;
65         (void) flagp;
66 	return (0);
67 
68 }
69 
70 __declare_fenv_inline(int)
fesetexceptflag(const fexcept_t * flagp,int excepts)71 fesetexceptflag(const fexcept_t *flagp, int excepts)
72 {
73         (void) excepts;
74         (void) flagp;
75 	return (0);
76 }
77 
78 __declare_fenv_inline(int)
feraiseexcept(int excepts)79 feraiseexcept(int excepts)
80 {
81 	return( excepts != 0 );
82 }
83 
84 __declare_fenv_inline(int)
fesetexcept(int excepts)85 fesetexcept(int excepts)
86 {
87         return( excepts != 0 );
88 }
89 
90 __declare_fenv_inline(int)
fetestexcept(int excepts)91 fetestexcept(int excepts)
92 {
93         (void) excepts;
94 	return (0);
95 }
96 
97 __declare_fenv_inline(int)
fegetround(void)98 fegetround(void)
99 {
100 
101 #ifdef FE_TONEAREST
102 	return FE_TONEAREST;
103 #else
104 	return 0;
105 #endif
106 
107 }
108 
109 __declare_fenv_inline(int)
fesetround(int rounding_mode)110 fesetround(int rounding_mode)
111 {
112         (void) rounding_mode;
113 
114 	return (0);
115 }
116 
117 __declare_fenv_inline(int)
fegetenv(fenv_t * envp)118 fegetenv(fenv_t *envp)
119 {
120         (void) envp;
121 	return (0);
122 }
123 
124 __declare_fenv_inline(int)
feholdexcept(fenv_t * envp)125 feholdexcept(fenv_t *envp)
126 {
127         (void) envp;
128 	return (0);
129 }
130 
131 __declare_fenv_inline(int)
fesetenv(const fenv_t * envp)132 fesetenv(const fenv_t *envp)
133 {
134         (void) envp;
135 	return (0);
136 }
137 
138 __declare_fenv_inline(int)
feupdateenv(const fenv_t * envp)139 feupdateenv(const fenv_t *envp)
140 {
141         (void) envp;
142 
143 #if defined FE_NOMASK_ENV && FE_ALL_EXCEPT != 0
144 	  if (envp == FE_NOMASK_ENV)
145 	      return 1;
146 #endif
147 
148 	return (0);
149 }
150 
151 #if __BSD_VISIBLE
152 
153 __declare_fenv_inline(int)
feenableexcept(int __mask)154 feenableexcept(int __mask)
155 {
156         (void) __mask;
157 	return (0);
158 }
159 
160 __declare_fenv_inline(int)
fedisableexcept(int __mask)161 fedisableexcept(int __mask)
162 {
163         (void) __mask;
164 	return (0);
165 }
166 
167 __declare_fenv_inline(int)
fegetexcept(void)168 fegetexcept(void)
169 {
170 
171 	return (0);
172 }
173 
174 #endif /* __BSD_VISIBLE */
175