dp_tint.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

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. switch (xc) {
  34. case IEEE754_CLASS_SNAN:
  35. case IEEE754_CLASS_QNAN:
  36. SETCX(IEEE754_INVALID_OPERATION);
  37. return ieee754si_xcpt(ieee754si_indef(), "fixdp", x);
  38. case IEEE754_CLASS_INF:
  39. SETCX(IEEE754_OVERFLOW);
  40. return ieee754si_xcpt(ieee754si_indef(), "fixdp", x);
  41. case IEEE754_CLASS_ZERO:
  42. return 0;
  43. case IEEE754_CLASS_DNORM: /* much to small */
  44. SETCX(IEEE754_UNDERFLOW);
  45. return ieee754si_xcpt(0, "fixdp", x);
  46. case IEEE754_CLASS_NORM:
  47. break;
  48. }
  49. if (xe >= 31) {
  50. SETCX(IEEE754_OVERFLOW);
  51. return ieee754si_xcpt(ieee754si_indef(), "fix", x);
  52. }
  53. if (xe < 0) {
  54. SETCX(IEEE754_UNDERFLOW);
  55. return ieee754si_xcpt(0, "fix", x);
  56. }
  57. /* oh gawd */
  58. if (xe > DP_MBITS) {
  59. xm <<= xe - DP_MBITS;
  60. } else if (xe < DP_MBITS) {
  61. /* XXX no rounding 
  62.  */
  63. xm >>= DP_MBITS - xe;
  64. }
  65. if (xs)
  66. return -xm;
  67. else
  68. return xm;
  69. }
  70. unsigned int ieee754dp_tuns(ieee754dp x)
  71. {
  72. ieee754dp hb = ieee754dp_1e31();
  73. /* what if x < 0 ?? */
  74. if (ieee754dp_lt(x, hb))
  75. return (unsigned) ieee754dp_tint(x);
  76. return (unsigned) ieee754dp_tint(ieee754dp_sub(x, hb)) |
  77.     ((unsigned) 1 << 31);
  78. }