ieee754d.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:4k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Some debug functions
  3.  *
  4.  * MIPS floating point support
  5.  *
  6.  * Copyright (C) 1994-2000 Algorithmics Ltd.  All rights reserved.
  7.  * http://www.algor.co.uk
  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.  *  59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
  21.  *
  22.  *  Nov 7, 2000
  23.  *  Modified to build and operate in Linux kernel environment.
  24.  *
  25.  *  Kevin D. Kissell, kevink@mips.com and Carsten Langgaard, carstenl@mips.com
  26.  *  Copyright (C) 2000 MIPS Technologies, Inc. All rights reserved.
  27.  */
  28. #include <linux/kernel.h>
  29. #include "ieee754.h"
  30. #define DP_EBIAS 1023
  31. #define DP_EMIN (-1022)
  32. #define DP_EMAX 1023
  33. #define DP_FBITS 52
  34. #define SP_EBIAS 127
  35. #define SP_EMIN (-126)
  36. #define SP_EMAX 127
  37. #define SP_FBITS 23
  38. #define DP_MBIT(x) ((u64)1 << (x))
  39. #define DP_HIDDEN_BIT DP_MBIT(DP_FBITS)
  40. #define DP_SIGN_BIT DP_MBIT(63)
  41. #define SP_MBIT(x) ((u32)1 << (x))
  42. #define SP_HIDDEN_BIT SP_MBIT(SP_FBITS)
  43. #define SP_SIGN_BIT SP_MBIT(31)
  44. #define SPSIGN(sp) (sp.parts.sign)
  45. #define SPBEXP(sp) (sp.parts.bexp)
  46. #define SPMANT(sp) (sp.parts.mant)
  47. #define DPSIGN(dp) (dp.parts.sign)
  48. #define DPBEXP(dp) (dp.parts.bexp)
  49. #define DPMANT(dp) (dp.parts.mant)
  50. ieee754dp ieee754dp_dump(char *m, ieee754dp x)
  51. {
  52. int i;
  53. printk("%s", m);
  54. printk("<%08x,%08x>n", (unsigned) (x.bits >> 32),
  55.        (unsigned) x.bits);
  56. printk("t=");
  57. switch (ieee754dp_class(x)) {
  58. case IEEE754_CLASS_QNAN:
  59. case IEEE754_CLASS_SNAN:
  60. printk("Nan %c", DPSIGN(x) ? '-' : '+');
  61. for (i = DP_FBITS - 1; i >= 0; i--)
  62. printk("%c", DPMANT(x) & DP_MBIT(i) ? '1' : '0');
  63. break;
  64. case IEEE754_CLASS_INF:
  65. printk("%cInfinity", DPSIGN(x) ? '-' : '+');
  66. break;
  67. case IEEE754_CLASS_ZERO:
  68. printk("%cZero", DPSIGN(x) ? '-' : '+');
  69. break;
  70. case IEEE754_CLASS_DNORM:
  71. printk("%c0.", DPSIGN(x) ? '-' : '+');
  72. for (i = DP_FBITS - 1; i >= 0; i--)
  73. printk("%c", DPMANT(x) & DP_MBIT(i) ? '1' : '0');
  74. printk("e%d", DPBEXP(x) - DP_EBIAS);
  75. break;
  76. case IEEE754_CLASS_NORM:
  77. printk("%c1.", DPSIGN(x) ? '-' : '+');
  78. for (i = DP_FBITS - 1; i >= 0; i--)
  79. printk("%c", DPMANT(x) & DP_MBIT(i) ? '1' : '0');
  80. printk("e%d", DPBEXP(x) - DP_EBIAS);
  81. break;
  82. default:
  83. printk("Illegal/Unknown IEEE754 value class");
  84. }
  85. printk("n");
  86. return x;
  87. }
  88. ieee754sp ieee754sp_dump(char *m, ieee754sp x)
  89. {
  90. int i;
  91. printk("%s=", m);
  92. printk("<%08x>n", (unsigned) x.bits);
  93. printk("t=");
  94. switch (ieee754sp_class(x)) {
  95. case IEEE754_CLASS_QNAN:
  96. case IEEE754_CLASS_SNAN:
  97. printk("Nan %c", SPSIGN(x) ? '-' : '+');
  98. for (i = SP_FBITS - 1; i >= 0; i--)
  99. printk("%c", SPMANT(x) & SP_MBIT(i) ? '1' : '0');
  100. break;
  101. case IEEE754_CLASS_INF:
  102. printk("%cInfinity", SPSIGN(x) ? '-' : '+');
  103. break;
  104. case IEEE754_CLASS_ZERO:
  105. printk("%cZero", SPSIGN(x) ? '-' : '+');
  106. break;
  107. case IEEE754_CLASS_DNORM:
  108. printk("%c0.", SPSIGN(x) ? '-' : '+');
  109. for (i = SP_FBITS - 1; i >= 0; i--)
  110. printk("%c", SPMANT(x) & SP_MBIT(i) ? '1' : '0');
  111. printk("e%d", SPBEXP(x) - SP_EBIAS);
  112. break;
  113. case IEEE754_CLASS_NORM:
  114. printk("%c1.", SPSIGN(x) ? '-' : '+');
  115. for (i = SP_FBITS - 1; i >= 0; i--)
  116. printk("%c", SPMANT(x) & SP_MBIT(i) ? '1' : '0');
  117. printk("e%d", SPBEXP(x) - SP_EBIAS);
  118. break;
  119. default:
  120. printk("Illegal/Unknown IEEE754 value class");
  121. }
  122. printk("n");
  123. return x;
  124. }