fpu_control.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /* 68k FPU control word definitions.
  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. /*
  17. * Motorola floating point control register bits.
  18. *
  19. * 31-16 -> reserved (read as 0, ignored on write)
  20. * 15 -> enable trap for BSUN exception
  21. * 14 -> enable trap for SNAN exception
  22. * 13 -> enable trap for OPERR exception
  23. * 12 -> enable trap for OVFL exception
  24. * 11 -> enable trap for UNFL exception
  25. * 10 -> enable trap for DZ exception
  26. * 9 -> enable trap for INEX2 exception (INEX on Coldfire)
  27. * 8 -> enable trap for INEX1 exception (IDE on Coldfire)
  28. * 7-6 -> Precision Control (only bit 6 is used on Coldfire)
  29. * 5-4 -> Rounding Control
  30. * 3-0 -> zero (read as 0, write as 0)
  31. *
  32. *
  33. * Precision Control:
  34. * 00 - round to extended precision
  35. * 01 - round to single precision
  36. * 10 - round to double precision
  37. * 11 - undefined
  38. *
  39. * Rounding Control:
  40. * 00 - rounding to nearest (RN)
  41. * 01 - rounding toward zero (RZ)
  42. * 10 - rounding (down)toward minus infinity (RM)
  43. * 11 - rounding (up) toward plus infinity (RP)
  44. *
  45. * The hardware default is 0x0000. I choose 0x5400.
  46. */
  47. #include <features.h>
  48. #if defined (__mcoldfire__) && !defined (__mcffpu__)
  49. # define _FPU_RESERVED 0xffffffff
  50. # define _FPU_DEFAULT 0x00000000
  51. # define _FPU_GETCW(cw) ((cw) = 0)
  52. # define _FPU_SETCW(cw) ((void) (cw))
  53. #else
  54. /* masking of interrupts */
  55. # define _FPU_MASK_BSUN 0x8000
  56. # define _FPU_MASK_SNAN 0x4000
  57. # define _FPU_MASK_OPERR 0x2000
  58. # define _FPU_MASK_OVFL 0x1000
  59. # define _FPU_MASK_UNFL 0x0800
  60. # define _FPU_MASK_DZ 0x0400
  61. # define _FPU_MASK_INEX1 0x0200
  62. # define _FPU_MASK_INEX2 0x0100
  63. /* precision control */
  64. # ifdef __mcoldfire__
  65. # define _FPU_DOUBLE 0x00
  66. # else
  67. # define _FPU_EXTENDED 0x00 /* RECOMMENDED */
  68. # define _FPU_DOUBLE 0x80
  69. # endif
  70. # define _FPU_SINGLE 0x40 /* DO NOT USE */
  71. /* rounding control */
  72. # define _FPU_RC_NEAREST 0x00 /* RECOMMENDED */
  73. # define _FPU_RC_ZERO 0x10
  74. # define _FPU_RC_DOWN 0x20
  75. # define _FPU_RC_UP 0x30
  76. # ifdef __mcoldfire__
  77. # define _FPU_RESERVED 0xFFFF800F
  78. # else
  79. # define _FPU_RESERVED 0xFFFF000F /* Reserved bits in fpucr */
  80. # endif
  81. /* Now two recommended fpucr */
  82. /* The fdlibm code requires no interrupts for exceptions. Don't
  83. change the rounding mode, it would break long double I/O! */
  84. # define _FPU_DEFAULT 0x00000000
  85. /* IEEE: same as above, but exceptions. We must make it non-zero so
  86. that __setfpucw works. This bit will be ignored. */
  87. # define _FPU_IEEE 0x00000001
  88. /* Macros for accessing the hardware control word. */
  89. # define _FPU_GETCW(cw) __asm__ ("fmove%.l %!, %0" : "=dm" (cw))
  90. # define _FPU_SETCW(cw) __asm__ volatile ("fmove%.l %0, %!" : : "dm" (cw))
  91. #endif
  92. /* Type of the control word. */
  93. typedef unsigned int fpu_control_t __attribute__ ((__mode__ (__SI__)));
  94. /* Default control word set at startup. */
  95. extern fpu_control_t __fpu_control;
  96. #endif /* _M68K_FPU_CONTROL_H */