fpu_control.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. /* FPU control word bits. Mips version.
  2. Copyright (C) 1996-2025 Free Software Foundation, Inc.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public
  5. License as published by the Free Software Foundation; either
  6. version 2.1 of the License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with the GNU C Library. If not, see
  13. <https://www.gnu.org/licenses/>. */
  14. #ifndef _FPU_CONTROL_H
  15. #define _FPU_CONTROL_H
  16. /* MIPS FPU floating point control register bits.
  17. *
  18. * 31-25 -> floating point conditions code bits 7-1. These bits are only
  19. * available in MIPS IV.
  20. * 24 -> flush denormalized results to zero instead of
  21. * causing unimplemented operation exception. This bit is only
  22. * available for MIPS III and newer.
  23. * 23 -> Condition bit
  24. * 22-21 -> reserved for architecture implementers
  25. * 20 -> reserved (read as 0, write with 0)
  26. * 19 -> IEEE 754-2008 non-arithmetic ABS.fmt and NEG.fmt enable
  27. * 18 -> IEEE 754-2008 recommended NaN encoding enable
  28. * 17 -> cause bit for unimplemented operation
  29. * 16 -> cause bit for invalid exception
  30. * 15 -> cause bit for division by zero exception
  31. * 14 -> cause bit for overflow exception
  32. * 13 -> cause bit for underflow exception
  33. * 12 -> cause bit for inexact exception
  34. * 11 -> enable exception for invalid exception
  35. * 10 -> enable exception for division by zero exception
  36. * 9 -> enable exception for overflow exception
  37. * 8 -> enable exception for underflow exception
  38. * 7 -> enable exception for inexact exception
  39. * 6 -> flag invalid exception
  40. * 5 -> flag division by zero exception
  41. * 4 -> flag overflow exception
  42. * 3 -> flag underflow exception
  43. * 2 -> flag inexact exception
  44. * 1-0 -> rounding control
  45. *
  46. *
  47. * Rounding Control:
  48. * 00 - rounding to nearest (RN)
  49. * 01 - rounding toward zero (RZ)
  50. * 10 - rounding (up) toward plus infinity (RP)
  51. * 11 - rounding (down)toward minus infinity (RM)
  52. */
  53. #include <features.h>
  54. #ifdef __mips_soft_float
  55. #define _FPU_RESERVED 0xffffffff
  56. #define _FPU_DEFAULT 0x00000000
  57. typedef unsigned int fpu_control_t;
  58. #define _FPU_GETCW(cw) (cw) = 0
  59. #define _FPU_SETCW(cw) (void) (cw)
  60. extern fpu_control_t __fpu_control;
  61. #else /* __mips_soft_float */
  62. /* Masks for interrupts. */
  63. #define _FPU_MASK_V 0x0800 /* Invalid operation */
  64. #define _FPU_MASK_Z 0x0400 /* Division by zero */
  65. #define _FPU_MASK_O 0x0200 /* Overflow */
  66. #define _FPU_MASK_U 0x0100 /* Underflow */
  67. #define _FPU_MASK_I 0x0080 /* Inexact operation */
  68. /* Flush denormalized numbers to zero. */
  69. #define _FPU_FLUSH_TZ 0x1000000
  70. /* IEEE 754-2008 compliance control. */
  71. #define _FPU_ABS2008 0x80000
  72. #define _FPU_NAN2008 0x40000
  73. /* Rounding control. */
  74. #define _FPU_RC_NEAREST 0x0 /* RECOMMENDED */
  75. #define _FPU_RC_ZERO 0x1
  76. #define _FPU_RC_UP 0x2
  77. #define _FPU_RC_DOWN 0x3
  78. /* Mask for rounding control. */
  79. #define _FPU_RC_MASK 0x3
  80. #define _FPU_RESERVED 0xfe8c0000 /* Reserved bits in cw, incl ABS/NAN2008. */
  81. /* The fdlibm code requires strict IEEE double precision arithmetic,
  82. and no interrupts for exceptions, rounding to nearest. */
  83. #ifdef __mips_nan2008
  84. # define _FPU_DEFAULT 0x000C0000
  85. #else
  86. # define _FPU_DEFAULT 0x00000000
  87. #endif
  88. /* IEEE: same as above, but exceptions. */
  89. #ifdef __mips_nan2008
  90. # define _FPU_IEEE 0x000C0F80
  91. #else
  92. # define _FPU_IEEE 0x00000F80
  93. #endif
  94. /* Type of the control word. */
  95. typedef unsigned int fpu_control_t __attribute__ ((__mode__ (__SI__)));
  96. /* Macros for accessing the hardware control word. */
  97. extern fpu_control_t __mips_fpu_getcw (void) __THROW;
  98. extern void __mips_fpu_setcw (fpu_control_t) __THROW;
  99. #ifdef __mips16
  100. # define _FPU_GETCW(cw) do { (cw) = __mips_fpu_getcw (); } while (0)
  101. # define _FPU_SETCW(cw) __mips_fpu_setcw (cw)
  102. #else
  103. # define _FPU_GETCW(cw) __asm__ volatile ("cfc1 %0,$31" : "=r" (cw))
  104. # define _FPU_SETCW(cw) __asm__ volatile ("ctc1 %0,$31" : : "r" (cw))
  105. #endif
  106. /* Default control word set at startup. */
  107. extern fpu_control_t __fpu_control;
  108. #endif /* __mips_soft_float */
  109. #endif /* fpu_control.h */