fpu_control.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /* FPU control word bits. Mips version.
  2. Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. Contributed by Olaf Flebbe and Ralf Baechle.
  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, see
  15. <http://www.gnu.org/licenses/>. */
  16. #ifndef _FPU_CONTROL_H
  17. #define _FPU_CONTROL_H
  18. /* MIPS FPU floating point control register bits.
  19. *
  20. * 31-25 -> floating point conditions code bits 7-1. These bits are only
  21. * available in MIPS IV.
  22. * 24 -> flush denormalized results to zero instead of
  23. * causing unimplemented operation exception. This bit is only
  24. * available for MIPS III and newer.
  25. * 23 -> Condition bit
  26. * 22-18 -> reserved (read as 0, write with 0)
  27. * 17 -> cause bit for unimplemented operation
  28. * 16 -> cause bit for invalid exception
  29. * 15 -> cause bit for division by zero exception
  30. * 14 -> cause bit for overflow exception
  31. * 13 -> cause bit for underflow exception
  32. * 12 -> cause bit for inexact exception
  33. * 11 -> enable exception for invalid exception
  34. * 10 -> enable exception for division by zero exception
  35. * 9 -> enable exception for overflow exception
  36. * 8 -> enable exception for underflow exception
  37. * 7 -> enable exception for inexact exception
  38. * 6 -> flag invalid exception
  39. * 5 -> flag division by zero exception
  40. * 4 -> flag overflow exception
  41. * 3 -> flag underflow exception
  42. * 2 -> flag inexact exception
  43. * 1-0 -> rounding control
  44. *
  45. *
  46. * Rounding Control:
  47. * 00 - rounding to nearest (RN)
  48. * 01 - rounding toward zero (RZ)
  49. * 10 - rounding (up) toward plus infinity (RP)
  50. * 11 - rounding (down)toward minus infinity (RM)
  51. */
  52. #include <features.h>
  53. /* masking of interrupts */
  54. #define _FPU_MASK_V 0x0800 /* Invalid operation */
  55. #define _FPU_MASK_Z 0x0400 /* Division by zero */
  56. #define _FPU_MASK_O 0x0200 /* Overflow */
  57. #define _FPU_MASK_U 0x0100 /* Underflow */
  58. #define _FPU_MASK_I 0x0080 /* Inexact operation */
  59. /* flush denormalized numbers to zero */
  60. #define _FPU_FLUSH_TZ 0x1000000
  61. /* rounding control */
  62. #define _FPU_RC_NEAREST 0x0 /* RECOMMENDED */
  63. #define _FPU_RC_ZERO 0x1
  64. #define _FPU_RC_UP 0x2
  65. #define _FPU_RC_DOWN 0x3
  66. #define _FPU_RESERVED 0xfe3c0000 /* Reserved bits in cw */
  67. /* The fdlibm code requires strict IEEE double precision arithmetic,
  68. and no interrupts for exceptions, rounding to nearest. */
  69. #define _FPU_DEFAULT 0x00000000
  70. /* IEEE: same as above, but exceptions */
  71. #define _FPU_IEEE 0x00000F80
  72. /* Type of the control word. */
  73. typedef unsigned int fpu_control_t __attribute__ ((__mode__ (__SI__)));
  74. /* Macros for accessing the hardware control word. */
  75. #define _FPU_GETCW(cw) __asm__ ("cfc1 %0,$31" : "=r" (cw))
  76. #define _FPU_SETCW(cw) __asm__ ("ctc1 %0,$31" : : "r" (cw))
  77. #if 0
  78. /* Default control word set at startup. */
  79. extern fpu_control_t __fpu_control;
  80. #endif
  81. #endif /* fpu_control.h */