openlibm_fenv_powerpc.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. /*-
  2. * Copyright (c) 2004-2005 David Schultz <[email protected]>
  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 <sys/types.h>
  31. #ifndef __fenv_static
  32. #define __fenv_static static
  33. #endif
  34. typedef __uint32_t fenv_t;
  35. typedef __uint32_t fexcept_t;
  36. /* Exception flags */
  37. #define FE_INEXACT 0x02000000
  38. #define FE_DIVBYZERO 0x04000000
  39. #define FE_UNDERFLOW 0x08000000
  40. #define FE_OVERFLOW 0x10000000
  41. #define FE_INVALID 0x20000000 /* all types of invalid FP ops */
  42. /*
  43. * The PowerPC architecture has extra invalid flags that indicate the
  44. * specific type of invalid operation occurred. These flags may be
  45. * tested, set, and cleared---but not masked---separately. All of
  46. * these bits are cleared when FE_INVALID is cleared, but only
  47. * FE_VXSOFT is set when FE_INVALID is explicitly set in software.
  48. */
  49. #define FE_VXCVI 0x00000100 /* invalid integer convert */
  50. #define FE_VXSQRT 0x00000200 /* square root of a negative */
  51. #define FE_VXSOFT 0x00000400 /* software-requested exception */
  52. #define FE_VXVC 0x00080000 /* ordered comparison involving NaN */
  53. #define FE_VXIMZ 0x00100000 /* inf * 0 */
  54. #define FE_VXZDZ 0x00200000 /* 0 / 0 */
  55. #define FE_VXIDI 0x00400000 /* inf / inf */
  56. #define FE_VXISI 0x00800000 /* inf - inf */
  57. #define FE_VXSNAN 0x01000000 /* operation on a signalling NaN */
  58. #define FE_ALL_INVALID (FE_VXCVI | FE_VXSQRT | FE_VXSOFT | FE_VXVC | \
  59. FE_VXIMZ | FE_VXZDZ | FE_VXIDI | FE_VXISI | \
  60. FE_VXSNAN | FE_INVALID)
  61. #define FE_ALL_EXCEPT (FE_DIVBYZERO | FE_INEXACT | \
  62. FE_ALL_INVALID | FE_OVERFLOW | FE_UNDERFLOW)
  63. /* Rounding modes */
  64. #define FE_TONEAREST 0x0000
  65. #define FE_TOWARDZERO 0x0001
  66. #define FE_UPWARD 0x0002
  67. #define FE_DOWNWARD 0x0003
  68. #define _ROUND_MASK (FE_TONEAREST | FE_DOWNWARD | \
  69. FE_UPWARD | FE_TOWARDZERO)
  70. __BEGIN_DECLS
  71. /* Default floating-point environment */
  72. extern const fenv_t __fe_dfl_env;
  73. #define FE_DFL_ENV (&__fe_dfl_env)
  74. /* We need to be able to map status flag positions to mask flag positions */
  75. #define _FPUSW_SHIFT 22
  76. #define _ENABLE_MASK ((FE_DIVBYZERO | FE_INEXACT | FE_INVALID | \
  77. FE_OVERFLOW | FE_UNDERFLOW) >> _FPUSW_SHIFT)
  78. #ifndef _SOFT_FLOAT
  79. #define __mffs(__env) __asm __volatile("mffs %0" : "=f" (*(__env)))
  80. #define __mtfsf(__env) __asm __volatile("mtfsf 255,%0" : : "f" (__env))
  81. #else
  82. #define __mffs(__env)
  83. #define __mtfsf(__env)
  84. #endif
  85. union __fpscr {
  86. double __d;
  87. struct {
  88. #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
  89. fenv_t __reg;
  90. __uint32_t __junk;
  91. #else
  92. __uint32_t __junk;
  93. fenv_t __reg;
  94. #endif
  95. } __bits;
  96. };
  97. __fenv_static inline int
  98. feclearexcept(int __excepts)
  99. {
  100. union __fpscr __r;
  101. if (__excepts & FE_INVALID)
  102. __excepts |= FE_ALL_INVALID;
  103. __mffs(&__r.__d);
  104. __r.__bits.__reg &= ~__excepts;
  105. __mtfsf(__r.__d);
  106. return (0);
  107. }
  108. __fenv_static inline int
  109. fegetexceptflag(fexcept_t *__flagp, int __excepts)
  110. {
  111. union __fpscr __r;
  112. __mffs(&__r.__d);
  113. *__flagp = __r.__bits.__reg & __excepts;
  114. return (0);
  115. }
  116. __fenv_static inline int
  117. fesetexceptflag(const fexcept_t *__flagp, int __excepts)
  118. {
  119. union __fpscr __r;
  120. if (__excepts & FE_INVALID)
  121. __excepts |= FE_ALL_EXCEPT;
  122. __mffs(&__r.__d);
  123. __r.__bits.__reg &= ~__excepts;
  124. __r.__bits.__reg |= *__flagp & __excepts;
  125. __mtfsf(__r.__d);
  126. return (0);
  127. }
  128. __fenv_static inline int
  129. feraiseexcept(int __excepts)
  130. {
  131. union __fpscr __r;
  132. if (__excepts & FE_INVALID)
  133. __excepts |= FE_VXSOFT;
  134. __mffs(&__r.__d);
  135. __r.__bits.__reg |= __excepts;
  136. __mtfsf(__r.__d);
  137. return (0);
  138. }
  139. __fenv_static inline int
  140. fetestexcept(int __excepts)
  141. {
  142. union __fpscr __r;
  143. __mffs(&__r.__d);
  144. return (__r.__bits.__reg & __excepts);
  145. }
  146. __fenv_static inline int
  147. fegetround(void)
  148. {
  149. union __fpscr __r;
  150. __mffs(&__r.__d);
  151. return (__r.__bits.__reg & _ROUND_MASK);
  152. }
  153. __fenv_static inline int
  154. fesetround(int __round)
  155. {
  156. union __fpscr __r;
  157. if (__round & ~_ROUND_MASK)
  158. return (-1);
  159. __mffs(&__r.__d);
  160. __r.__bits.__reg &= ~_ROUND_MASK;
  161. __r.__bits.__reg |= __round;
  162. __mtfsf(__r.__d);
  163. return (0);
  164. }
  165. __fenv_static inline int
  166. fegetenv(fenv_t *__envp)
  167. {
  168. union __fpscr __r;
  169. __mffs(&__r.__d);
  170. *__envp = __r.__bits.__reg;
  171. return (0);
  172. }
  173. __fenv_static inline int
  174. feholdexcept(fenv_t *__envp)
  175. {
  176. union __fpscr __r;
  177. __mffs(&__r.__d);
  178. *__envp = __r.__d;
  179. __r.__bits.__reg &= ~(FE_ALL_EXCEPT | _ENABLE_MASK);
  180. __mtfsf(__r.__d);
  181. return (0);
  182. }
  183. __fenv_static inline int
  184. fesetenv(const fenv_t *__envp)
  185. {
  186. union __fpscr __r;
  187. __r.__bits.__reg = *__envp;
  188. __mtfsf(__r.__d);
  189. return (0);
  190. }
  191. __fenv_static inline int
  192. feupdateenv(const fenv_t *__envp)
  193. {
  194. union __fpscr __r;
  195. __mffs(&__r.__d);
  196. __r.__bits.__reg &= FE_ALL_EXCEPT;
  197. __r.__bits.__reg |= *__envp;
  198. __mtfsf(__r.__d);
  199. return (0);
  200. }
  201. #if __BSD_VISIBLE
  202. /* We currently provide no external definitions of the functions below. */
  203. static inline int
  204. feenableexcept(int __mask)
  205. {
  206. union __fpscr __r;
  207. fenv_t __oldmask;
  208. __mffs(&__r.__d);
  209. __oldmask = __r.__bits.__reg;
  210. __r.__bits.__reg |= (__mask & FE_ALL_EXCEPT) >> _FPUSW_SHIFT;
  211. __mtfsf(__r.__d);
  212. return ((__oldmask & _ENABLE_MASK) << _FPUSW_SHIFT);
  213. }
  214. static inline int
  215. fedisableexcept(int __mask)
  216. {
  217. union __fpscr __r;
  218. fenv_t __oldmask;
  219. __mffs(&__r.__d);
  220. __oldmask = __r.__bits.__reg;
  221. __r.__bits.__reg &= ~((__mask & FE_ALL_EXCEPT) >> _FPUSW_SHIFT);
  222. __mtfsf(__r.__d);
  223. return ((__oldmask & _ENABLE_MASK) << _FPUSW_SHIFT);
  224. }
  225. static inline int
  226. fegetexcept(void)
  227. {
  228. union __fpscr __r;
  229. __mffs(&__r.__d);
  230. return ((__r.__bits.__reg & _ENABLE_MASK) << _FPUSW_SHIFT);
  231. }
  232. #endif /* __BSD_VISIBLE */
  233. __END_DECLS
  234. #endif /* !_FENV_H_ */