ieee754dp.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*
  2. * IEEE754 floating point
  3. * double precision internal header file
  4. */
  5. /*
  6. * MIPS floating point support
  7. * Copyright (C) 1994-2000 Algorithmics Ltd.
  8. *
  9. * This program is free software; you can distribute it and/or modify it
  10. * under the terms of the GNU General Public License (Version 2) as
  11. * published by the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope it will be useful, but WITHOUT
  14. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  16. * for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License along
  19. * with this program; if not, write to the Free Software Foundation, Inc.,
  20. * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  21. */
  22. #include <linux/compiler.h>
  23. #include "ieee754int.h"
  24. #define assert(expr) ((void)0)
  25. #define DP_EBIAS 1023
  26. #define DP_EMIN (-1022)
  27. #define DP_EMAX 1023
  28. #define DP_FBITS 52
  29. #define DP_MBITS 52
  30. #define DP_MBIT(x) ((u64)1 << (x))
  31. #define DP_HIDDEN_BIT DP_MBIT(DP_FBITS)
  32. #define DP_SIGN_BIT DP_MBIT(63)
  33. #define DPSIGN(dp) (dp.sign)
  34. #define DPBEXP(dp) (dp.bexp)
  35. #define DPMANT(dp) (dp.mant)
  36. static inline int ieee754dp_finite(union ieee754dp x)
  37. {
  38. return DPBEXP(x) != DP_EMAX + 1 + DP_EBIAS;
  39. }
  40. /* 3bit extended double precision sticky right shift */
  41. #define XDPSRS(v,rs) \
  42. ((rs > (DP_FBITS+3))?1:((v) >> (rs)) | ((v) << (64-(rs)) != 0))
  43. #define XDPSRSX1() \
  44. (xe++, (xm = (xm >> 1) | (xm & 1)))
  45. #define XDPSRS1(v) \
  46. (((v) >> 1) | ((v) & 1))
  47. /* convert denormal to normalized with extended exponent */
  48. #define DPDNORMx(m,e) \
  49. while ((m >> DP_FBITS) == 0) { m <<= 1; e--; }
  50. #define DPDNORMX DPDNORMx(xm, xe)
  51. #define DPDNORMY DPDNORMx(ym, ye)
  52. static inline union ieee754dp builddp(int s, int bx, u64 m)
  53. {
  54. union ieee754dp r;
  55. assert((s) == 0 || (s) == 1);
  56. assert((bx) >= DP_EMIN - 1 + DP_EBIAS
  57. && (bx) <= DP_EMAX + 1 + DP_EBIAS);
  58. assert(((m) >> DP_FBITS) == 0);
  59. r.sign = s;
  60. r.bexp = bx;
  61. r.mant = m;
  62. return r;
  63. }
  64. extern union ieee754dp __cold ieee754dp_nanxcpt(union ieee754dp);
  65. extern union ieee754dp ieee754dp_format(int, int, u64);