op-8.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* Software floating-point emulation.
  2.    Basic eight-word fraction declaration and manipulation.
  3.    Copyright (C) 1997,1998,1999 Free Software Foundation, Inc.
  4.    This file is part of the GNU C Library.
  5.    Contributed by Richard Henderson (rth@cygnus.com),
  6.   Jakub Jelinek (jj@ultra.linux.cz) and
  7.   Peter Maydell (pmaydell@chiark.greenend.org.uk).
  8.                                                          
  9.    The GNU C Library is free software; you can redistribute it and/or
  10.    modify it under the terms of the GNU Library General Public License as
  11.    published by the Free Software Foundation; either version 2 of the
  12.    License, or (at your option) any later version.
  13.    The GNU C Library is distributed in the hope that it will be useful,
  14.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  16.    Library General Public License for more details.
  17.    You should have received a copy of the GNU Library General Public
  18.    License along with the GNU C Library; see the file COPYING.LIB.  If
  19.    not, write to the Free Software Foundation, Inc.,
  20.    59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  21. #ifndef __MATH_EMU_OP_8_H__
  22. #define __MATH_EMU_OP_8_H__
  23. /* We need just a few things from here for op-4, if we ever need some
  24.    other macros, they can be added. */
  25. #define _FP_FRAC_DECL_8(X) _FP_W_TYPE X##_f[8]
  26. #define _FP_FRAC_HIGH_8(X) (X##_f[7])
  27. #define _FP_FRAC_LOW_8(X) (X##_f[0])
  28. #define _FP_FRAC_WORD_8(X,w) (X##_f[w])
  29. #define _FP_FRAC_SLL_8(X,N)
  30.   do {
  31.     _FP_I_TYPE _up, _down, _skip, _i;
  32.     _skip = (N) / _FP_W_TYPE_SIZE;
  33.     _up = (N) % _FP_W_TYPE_SIZE;
  34.     _down = _FP_W_TYPE_SIZE - _up;
  35.     if (!_up)
  36.       for (_i = 7; _i >= _skip; --_i)
  37. X##_f[_i] = X##_f[_i-_skip];
  38.     else
  39.       {
  40. for (_i = 7; _i > _skip; --_i)
  41.   X##_f[_i] = X##_f[_i-_skip] << _up
  42.       | X##_f[_i-_skip-1] >> _down;
  43. X##_f[_i--] = X##_f[0] << _up; 
  44.       }
  45.     for (; _i >= 0; --_i)
  46.       X##_f[_i] = 0;
  47.   } while (0)
  48. #define _FP_FRAC_SRL_8(X,N)
  49.   do {
  50.     _FP_I_TYPE _up, _down, _skip, _i;
  51.     _skip = (N) / _FP_W_TYPE_SIZE;
  52.     _down = (N) % _FP_W_TYPE_SIZE;
  53.     _up = _FP_W_TYPE_SIZE - _down;
  54.     if (!_down)
  55.       for (_i = 0; _i <= 7-_skip; ++_i)
  56. X##_f[_i] = X##_f[_i+_skip];
  57.     else
  58.       {
  59. for (_i = 0; _i < 7-_skip; ++_i)
  60.   X##_f[_i] = X##_f[_i+_skip] >> _down
  61.       | X##_f[_i+_skip+1] << _up;
  62. X##_f[_i++] = X##_f[7] >> _down;
  63.       }
  64.     for (; _i < 8; ++_i)
  65.       X##_f[_i] = 0;
  66.   } while (0)
  67. /* Right shift with sticky-lsb. 
  68.  * What this actually means is that we do a standard right-shift,
  69.  * but that if any of the bits that fall off the right hand side
  70.  * were one then we always set the LSbit.
  71.  */
  72. #define _FP_FRAC_SRS_8(X,N,size)
  73.   do {
  74.     _FP_I_TYPE _up, _down, _skip, _i;
  75.     _FP_W_TYPE _s;
  76.     _skip = (N) / _FP_W_TYPE_SIZE;
  77.     _down = (N) % _FP_W_TYPE_SIZE;
  78.     _up = _FP_W_TYPE_SIZE - _down;
  79.     for (_s = _i = 0; _i < _skip; ++_i)
  80.       _s |= X##_f[_i];
  81.     _s |= X##_f[_i] << _up;
  82. /* s is now != 0 if we want to set the LSbit */
  83.     if (!_down)
  84.       for (_i = 0; _i <= 7-_skip; ++_i)
  85. X##_f[_i] = X##_f[_i+_skip];
  86.     else
  87.       {
  88. for (_i = 0; _i < 7-_skip; ++_i)
  89.   X##_f[_i] = X##_f[_i+_skip] >> _down
  90.       | X##_f[_i+_skip+1] << _up;
  91. X##_f[_i++] = X##_f[7] >> _down;
  92.       }
  93.     for (; _i < 8; ++_i)
  94.       X##_f[_i] = 0;
  95.     /* don't fix the LSB until the very end when we're sure f[0] is stable */
  96.     X##_f[0] |= (_s != 0);
  97.   } while (0)
  98. #endif