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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* IEEE754 floating point arithmetic
  2.  * double precision: common utilities
  3.  */
  4. /*
  5.  * MIPS floating point support
  6.  * Copyright (C) 1994-2000 Algorithmics Ltd.  All rights reserved.
  7.  * http://www.algor.co.uk
  8.  *
  9.  * ########################################################################
  10.  *
  11.  *  This program is free software; you can distribute it and/or modify it
  12.  *  under the terms of the GNU General Public License (Version 2) as
  13.  *  published by the Free Software Foundation.
  14.  *
  15.  *  This program is distributed in the hope it will be useful, but WITHOUT
  16.  *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  17.  *  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  18.  *  for more details.
  19.  *
  20.  *  You should have received a copy of the GNU General Public License along
  21.  *  with this program; if not, write to the Free Software Foundation, Inc.,
  22.  *  59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
  23.  *
  24.  * ########################################################################
  25.  */
  26. #include <linux/kernel.h>
  27. #include "ieee754dp.h"
  28. int ieee754dp_tint(ieee754dp x)
  29. {
  30. COMPXDP;
  31. CLEARCX;
  32. EXPLODEXDP;
  33. FLUSHXDP;
  34. switch (xc) {
  35. case IEEE754_CLASS_SNAN:
  36. case IEEE754_CLASS_QNAN:
  37. case IEEE754_CLASS_INF:
  38. SETCX(IEEE754_INVALID_OPERATION);
  39. return ieee754si_xcpt(ieee754si_indef(), "dp_tint", x);
  40. case IEEE754_CLASS_ZERO:
  41. return 0;
  42. case IEEE754_CLASS_DNORM:
  43. case IEEE754_CLASS_NORM:
  44. break;
  45. }
  46. if (xe > 31) {
  47. /* Set invalid. We will only use overflow for floating
  48.    point overflow */
  49. SETCX(IEEE754_INVALID_OPERATION);
  50. return ieee754si_xcpt(ieee754si_indef(), "dp_tint", x);
  51. }
  52. /* oh gawd */
  53. if (xe > DP_MBITS) {
  54. xm <<= xe - DP_MBITS;
  55. } else if (xe < DP_MBITS) {
  56. u64 residue;
  57. int round;
  58. int sticky;
  59. int odd;
  60. if (xe < -1) {
  61. residue = xm;
  62. round = 0;
  63. sticky = residue != 0;
  64. xm = 0;
  65. }
  66. else {
  67. residue = xm << (64 - DP_MBITS + xe);
  68. round = (residue >> 63) != 0;
  69. sticky = (residue << 1) != 0;
  70. xm >>= DP_MBITS - xe;
  71. }
  72. /* Note: At this point upper 32 bits of xm are guaranteed
  73.    to be zero */
  74. odd = (xm & 0x1) != 0x0;
  75. switch (ieee754_csr.rm) {
  76. case IEEE754_RN:
  77. if (round && (sticky || odd))
  78. xm++;
  79. break;
  80. case IEEE754_RZ:
  81. break;
  82. case IEEE754_RU: /* toward +Infinity */
  83. if ((round || sticky) && !xs)
  84. xm++;
  85. break;
  86. case IEEE754_RD: /* toward -Infinity */
  87. if ((round || sticky) && xs)
  88. xm++;
  89. break;
  90. }
  91. /* look for valid corner case 0x80000000 */
  92. if ((xm >> 31) != 0 && (xs == 0 || xm != 0x80000000)) {
  93. /* This can happen after rounding */
  94. SETCX(IEEE754_INVALID_OPERATION);
  95. return ieee754si_xcpt(ieee754si_indef(), "dp_tint", x);
  96. }
  97. if (round || sticky)
  98. SETCX(IEEE754_INEXACT);
  99. }
  100. if (xs)
  101. return -xm;
  102. else
  103. return xm;
  104. }
  105. unsigned int ieee754dp_tuns(ieee754dp x)
  106. {
  107. ieee754dp hb = ieee754dp_1e31();
  108. /* what if x < 0 ?? */
  109. if (ieee754dp_lt(x, hb))
  110. return (unsigned) ieee754dp_tint(x);
  111. return (unsigned) ieee754dp_tint(ieee754dp_sub(x, hb)) |
  112.     ((unsigned) 1 << 31);
  113. }