fpu_control.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /* FPU control word definitions. PowerPC e500 version.
  2. Copyright (C) 1996, 1997, 1998, 2004 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. Contributed by Aldy Hernandez <aldyh@redhat.com>, 2004.
  5. The GNU C Library is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Lesser General Public
  7. License as published by the Free Software Foundation; either
  8. version 2.1 of the License, or (at your option) any later version.
  9. The GNU C Library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. Lesser General Public License for more details.
  13. You should have received a copy of the GNU Lesser General Public
  14. License along with the GNU C Library; if not, write to the Free
  15. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  16. 02111-1307 USA. */
  17. #ifndef _FPU_CONTROL_H
  18. #define _FPU_CONTROL_H
  19. /* rounding control */
  20. #define _FPU_RC_NEAREST 0x00 /* RECOMMENDED */
  21. #define _FPU_RC_DOWN 0x03
  22. #define _FPU_RC_UP 0x02
  23. #define _FPU_RC_ZERO 0x01
  24. #define _FPU_MASK_NI 0x04 /* non-ieee mode */
  25. /* masking of interrupts */
  26. #define _FPU_MASK_ZM 0x10 /* zero divide */
  27. #define _FPU_MASK_OM 0x40 /* overflow */
  28. #define _FPU_MASK_UM 0x20 /* underflow */
  29. #define _FPU_MASK_XM 0x08 /* inexact */
  30. #define _FPU_MASK_IM 0x80 /* invalid operation */
  31. #define _FPU_RESERVED 0xff3fff7f /* These bits are reserved are not changed. */
  32. /* The fdlibm code requires no interrupts for exceptions. */
  33. #define _FPU_DEFAULT 0x00000000 /* Default value. */
  34. /* IEEE: same as above, but (some) exceptions;
  35. we leave the 'inexact' exception off.
  36. */
  37. #define _FPU_IEEE 0x000003c0
  38. /* Type of the control word. */
  39. typedef unsigned int fpu_control_t __attribute__ ((__mode__ (__SI__)));
  40. /* Macros for accessing the hardware control word. */
  41. #define _FPU_GETCW(__cw) ({ \
  42. unsigned int env; \
  43. asm volatile ("mfspefscr %0" : "=r" (env)); \
  44. (__cw) = env; })
  45. #define _FPU_SETCW(__cw) ({ \
  46. unsigned int env = __cw; \
  47. asm volatile ("mtspefscr %0" : : "r" (env)); })
  48. #if 0
  49. /* Default control word set at startup. */
  50. extern fpu_control_t __fpu_control;
  51. #endif
  52. #endif /* _FPU_CONTROL_H */