fpu_control.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /* 68k FPU control word definitions.
  2. Copyright (C) 1996-2019 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library. If not, see
  14. <http://www.gnu.org/licenses/>. */
  15. #ifndef _FPU_CONTROL_H
  16. #define _FPU_CONTROL_H
  17. /*
  18. * Motorola floating point control register bits.
  19. *
  20. * 31-16 -> reserved (read as 0, ignored on write)
  21. * 15 -> enable trap for BSUN exception
  22. * 14 -> enable trap for SNAN exception
  23. * 13 -> enable trap for OPERR exception
  24. * 12 -> enable trap for OVFL exception
  25. * 11 -> enable trap for UNFL exception
  26. * 10 -> enable trap for DZ exception
  27. * 9 -> enable trap for INEX2 exception (INEX on Coldfire)
  28. * 8 -> enable trap for INEX1 exception (IDE on Coldfire)
  29. * 7-6 -> Precision Control (only bit 6 is used on Coldfire)
  30. * 5-4 -> Rounding Control
  31. * 3-0 -> zero (read as 0, write as 0)
  32. *
  33. *
  34. * Precision Control:
  35. * 00 - round to extended precision
  36. * 01 - round to single precision
  37. * 10 - round to double precision
  38. * 11 - undefined
  39. *
  40. * Rounding Control:
  41. * 00 - rounding to nearest (RN)
  42. * 01 - rounding toward zero (RZ)
  43. * 10 - rounding (down)toward minus infinity (RM)
  44. * 11 - rounding (up) toward plus infinity (RP)
  45. *
  46. * The hardware default is 0x0000. I choose 0x5400.
  47. */
  48. #include <features.h>
  49. #if defined (__mcoldfire__) && !defined (__mcffpu__)
  50. # define _FPU_RESERVED 0xffffffff
  51. # define _FPU_DEFAULT 0x00000000
  52. # define _FPU_GETCW(cw) ((cw) = 0)
  53. # define _FPU_SETCW(cw) ((void) (cw))
  54. #else
  55. /* masking of interrupts */
  56. # define _FPU_MASK_BSUN 0x8000
  57. # define _FPU_MASK_SNAN 0x4000
  58. # define _FPU_MASK_OPERR 0x2000
  59. # define _FPU_MASK_OVFL 0x1000
  60. # define _FPU_MASK_UNFL 0x0800
  61. # define _FPU_MASK_DZ 0x0400
  62. # define _FPU_MASK_INEX1 0x0200
  63. # define _FPU_MASK_INEX2 0x0100
  64. /* precision control */
  65. # ifdef __mcoldfire__
  66. # define _FPU_DOUBLE 0x00
  67. # else
  68. # define _FPU_EXTENDED 0x00 /* RECOMMENDED */
  69. # define _FPU_DOUBLE 0x80
  70. # endif
  71. # define _FPU_SINGLE 0x40 /* DO NOT USE */
  72. /* rounding control */
  73. # define _FPU_RC_NEAREST 0x00 /* RECOMMENDED */
  74. # define _FPU_RC_ZERO 0x10
  75. # define _FPU_RC_DOWN 0x20
  76. # define _FPU_RC_UP 0x30
  77. # ifdef __mcoldfire__
  78. # define _FPU_RESERVED 0xFFFF800F
  79. # else
  80. # define _FPU_RESERVED 0xFFFF000F /* Reserved bits in fpucr */
  81. # endif
  82. /* Now two recommended fpucr */
  83. /* The fdlibm code requires no interrupts for exceptions. Don't
  84. change the rounding mode, it would break long double I/O! */
  85. # define _FPU_DEFAULT 0x00000000
  86. /* IEEE: same as above, but exceptions. We must make it non-zero so
  87. that __setfpucw works. This bit will be ignored. */
  88. # define _FPU_IEEE 0x00000001
  89. /* Macros for accessing the hardware control word. */
  90. # define _FPU_GETCW(cw) __asm__ ("fmove%.l %!, %0" : "=dm" (cw))
  91. # define _FPU_SETCW(cw) __asm__ volatile ("fmove%.l %0, %!" : : "dm" (cw))
  92. #endif
  93. /* Type of the control word. */
  94. typedef unsigned int fpu_control_t __attribute__ ((__mode__ (__SI__)));
  95. /* Default control word set at startup. */
  96. extern fpu_control_t __fpu_control;
  97. #endif /* _M68K_FPU_CONTROL_H */