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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* Software floating-point emulation.
  2.    Basic two-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_2_H__
  22. #define __MATH_EMU_OP_2_H__
  23. #define _FP_FRAC_DECL_2(X) _FP_W_TYPE X##_f0, X##_f1
  24. #define _FP_FRAC_COPY_2(D,S) (D##_f0 = S##_f0, D##_f1 = S##_f1)
  25. #define _FP_FRAC_SET_2(X,I) __FP_FRAC_SET_2(X, I)
  26. #define _FP_FRAC_HIGH_2(X) (X##_f1)
  27. #define _FP_FRAC_LOW_2(X) (X##_f0)
  28. #define _FP_FRAC_WORD_2(X,w) (X##_f##w)
  29. #define _FP_FRAC_SLL_2(X,N)
  30.   do {
  31.     if ((N) < _FP_W_TYPE_SIZE)
  32.       {
  33. if (__builtin_constant_p(N) && (N) == 1) 
  34.   {
  35.     X##_f1 = X##_f1 + X##_f1 + (((_FP_WS_TYPE)(X##_f0)) < 0);
  36.     X##_f0 += X##_f0;
  37.   }
  38. else
  39.   {
  40.     X##_f1 = X##_f1 << (N) | X##_f0 >> (_FP_W_TYPE_SIZE - (N));
  41.     X##_f0 <<= (N);
  42.   }
  43.       }
  44.     else
  45.       {
  46. X##_f1 = X##_f0 << ((N) - _FP_W_TYPE_SIZE);
  47. X##_f0 = 0;
  48.       }
  49.   } while (0)
  50. #define _FP_FRAC_SRL_2(X,N)
  51.   do {
  52.     if ((N) < _FP_W_TYPE_SIZE)
  53.       {
  54. X##_f0 = X##_f0 >> (N) | X##_f1 << (_FP_W_TYPE_SIZE - (N));
  55. X##_f1 >>= (N);
  56.       }
  57.     else
  58.       {
  59. X##_f0 = X##_f1 >> ((N) - _FP_W_TYPE_SIZE);
  60. X##_f1 = 0;
  61.       }
  62.   } while (0)
  63. /* Right shift with sticky-lsb.  */
  64. #define _FP_FRAC_SRS_2(X,N,sz)
  65.   do {
  66.     if ((N) < _FP_W_TYPE_SIZE)
  67.       {
  68. X##_f0 = (X##_f1 << (_FP_W_TYPE_SIZE - (N)) | X##_f0 >> (N) |
  69.   (__builtin_constant_p(N) && (N) == 1
  70.    ? X##_f0 & 1
  71.    : (X##_f0 << (_FP_W_TYPE_SIZE - (N))) != 0));
  72. X##_f1 >>= (N);
  73.       }
  74.     else
  75.       {
  76. X##_f0 = (X##_f1 >> ((N) - _FP_W_TYPE_SIZE) |
  77. (((X##_f1 << (2*_FP_W_TYPE_SIZE - (N))) | X##_f0) != 0)); 
  78. X##_f1 = 0;
  79.       }
  80.   } while (0)
  81. #define _FP_FRAC_ADDI_2(X,I)
  82.   __FP_FRAC_ADDI_2(X##_f1, X##_f0, I)
  83. #define _FP_FRAC_ADD_2(R,X,Y)
  84.   __FP_FRAC_ADD_2(R##_f1, R##_f0, X##_f1, X##_f0, Y##_f1, Y##_f0)
  85. #define _FP_FRAC_SUB_2(R,X,Y)
  86.   __FP_FRAC_SUB_2(R##_f1, R##_f0, X##_f1, X##_f0, Y##_f1, Y##_f0)
  87. #define _FP_FRAC_DEC_2(X,Y)
  88.   __FP_FRAC_DEC_2(X##_f1, X##_f0, Y##_f1, Y##_f0)
  89. #define _FP_FRAC_CLZ_2(R,X)
  90.   do {
  91.     if (X##_f1)
  92.       __FP_CLZ(R,X##_f1);
  93.     else 
  94.     {
  95.       __FP_CLZ(R,X##_f0);
  96.       R += _FP_W_TYPE_SIZE;
  97.     }
  98.   } while(0)
  99. /* Predicates */
  100. #define _FP_FRAC_NEGP_2(X) ((_FP_WS_TYPE)X##_f1 < 0)
  101. #define _FP_FRAC_ZEROP_2(X) ((X##_f1 | X##_f0) == 0)
  102. #define _FP_FRAC_OVERP_2(fs,X) (_FP_FRAC_HIGH_##fs(X) & _FP_OVERFLOW_##fs)
  103. #define _FP_FRAC_CLEAR_OVERP_2(fs,X) (_FP_FRAC_HIGH_##fs(X) &= ~_FP_OVERFLOW_##fs)
  104. #define _FP_FRAC_EQ_2(X, Y) (X##_f1 == Y##_f1 && X##_f0 == Y##_f0)
  105. #define _FP_FRAC_GT_2(X, Y)
  106.   (X##_f1 > Y##_f1 || (X##_f1 == Y##_f1 && X##_f0 > Y##_f0))
  107. #define _FP_FRAC_GE_2(X, Y)
  108.   (X##_f1 > Y##_f1 || (X##_f1 == Y##_f1 && X##_f0 >= Y##_f0))
  109. #define _FP_ZEROFRAC_2 0, 0
  110. #define _FP_MINFRAC_2 0, 1
  111. #define _FP_MAXFRAC_2 (~(_FP_WS_TYPE)0), (~(_FP_WS_TYPE)0)
  112. /*
  113.  * Internals 
  114.  */
  115. #define __FP_FRAC_SET_2(X,I1,I0) (X##_f0 = I0, X##_f1 = I1)
  116. #define __FP_CLZ_2(R, xh, xl)
  117.   do {
  118.     if (xh)
  119.       __FP_CLZ(R,xh);
  120.     else 
  121.     {
  122.       __FP_CLZ(R,xl);
  123.       R += _FP_W_TYPE_SIZE;
  124.     }
  125.   } while(0)
  126. #if 0
  127. #ifndef __FP_FRAC_ADDI_2
  128. #define __FP_FRAC_ADDI_2(xh, xl, i)
  129.   (xh += ((xl += i) < i))
  130. #endif
  131. #ifndef __FP_FRAC_ADD_2
  132. #define __FP_FRAC_ADD_2(rh, rl, xh, xl, yh, yl)
  133.   (rh = xh + yh + ((rl = xl + yl) < xl))
  134. #endif
  135. #ifndef __FP_FRAC_SUB_2
  136. #define __FP_FRAC_SUB_2(rh, rl, xh, xl, yh, yl)
  137.   (rh = xh - yh - ((rl = xl - yl) > xl))
  138. #endif
  139. #ifndef __FP_FRAC_DEC_2
  140. #define __FP_FRAC_DEC_2(xh, xl, yh, yl)
  141.   do {
  142.     UWtype _t = xl;
  143.     xh -= yh + ((xl -= yl) > _t);
  144.   } while (0)
  145. #endif
  146. #else
  147. #undef __FP_FRAC_ADDI_2
  148. #define __FP_FRAC_ADDI_2(xh, xl, i) add_ssaaaa(xh, xl, xh, xl, 0, i)
  149. #undef __FP_FRAC_ADD_2
  150. #define __FP_FRAC_ADD_2 add_ssaaaa
  151. #undef __FP_FRAC_SUB_2
  152. #define __FP_FRAC_SUB_2 sub_ddmmss
  153. #undef __FP_FRAC_DEC_2
  154. #define __FP_FRAC_DEC_2(xh, xl, yh, yl) sub_ddmmss(xh, xl, xh, xl, yh, yl)
  155. #endif
  156. /*
  157.  * Unpack the raw bits of a native fp value.  Do not classify or
  158.  * normalize the data.
  159.  */
  160. #define _FP_UNPACK_RAW_2(fs, X, val)
  161.   do {
  162.     union _FP_UNION_##fs _flo; _flo.flt = (val);
  163.     X##_f0 = _flo.bits.frac0;
  164.     X##_f1 = _flo.bits.frac1;
  165.     X##_e  = _flo.bits.exp;
  166.     X##_s  = _flo.bits.sign;
  167.   } while (0)
  168. #define _FP_UNPACK_RAW_2_P(fs, X, val)
  169.   do {
  170.     union _FP_UNION_##fs *_flo =
  171.       (union _FP_UNION_##fs *)(val);
  172.     X##_f0 = _flo->bits.frac0;
  173.     X##_f1 = _flo->bits.frac1;
  174.     X##_e  = _flo->bits.exp;
  175.     X##_s  = _flo->bits.sign;
  176.   } while (0)
  177. /*
  178.  * Repack the raw bits of a native fp value.
  179.  */
  180. #define _FP_PACK_RAW_2(fs, val, X)
  181.   do {
  182.     union _FP_UNION_##fs _flo;
  183.     _flo.bits.frac0 = X##_f0;
  184.     _flo.bits.frac1 = X##_f1;
  185.     _flo.bits.exp   = X##_e;
  186.     _flo.bits.sign  = X##_s;
  187.     (val) = _flo.flt;
  188.   } while (0)
  189. #define _FP_PACK_RAW_2_P(fs, val, X)
  190.   do {
  191.     union _FP_UNION_##fs *_flo =
  192.       (union _FP_UNION_##fs *)(val);
  193.     _flo->bits.frac0 = X##_f0;
  194.     _flo->bits.frac1 = X##_f1;
  195.     _flo->bits.exp   = X##_e;
  196.     _flo->bits.sign  = X##_s;
  197.   } while (0)
  198. /*
  199.  * Multiplication algorithms:
  200.  */
  201. /* Given a 1W * 1W => 2W primitive, do the extended multiplication.  */
  202. #define _FP_MUL_MEAT_2_wide(wfracbits, R, X, Y, doit)
  203.   do {
  204.     _FP_FRAC_DECL_4(_z); _FP_FRAC_DECL_2(_b); _FP_FRAC_DECL_2(_c);
  205.     doit(_FP_FRAC_WORD_4(_z,1), _FP_FRAC_WORD_4(_z,0), X##_f0, Y##_f0);
  206.     doit(_b_f1, _b_f0, X##_f0, Y##_f1);
  207.     doit(_c_f1, _c_f0, X##_f1, Y##_f0);
  208.     doit(_FP_FRAC_WORD_4(_z,3), _FP_FRAC_WORD_4(_z,2), X##_f1, Y##_f1);
  209.     __FP_FRAC_ADD_3(_FP_FRAC_WORD_4(_z,3),_FP_FRAC_WORD_4(_z,2),
  210.     _FP_FRAC_WORD_4(_z,1), 0, _b_f1, _b_f0,
  211.     _FP_FRAC_WORD_4(_z,3),_FP_FRAC_WORD_4(_z,2),
  212.     _FP_FRAC_WORD_4(_z,1));
  213.     __FP_FRAC_ADD_3(_FP_FRAC_WORD_4(_z,3),_FP_FRAC_WORD_4(_z,2),
  214.     _FP_FRAC_WORD_4(_z,1), 0, _c_f1, _c_f0,
  215.     _FP_FRAC_WORD_4(_z,3),_FP_FRAC_WORD_4(_z,2),
  216.     _FP_FRAC_WORD_4(_z,1));
  217.     /* Normalize since we know where the msb of the multiplicands
  218.        were (bit B), we know that the msb of the of the product is
  219.        at either 2B or 2B-1.  */
  220.     _FP_FRAC_SRS_4(_z, wfracbits-1, 2*wfracbits);
  221.     R##_f0 = _FP_FRAC_WORD_4(_z,0);
  222.     R##_f1 = _FP_FRAC_WORD_4(_z,1);
  223.   } while (0)
  224. /* Given a 1W * 1W => 2W primitive, do the extended multiplication.
  225.    Do only 3 multiplications instead of four. This one is for machines
  226.    where multiplication is much more expensive than subtraction.  */
  227. #define _FP_MUL_MEAT_2_wide_3mul(wfracbits, R, X, Y, doit)
  228.   do {
  229.     _FP_FRAC_DECL_4(_z); _FP_FRAC_DECL_2(_b); _FP_FRAC_DECL_2(_c);
  230.     _FP_W_TYPE _d;
  231.     int _c1, _c2;
  232.     _b_f0 = X##_f0 + X##_f1;
  233.     _c1 = _b_f0 < X##_f0;
  234.     _b_f1 = Y##_f0 + Y##_f1;
  235.     _c2 = _b_f1 < Y##_f0;
  236.     doit(_d, _FP_FRAC_WORD_4(_z,0), X##_f0, Y##_f0);
  237.     doit(_FP_FRAC_WORD_4(_z,2), _FP_FRAC_WORD_4(_z,1), _b_f0, _b_f1);
  238.     doit(_c_f1, _c_f0, X##_f1, Y##_f1);
  239.     _b_f0 &= -_c2;
  240.     _b_f1 &= -_c1;
  241.     __FP_FRAC_ADD_3(_FP_FRAC_WORD_4(_z,3),_FP_FRAC_WORD_4(_z,2),
  242.     _FP_FRAC_WORD_4(_z,1), (_c1 & _c2), 0, _d,
  243.     0, _FP_FRAC_WORD_4(_z,2), _FP_FRAC_WORD_4(_z,1));
  244.     __FP_FRAC_ADDI_2(_FP_FRAC_WORD_4(_z,3),_FP_FRAC_WORD_4(_z,2),
  245.      _b_f0);
  246.     __FP_FRAC_ADDI_2(_FP_FRAC_WORD_4(_z,3),_FP_FRAC_WORD_4(_z,2),
  247.      _b_f1);
  248.     __FP_FRAC_DEC_3(_FP_FRAC_WORD_4(_z,3),_FP_FRAC_WORD_4(_z,2),
  249.     _FP_FRAC_WORD_4(_z,1),
  250.     0, _d, _FP_FRAC_WORD_4(_z,0));
  251.     __FP_FRAC_DEC_3(_FP_FRAC_WORD_4(_z,3),_FP_FRAC_WORD_4(_z,2),
  252.     _FP_FRAC_WORD_4(_z,1), 0, _c_f1, _c_f0);
  253.     __FP_FRAC_ADD_2(_FP_FRAC_WORD_4(_z,3), _FP_FRAC_WORD_4(_z,2),
  254.     _c_f1, _c_f0,
  255.     _FP_FRAC_WORD_4(_z,3), _FP_FRAC_WORD_4(_z,2));
  256.     /* Normalize since we know where the msb of the multiplicands
  257.        were (bit B), we know that the msb of the of the product is
  258.        at either 2B or 2B-1.  */
  259.     _FP_FRAC_SRS_4(_z, wfracbits-1, 2*wfracbits);
  260.     R##_f0 = _FP_FRAC_WORD_4(_z,0);
  261.     R##_f1 = _FP_FRAC_WORD_4(_z,1);
  262.   } while (0)
  263. #define _FP_MUL_MEAT_2_gmp(wfracbits, R, X, Y)
  264.   do {
  265.     _FP_FRAC_DECL_4(_z);
  266.     _FP_W_TYPE _x[2], _y[2];
  267.     _x[0] = X##_f0; _x[1] = X##_f1;
  268.     _y[0] = Y##_f0; _y[1] = Y##_f1;
  269.     mpn_mul_n(_z_f, _x, _y, 2);
  270.     /* Normalize since we know where the msb of the multiplicands
  271.        were (bit B), we know that the msb of the of the product is
  272.        at either 2B or 2B-1.  */
  273.     _FP_FRAC_SRS_4(_z, wfracbits-1, 2*wfracbits);
  274.     R##_f0 = _z_f[0];
  275.     R##_f1 = _z_f[1];
  276.   } while (0)
  277. /* Do at most 120x120=240 bits multiplication using double floating
  278.    point multiplication.  This is useful if floating point
  279.    multiplication has much bigger throughput than integer multiply.
  280.    It is supposed to work for _FP_W_TYPE_SIZE 64 and wfracbits
  281.    between 106 and 120 only.  
  282.    Caller guarantees that X and Y has (1LLL << (wfracbits - 1)) set.
  283.    SETFETZ is a macro which will disable all FPU exceptions and set rounding
  284.    towards zero,  RESETFE should optionally reset it back.  */
  285. #define _FP_MUL_MEAT_2_120_240_double(wfracbits, R, X, Y, setfetz, resetfe)
  286.   do {
  287.     static const double _const[] = {
  288.       /* 2^-24 */ 5.9604644775390625e-08,
  289.       /* 2^-48 */ 3.5527136788005009e-15,
  290.       /* 2^-72 */ 2.1175823681357508e-22,
  291.       /* 2^-96 */ 1.2621774483536189e-29,
  292.       /* 2^28 */ 2.68435456e+08,
  293.       /* 2^4 */ 1.600000e+01,
  294.       /* 2^-20 */ 9.5367431640625e-07,
  295.       /* 2^-44 */ 5.6843418860808015e-14,
  296.       /* 2^-68 */ 3.3881317890172014e-21,
  297.       /* 2^-92 */ 2.0194839173657902e-28,
  298.       /* 2^-116 */ 1.2037062152420224e-35};
  299.     double _a240, _b240, _c240, _d240, _e240, _f240, 
  300.    _g240, _h240, _i240, _j240, _k240;
  301.     union { double d; UDItype i; } _l240, _m240, _n240, _o240,
  302.    _p240, _q240, _r240, _s240;
  303.     UDItype _t240, _u240, _v240, _w240, _x240, _y240 = 0;
  304.     if (wfracbits < 106 || wfracbits > 120)
  305.       abort();
  306.     setfetz;
  307.     _e240 = (double)(long)(X##_f0 & 0xffffff);
  308.     _j240 = (double)(long)(Y##_f0 & 0xffffff);
  309.     _d240 = (double)(long)((X##_f0 >> 24) & 0xffffff);
  310.     _i240 = (double)(long)((Y##_f0 >> 24) & 0xffffff);
  311.     _c240 = (double)(long)(((X##_f1 << 16) & 0xffffff) | (X##_f0 >> 48));
  312.     _h240 = (double)(long)(((Y##_f1 << 16) & 0xffffff) | (Y##_f0 >> 48));
  313.     _b240 = (double)(long)((X##_f1 >> 8) & 0xffffff);
  314.     _g240 = (double)(long)((Y##_f1 >> 8) & 0xffffff);
  315.     _a240 = (double)(long)(X##_f1 >> 32);
  316.     _f240 = (double)(long)(Y##_f1 >> 32);
  317.     _e240 *= _const[3];
  318.     _j240 *= _const[3];
  319.     _d240 *= _const[2];
  320.     _i240 *= _const[2];
  321.     _c240 *= _const[1];
  322.     _h240 *= _const[1];
  323.     _b240 *= _const[0];
  324.     _g240 *= _const[0];
  325.     _s240.d =       _e240*_j240;
  326.     _r240.d = _d240*_j240 + _e240*_i240;
  327.     _q240.d =   _c240*_j240 + _d240*_i240 + _e240*_h240;
  328.     _p240.d =     _b240*_j240 + _c240*_i240 + _d240*_h240 + _e240*_g240;
  329.     _o240.d = _a240*_j240 + _b240*_i240 + _c240*_h240 + _d240*_g240 + _e240*_f240;
  330.     _n240.d = _a240*_i240 + _b240*_h240 + _c240*_g240 + _d240*_f240;
  331.     _m240.d = _a240*_h240 + _b240*_g240 + _c240*_f240;
  332.     _l240.d = _a240*_g240 + _b240*_f240;
  333.     _k240 =   _a240*_f240;
  334.     _r240.d += _s240.d;
  335.     _q240.d += _r240.d;
  336.     _p240.d += _q240.d;
  337.     _o240.d += _p240.d;
  338.     _n240.d += _o240.d;
  339.     _m240.d += _n240.d;
  340.     _l240.d += _m240.d;
  341.     _k240 += _l240.d;
  342.     _s240.d -= ((_const[10]+_s240.d)-_const[10]);
  343.     _r240.d -= ((_const[9]+_r240.d)-_const[9]);
  344.     _q240.d -= ((_const[8]+_q240.d)-_const[8]);
  345.     _p240.d -= ((_const[7]+_p240.d)-_const[7]);
  346.     _o240.d += _const[7];
  347.     _n240.d += _const[6];
  348.     _m240.d += _const[5];
  349.     _l240.d += _const[4];
  350.     if (_s240.d != 0.0) _y240 = 1;
  351.     if (_r240.d != 0.0) _y240 = 1;
  352.     if (_q240.d != 0.0) _y240 = 1;
  353.     if (_p240.d != 0.0) _y240 = 1;
  354.     _t240 = (DItype)_k240;
  355.     _u240 = _l240.i;
  356.     _v240 = _m240.i;
  357.     _w240 = _n240.i;
  358.     _x240 = _o240.i;
  359.     R##_f1 = (_t240 << (128 - (wfracbits - 1)))
  360.      | ((_u240 & 0xffffff) >> ((wfracbits - 1) - 104));
  361.     R##_f0 = ((_u240 & 0xffffff) << (168 - (wfracbits - 1)))
  362.           | ((_v240 & 0xffffff) << (144 - (wfracbits - 1)))
  363.           | ((_w240 & 0xffffff) << (120 - (wfracbits - 1)))
  364.           | ((_x240 & 0xffffff) >> ((wfracbits - 1) - 96))
  365.           | _y240;
  366.     resetfe;
  367.   } while (0)
  368. /*
  369.  * Division algorithms:
  370.  */
  371. #define _FP_DIV_MEAT_2_udiv(fs, R, X, Y)
  372.   do {
  373.     _FP_W_TYPE _n_f2, _n_f1, _n_f0, _r_f1, _r_f0, _m_f1, _m_f0;
  374.     if (_FP_FRAC_GT_2(X, Y))
  375.       {
  376. _n_f2 = X##_f1 >> 1;
  377. _n_f1 = X##_f1 << (_FP_W_TYPE_SIZE - 1) | X##_f0 >> 1;
  378. _n_f0 = X##_f0 << (_FP_W_TYPE_SIZE - 1);
  379.       }
  380.     else
  381.       {
  382. R##_e--;
  383. _n_f2 = X##_f1;
  384. _n_f1 = X##_f0;
  385. _n_f0 = 0;
  386.       }
  387.     /* Normalize, i.e. make the most significant bit of the 
  388.        denominator set. */
  389.     _FP_FRAC_SLL_2(Y, _FP_WFRACXBITS_##fs);
  390.     udiv_qrnnd(R##_f1, _r_f1, _n_f2, _n_f1, Y##_f1);
  391.     umul_ppmm(_m_f1, _m_f0, R##_f1, Y##_f0);
  392.     _r_f0 = _n_f0;
  393.     if (_FP_FRAC_GT_2(_m, _r))
  394.       {
  395. R##_f1--;
  396. _FP_FRAC_ADD_2(_r, Y, _r);
  397. if (_FP_FRAC_GE_2(_r, Y) && _FP_FRAC_GT_2(_m, _r))
  398.   {
  399.     R##_f1--;
  400.     _FP_FRAC_ADD_2(_r, Y, _r);
  401.   }
  402.       }
  403.     _FP_FRAC_DEC_2(_r, _m);
  404.     if (_r_f1 == Y##_f1)
  405.       {
  406. /* This is a special case, not an optimization
  407.    (_r/Y##_f1 would not fit into UWtype).
  408.    As _r is guaranteed to be < Y,  R##_f0 can be either
  409.    (UWtype)-1 or (UWtype)-2.  But as we know what kind
  410.    of bits it is (sticky, guard, round),  we don't care.
  411.    We also don't care what the reminder is,  because the
  412.    guard bit will be set anyway.  -jj */
  413. R##_f0 = -1;
  414.       }
  415.     else
  416.       {
  417. udiv_qrnnd(R##_f0, _r_f1, _r_f1, _r_f0, Y##_f1);
  418. umul_ppmm(_m_f1, _m_f0, R##_f0, Y##_f0);
  419. _r_f0 = 0;
  420. if (_FP_FRAC_GT_2(_m, _r))
  421.   {
  422.     R##_f0--;
  423.     _FP_FRAC_ADD_2(_r, Y, _r);
  424.     if (_FP_FRAC_GE_2(_r, Y) && _FP_FRAC_GT_2(_m, _r))
  425.       {
  426. R##_f0--;
  427. _FP_FRAC_ADD_2(_r, Y, _r);
  428.       }
  429.   }
  430. if (!_FP_FRAC_EQ_2(_r, _m))
  431.   R##_f0 |= _FP_WORK_STICKY;
  432.       }
  433.   } while (0)
  434. #define _FP_DIV_MEAT_2_gmp(fs, R, X, Y)
  435.   do {
  436.     _FP_W_TYPE _x[4], _y[2], _z[4];
  437.     _y[0] = Y##_f0; _y[1] = Y##_f1;
  438.     _x[0] = _x[3] = 0;
  439.     if (_FP_FRAC_GT_2(X, Y))
  440.       {
  441. R##_e++;
  442. _x[1] = (X##_f0 << (_FP_WFRACBITS_##fs-1 - _FP_W_TYPE_SIZE) |
  443.  X##_f1 >> (_FP_W_TYPE_SIZE -
  444.     (_FP_WFRACBITS_##fs-1 - _FP_W_TYPE_SIZE)));
  445. _x[2] = X##_f1 << (_FP_WFRACBITS_##fs-1 - _FP_W_TYPE_SIZE);
  446.       }
  447.     else
  448.       {
  449. _x[1] = (X##_f0 << (_FP_WFRACBITS_##fs - _FP_W_TYPE_SIZE) |
  450.  X##_f1 >> (_FP_W_TYPE_SIZE -
  451.     (_FP_WFRACBITS_##fs - _FP_W_TYPE_SIZE)));
  452. _x[2] = X##_f1 << (_FP_WFRACBITS_##fs - _FP_W_TYPE_SIZE);
  453.       }
  454.     (void) mpn_divrem (_z, 0, _x, 4, _y, 2);
  455.     R##_f1 = _z[1];
  456.     R##_f0 = _z[0] | ((_x[0] | _x[1]) != 0);
  457.   } while (0)
  458. /*
  459.  * Square root algorithms:
  460.  * We have just one right now, maybe Newton approximation
  461.  * should be added for those machines where division is fast.
  462.  */
  463.  
  464. #define _FP_SQRT_MEAT_2(R, S, T, X, q)
  465.   do {
  466.     while (q)
  467.       {
  468. T##_f1 = S##_f1 + q;
  469. if (T##_f1 <= X##_f1)
  470.   {
  471.     S##_f1 = T##_f1 + q;
  472.     X##_f1 -= T##_f1;
  473.     R##_f1 += q;
  474.   }
  475. _FP_FRAC_SLL_2(X, 1);
  476. q >>= 1;
  477.       }
  478.     q = (_FP_W_TYPE)1 << (_FP_W_TYPE_SIZE - 1);
  479.     while (q != _FP_WORK_ROUND)
  480.       {
  481. T##_f0 = S##_f0 + q;
  482. T##_f1 = S##_f1;
  483. if (T##_f1 < X##_f1 || 
  484.     (T##_f1 == X##_f1 && T##_f0 <= X##_f0))
  485.   {
  486.     S##_f0 = T##_f0 + q;
  487.     S##_f1 += (T##_f0 > S##_f0);
  488.     _FP_FRAC_DEC_2(X, T);
  489.     R##_f0 += q;
  490.   }
  491. _FP_FRAC_SLL_2(X, 1);
  492. q >>= 1;
  493.       }
  494.     if (X##_f0 | X##_f1)
  495.       {
  496. if (S##_f1 < X##_f1 || 
  497.     (S##_f1 == X##_f1 && S##_f0 < X##_f0))
  498.   R##_f0 |= _FP_WORK_ROUND;
  499. R##_f0 |= _FP_WORK_STICKY;
  500.       }
  501.   } while (0)
  502. /*
  503.  * Assembly/disassembly for converting to/from integral types.  
  504.  * No shifting or overflow handled here.
  505.  */
  506. #define _FP_FRAC_ASSEMBLE_2(r, X, rsize)
  507.   do {
  508.     if (rsize <= _FP_W_TYPE_SIZE)
  509.       r = X##_f0;
  510.     else
  511.       {
  512. r = X##_f1;
  513. r <<= _FP_W_TYPE_SIZE;
  514. r += X##_f0;
  515.       }
  516.   } while (0)
  517. #define _FP_FRAC_DISASSEMBLE_2(X, r, rsize)
  518.   do {
  519.     X##_f0 = r;
  520.     X##_f1 = (rsize <= _FP_W_TYPE_SIZE ? 0 : r >> _FP_W_TYPE_SIZE);
  521.   } while (0)
  522. /*
  523.  * Convert FP values between word sizes
  524.  */
  525. #define _FP_FRAC_CONV_1_2(dfs, sfs, D, S)
  526.   do {
  527.     if (S##_c != FP_CLS_NAN)
  528.       _FP_FRAC_SRS_2(S, (_FP_WFRACBITS_##sfs - _FP_WFRACBITS_##dfs),
  529.      _FP_WFRACBITS_##sfs);
  530.     else
  531.       _FP_FRAC_SRL_2(S, (_FP_WFRACBITS_##sfs - _FP_WFRACBITS_##dfs));
  532.     D##_f = S##_f0;
  533.   } while (0)
  534. #define _FP_FRAC_CONV_2_1(dfs, sfs, D, S)
  535.   do {
  536.     D##_f0 = S##_f;
  537.     D##_f1 = 0;
  538.     _FP_FRAC_SLL_2(D, (_FP_WFRACBITS_##dfs - _FP_WFRACBITS_##sfs));
  539.   } while (0)
  540. #endif