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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* Software floating-point emulation.
  2.    Basic four-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),
  7.   David S. Miller (davem@redhat.com) and
  8.   Peter Maydell (pmaydell@chiark.greenend.org.uk).
  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_4_H__
  22. #define __MATH_EMU_OP_4_H__
  23. #define _FP_FRAC_DECL_4(X) _FP_W_TYPE X##_f[4]
  24. #define _FP_FRAC_COPY_4(D,S)
  25.   (D##_f[0] = S##_f[0], D##_f[1] = S##_f[1],
  26.    D##_f[2] = S##_f[2], D##_f[3] = S##_f[3])
  27. #define _FP_FRAC_SET_4(X,I) __FP_FRAC_SET_4(X, I)
  28. #define _FP_FRAC_HIGH_4(X) (X##_f[3])
  29. #define _FP_FRAC_LOW_4(X) (X##_f[0])
  30. #define _FP_FRAC_WORD_4(X,w) (X##_f[w])
  31. #define _FP_FRAC_SLL_4(X,N)
  32.   do {
  33.     _FP_I_TYPE _up, _down, _skip, _i;
  34.     _skip = (N) / _FP_W_TYPE_SIZE;
  35.     _up = (N) % _FP_W_TYPE_SIZE;
  36.     _down = _FP_W_TYPE_SIZE - _up;
  37.     if (!_up)
  38.       for (_i = 3; _i >= _skip; --_i)
  39. X##_f[_i] = X##_f[_i-_skip];
  40.     else
  41.       {
  42. for (_i = 3; _i > _skip; --_i)
  43.   X##_f[_i] = X##_f[_i-_skip] << _up
  44.       | X##_f[_i-_skip-1] >> _down;
  45. X##_f[_i--] = X##_f[0] << _up; 
  46.       }
  47.     for (; _i >= 0; --_i)
  48.       X##_f[_i] = 0;
  49.   } while (0)
  50. /* This one was broken too */
  51. #define _FP_FRAC_SRL_4(X,N)
  52.   do {
  53.     _FP_I_TYPE _up, _down, _skip, _i;
  54.     _skip = (N) / _FP_W_TYPE_SIZE;
  55.     _down = (N) % _FP_W_TYPE_SIZE;
  56.     _up = _FP_W_TYPE_SIZE - _down;
  57.     if (!_down)
  58.       for (_i = 0; _i <= 3-_skip; ++_i)
  59. X##_f[_i] = X##_f[_i+_skip];
  60.     else
  61.       {
  62. for (_i = 0; _i < 3-_skip; ++_i)
  63.   X##_f[_i] = X##_f[_i+_skip] >> _down
  64.       | X##_f[_i+_skip+1] << _up;
  65. X##_f[_i++] = X##_f[3] >> _down;
  66.       }
  67.     for (; _i < 4; ++_i)
  68.       X##_f[_i] = 0;
  69.   } while (0)
  70. /* Right shift with sticky-lsb. 
  71.  * What this actually means is that we do a standard right-shift,
  72.  * but that if any of the bits that fall off the right hand side
  73.  * were one then we always set the LSbit.
  74.  */
  75. #define _FP_FRAC_SRS_4(X,N,size)
  76.   do {
  77.     _FP_I_TYPE _up, _down, _skip, _i;
  78.     _FP_W_TYPE _s;
  79.     _skip = (N) / _FP_W_TYPE_SIZE;
  80.     _down = (N) % _FP_W_TYPE_SIZE;
  81.     _up = _FP_W_TYPE_SIZE - _down;
  82.     for (_s = _i = 0; _i < _skip; ++_i)
  83.       _s |= X##_f[_i];
  84.     _s |= X##_f[_i] << _up;
  85. /* s is now != 0 if we want to set the LSbit */
  86.     if (!_down)
  87.       for (_i = 0; _i <= 3-_skip; ++_i)
  88. X##_f[_i] = X##_f[_i+_skip];
  89.     else
  90.       {
  91. for (_i = 0; _i < 3-_skip; ++_i)
  92.   X##_f[_i] = X##_f[_i+_skip] >> _down
  93.       | X##_f[_i+_skip+1] << _up;
  94. X##_f[_i++] = X##_f[3] >> _down;
  95.       }
  96.     for (; _i < 4; ++_i)
  97.       X##_f[_i] = 0;
  98.     /* don't fix the LSB until the very end when we're sure f[0] is stable */
  99.     X##_f[0] |= (_s != 0);
  100.   } while (0)
  101. #define _FP_FRAC_ADD_4(R,X,Y)
  102.   __FP_FRAC_ADD_4(R##_f[3], R##_f[2], R##_f[1], R##_f[0],
  103.   X##_f[3], X##_f[2], X##_f[1], X##_f[0],
  104.   Y##_f[3], Y##_f[2], Y##_f[1], Y##_f[0])
  105. #define _FP_FRAC_SUB_4(R,X,Y)
  106.   __FP_FRAC_SUB_4(R##_f[3], R##_f[2], R##_f[1], R##_f[0],
  107.   X##_f[3], X##_f[2], X##_f[1], X##_f[0],
  108.   Y##_f[3], Y##_f[2], Y##_f[1], Y##_f[0])
  109. #define _FP_FRAC_DEC_4(X,Y)
  110.   __FP_FRAC_DEC_4(X##_f[3], X##_f[2], X##_f[1], X##_f[0],
  111.   Y##_f[3], Y##_f[2], Y##_f[1], Y##_f[0])
  112. #define _FP_FRAC_ADDI_4(X,I)
  113.   __FP_FRAC_ADDI_4(X##_f[3], X##_f[2], X##_f[1], X##_f[0], I)
  114. #define _FP_ZEROFRAC_4  0,0,0,0
  115. #define _FP_MINFRAC_4   0,0,0,1
  116. #define _FP_MAXFRAC_4 (~(_FP_WS_TYPE)0), (~(_FP_WS_TYPE)0), (~(_FP_WS_TYPE)0), (~(_FP_WS_TYPE)0)
  117. #define _FP_FRAC_ZEROP_4(X)     ((X##_f[0] | X##_f[1] | X##_f[2] | X##_f[3]) == 0)
  118. #define _FP_FRAC_NEGP_4(X)      ((_FP_WS_TYPE)X##_f[3] < 0)
  119. #define _FP_FRAC_OVERP_4(fs,X)  (_FP_FRAC_HIGH_##fs(X) & _FP_OVERFLOW_##fs)
  120. #define _FP_FRAC_CLEAR_OVERP_4(fs,X)  (_FP_FRAC_HIGH_##fs(X) &= ~_FP_OVERFLOW_##fs)
  121. #define _FP_FRAC_EQ_4(X,Y)
  122.  (X##_f[0] == Y##_f[0] && X##_f[1] == Y##_f[1]
  123.   && X##_f[2] == Y##_f[2] && X##_f[3] == Y##_f[3])
  124. #define _FP_FRAC_GT_4(X,Y)
  125.  (X##_f[3] > Y##_f[3] ||
  126.   (X##_f[3] == Y##_f[3] && (X##_f[2] > Y##_f[2] ||
  127.    (X##_f[2] == Y##_f[2] && (X##_f[1] > Y##_f[1] ||
  128.     (X##_f[1] == Y##_f[1] && X##_f[0] > Y##_f[0])
  129.    ))
  130.   ))
  131.  )
  132. #define _FP_FRAC_GE_4(X,Y)
  133.  (X##_f[3] > Y##_f[3] ||
  134.   (X##_f[3] == Y##_f[3] && (X##_f[2] > Y##_f[2] ||
  135.    (X##_f[2] == Y##_f[2] && (X##_f[1] > Y##_f[1] ||
  136.     (X##_f[1] == Y##_f[1] && X##_f[0] >= Y##_f[0])
  137.    ))
  138.   ))
  139.  )
  140. #define _FP_FRAC_CLZ_4(R,X)
  141.   do {
  142.     if (X##_f[3])
  143.     {
  144. __FP_CLZ(R,X##_f[3]);
  145.     }
  146.     else if (X##_f[2])
  147.     {
  148. __FP_CLZ(R,X##_f[2]);
  149. R += _FP_W_TYPE_SIZE;
  150.     }
  151.     else if (X##_f[1])
  152.     {
  153. __FP_CLZ(R,X##_f[2]);
  154. R += _FP_W_TYPE_SIZE*2;
  155.     }
  156.     else
  157.     {
  158. __FP_CLZ(R,X##_f[0]);
  159. R += _FP_W_TYPE_SIZE*3;
  160.     }
  161.   } while(0)
  162. #define _FP_UNPACK_RAW_4(fs, X, val)
  163.   do {
  164.     union _FP_UNION_##fs _flo; _flo.flt = (val);
  165.     X##_f[0] = _flo.bits.frac0;
  166.     X##_f[1] = _flo.bits.frac1;
  167.     X##_f[2] = _flo.bits.frac2;
  168.     X##_f[3] = _flo.bits.frac3;
  169.     X##_e  = _flo.bits.exp;
  170.     X##_s  = _flo.bits.sign;
  171.   } while (0)
  172. #define _FP_UNPACK_RAW_4_P(fs, X, val)
  173.   do {
  174.     union _FP_UNION_##fs *_flo =
  175.       (union _FP_UNION_##fs *)(val);
  176.     X##_f[0] = _flo->bits.frac0;
  177.     X##_f[1] = _flo->bits.frac1;
  178.     X##_f[2] = _flo->bits.frac2;
  179.     X##_f[3] = _flo->bits.frac3;
  180.     X##_e  = _flo->bits.exp;
  181.     X##_s  = _flo->bits.sign;
  182.   } while (0)
  183. #define _FP_PACK_RAW_4(fs, val, X)
  184.   do {
  185.     union _FP_UNION_##fs _flo;
  186.     _flo.bits.frac0 = X##_f[0];
  187.     _flo.bits.frac1 = X##_f[1];
  188.     _flo.bits.frac2 = X##_f[2];
  189.     _flo.bits.frac3 = X##_f[3];
  190.     _flo.bits.exp   = X##_e;
  191.     _flo.bits.sign  = X##_s;
  192.     (val) = _flo.flt;    
  193.   } while (0)
  194. #define _FP_PACK_RAW_4_P(fs, val, X)
  195.   do {
  196.     union _FP_UNION_##fs *_flo =
  197.       (union _FP_UNION_##fs *)(val);
  198.     _flo->bits.frac0 = X##_f[0];
  199.     _flo->bits.frac1 = X##_f[1];
  200.     _flo->bits.frac2 = X##_f[2];
  201.     _flo->bits.frac3 = X##_f[3];
  202.     _flo->bits.exp   = X##_e;
  203.     _flo->bits.sign  = X##_s;
  204.   } while (0)
  205. /*
  206.  * Multiplication algorithms:
  207.  */
  208. /* Given a 1W * 1W => 2W primitive, do the extended multiplication.  */
  209. #define _FP_MUL_MEAT_4_wide(wfracbits, R, X, Y, doit)     
  210.   do {     
  211.     _FP_FRAC_DECL_8(_z); _FP_FRAC_DECL_2(_b); _FP_FRAC_DECL_2(_c);     
  212.     _FP_FRAC_DECL_2(_d); _FP_FRAC_DECL_2(_e); _FP_FRAC_DECL_2(_f);     
  213.     
  214.     doit(_FP_FRAC_WORD_8(_z,1), _FP_FRAC_WORD_8(_z,0), X##_f[0], Y##_f[0]); 
  215.     doit(_b_f1, _b_f0, X##_f[0], Y##_f[1]);     
  216.     doit(_c_f1, _c_f0, X##_f[1], Y##_f[0]);     
  217.     doit(_d_f1, _d_f0, X##_f[1], Y##_f[1]);     
  218.     doit(_e_f1, _e_f0, X##_f[0], Y##_f[2]);     
  219.     doit(_f_f1, _f_f0, X##_f[2], Y##_f[0]);     
  220.     __FP_FRAC_ADD_3(_FP_FRAC_WORD_8(_z,3),_FP_FRAC_WORD_8(_z,2),     
  221.     _FP_FRAC_WORD_8(_z,1), 0,_b_f1,_b_f0,     
  222.     0,0,_FP_FRAC_WORD_8(_z,1));     
  223.     __FP_FRAC_ADD_3(_FP_FRAC_WORD_8(_z,3),_FP_FRAC_WORD_8(_z,2),     
  224.     _FP_FRAC_WORD_8(_z,1), 0,_c_f1,_c_f0,     
  225.     _FP_FRAC_WORD_8(_z,3),_FP_FRAC_WORD_8(_z,2),     
  226.     _FP_FRAC_WORD_8(_z,1));     
  227.     __FP_FRAC_ADD_3(_FP_FRAC_WORD_8(_z,4),_FP_FRAC_WORD_8(_z,3),     
  228.     _FP_FRAC_WORD_8(_z,2), 0,_d_f1,_d_f0,     
  229.     0,_FP_FRAC_WORD_8(_z,3),_FP_FRAC_WORD_8(_z,2));     
  230.     __FP_FRAC_ADD_3(_FP_FRAC_WORD_8(_z,4),_FP_FRAC_WORD_8(_z,3),     
  231.     _FP_FRAC_WORD_8(_z,2), 0,_e_f1,_e_f0,     
  232.     _FP_FRAC_WORD_8(_z,4),_FP_FRAC_WORD_8(_z,3),     
  233.     _FP_FRAC_WORD_8(_z,2));     
  234.     __FP_FRAC_ADD_3(_FP_FRAC_WORD_8(_z,4),_FP_FRAC_WORD_8(_z,3),     
  235.     _FP_FRAC_WORD_8(_z,2), 0,_f_f1,_f_f0,     
  236.     _FP_FRAC_WORD_8(_z,4),_FP_FRAC_WORD_8(_z,3),     
  237.     _FP_FRAC_WORD_8(_z,2));     
  238.     doit(_b_f1, _b_f0, X##_f[0], Y##_f[3]);     
  239.     doit(_c_f1, _c_f0, X##_f[3], Y##_f[0]);     
  240.     doit(_d_f1, _d_f0, X##_f[1], Y##_f[2]);     
  241.     doit(_e_f1, _e_f0, X##_f[2], Y##_f[1]);     
  242.     __FP_FRAC_ADD_3(_FP_FRAC_WORD_8(_z,5),_FP_FRAC_WORD_8(_z,4),     
  243.     _FP_FRAC_WORD_8(_z,3), 0,_b_f1,_b_f0,     
  244.     0,_FP_FRAC_WORD_8(_z,4),_FP_FRAC_WORD_8(_z,3));     
  245.     __FP_FRAC_ADD_3(_FP_FRAC_WORD_8(_z,5),_FP_FRAC_WORD_8(_z,4),     
  246.     _FP_FRAC_WORD_8(_z,3), 0,_c_f1,_c_f0,     
  247.     _FP_FRAC_WORD_8(_z,5),_FP_FRAC_WORD_8(_z,4),     
  248.     _FP_FRAC_WORD_8(_z,3));     
  249.     __FP_FRAC_ADD_3(_FP_FRAC_WORD_8(_z,5),_FP_FRAC_WORD_8(_z,4),     
  250.     _FP_FRAC_WORD_8(_z,3), 0,_d_f1,_d_f0,     
  251.     _FP_FRAC_WORD_8(_z,5),_FP_FRAC_WORD_8(_z,4),     
  252.     _FP_FRAC_WORD_8(_z,3));     
  253.     __FP_FRAC_ADD_3(_FP_FRAC_WORD_8(_z,5),_FP_FRAC_WORD_8(_z,4),     
  254.     _FP_FRAC_WORD_8(_z,3), 0,_e_f1,_e_f0,     
  255.     _FP_FRAC_WORD_8(_z,5),_FP_FRAC_WORD_8(_z,4),     
  256.     _FP_FRAC_WORD_8(_z,3));     
  257.     doit(_b_f1, _b_f0, X##_f[2], Y##_f[2]);     
  258.     doit(_c_f1, _c_f0, X##_f[1], Y##_f[3]);     
  259.     doit(_d_f1, _d_f0, X##_f[3], Y##_f[1]);     
  260.     doit(_e_f1, _e_f0, X##_f[2], Y##_f[3]);     
  261.     doit(_f_f1, _f_f0, X##_f[3], Y##_f[2]);     
  262.     __FP_FRAC_ADD_3(_FP_FRAC_WORD_8(_z,6),_FP_FRAC_WORD_8(_z,5),     
  263.     _FP_FRAC_WORD_8(_z,4), 0,_b_f1,_b_f0,     
  264.     0,_FP_FRAC_WORD_8(_z,5),_FP_FRAC_WORD_8(_z,4));     
  265.     __FP_FRAC_ADD_3(_FP_FRAC_WORD_8(_z,6),_FP_FRAC_WORD_8(_z,5),     
  266.     _FP_FRAC_WORD_8(_z,4), 0,_c_f1,_c_f0,     
  267.     _FP_FRAC_WORD_8(_z,6),_FP_FRAC_WORD_8(_z,5),     
  268.     _FP_FRAC_WORD_8(_z,4));     
  269.     __FP_FRAC_ADD_3(_FP_FRAC_WORD_8(_z,6),_FP_FRAC_WORD_8(_z,5),     
  270.     _FP_FRAC_WORD_8(_z,4), 0,_d_f1,_d_f0,     
  271.     _FP_FRAC_WORD_8(_z,6),_FP_FRAC_WORD_8(_z,5),     
  272.     _FP_FRAC_WORD_8(_z,4));     
  273.     __FP_FRAC_ADD_3(_FP_FRAC_WORD_8(_z,7),_FP_FRAC_WORD_8(_z,6),     
  274.     _FP_FRAC_WORD_8(_z,5), 0,_e_f1,_e_f0,     
  275.     0,_FP_FRAC_WORD_8(_z,6),_FP_FRAC_WORD_8(_z,5));     
  276.     __FP_FRAC_ADD_3(_FP_FRAC_WORD_8(_z,7),_FP_FRAC_WORD_8(_z,6),     
  277.     _FP_FRAC_WORD_8(_z,5), 0,_f_f1,_f_f0,     
  278.     _FP_FRAC_WORD_8(_z,7),_FP_FRAC_WORD_8(_z,6),     
  279.     _FP_FRAC_WORD_8(_z,5));     
  280.     doit(_b_f1, _b_f0, X##_f[3], Y##_f[3]);     
  281.     __FP_FRAC_ADD_2(_FP_FRAC_WORD_8(_z,7),_FP_FRAC_WORD_8(_z,6),     
  282.     _b_f1,_b_f0,     
  283.     _FP_FRAC_WORD_8(_z,7),_FP_FRAC_WORD_8(_z,6));     
  284.     
  285.     /* Normalize since we know where the msb of the multiplicands     
  286.        were (bit B), we know that the msb of the of the product is     
  287.        at either 2B or 2B-1.  */     
  288.     _FP_FRAC_SRS_8(_z, wfracbits-1, 2*wfracbits);     
  289.     __FP_FRAC_SET_4(R, _FP_FRAC_WORD_8(_z,3), _FP_FRAC_WORD_8(_z,2),     
  290.     _FP_FRAC_WORD_8(_z,1), _FP_FRAC_WORD_8(_z,0));     
  291.   } while (0)
  292. #define _FP_MUL_MEAT_4_gmp(wfracbits, R, X, Y)     
  293.   do {     
  294.     _FP_FRAC_DECL_8(_z);     
  295.     
  296.     mpn_mul_n(_z_f, _x_f, _y_f, 4);     
  297.     
  298.     /* Normalize since we know where the msb of the multiplicands     
  299.        were (bit B), we know that the msb of the of the product is     
  300.        at either 2B or 2B-1.  */     
  301.     _FP_FRAC_SRS_8(_z, wfracbits-1, 2*wfracbits);       
  302.     __FP_FRAC_SET_4(R, _FP_FRAC_WORD_8(_z,3), _FP_FRAC_WORD_8(_z,2),     
  303.     _FP_FRAC_WORD_8(_z,1), _FP_FRAC_WORD_8(_z,0));     
  304.   } while (0)
  305. /*
  306.  * Helper utility for _FP_DIV_MEAT_4_udiv:
  307.  * pppp = m * nnn
  308.  */
  309. #define umul_ppppmnnn(p3,p2,p1,p0,m,n2,n1,n0)     
  310.   do {     
  311.     UWtype _t;     
  312.     umul_ppmm(p1,p0,m,n0);     
  313.     umul_ppmm(p2,_t,m,n1);     
  314.     __FP_FRAC_ADDI_2(p2,p1,_t);     
  315.     umul_ppmm(p3,_t,m,n2);     
  316.     __FP_FRAC_ADDI_2(p3,p2,_t);     
  317.   } while (0)
  318. /*
  319.  * Division algorithms:
  320.  */
  321. #define _FP_DIV_MEAT_4_udiv(fs, R, X, Y)     
  322.   do {     
  323.     int _i;     
  324.     _FP_FRAC_DECL_4(_n); _FP_FRAC_DECL_4(_m);     
  325.     _FP_FRAC_SET_4(_n, _FP_ZEROFRAC_4);     
  326.     if (_FP_FRAC_GT_4(X, Y))     
  327.       {     
  328. _n_f[3] = X##_f[0] << (_FP_W_TYPE_SIZE - 1);     
  329. _FP_FRAC_SRL_4(X, 1);     
  330.       }     
  331.     else     
  332.       R##_e--;     
  333.     
  334.     /* Normalize, i.e. make the most significant bit of the      
  335.        denominator set. */     
  336.     _FP_FRAC_SLL_4(Y, _FP_WFRACXBITS_##fs);     
  337.     
  338.     for (_i = 3; ; _i--)     
  339.       {     
  340.         if (X##_f[3] == Y##_f[3])     
  341.           {     
  342.             /* This is a special case, not an optimization     
  343.                (X##_f[3]/Y##_f[3] would not fit into UWtype).     
  344.                As X## is guaranteed to be < Y,  R##_f[_i] can be either     
  345.                (UWtype)-1 or (UWtype)-2.  */     
  346.             R##_f[_i] = -1;     
  347.             if (!_i)     
  348.       break;     
  349.             __FP_FRAC_SUB_4(X##_f[3], X##_f[2], X##_f[1], X##_f[0],     
  350.     Y##_f[2], Y##_f[1], Y##_f[0], 0,     
  351.     X##_f[2], X##_f[1], X##_f[0], _n_f[_i]);     
  352.             _FP_FRAC_SUB_4(X, Y, X);     
  353.             if (X##_f[3] > Y##_f[3])     
  354.               {     
  355.                 R##_f[_i] = -2;     
  356.                 _FP_FRAC_ADD_4(X, Y, X);     
  357.               }     
  358.           }     
  359.         else     
  360.           {     
  361.             udiv_qrnnd(R##_f[_i], X##_f[3], X##_f[3], X##_f[2], Y##_f[3]);  
  362.             umul_ppppmnnn(_m_f[3], _m_f[2], _m_f[1], _m_f[0],     
  363.   R##_f[_i], Y##_f[2], Y##_f[1], Y##_f[0]);     
  364.             X##_f[2] = X##_f[1];     
  365.             X##_f[1] = X##_f[0];     
  366.             X##_f[0] = _n_f[_i];     
  367.             if (_FP_FRAC_GT_4(_m, X))     
  368.               {     
  369.                 R##_f[_i]--;     
  370.                 _FP_FRAC_ADD_4(X, Y, X);     
  371.                 if (_FP_FRAC_GE_4(X, Y) && _FP_FRAC_GT_4(_m, X))     
  372.                   {     
  373.     R##_f[_i]--;     
  374.     _FP_FRAC_ADD_4(X, Y, X);     
  375.                   }     
  376.               }     
  377.             _FP_FRAC_DEC_4(X, _m);     
  378.             if (!_i)     
  379.       {     
  380. if (!_FP_FRAC_EQ_4(X, _m))     
  381.   R##_f[0] |= _FP_WORK_STICKY;     
  382. break;     
  383.       }     
  384.           }     
  385.       }     
  386.   } while (0)
  387. /*
  388.  * Square root algorithms:
  389.  * We have just one right now, maybe Newton approximation
  390.  * should be added for those machines where division is fast.
  391.  */
  392.  
  393. #define _FP_SQRT_MEAT_4(R, S, T, X, q)
  394.   do {
  395.     while (q)
  396.       {
  397. T##_f[3] = S##_f[3] + q;
  398. if (T##_f[3] <= X##_f[3])
  399.   {
  400.     S##_f[3] = T##_f[3] + q;
  401.     X##_f[3] -= T##_f[3];
  402.     R##_f[3] += q;
  403.   }
  404. _FP_FRAC_SLL_4(X, 1);
  405. q >>= 1;
  406.       }
  407.     q = (_FP_W_TYPE)1 << (_FP_W_TYPE_SIZE - 1);
  408.     while (q)
  409.       {
  410. T##_f[2] = S##_f[2] + q;
  411. T##_f[3] = S##_f[3];
  412. if (T##_f[3] < X##_f[3] || 
  413.     (T##_f[3] == X##_f[3] && T##_f[2] <= X##_f[2]))
  414.   {
  415.     S##_f[2] = T##_f[2] + q;
  416.     S##_f[3] += (T##_f[2] > S##_f[2]);
  417.     __FP_FRAC_DEC_2(X##_f[3], X##_f[2],
  418.     T##_f[3], T##_f[2]);
  419.     R##_f[2] += q;
  420.   }
  421. _FP_FRAC_SLL_4(X, 1);
  422. q >>= 1;
  423.       }
  424.     q = (_FP_W_TYPE)1 << (_FP_W_TYPE_SIZE - 1);
  425.     while (q)
  426.       {
  427. T##_f[1] = S##_f[1] + q;
  428. T##_f[2] = S##_f[2];
  429. T##_f[3] = S##_f[3];
  430. if (T##_f[3] < X##_f[3] || 
  431.     (T##_f[3] == X##_f[3] && (T##_f[2] < X##_f[2] ||
  432.      (T##_f[2] == X##_f[2] && T##_f[1] <= X##_f[1]))))
  433.   {
  434.     S##_f[1] = T##_f[1] + q;
  435.     S##_f[2] += (T##_f[1] > S##_f[1]);
  436.     S##_f[3] += (T##_f[2] > S##_f[2]);
  437.     __FP_FRAC_DEC_3(X##_f[3], X##_f[2], X##_f[1],
  438.          T##_f[3], T##_f[2], T##_f[1]);
  439.     R##_f[1] += q;
  440.   }
  441. _FP_FRAC_SLL_4(X, 1);
  442. q >>= 1;
  443.       }
  444.     q = (_FP_W_TYPE)1 << (_FP_W_TYPE_SIZE - 1);
  445.     while (q != _FP_WORK_ROUND)
  446.       {
  447. T##_f[0] = S##_f[0] + q;
  448. T##_f[1] = S##_f[1];
  449. T##_f[2] = S##_f[2];
  450. T##_f[3] = S##_f[3];
  451. if (_FP_FRAC_GE_4(X,T))
  452.   {
  453.     S##_f[0] = T##_f[0] + q;
  454.     S##_f[1] += (T##_f[0] > S##_f[0]);
  455.     S##_f[2] += (T##_f[1] > S##_f[1]);
  456.     S##_f[3] += (T##_f[2] > S##_f[2]);
  457.     _FP_FRAC_DEC_4(X, T);
  458.     R##_f[0] += q;
  459.   }
  460. _FP_FRAC_SLL_4(X, 1);
  461. q >>= 1;
  462.       }
  463.     if (!_FP_FRAC_ZEROP_4(X))
  464.       {
  465. if (_FP_FRAC_GT_4(X,S))
  466.   R##_f[0] |= _FP_WORK_ROUND;
  467. R##_f[0] |= _FP_WORK_STICKY;
  468.       }
  469.   } while (0)
  470. /*
  471.  * Internals 
  472.  */
  473. #define __FP_FRAC_SET_4(X,I3,I2,I1,I0)
  474.   (X##_f[3] = I3, X##_f[2] = I2, X##_f[1] = I1, X##_f[0] = I0)
  475. #ifndef __FP_FRAC_ADD_3
  476. #define __FP_FRAC_ADD_3(r2,r1,r0,x2,x1,x0,y2,y1,y0)
  477.   do {
  478.     int _c1, _c2;
  479.     r0 = x0 + y0;
  480.     _c1 = r0 < x0;
  481.     r1 = x1 + y1;
  482.     _c2 = r1 < x1;
  483.     r1 += _c1;
  484.     _c2 |= r1 < _c1;
  485.     r2 = x2 + y2 + _c2;
  486.   } while (0)
  487. #endif
  488. #ifndef __FP_FRAC_ADD_4
  489. #define __FP_FRAC_ADD_4(r3,r2,r1,r0,x3,x2,x1,x0,y3,y2,y1,y0)
  490.   do {
  491.     int _c1, _c2, _c3;
  492.     r0 = x0 + y0;
  493.     _c1 = r0 < x0;
  494.     r1 = x1 + y1;
  495.     _c2 = r1 < x1;
  496.     r1 += _c1;
  497.     _c2 |= r1 < _c1;
  498.     r2 = x2 + y2;
  499.     _c3 = r2 < x2;
  500.     r2 += _c2;
  501.     _c3 |= r2 < _c2;
  502.     r3 = x3 + y3 + _c3;
  503.   } while (0)
  504. #endif
  505. #ifndef __FP_FRAC_SUB_3
  506. #define __FP_FRAC_SUB_3(r2,r1,r0,x2,x1,x0,y2,y1,y0)
  507.   do {
  508.     int _c1, _c2;
  509.     r0 = x0 - y0;
  510.     _c1 = r0 > x0;
  511.     r1 = x1 - y1;
  512.     _c2 = r1 > x1;
  513.     r1 -= _c1;
  514.     _c2 |= r1 > _c1;
  515.     r2 = x2 - y2 - _c2;
  516.   } while (0)
  517. #endif
  518. #ifndef __FP_FRAC_SUB_4
  519. #define __FP_FRAC_SUB_4(r3,r2,r1,r0,x3,x2,x1,x0,y3,y2,y1,y0)
  520.   do {
  521.     int _c1, _c2, _c3;
  522.     r0 = x0 - y0;
  523.     _c1 = r0 > x0;
  524.     r1 = x1 - y1;
  525.     _c2 = r1 > x1;
  526.     r1 -= _c1;
  527.     _c2 |= r1 > _c1;
  528.     r2 = x2 - y2;
  529.     _c3 = r2 > x2;
  530.     r2 -= _c2;
  531.     _c3 |= r2 > _c2;
  532.     r3 = x3 - y3 - _c3;
  533.   } while (0)
  534. #endif
  535. #ifndef __FP_FRAC_DEC_3
  536. #define __FP_FRAC_DEC_3(x2,x1,x0,y2,y1,y0)
  537.   do {
  538.     UWtype _t0, _t1, _t2;
  539.     _t0 = x0, _t1 = x1, _t2 = x2;
  540.     __FP_FRAC_SUB_3 (x2, x1, x0, _t2, _t1, _t0, y2, y1, y0);
  541.   } while (0)
  542. #endif
  543. #ifndef __FP_FRAC_DEC_4
  544. #define __FP_FRAC_DEC_4(x3,x2,x1,x0,y3,y2,y1,y0)
  545.   do {
  546.     UWtype _t0, _t1, _t2, _t3;
  547.     _t0 = x0, _t1 = x1, _t2 = x2, _t3 = x3;
  548.     __FP_FRAC_SUB_4 (x3,x2,x1,x0,_t3,_t2,_t1,_t0, y3,y2,y1,y0);
  549.   } while (0)
  550. #endif
  551. #ifndef __FP_FRAC_ADDI_4
  552. #define __FP_FRAC_ADDI_4(x3,x2,x1,x0,i)
  553.   do {
  554.     UWtype _t;
  555.     _t = ((x0 += i) < i);
  556.     x1 += _t; _t = (x1 < _t);
  557.     x2 += _t; _t = (x2 < _t);
  558.     x3 += _t;
  559.   } while (0)
  560. #endif
  561. /* Convert FP values between word sizes. This appears to be more
  562.  * complicated than I'd have expected it to be, so these might be
  563.  * wrong... These macros are in any case somewhat bogus because they
  564.  * use information about what various FRAC_n variables look like 
  565.  * internally [eg, that 2 word vars are X_f0 and x_f1]. But so do
  566.  * the ones in op-2.h and op-1.h. 
  567.  */
  568. #define _FP_FRAC_CONV_1_4(dfs, sfs, D, S)
  569.    do {
  570.      if (S##_c != FP_CLS_NAN)
  571.        _FP_FRAC_SRS_4(S, (_FP_WFRACBITS_##sfs - _FP_WFRACBITS_##dfs),
  572.   _FP_WFRACBITS_##sfs);
  573.      else
  574.        _FP_FRAC_SRL_4(S, (_FP_WFRACBITS_##sfs - _FP_WFRACBITS_##dfs));
  575.      D##_f = S##_f[0];
  576.   } while (0)
  577. #define _FP_FRAC_CONV_2_4(dfs, sfs, D, S)
  578.    do {
  579.      if (S##_c != FP_CLS_NAN)
  580.        _FP_FRAC_SRS_4(S, (_FP_WFRACBITS_##sfs - _FP_WFRACBITS_##dfs),
  581.       _FP_WFRACBITS_##sfs);
  582.      else
  583.        _FP_FRAC_SRL_4(S, (_FP_WFRACBITS_##sfs - _FP_WFRACBITS_##dfs));
  584.      D##_f0 = S##_f[0];
  585.      D##_f1 = S##_f[1];
  586.   } while (0)
  587. /* Assembly/disassembly for converting to/from integral types.  
  588.  * No shifting or overflow handled here.
  589.  */
  590. /* Put the FP value X into r, which is an integer of size rsize. */
  591. #define _FP_FRAC_ASSEMBLE_4(r, X, rsize)
  592.   do {
  593.     if (rsize <= _FP_W_TYPE_SIZE)
  594.       r = X##_f[0];
  595.     else if (rsize <= 2*_FP_W_TYPE_SIZE)
  596.     {
  597.       r = X##_f[1];
  598.       r <<= _FP_W_TYPE_SIZE;
  599.       r += X##_f[0];
  600.     }
  601.     else
  602.     {
  603.       /* I'm feeling lazy so we deal with int == 3words (implausible)*/
  604.       /* and int == 4words as a single case.  */
  605.       r = X##_f[3];
  606.       r <<= _FP_W_TYPE_SIZE;
  607.       r += X##_f[2];
  608.       r <<= _FP_W_TYPE_SIZE;
  609.       r += X##_f[1];
  610.       r <<= _FP_W_TYPE_SIZE;
  611.       r += X##_f[0];
  612.     }
  613.   } while (0)
  614. /* "No disassemble Number Five!" */
  615. /* move an integer of size rsize into X's fractional part. We rely on
  616.  * the _f[] array consisting of words of size _FP_W_TYPE_SIZE to avoid
  617.  * having to mask the values we store into it.
  618.  */
  619. #define _FP_FRAC_DISASSEMBLE_4(X, r, rsize)
  620.   do {
  621.     X##_f[0] = r;
  622.     X##_f[1] = (rsize <= _FP_W_TYPE_SIZE ? 0 : r >> _FP_W_TYPE_SIZE);
  623.     X##_f[2] = (rsize <= 2*_FP_W_TYPE_SIZE ? 0 : r >> 2*_FP_W_TYPE_SIZE); 
  624.     X##_f[3] = (rsize <= 3*_FP_W_TYPE_SIZE ? 0 : r >> 3*_FP_W_TYPE_SIZE); 
  625.   } while (0)
  626. #define _FP_FRAC_CONV_4_1(dfs, sfs, D, S)
  627.    do {
  628.      D##_f[0] = S##_f;
  629.      D##_f[1] = D##_f[2] = D##_f[3] = 0;
  630.      _FP_FRAC_SLL_4(D, (_FP_WFRACBITS_##dfs - _FP_WFRACBITS_##sfs));
  631.    } while (0)
  632. #define _FP_FRAC_CONV_4_2(dfs, sfs, D, S)
  633.    do {
  634.      D##_f[0] = S##_f0;
  635.      D##_f[1] = S##_f1;
  636.      D##_f[2] = D##_f[3] = 0;
  637.      _FP_FRAC_SLL_4(D, (_FP_WFRACBITS_##dfs - _FP_WFRACBITS_##sfs));
  638.    } while (0)
  639. #endif