Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
openlibm_fenv_riscv.h
Go to the documentation of this file.
1/*-
2 * Copyright (c) 2004-2005 David Schultz <das@FreeBSD.ORG>
3 * Copyright (c) 2015-2016 Ruslan Bukin <br@bsdpad.com>
4 * All rights reserved.
5 *
6 * Portions of this software were developed by SRI International and the
7 * University of Cambridge Computer Laboratory under DARPA/AFRL contract
8 * FA8750-10-C-0237 ("CTSRD"), as part of the DARPA CRASH research programme.
9 *
10 * Portions of this software were developed by the University of Cambridge
11 * Computer Laboratory as part of the CTSRD Project, with support from the
12 * UK Higher Education Innovation Fund (HEIF).
13 *
14 * Redistribution and use in source and binary forms, with or without
15 * modification, are permitted provided that the following conditions
16 * are met:
17 * 1. Redistributions of source code must retain the above copyright
18 * notice, this list of conditions and the following disclaimer.
19 * 2. Redistributions in binary form must reproduce the above copyright
20 * notice, this list of conditions and the following disclaimer in the
21 * documentation and/or other materials provided with the distribution.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 *
35 * $FreeBSD: head/lib/msun/riscv/fenv.h 332792 2018-04-19 20:36:15Z brooks $
36 */
37
38#ifndef _FENV_H_
39#define _FENV_H_
40
41#include <stdint.h>
42#include "../inc/cdefs-compat.h"
43
44#ifndef __fenv_static
45#define __fenv_static static
46#endif
47
48typedef __uint64_t fenv_t;
49typedef __uint64_t fexcept_t;
50
51/* Exception flags */
52#define FE_INVALID 0x0010
53#define FE_DIVBYZERO 0x0008
54#define FE_OVERFLOW 0x0004
55#define FE_UNDERFLOW 0x0002
56#define FE_INEXACT 0x0001
57#define FE_ALL_EXCEPT (FE_DIVBYZERO | FE_INEXACT | \
58 FE_INVALID | FE_OVERFLOW | FE_UNDERFLOW)
59
60/*
61 * RISC-V Rounding modes
62 */
63#define _ROUND_SHIFT 5
64#define FE_TONEAREST (0x00 << _ROUND_SHIFT)
65#define FE_TOWARDZERO (0x01 << _ROUND_SHIFT)
66#define FE_DOWNWARD (0x02 << _ROUND_SHIFT)
67#define FE_UPWARD (0x03 << _ROUND_SHIFT)
68#define _ROUND_MASK (FE_TONEAREST | FE_DOWNWARD | \
69 FE_UPWARD | FE_TOWARDZERO)
70
72
73/* Default floating-point environment */
74extern const fenv_t __fe_dfl_env;
75#define FE_DFL_ENV (&__fe_dfl_env)
76
77#if !defined(__riscv_float_abi_soft) && !defined(__riscv_float_abi_double)
78#if defined(__riscv_float_abi_single)
79#error single precision floating point ABI not supported
80#else
81#error compiler did not set soft/hard float macros
82#endif
83#endif
84
85#ifndef __riscv_float_abi_soft
86#define __rfs(__fcsr) __asm __volatile("csrr %0, fcsr" : "=r" (__fcsr))
87#define __wfs(__fcsr) __asm __volatile("csrw fcsr, %0" :: "r" (__fcsr))
88#endif
89
90#ifdef __riscv_float_abi_soft
91int feclearexcept(int __excepts);
92int fegetexceptflag(fexcept_t *__flagp, int __excepts);
93int fesetexceptflag(const fexcept_t *__flagp, int __excepts);
94int feraiseexcept(int __excepts);
95int fetestexcept(int __excepts);
96int fegetround(void);
97int fesetround(int __round);
98int fegetenv(fenv_t *__envp);
99int feholdexcept(fenv_t *__envp);
100int fesetenv(const fenv_t *__envp);
101int feupdateenv(const fenv_t *__envp);
102#else
103__fenv_static inline int
104feclearexcept(int __excepts)
105{
106
107 __asm __volatile("csrc fflags, %0" :: "r"(__excepts));
108
109 return (0);
110}
111
112__fenv_static inline int
113fegetexceptflag(fexcept_t *__flagp, int __excepts)
114{
115 fexcept_t __fcsr;
116
117 __rfs(__fcsr);
118 *__flagp = __fcsr & __excepts;
119
120 return (0);
121}
122
123__fenv_static inline int
124fesetexceptflag(const fexcept_t *__flagp, int __excepts)
125{
126 fexcept_t __fcsr;
127
128 __fcsr = *__flagp;
129 __asm __volatile("csrc fflags, %0" :: "r"(__excepts));
130 __asm __volatile("csrs fflags, %0" :: "r"(__fcsr & __excepts));
131
132 return (0);
133}
134
135__fenv_static inline int
136feraiseexcept(int __excepts)
137{
138
139 __asm __volatile("csrs fflags, %0" :: "r"(__excepts));
140
141 return (0);
142}
143
144__fenv_static inline int
145fetestexcept(int __excepts)
146{
147 fexcept_t __fcsr;
148
149 __rfs(__fcsr);
150
151 return (__fcsr & __excepts);
152}
153
154__fenv_static inline int
156{
157 fexcept_t __fcsr;
158
159 __rfs(__fcsr);
160
161 return (__fcsr & _ROUND_MASK);
162}
163
164__fenv_static inline int
165fesetround(int __round)
166{
167 fexcept_t __fcsr;
168
169 if (__round & ~_ROUND_MASK)
170 return (-1);
171
172 __rfs(__fcsr);
173 __fcsr &= ~_ROUND_MASK;
174 __fcsr |= __round;
175 __wfs(__fcsr);
176
177 return (0);
178}
179
180__fenv_static inline int
182{
183
184 __rfs(*__envp);
185
186 return (0);
187}
188
189__fenv_static inline int
191{
192
193 /* No exception traps. */
194
195 return (-1);
196}
197
198__fenv_static inline int
199fesetenv(const fenv_t *__envp)
200{
201
202 __wfs(*__envp);
203
204 return (0);
205}
206
207__fenv_static inline int
208feupdateenv(const fenv_t *__envp)
209{
210 fexcept_t __fcsr;
211
212 __rfs(__fcsr);
213 __wfs(*__envp);
215
216 return (0);
217}
218#endif /* !__riscv_float_abi_soft */
219
220#if __BSD_VISIBLE
221
222/* We currently provide no external definitions of the functions below. */
223
224#ifdef __riscv_float_abi_soft
225int feenableexcept(int __mask);
226int fedisableexcept(int __mask);
227int fegetexcept(void);
228#else
229static inline int
230feenableexcept(int __mask)
231{
232
233 /* No exception traps. */
234
235 return (-1);
236}
237
238static inline int
239fedisableexcept(int __mask)
240{
241
242 /* No exception traps. */
243
244 return (0);
245}
246
247static inline int
248fegetexcept(void)
249{
250
251 /* No exception traps. */
252
253 return (0);
254}
255#endif /* !__riscv_float_abi_soft */
256
257#endif /* __BSD_VISIBLE */
258
260
261#endif /* !_FENV_H_ */
#define __volatile
Definition bsd_cdefs.h:74
#define __END_DECLS
#define __BEGIN_DECLS
Definition cdefs-compat.h:9
uint16_t fexcept_t
__fenv_static int feraiseexcept(int __excepts)
__fenv_static int fesetround(int __round)
#define FE_ALL_EXCEPT
__fenv_static int feholdexcept(fenv_t *__envp)
__fenv_static int fetestexcept(int __excepts)
#define __rfs(__fcsr)
#define __fenv_static
__uint64_t fexcept_t
__fenv_static int fegetexceptflag(fexcept_t *__flagp, int __excepts)
__fenv_static int feupdateenv(const fenv_t *__envp)
#define __wfs(__fcsr)
#define _ROUND_MASK
__BEGIN_DECLS const fenv_t __fe_dfl_env
__uint64_t fenv_t
__fenv_static int fegetround(void)
__fenv_static int fesetenv(const fenv_t *__envp)
__fenv_static int fegetenv(fenv_t *__envp)
__fenv_static int fesetexceptflag(const fexcept_t *__flagp, int __excepts)
__fenv_static int feclearexcept(int __excepts)