openlibm_fenv_powerpc.h 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  1. /*-
  2. * Copyright (c) 2004-2005 David Schultz <das@FreeBSD.ORG>
  3. * All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. *
  14. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  15. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  16. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  17. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  18. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  19. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  20. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  21. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  22. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  23. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  24. * SUCH DAMAGE.
  25. *
  26. * $FreeBSD$
  27. */
  28. #ifndef _FENV_H_
  29. #define _FENV_H_
  30. #include <stdint.h>
  31. #include <sys/types.h>
  32. #include "cdefs-compat.h"
  33. #ifndef __fenv_static
  34. #define __fenv_static static
  35. #endif
  36. typedef uint32_t fenv_t;
  37. typedef uint32_t fexcept_t;
  38. /* Exception flags */
  39. #define FE_INEXACT 0x02000000
  40. #define FE_DIVBYZERO 0x04000000
  41. #define FE_UNDERFLOW 0x08000000
  42. #define FE_OVERFLOW 0x10000000
  43. #define FE_INVALID 0x20000000 /* all types of invalid FP ops */
  44. /*
  45. * The PowerPC architecture has extra invalid flags that indicate the
  46. * specific type of invalid operation occurred. These flags may be
  47. * tested, set, and cleared---but not masked---separately. All of
  48. * these bits are cleared when FE_INVALID is cleared, but only
  49. * FE_VXSOFT is set when FE_INVALID is explicitly set in software.
  50. */
  51. #define FE_VXCVI 0x00000100 /* invalid integer convert */
  52. #define FE_VXSQRT 0x00000200 /* square root of a negative */
  53. #define FE_VXSOFT 0x00000400 /* software-requested exception */
  54. #define FE_VXVC 0x00080000 /* ordered comparison involving NaN */
  55. #define FE_VXIMZ 0x00100000 /* inf * 0 */
  56. #define FE_VXZDZ 0x00200000 /* 0 / 0 */
  57. #define FE_VXIDI 0x00400000 /* inf / inf */
  58. #define FE_VXISI 0x00800000 /* inf - inf */
  59. #define FE_VXSNAN 0x01000000 /* operation on a signalling NaN */
  60. #define FE_ALL_INVALID (FE_VXCVI | FE_VXSQRT | FE_VXSOFT | FE_VXVC | \
  61. FE_VXIMZ | FE_VXZDZ | FE_VXIDI | FE_VXISI | \
  62. FE_VXSNAN | FE_INVALID)
  63. #define FE_ALL_EXCEPT (FE_DIVBYZERO | FE_INEXACT | \
  64. FE_ALL_INVALID | FE_OVERFLOW | FE_UNDERFLOW)
  65. /* Rounding modes */
  66. #define FE_TONEAREST 0x0000
  67. #define FE_TOWARDZERO 0x0001
  68. #define FE_UPWARD 0x0002
  69. #define FE_DOWNWARD 0x0003
  70. #define _ROUND_MASK (FE_TONEAREST | FE_DOWNWARD | \
  71. FE_UPWARD | FE_TOWARDZERO)
  72. __BEGIN_DECLS
  73. /* Default floating-point environment */
  74. extern const fenv_t __fe_dfl_env;
  75. #define FE_DFL_ENV (&__fe_dfl_env)
  76. /* We need to be able to map status flag positions to mask flag positions */
  77. #define _FPUSW_SHIFT 22
  78. #define _ENABLE_MASK ((FE_DIVBYZERO | FE_INEXACT | FE_INVALID | \
  79. FE_OVERFLOW | FE_UNDERFLOW) >> _FPUSW_SHIFT)
  80. #ifndef _SOFT_FLOAT
  81. #define __mffs(__env) __asm __volatile("mffs %0" : "=f" (*(__env)))
  82. #define __mtfsf(__env) __asm __volatile("mtfsf 255,%0" : : "f" (__env))
  83. #else
  84. #define __mffs(__env)
  85. #define __mtfsf(__env)
  86. #endif
  87. union __fpscr {
  88. double __d;
  89. struct {
  90. #if defined(__BYTE_ORDER__) && (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__)
  91. fenv_t __reg;
  92. uint32_t __junk;
  93. #else
  94. uint32_t __junk;
  95. fenv_t __reg;
  96. #endif
  97. } __bits;
  98. };
  99. __fenv_static inline int
  100. feclearexcept(int __excepts)
  101. {
  102. union __fpscr __r;
  103. if (__excepts & FE_INVALID)
  104. __excepts |= FE_ALL_INVALID;
  105. __mffs(&__r.__d);
  106. __r.__bits.__reg &= ~__excepts;
  107. __mtfsf(__r.__d);
  108. return (0);
  109. }
  110. __fenv_static inline int
  111. fegetexceptflag(fexcept_t *__flagp, int __excepts)
  112. {
  113. union __fpscr __r;
  114. __mffs(&__r.__d);
  115. *__flagp = __r.__bits.__reg & __excepts;
  116. return (0);
  117. }
  118. __fenv_static inline int
  119. fesetexceptflag(const fexcept_t *__flagp, int __excepts)
  120. {
  121. union __fpscr __r;
  122. if (__excepts & FE_INVALID)
  123. __excepts |= FE_ALL_EXCEPT;
  124. __mffs(&__r.__d);
  125. __r.__bits.__reg &= ~__excepts;
  126. __r.__bits.__reg |= *__flagp & __excepts;
  127. __mtfsf(__r.__d);
  128. return (0);
  129. }
  130. __fenv_static inline int
  131. feraiseexcept(int __excepts)
  132. {
  133. union __fpscr __r;
  134. if (__excepts & FE_INVALID)
  135. __excepts |= FE_VXSOFT;
  136. __mffs(&__r.__d);
  137. __r.__bits.__reg |= __excepts;
  138. __mtfsf(__r.__d);
  139. return (0);
  140. }
  141. __fenv_static inline int
  142. fetestexcept(int __excepts)
  143. {
  144. union __fpscr __r;
  145. __mffs(&__r.__d);
  146. return (__r.__bits.__reg & __excepts);
  147. }
  148. __fenv_static inline int
  149. fegetround(void)
  150. {
  151. union __fpscr __r;
  152. __mffs(&__r.__d);
  153. return (__r.__bits.__reg & _ROUND_MASK);
  154. }
  155. __fenv_static inline int
  156. fesetround(int __round)
  157. {
  158. union __fpscr __r;
  159. if (__round & ~_ROUND_MASK)
  160. return (-1);
  161. __mffs(&__r.__d);
  162. __r.__bits.__reg &= ~_ROUND_MASK;
  163. __r.__bits.__reg |= __round;
  164. __mtfsf(__r.__d);
  165. return (0);
  166. }
  167. __fenv_static inline int
  168. fegetenv(fenv_t *__envp)
  169. {
  170. union __fpscr __r;
  171. __mffs(&__r.__d);
  172. *__envp = __r.__bits.__reg;
  173. return (0);
  174. }
  175. __fenv_static inline int
  176. feholdexcept(fenv_t *__envp)
  177. {
  178. union __fpscr __r;
  179. __mffs(&__r.__d);
  180. *__envp = __r.__d;
  181. __r.__bits.__reg &= ~(FE_ALL_EXCEPT | _ENABLE_MASK);
  182. __mtfsf(__r.__d);
  183. return (0);
  184. }
  185. __fenv_static inline int
  186. fesetenv(const fenv_t *__envp)
  187. {
  188. union __fpscr __r;
  189. __r.__bits.__reg = *__envp;
  190. __mtfsf(__r.__d);
  191. return (0);
  192. }
  193. __fenv_static inline int
  194. feupdateenv(const fenv_t *__envp)
  195. {
  196. union __fpscr __r;
  197. __mffs(&__r.__d);
  198. __r.__bits.__reg &= FE_ALL_EXCEPT;
  199. __r.__bits.__reg |= *__envp;
  200. __mtfsf(__r.__d);
  201. return (0);
  202. }
  203. #if __BSD_VISIBLE
  204. /* We currently provide no external definitions of the functions below. */
  205. static inline int
  206. feenableexcept(int __mask)
  207. {
  208. union __fpscr __r;
  209. fenv_t __oldmask;
  210. __mffs(&__r.__d);
  211. __oldmask = __r.__bits.__reg;
  212. __r.__bits.__reg |= (__mask & FE_ALL_EXCEPT) >> _FPUSW_SHIFT;
  213. __mtfsf(__r.__d);
  214. return ((__oldmask & _ENABLE_MASK) << _FPUSW_SHIFT);
  215. }
  216. static inline int
  217. fedisableexcept(int __mask)
  218. {
  219. union __fpscr __r;
  220. fenv_t __oldmask;
  221. __mffs(&__r.__d);
  222. __oldmask = __r.__bits.__reg;
  223. __r.__bits.__reg &= ~((__mask & FE_ALL_EXCEPT) >> _FPUSW_SHIFT);
  224. __mtfsf(__r.__d);
  225. return ((__oldmask & _ENABLE_MASK) << _FPUSW_SHIFT);
  226. }
  227. static inline int
  228. fegetexcept(void)
  229. {
  230. union __fpscr __r;
  231. __mffs(&__r.__d);
  232. return ((__r.__bits.__reg & _ENABLE_MASK) << _FPUSW_SHIFT);
  233. }
  234. #endif /* __BSD_VISIBLE */
  235. __END_DECLS
  236. #endif /* !_FENV_H_ */