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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2. ===============================================================================
  3. This C source file is part of the SoftFloat IEC/IEEE Floating-point
  4. Arithmetic Package, Release 2.
  5. Written by John R. Hauser.  This work was made possible in part by the
  6. International Computer Science Institute, located at Suite 600, 1947 Center
  7. Street, Berkeley, California 94704.  Funding was partially provided by the
  8. National Science Foundation under grant MIP-9311980.  The original version
  9. of this code was written as part of a project to build a fixed-point vector
  10. processor in collaboration with the University of California at Berkeley,
  11. overseen by Profs. Nelson Morgan and John Wawrzynek.  More information
  12. is available through the web page `http://HTTP.CS.Berkeley.EDU/~jhauser/
  13. arithmetic/softfloat.html'.
  14. THIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE.  Although reasonable effort
  15. has been made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT
  16. TIMES RESULT IN INCORRECT BEHAVIOR.  USE OF THIS SOFTWARE IS RESTRICTED TO
  17. PERSONS AND ORGANIZATIONS WHO CAN AND WILL TAKE FULL RESPONSIBILITY FOR ANY
  18. AND ALL LOSSES, COSTS, OR OTHER PROBLEMS ARISING FROM ITS USE.
  19. Derivative works are acceptable, even for commercial purposes, so long as
  20. (1) they include prominent notice that the work is derivative, and (2) they
  21. include prominent notice akin to these three paragraphs for those parts of
  22. this code that are retained.
  23. ===============================================================================
  24. */
  25. #include "fpa11.h"
  26. #include "milieu.h"
  27. #include "softfloat.h"
  28. /*
  29. -------------------------------------------------------------------------------
  30. Floating-point rounding mode, extended double-precision rounding precision,
  31. and exception flags.
  32. -------------------------------------------------------------------------------
  33. */
  34. int8 float_rounding_mode = float_round_nearest_even;
  35. int8 floatx80_rounding_precision = 80;
  36. int8 float_exception_flags;
  37. /*
  38. -------------------------------------------------------------------------------
  39. Primitive arithmetic functions, including multi-word arithmetic, and
  40. division and square root approximations.  (Can be specialized to target if
  41. desired.)
  42. -------------------------------------------------------------------------------
  43. */
  44. #include "softfloat-macros"
  45. /*
  46. -------------------------------------------------------------------------------
  47. Functions and definitions to determine:  (1) whether tininess for underflow
  48. is detected before or after rounding by default, (2) what (if anything)
  49. happens when exceptions are raised, (3) how signaling NaNs are distinguished
  50. from quiet NaNs, (4) the default generated quiet NaNs, and (5) how NaNs
  51. are propagated from function inputs to output.  These details are target-
  52. specific.
  53. -------------------------------------------------------------------------------
  54. */
  55. #include "softfloat-specialize"
  56. /*
  57. -------------------------------------------------------------------------------
  58. Takes a 64-bit fixed-point value `absZ' with binary point between bits 6
  59. and 7, and returns the properly rounded 32-bit integer corresponding to the
  60. input.  If `zSign' is nonzero, the input is negated before being converted
  61. to an integer.  Bit 63 of `absZ' must be zero.  Ordinarily, the fixed-point
  62. input is simply rounded to an integer, with the inexact exception raised if
  63. the input cannot be represented exactly as an integer.  If the fixed-point
  64. input is too large, however, the invalid exception is raised and the largest
  65. positive or negative integer is returned.
  66. -------------------------------------------------------------------------------
  67. */
  68. static int32 roundAndPackInt32( flag zSign, bits64 absZ )
  69. {
  70.     int8 roundingMode;
  71.     flag roundNearestEven;
  72.     int8 roundIncrement, roundBits;
  73.     int32 z;
  74.     roundingMode = float_rounding_mode;
  75.     roundNearestEven = ( roundingMode == float_round_nearest_even );
  76.     roundIncrement = 0x40;
  77.     if ( ! roundNearestEven ) {
  78.         if ( roundingMode == float_round_to_zero ) {
  79.             roundIncrement = 0;
  80.         }
  81.         else {
  82.             roundIncrement = 0x7F;
  83.             if ( zSign ) {
  84.                 if ( roundingMode == float_round_up ) roundIncrement = 0;
  85.             }
  86.             else {
  87.                 if ( roundingMode == float_round_down ) roundIncrement = 0;
  88.             }
  89.         }
  90.     }
  91.     roundBits = absZ & 0x7F;
  92.     absZ = ( absZ + roundIncrement )>>7;
  93.     absZ &= ~ ( ( ( roundBits ^ 0x40 ) == 0 ) & roundNearestEven );
  94.     z = absZ;
  95.     if ( zSign ) z = - z;
  96.     if ( ( absZ>>32 ) || ( z && ( ( z < 0 ) ^ zSign ) ) ) {
  97.         float_exception_flags |= float_flag_invalid;
  98.         return zSign ? 0x80000000 : 0x7FFFFFFF;
  99.     }
  100.     if ( roundBits ) float_exception_flags |= float_flag_inexact;
  101.     return z;
  102. }
  103. /*
  104. -------------------------------------------------------------------------------
  105. Returns the fraction bits of the single-precision floating-point value `a'.
  106. -------------------------------------------------------------------------------
  107. */
  108. INLINE bits32 extractFloat32Frac( float32 a )
  109. {
  110.     return a & 0x007FFFFF;
  111. }
  112. /*
  113. -------------------------------------------------------------------------------
  114. Returns the exponent bits of the single-precision floating-point value `a'.
  115. -------------------------------------------------------------------------------
  116. */
  117. INLINE int16 extractFloat32Exp( float32 a )
  118. {
  119.     return ( a>>23 ) & 0xFF;
  120. }
  121. /*
  122. -------------------------------------------------------------------------------
  123. Returns the sign bit of the single-precision floating-point value `a'.
  124. -------------------------------------------------------------------------------
  125. */
  126. INLINE flag extractFloat32Sign( float32 a )
  127. {
  128.     return a>>31;
  129. }
  130. /*
  131. -------------------------------------------------------------------------------
  132. Normalizes the subnormal single-precision floating-point value represented
  133. by the denormalized significand `aSig'.  The normalized exponent and
  134. significand are stored at the locations pointed to by `zExpPtr' and
  135. `zSigPtr', respectively.
  136. -------------------------------------------------------------------------------
  137. */
  138. static void
  139.  normalizeFloat32Subnormal( bits32 aSig, int16 *zExpPtr, bits32 *zSigPtr )
  140. {
  141.     int8 shiftCount;
  142.     shiftCount = countLeadingZeros32( aSig ) - 8;
  143.     *zSigPtr = aSig<<shiftCount;
  144.     *zExpPtr = 1 - shiftCount;
  145. }
  146. /*
  147. -------------------------------------------------------------------------------
  148. Packs the sign `zSign', exponent `zExp', and significand `zSig' into a
  149. single-precision floating-point value, returning the result.  After being
  150. shifted into the proper positions, the three fields are simply added
  151. together to form the result.  This means that any integer portion of `zSig'
  152. will be added into the exponent.  Since a properly normalized significand
  153. will have an integer portion equal to 1, the `zExp' input should be 1 less
  154. than the desired result exponent whenever `zSig' is a complete, normalized
  155. significand.
  156. -------------------------------------------------------------------------------
  157. */
  158. INLINE float32 packFloat32( flag zSign, int16 zExp, bits32 zSig )
  159. {
  160. #if 0
  161.    float32 f;
  162.    __asm__("@ packFloat32; n
  163.         mov %0, %1, asl #31; n
  164.         orr %0, %2, asl #23; n
  165.         orr %0, %3"
  166.         : /* no outputs */
  167.         : "g" (f), "g" (zSign), "g" (zExp), "g" (zSig)
  168.         : "cc");
  169.    return f;
  170. #else
  171.     return ( ( (bits32) zSign )<<31 ) + ( ( (bits32) zExp )<<23 ) + zSig;
  172. #endif 
  173. }
  174. /*
  175. -------------------------------------------------------------------------------
  176. Takes an abstract floating-point value having sign `zSign', exponent `zExp',
  177. and significand `zSig', and returns the proper single-precision floating-
  178. point value corresponding to the abstract input.  Ordinarily, the abstract
  179. value is simply rounded and packed into the single-precision format, with
  180. the inexact exception raised if the abstract input cannot be represented
  181. exactly.  If the abstract value is too large, however, the overflow and
  182. inexact exceptions are raised and an infinity or maximal finite value is
  183. returned.  If the abstract value is too small, the input value is rounded to
  184. a subnormal number, and the underflow and inexact exceptions are raised if
  185. the abstract input cannot be represented exactly as a subnormal single-
  186. precision floating-point number.
  187.     The input significand `zSig' has its binary point between bits 30
  188. and 29, which is 7 bits to the left of the usual location.  This shifted
  189. significand must be normalized or smaller.  If `zSig' is not normalized,
  190. `zExp' must be 0; in that case, the result returned is a subnormal number,
  191. and it must not require rounding.  In the usual case that `zSig' is
  192. normalized, `zExp' must be 1 less than the ``true'' floating-point exponent.
  193. The handling of underflow and overflow follows the IEC/IEEE Standard for
  194. Binary Floating-point Arithmetic.
  195. -------------------------------------------------------------------------------
  196. */
  197. static float32 roundAndPackFloat32( flag zSign, int16 zExp, bits32 zSig )
  198. {
  199.     int8 roundingMode;
  200.     flag roundNearestEven;
  201.     int8 roundIncrement, roundBits;
  202.     flag isTiny;
  203.     roundingMode = float_rounding_mode;
  204.     roundNearestEven = ( roundingMode == float_round_nearest_even );
  205.     roundIncrement = 0x40;
  206.     if ( ! roundNearestEven ) {
  207.         if ( roundingMode == float_round_to_zero ) {
  208.             roundIncrement = 0;
  209.         }
  210.         else {
  211.             roundIncrement = 0x7F;
  212.             if ( zSign ) {
  213.                 if ( roundingMode == float_round_up ) roundIncrement = 0;
  214.             }
  215.             else {
  216.                 if ( roundingMode == float_round_down ) roundIncrement = 0;
  217.             }
  218.         }
  219.     }
  220.     roundBits = zSig & 0x7F;
  221.     if ( 0xFD <= (bits16) zExp ) {
  222.         if (    ( 0xFD < zExp )
  223.              || (    ( zExp == 0xFD )
  224.                   && ( (sbits32) ( zSig + roundIncrement ) < 0 ) )
  225.            ) {
  226.             float_raise( float_flag_overflow | float_flag_inexact );
  227.             return packFloat32( zSign, 0xFF, 0 ) - ( roundIncrement == 0 );
  228.         }
  229.         if ( zExp < 0 ) {
  230.             isTiny =
  231.                    ( float_detect_tininess == float_tininess_before_rounding )
  232.                 || ( zExp < -1 )
  233.                 || ( zSig + roundIncrement < 0x80000000 );
  234.             shift32RightJamming( zSig, - zExp, &zSig );
  235.             zExp = 0;
  236.             roundBits = zSig & 0x7F;
  237.             if ( isTiny && roundBits ) float_raise( float_flag_underflow );
  238.         }
  239.     }
  240.     if ( roundBits ) float_exception_flags |= float_flag_inexact;
  241.     zSig = ( zSig + roundIncrement )>>7;
  242.     zSig &= ~ ( ( ( roundBits ^ 0x40 ) == 0 ) & roundNearestEven );
  243.     if ( zSig == 0 ) zExp = 0;
  244.     return packFloat32( zSign, zExp, zSig );
  245. }
  246. /*
  247. -------------------------------------------------------------------------------
  248. Takes an abstract floating-point value having sign `zSign', exponent `zExp',
  249. and significand `zSig', and returns the proper single-precision floating-
  250. point value corresponding to the abstract input.  This routine is just like
  251. `roundAndPackFloat32' except that `zSig' does not have to be normalized in
  252. any way.  In all cases, `zExp' must be 1 less than the ``true'' floating-
  253. point exponent.
  254. -------------------------------------------------------------------------------
  255. */
  256. static float32
  257.  normalizeRoundAndPackFloat32( flag zSign, int16 zExp, bits32 zSig )
  258. {
  259.     int8 shiftCount;
  260.     shiftCount = countLeadingZeros32( zSig ) - 1;
  261.     return roundAndPackFloat32( zSign, zExp - shiftCount, zSig<<shiftCount );
  262. }
  263. /*
  264. -------------------------------------------------------------------------------
  265. Returns the fraction bits of the double-precision floating-point value `a'.
  266. -------------------------------------------------------------------------------
  267. */
  268. INLINE bits64 extractFloat64Frac( float64 a )
  269. {
  270.     return a & LIT64( 0x000FFFFFFFFFFFFF );
  271. }
  272. /*
  273. -------------------------------------------------------------------------------
  274. Returns the exponent bits of the double-precision floating-point value `a'.
  275. -------------------------------------------------------------------------------
  276. */
  277. INLINE int16 extractFloat64Exp( float64 a )
  278. {
  279.     return ( a>>52 ) & 0x7FF;
  280. }
  281. /*
  282. -------------------------------------------------------------------------------
  283. Returns the sign bit of the double-precision floating-point value `a'.
  284. -------------------------------------------------------------------------------
  285. */
  286. INLINE flag extractFloat64Sign( float64 a )
  287. {
  288.     return a>>63;
  289. }
  290. /*
  291. -------------------------------------------------------------------------------
  292. Normalizes the subnormal double-precision floating-point value represented
  293. by the denormalized significand `aSig'.  The normalized exponent and
  294. significand are stored at the locations pointed to by `zExpPtr' and
  295. `zSigPtr', respectively.
  296. -------------------------------------------------------------------------------
  297. */
  298. static void
  299.  normalizeFloat64Subnormal( bits64 aSig, int16 *zExpPtr, bits64 *zSigPtr )
  300. {
  301.     int8 shiftCount;
  302.     shiftCount = countLeadingZeros64( aSig ) - 11;
  303.     *zSigPtr = aSig<<shiftCount;
  304.     *zExpPtr = 1 - shiftCount;
  305. }
  306. /*
  307. -------------------------------------------------------------------------------
  308. Packs the sign `zSign', exponent `zExp', and significand `zSig' into a
  309. double-precision floating-point value, returning the result.  After being
  310. shifted into the proper positions, the three fields are simply added
  311. together to form the result.  This means that any integer portion of `zSig'
  312. will be added into the exponent.  Since a properly normalized significand
  313. will have an integer portion equal to 1, the `zExp' input should be 1 less
  314. than the desired result exponent whenever `zSig' is a complete, normalized
  315. significand.
  316. -------------------------------------------------------------------------------
  317. */
  318. INLINE float64 packFloat64( flag zSign, int16 zExp, bits64 zSig )
  319. {
  320.     return ( ( (bits64) zSign )<<63 ) + ( ( (bits64) zExp )<<52 ) + zSig;
  321. }
  322. /*
  323. -------------------------------------------------------------------------------
  324. Takes an abstract floating-point value having sign `zSign', exponent `zExp',
  325. and significand `zSig', and returns the proper double-precision floating-
  326. point value corresponding to the abstract input.  Ordinarily, the abstract
  327. value is simply rounded and packed into the double-precision format, with
  328. the inexact exception raised if the abstract input cannot be represented
  329. exactly.  If the abstract value is too large, however, the overflow and
  330. inexact exceptions are raised and an infinity or maximal finite value is
  331. returned.  If the abstract value is too small, the input value is rounded to
  332. a subnormal number, and the underflow and inexact exceptions are raised if
  333. the abstract input cannot be represented exactly as a subnormal double-
  334. precision floating-point number.
  335.     The input significand `zSig' has its binary point between bits 62
  336. and 61, which is 10 bits to the left of the usual location.  This shifted
  337. significand must be normalized or smaller.  If `zSig' is not normalized,
  338. `zExp' must be 0; in that case, the result returned is a subnormal number,
  339. and it must not require rounding.  In the usual case that `zSig' is
  340. normalized, `zExp' must be 1 less than the ``true'' floating-point exponent.
  341. The handling of underflow and overflow follows the IEC/IEEE Standard for
  342. Binary Floating-point Arithmetic.
  343. -------------------------------------------------------------------------------
  344. */
  345. static float64 roundAndPackFloat64( flag zSign, int16 zExp, bits64 zSig )
  346. {
  347.     int8 roundingMode;
  348.     flag roundNearestEven;
  349.     int16 roundIncrement, roundBits;
  350.     flag isTiny;
  351.     roundingMode = float_rounding_mode;
  352.     roundNearestEven = ( roundingMode == float_round_nearest_even );
  353.     roundIncrement = 0x200;
  354.     if ( ! roundNearestEven ) {
  355.         if ( roundingMode == float_round_to_zero ) {
  356.             roundIncrement = 0;
  357.         }
  358.         else {
  359.             roundIncrement = 0x3FF;
  360.             if ( zSign ) {
  361.                 if ( roundingMode == float_round_up ) roundIncrement = 0;
  362.             }
  363.             else {
  364.                 if ( roundingMode == float_round_down ) roundIncrement = 0;
  365.             }
  366.         }
  367.     }
  368.     roundBits = zSig & 0x3FF;
  369.     if ( 0x7FD <= (bits16) zExp ) {
  370.         if (    ( 0x7FD < zExp )
  371.              || (    ( zExp == 0x7FD )
  372.                   && ( (sbits64) ( zSig + roundIncrement ) < 0 ) )
  373.            ) {
  374.             //register int lr = __builtin_return_address(0);
  375.             //printk("roundAndPackFloat64 called from 0x%08xn",lr);
  376.             float_raise( float_flag_overflow | float_flag_inexact );
  377.             return packFloat64( zSign, 0x7FF, 0 ) - ( roundIncrement == 0 );
  378.         }
  379.         if ( zExp < 0 ) {
  380.             isTiny =
  381.                    ( float_detect_tininess == float_tininess_before_rounding )
  382.                 || ( zExp < -1 )
  383.                 || ( zSig + roundIncrement < LIT64( 0x8000000000000000 ) );
  384.             shift64RightJamming( zSig, - zExp, &zSig );
  385.             zExp = 0;
  386.             roundBits = zSig & 0x3FF;
  387.             if ( isTiny && roundBits ) float_raise( float_flag_underflow );
  388.         }
  389.     }
  390.     if ( roundBits ) float_exception_flags |= float_flag_inexact;
  391.     zSig = ( zSig + roundIncrement )>>10;
  392.     zSig &= ~ ( ( ( roundBits ^ 0x200 ) == 0 ) & roundNearestEven );
  393.     if ( zSig == 0 ) zExp = 0;
  394.     return packFloat64( zSign, zExp, zSig );
  395. }
  396. /*
  397. -------------------------------------------------------------------------------
  398. Takes an abstract floating-point value having sign `zSign', exponent `zExp',
  399. and significand `zSig', and returns the proper double-precision floating-
  400. point value corresponding to the abstract input.  This routine is just like
  401. `roundAndPackFloat64' except that `zSig' does not have to be normalized in
  402. any way.  In all cases, `zExp' must be 1 less than the ``true'' floating-
  403. point exponent.
  404. -------------------------------------------------------------------------------
  405. */
  406. static float64
  407.  normalizeRoundAndPackFloat64( flag zSign, int16 zExp, bits64 zSig )
  408. {
  409.     int8 shiftCount;
  410.     shiftCount = countLeadingZeros64( zSig ) - 1;
  411.     return roundAndPackFloat64( zSign, zExp - shiftCount, zSig<<shiftCount );
  412. }
  413. #ifdef FLOATX80
  414. /*
  415. -------------------------------------------------------------------------------
  416. Returns the fraction bits of the extended double-precision floating-point
  417. value `a'.
  418. -------------------------------------------------------------------------------
  419. */
  420. INLINE bits64 extractFloatx80Frac( floatx80 a )
  421. {
  422.     return a.low;
  423. }
  424. /*
  425. -------------------------------------------------------------------------------
  426. Returns the exponent bits of the extended double-precision floating-point
  427. value `a'.
  428. -------------------------------------------------------------------------------
  429. */
  430. INLINE int32 extractFloatx80Exp( floatx80 a )
  431. {
  432.     return a.high & 0x7FFF;
  433. }
  434. /*
  435. -------------------------------------------------------------------------------
  436. Returns the sign bit of the extended double-precision floating-point value
  437. `a'.
  438. -------------------------------------------------------------------------------
  439. */
  440. INLINE flag extractFloatx80Sign( floatx80 a )
  441. {
  442.     return a.high>>15;
  443. }
  444. /*
  445. -------------------------------------------------------------------------------
  446. Normalizes the subnormal extended double-precision floating-point value
  447. represented by the denormalized significand `aSig'.  The normalized exponent
  448. and significand are stored at the locations pointed to by `zExpPtr' and
  449. `zSigPtr', respectively.
  450. -------------------------------------------------------------------------------
  451. */
  452. static void
  453.  normalizeFloatx80Subnormal( bits64 aSig, int32 *zExpPtr, bits64 *zSigPtr )
  454. {
  455.     int8 shiftCount;
  456.     shiftCount = countLeadingZeros64( aSig );
  457.     *zSigPtr = aSig<<shiftCount;
  458.     *zExpPtr = 1 - shiftCount;
  459. }
  460. /*
  461. -------------------------------------------------------------------------------
  462. Packs the sign `zSign', exponent `zExp', and significand `zSig' into an
  463. extended double-precision floating-point value, returning the result.
  464. -------------------------------------------------------------------------------
  465. */
  466. INLINE floatx80 packFloatx80( flag zSign, int32 zExp, bits64 zSig )
  467. {
  468.     floatx80 z;
  469.     z.low = zSig;
  470.     z.high = ( ( (bits16) zSign )<<15 ) + zExp;
  471.     return z;
  472. }
  473. /*
  474. -------------------------------------------------------------------------------
  475. Takes an abstract floating-point value having sign `zSign', exponent `zExp',
  476. and extended significand formed by the concatenation of `zSig0' and `zSig1',
  477. and returns the proper extended double-precision floating-point value
  478. corresponding to the abstract input.  Ordinarily, the abstract value is
  479. rounded and packed into the extended double-precision format, with the
  480. inexact exception raised if the abstract input cannot be represented
  481. exactly.  If the abstract value is too large, however, the overflow and
  482. inexact exceptions are raised and an infinity or maximal finite value is
  483. returned.  If the abstract value is too small, the input value is rounded to
  484. a subnormal number, and the underflow and inexact exceptions are raised if
  485. the abstract input cannot be represented exactly as a subnormal extended
  486. double-precision floating-point number.
  487.     If `roundingPrecision' is 32 or 64, the result is rounded to the same
  488. number of bits as single or double precision, respectively.  Otherwise, the
  489. result is rounded to the full precision of the extended double-precision
  490. format.
  491.     The input significand must be normalized or smaller.  If the input
  492. significand is not normalized, `zExp' must be 0; in that case, the result
  493. returned is a subnormal number, and it must not require rounding.  The
  494. handling of underflow and overflow follows the IEC/IEEE Standard for Binary
  495. Floating-point Arithmetic.
  496. -------------------------------------------------------------------------------
  497. */
  498. static floatx80
  499.  roundAndPackFloatx80(
  500.      int8 roundingPrecision, flag zSign, int32 zExp, bits64 zSig0, bits64 zSig1
  501.  )
  502. {
  503.     int8 roundingMode;
  504.     flag roundNearestEven, increment, isTiny;
  505.     int64 roundIncrement, roundMask, roundBits;
  506.     roundingMode = float_rounding_mode;
  507.     roundNearestEven = ( roundingMode == float_round_nearest_even );
  508.     if ( roundingPrecision == 80 ) goto precision80;
  509.     if ( roundingPrecision == 64 ) {
  510.         roundIncrement = LIT64( 0x0000000000000400 );
  511.         roundMask = LIT64( 0x00000000000007FF );
  512.     }
  513.     else if ( roundingPrecision == 32 ) {
  514.         roundIncrement = LIT64( 0x0000008000000000 );
  515.         roundMask = LIT64( 0x000000FFFFFFFFFF );
  516.     }
  517.     else {
  518.         goto precision80;
  519.     }
  520.     zSig0 |= ( zSig1 != 0 );
  521.     if ( ! roundNearestEven ) {
  522.         if ( roundingMode == float_round_to_zero ) {
  523.             roundIncrement = 0;
  524.         }
  525.         else {
  526.             roundIncrement = roundMask;
  527.             if ( zSign ) {
  528.                 if ( roundingMode == float_round_up ) roundIncrement = 0;
  529.             }
  530.             else {
  531.                 if ( roundingMode == float_round_down ) roundIncrement = 0;
  532.             }
  533.         }
  534.     }
  535.     roundBits = zSig0 & roundMask;
  536.     if ( 0x7FFD <= (bits32) ( zExp - 1 ) ) {
  537.         if (    ( 0x7FFE < zExp )
  538.              || ( ( zExp == 0x7FFE ) && ( zSig0 + roundIncrement < zSig0 ) )
  539.            ) {
  540.             goto overflow;
  541.         }
  542.         if ( zExp <= 0 ) {
  543.             isTiny =
  544.                    ( float_detect_tininess == float_tininess_before_rounding )
  545.                 || ( zExp < 0 )
  546.                 || ( zSig0 <= zSig0 + roundIncrement );
  547.             shift64RightJamming( zSig0, 1 - zExp, &zSig0 );
  548.             zExp = 0;
  549.             roundBits = zSig0 & roundMask;
  550.             if ( isTiny && roundBits ) float_raise( float_flag_underflow );
  551.             if ( roundBits ) float_exception_flags |= float_flag_inexact;
  552.             zSig0 += roundIncrement;
  553.             if ( (sbits64) zSig0 < 0 ) zExp = 1;
  554.             roundIncrement = roundMask + 1;
  555.             if ( roundNearestEven && ( roundBits<<1 == roundIncrement ) ) {
  556.                 roundMask |= roundIncrement;
  557.             }
  558.             zSig0 &= ~ roundMask;
  559.             return packFloatx80( zSign, zExp, zSig0 );
  560.         }
  561.     }
  562.     if ( roundBits ) float_exception_flags |= float_flag_inexact;
  563.     zSig0 += roundIncrement;
  564.     if ( zSig0 < roundIncrement ) {
  565.         ++zExp;
  566.         zSig0 = LIT64( 0x8000000000000000 );
  567.     }
  568.     roundIncrement = roundMask + 1;
  569.     if ( roundNearestEven && ( roundBits<<1 == roundIncrement ) ) {
  570.         roundMask |= roundIncrement;
  571.     }
  572.     zSig0 &= ~ roundMask;
  573.     if ( zSig0 == 0 ) zExp = 0;
  574.     return packFloatx80( zSign, zExp, zSig0 );
  575.  precision80:
  576.     increment = ( (sbits64) zSig1 < 0 );
  577.     if ( ! roundNearestEven ) {
  578.         if ( roundingMode == float_round_to_zero ) {
  579.             increment = 0;
  580.         }
  581.         else {
  582.             if ( zSign ) {
  583.                 increment = ( roundingMode == float_round_down ) && zSig1;
  584.             }
  585.             else {
  586.                 increment = ( roundingMode == float_round_up ) && zSig1;
  587.             }
  588.         }
  589.     }
  590.     if ( 0x7FFD <= (bits32) ( zExp - 1 ) ) {
  591.         if (    ( 0x7FFE < zExp )
  592.              || (    ( zExp == 0x7FFE )
  593.                   && ( zSig0 == LIT64( 0xFFFFFFFFFFFFFFFF ) )
  594.                   && increment
  595.                 )
  596.            ) {
  597.             roundMask = 0;
  598.  overflow:
  599.             float_raise( float_flag_overflow | float_flag_inexact );
  600.             if (    ( roundingMode == float_round_to_zero )
  601.                  || ( zSign && ( roundingMode == float_round_up ) )
  602.                  || ( ! zSign && ( roundingMode == float_round_down ) )
  603.                ) {
  604.                 return packFloatx80( zSign, 0x7FFE, ~ roundMask );
  605.             }
  606.             return packFloatx80( zSign, 0x7FFF, LIT64( 0x8000000000000000 ) );
  607.         }
  608.         if ( zExp <= 0 ) {
  609.             isTiny =
  610.                    ( float_detect_tininess == float_tininess_before_rounding )
  611.                 || ( zExp < 0 )
  612.                 || ! increment
  613.                 || ( zSig0 < LIT64( 0xFFFFFFFFFFFFFFFF ) );
  614.             shift64ExtraRightJamming( zSig0, zSig1, 1 - zExp, &zSig0, &zSig1 );
  615.             zExp = 0;
  616.             if ( isTiny && zSig1 ) float_raise( float_flag_underflow );
  617.             if ( zSig1 ) float_exception_flags |= float_flag_inexact;
  618.             if ( roundNearestEven ) {
  619.                 increment = ( (sbits64) zSig1 < 0 );
  620.             }
  621.             else {
  622.                 if ( zSign ) {
  623.                     increment = ( roundingMode == float_round_down ) && zSig1;
  624.                 }
  625.                 else {
  626.                     increment = ( roundingMode == float_round_up ) && zSig1;
  627.                 }
  628.             }
  629.             if ( increment ) {
  630.                 ++zSig0;
  631.                 zSig0 &= ~ ( ( zSig1 + zSig1 == 0 ) & roundNearestEven );
  632.                 if ( (sbits64) zSig0 < 0 ) zExp = 1;
  633.             }
  634.             return packFloatx80( zSign, zExp, zSig0 );
  635.         }
  636.     }
  637.     if ( zSig1 ) float_exception_flags |= float_flag_inexact;
  638.     if ( increment ) {
  639.         ++zSig0;
  640.         if ( zSig0 == 0 ) {
  641.             ++zExp;
  642.             zSig0 = LIT64( 0x8000000000000000 );
  643.         }
  644.         else {
  645.             zSig0 &= ~ ( ( zSig1 + zSig1 == 0 ) & roundNearestEven );
  646.         }
  647.     }
  648.     else {
  649.         if ( zSig0 == 0 ) zExp = 0;
  650.     }
  651.     
  652.     return packFloatx80( zSign, zExp, zSig0 );
  653. }
  654. /*
  655. -------------------------------------------------------------------------------
  656. Takes an abstract floating-point value having sign `zSign', exponent
  657. `zExp', and significand formed by the concatenation of `zSig0' and `zSig1',
  658. and returns the proper extended double-precision floating-point value
  659. corresponding to the abstract input.  This routine is just like
  660. `roundAndPackFloatx80' except that the input significand does not have to be
  661. normalized.
  662. -------------------------------------------------------------------------------
  663. */
  664. static floatx80
  665.  normalizeRoundAndPackFloatx80(
  666.      int8 roundingPrecision, flag zSign, int32 zExp, bits64 zSig0, bits64 zSig1
  667.  )
  668. {
  669.     int8 shiftCount;
  670.     if ( zSig0 == 0 ) {
  671.         zSig0 = zSig1;
  672.         zSig1 = 0;
  673.         zExp -= 64;
  674.     }
  675.     shiftCount = countLeadingZeros64( zSig0 );
  676.     shortShift128Left( zSig0, zSig1, shiftCount, &zSig0, &zSig1 );
  677.     zExp -= shiftCount;
  678.     return
  679.         roundAndPackFloatx80( roundingPrecision, zSign, zExp, zSig0, zSig1 );
  680. }
  681. #endif
  682. /*
  683. -------------------------------------------------------------------------------
  684. Returns the result of converting the 32-bit two's complement integer `a' to
  685. the single-precision floating-point format.  The conversion is performed
  686. according to the IEC/IEEE Standard for Binary Floating-point Arithmetic.
  687. -------------------------------------------------------------------------------
  688. */
  689. float32 int32_to_float32( int32 a )
  690. {
  691.     flag zSign;
  692.     if ( a == 0 ) return 0;
  693.     if ( a == 0x80000000 ) return packFloat32( 1, 0x9E, 0 );
  694.     zSign = ( a < 0 );
  695.     return normalizeRoundAndPackFloat32( zSign, 0x9C, zSign ? - a : a );
  696. }
  697. /*
  698. -------------------------------------------------------------------------------
  699. Returns the result of converting the 32-bit two's complement integer `a' to
  700. the double-precision floating-point format.  The conversion is performed
  701. according to the IEC/IEEE Standard for Binary Floating-point Arithmetic.
  702. -------------------------------------------------------------------------------
  703. */
  704. float64 int32_to_float64( int32 a )
  705. {
  706.     flag aSign;
  707.     uint32 absA;
  708.     int8 shiftCount;
  709.     bits64 zSig;
  710.     if ( a == 0 ) return 0;
  711.     aSign = ( a < 0 );
  712.     absA = aSign ? - a : a;
  713.     shiftCount = countLeadingZeros32( absA ) + 21;
  714.     zSig = absA;
  715.     return packFloat64( aSign, 0x432 - shiftCount, zSig<<shiftCount );
  716. }
  717. #ifdef FLOATX80
  718. /*
  719. -------------------------------------------------------------------------------
  720. Returns the result of converting the 32-bit two's complement integer `a'
  721. to the extended double-precision floating-point format.  The conversion
  722. is performed according to the IEC/IEEE Standard for Binary Floating-point
  723. Arithmetic.
  724. -------------------------------------------------------------------------------
  725. */
  726. floatx80 int32_to_floatx80( int32 a )
  727. {
  728.     flag zSign;
  729.     uint32 absA;
  730.     int8 shiftCount;
  731.     bits64 zSig;
  732.     if ( a == 0 ) return packFloatx80( 0, 0, 0 );
  733.     zSign = ( a < 0 );
  734.     absA = zSign ? - a : a;
  735.     shiftCount = countLeadingZeros32( absA ) + 32;
  736.     zSig = absA;
  737.     return packFloatx80( zSign, 0x403E - shiftCount, zSig<<shiftCount );
  738. }
  739. #endif
  740. /*
  741. -------------------------------------------------------------------------------
  742. Returns the result of converting the single-precision floating-point value
  743. `a' to the 32-bit two's complement integer format.  The conversion is
  744. performed according to the IEC/IEEE Standard for Binary Floating-point
  745. Arithmetic---which means in particular that the conversion is rounded
  746. according to the current rounding mode.  If `a' is a NaN, the largest
  747. positive integer is returned.  Otherwise, if the conversion overflows, the
  748. largest integer with the same sign as `a' is returned.
  749. -------------------------------------------------------------------------------
  750. */
  751. int32 float32_to_int32( float32 a )
  752. {
  753.     flag aSign;
  754.     int16 aExp, shiftCount;
  755.     bits32 aSig;
  756.     bits64 zSig;
  757.     aSig = extractFloat32Frac( a );
  758.     aExp = extractFloat32Exp( a );
  759.     aSign = extractFloat32Sign( a );
  760.     if ( ( aExp == 0x7FF ) && aSig ) aSign = 0;
  761.     if ( aExp ) aSig |= 0x00800000;
  762.     shiftCount = 0xAF - aExp;
  763.     zSig = aSig;
  764.     zSig <<= 32;
  765.     if ( 0 < shiftCount ) shift64RightJamming( zSig, shiftCount, &zSig );
  766.     return roundAndPackInt32( aSign, zSig );
  767. }
  768. /*
  769. -------------------------------------------------------------------------------
  770. Returns the result of converting the single-precision floating-point value
  771. `a' to the 32-bit two's complement integer format.  The conversion is
  772. performed according to the IEC/IEEE Standard for Binary Floating-point
  773. Arithmetic, except that the conversion is always rounded toward zero.  If
  774. `a' is a NaN, the largest positive integer is returned.  Otherwise, if the
  775. conversion overflows, the largest integer with the same sign as `a' is
  776. returned.
  777. -------------------------------------------------------------------------------
  778. */
  779. int32 float32_to_int32_round_to_zero( float32 a )
  780. {
  781.     flag aSign;
  782.     int16 aExp, shiftCount;
  783.     bits32 aSig;
  784.     int32 z;
  785.     aSig = extractFloat32Frac( a );
  786.     aExp = extractFloat32Exp( a );
  787.     aSign = extractFloat32Sign( a );
  788.     shiftCount = aExp - 0x9E;
  789.     if ( 0 <= shiftCount ) {
  790.         if ( a == 0xCF000000 ) return 0x80000000;
  791.         float_raise( float_flag_invalid );
  792.         if ( ! aSign || ( ( aExp == 0xFF ) && aSig ) ) return 0x7FFFFFFF;
  793.         return 0x80000000;
  794.     }
  795.     else if ( aExp <= 0x7E ) {
  796.         if ( aExp | aSig ) float_exception_flags |= float_flag_inexact;
  797.         return 0;
  798.     }
  799.     aSig = ( aSig | 0x00800000 )<<8;
  800.     z = aSig>>( - shiftCount );
  801.     if ( (bits32) ( aSig<<( shiftCount & 31 ) ) ) {
  802.         float_exception_flags |= float_flag_inexact;
  803.     }
  804.     return aSign ? - z : z;
  805. }
  806. /*
  807. -------------------------------------------------------------------------------
  808. Returns the result of converting the single-precision floating-point value
  809. `a' to the double-precision floating-point format.  The conversion is
  810. performed according to the IEC/IEEE Standard for Binary Floating-point
  811. Arithmetic.
  812. -------------------------------------------------------------------------------
  813. */
  814. float64 float32_to_float64( float32 a )
  815. {
  816.     flag aSign;
  817.     int16 aExp;
  818.     bits32 aSig;
  819.     aSig = extractFloat32Frac( a );
  820.     aExp = extractFloat32Exp( a );
  821.     aSign = extractFloat32Sign( a );
  822.     if ( aExp == 0xFF ) {
  823.         if ( aSig ) return commonNaNToFloat64( float32ToCommonNaN( a ) );
  824.         return packFloat64( aSign, 0x7FF, 0 );
  825.     }
  826.     if ( aExp == 0 ) {
  827.         if ( aSig == 0 ) return packFloat64( aSign, 0, 0 );
  828.         normalizeFloat32Subnormal( aSig, &aExp, &aSig );
  829.         --aExp;
  830.     }
  831.     return packFloat64( aSign, aExp + 0x380, ( (bits64) aSig )<<29 );
  832. }
  833. #ifdef FLOATX80
  834. /*
  835. -------------------------------------------------------------------------------
  836. Returns the result of converting the single-precision floating-point value
  837. `a' to the extended double-precision floating-point format.  The conversion
  838. is performed according to the IEC/IEEE Standard for Binary Floating-point
  839. Arithmetic.
  840. -------------------------------------------------------------------------------
  841. */
  842. floatx80 float32_to_floatx80( float32 a )
  843. {
  844.     flag aSign;
  845.     int16 aExp;
  846.     bits32 aSig;
  847.     aSig = extractFloat32Frac( a );
  848.     aExp = extractFloat32Exp( a );
  849.     aSign = extractFloat32Sign( a );
  850.     if ( aExp == 0xFF ) {
  851.         if ( aSig ) return commonNaNToFloatx80( float32ToCommonNaN( a ) );
  852.         return packFloatx80( aSign, 0x7FFF, LIT64( 0x8000000000000000 ) );
  853.     }
  854.     if ( aExp == 0 ) {
  855.         if ( aSig == 0 ) return packFloatx80( aSign, 0, 0 );
  856.         normalizeFloat32Subnormal( aSig, &aExp, &aSig );
  857.     }
  858.     aSig |= 0x00800000;
  859.     return packFloatx80( aSign, aExp + 0x3F80, ( (bits64) aSig )<<40 );
  860. }
  861. #endif
  862. /*
  863. -------------------------------------------------------------------------------
  864. Rounds the single-precision floating-point value `a' to an integer, and
  865. returns the result as a single-precision floating-point value.  The
  866. operation is performed according to the IEC/IEEE Standard for Binary
  867. Floating-point Arithmetic.
  868. -------------------------------------------------------------------------------
  869. */
  870. float32 float32_round_to_int( float32 a )
  871. {
  872.     flag aSign;
  873.     int16 aExp;
  874.     bits32 lastBitMask, roundBitsMask;
  875.     int8 roundingMode;
  876.     float32 z;
  877.     aExp = extractFloat32Exp( a );
  878.     if ( 0x96 <= aExp ) {
  879.         if ( ( aExp == 0xFF ) && extractFloat32Frac( a ) ) {
  880.             return propagateFloat32NaN( a, a );
  881.         }
  882.         return a;
  883.     }
  884.     if ( aExp <= 0x7E ) {
  885.         if ( (bits32) ( a<<1 ) == 0 ) return a;
  886.         float_exception_flags |= float_flag_inexact;
  887.         aSign = extractFloat32Sign( a );
  888.         switch ( float_rounding_mode ) {
  889.          case float_round_nearest_even:
  890.             if ( ( aExp == 0x7E ) && extractFloat32Frac( a ) ) {
  891.                 return packFloat32( aSign, 0x7F, 0 );
  892.             }
  893.             break;
  894.          case float_round_down:
  895.             return aSign ? 0xBF800000 : 0;
  896.          case float_round_up:
  897.             return aSign ? 0x80000000 : 0x3F800000;
  898.         }
  899.         return packFloat32( aSign, 0, 0 );
  900.     }
  901.     lastBitMask = 1;
  902.     lastBitMask <<= 0x96 - aExp;
  903.     roundBitsMask = lastBitMask - 1;
  904.     z = a;
  905.     roundingMode = float_rounding_mode;
  906.     if ( roundingMode == float_round_nearest_even ) {
  907.         z += lastBitMask>>1;
  908.         if ( ( z & roundBitsMask ) == 0 ) z &= ~ lastBitMask;
  909.     }
  910.     else if ( roundingMode != float_round_to_zero ) {
  911.         if ( extractFloat32Sign( z ) ^ ( roundingMode == float_round_up ) ) {
  912.             z += roundBitsMask;
  913.         }
  914.     }
  915.     z &= ~ roundBitsMask;
  916.     if ( z != a ) float_exception_flags |= float_flag_inexact;
  917.     return z;
  918. }
  919. /*
  920. -------------------------------------------------------------------------------
  921. Returns the result of adding the absolute values of the single-precision
  922. floating-point values `a' and `b'.  If `zSign' is true, the sum is negated
  923. before being returned.  `zSign' is ignored if the result is a NaN.  The
  924. addition is performed according to the IEC/IEEE Standard for Binary
  925. Floating-point Arithmetic.
  926. -------------------------------------------------------------------------------
  927. */
  928. static float32 addFloat32Sigs( float32 a, float32 b, flag zSign )
  929. {
  930.     int16 aExp, bExp, zExp;
  931.     bits32 aSig, bSig, zSig;
  932.     int16 expDiff;
  933.     aSig = extractFloat32Frac( a );
  934.     aExp = extractFloat32Exp( a );
  935.     bSig = extractFloat32Frac( b );
  936.     bExp = extractFloat32Exp( b );
  937.     expDiff = aExp - bExp;
  938.     aSig <<= 6;
  939.     bSig <<= 6;
  940.     if ( 0 < expDiff ) {
  941.         if ( aExp == 0xFF ) {
  942.             if ( aSig ) return propagateFloat32NaN( a, b );
  943.             return a;
  944.         }
  945.         if ( bExp == 0 ) {
  946.             --expDiff;
  947.         }
  948.         else {
  949.             bSig |= 0x20000000;
  950.         }
  951.         shift32RightJamming( bSig, expDiff, &bSig );
  952.         zExp = aExp;
  953.     }
  954.     else if ( expDiff < 0 ) {
  955.         if ( bExp == 0xFF ) {
  956.             if ( bSig ) return propagateFloat32NaN( a, b );
  957.             return packFloat32( zSign, 0xFF, 0 );
  958.         }
  959.         if ( aExp == 0 ) {
  960.             ++expDiff;
  961.         }
  962.         else {
  963.             aSig |= 0x20000000;
  964.         }
  965.         shift32RightJamming( aSig, - expDiff, &aSig );
  966.         zExp = bExp;
  967.     }
  968.     else {
  969.         if ( aExp == 0xFF ) {
  970.             if ( aSig | bSig ) return propagateFloat32NaN( a, b );
  971.             return a;
  972.         }
  973.         if ( aExp == 0 ) return packFloat32( zSign, 0, ( aSig + bSig )>>6 );
  974.         zSig = 0x40000000 + aSig + bSig;
  975.         zExp = aExp;
  976.         goto roundAndPack;
  977.     }
  978.     aSig |= 0x20000000;
  979.     zSig = ( aSig + bSig )<<1;
  980.     --zExp;
  981.     if ( (sbits32) zSig < 0 ) {
  982.         zSig = aSig + bSig;
  983.         ++zExp;
  984.     }
  985.  roundAndPack:
  986.     return roundAndPackFloat32( zSign, zExp, zSig );
  987. }
  988. /*
  989. -------------------------------------------------------------------------------
  990. Returns the result of subtracting the absolute values of the single-
  991. precision floating-point values `a' and `b'.  If `zSign' is true, the
  992. difference is negated before being returned.  `zSign' is ignored if the
  993. result is a NaN.  The subtraction is performed according to the IEC/IEEE
  994. Standard for Binary Floating-point Arithmetic.
  995. -------------------------------------------------------------------------------
  996. */
  997. static float32 subFloat32Sigs( float32 a, float32 b, flag zSign )
  998. {
  999.     int16 aExp, bExp, zExp;
  1000.     bits32 aSig, bSig, zSig;
  1001.     int16 expDiff;
  1002.     aSig = extractFloat32Frac( a );
  1003.     aExp = extractFloat32Exp( a );
  1004.     bSig = extractFloat32Frac( b );
  1005.     bExp = extractFloat32Exp( b );
  1006.     expDiff = aExp - bExp;
  1007.     aSig <<= 7;
  1008.     bSig <<= 7;
  1009.     if ( 0 < expDiff ) goto aExpBigger;
  1010.     if ( expDiff < 0 ) goto bExpBigger;
  1011.     if ( aExp == 0xFF ) {
  1012.         if ( aSig | bSig ) return propagateFloat32NaN( a, b );
  1013.         float_raise( float_flag_invalid );
  1014.         return float32_default_nan;
  1015.     }
  1016.     if ( aExp == 0 ) {
  1017.         aExp = 1;
  1018.         bExp = 1;
  1019.     }
  1020.     if ( bSig < aSig ) goto aBigger;
  1021.     if ( aSig < bSig ) goto bBigger;
  1022.     return packFloat32( float_rounding_mode == float_round_down, 0, 0 );
  1023.  bExpBigger:
  1024.     if ( bExp == 0xFF ) {
  1025.         if ( bSig ) return propagateFloat32NaN( a, b );
  1026.         return packFloat32( zSign ^ 1, 0xFF, 0 );
  1027.     }
  1028.     if ( aExp == 0 ) {
  1029.         ++expDiff;
  1030.     }
  1031.     else {
  1032.         aSig |= 0x40000000;
  1033.     }
  1034.     shift32RightJamming( aSig, - expDiff, &aSig );
  1035.     bSig |= 0x40000000;
  1036.  bBigger:
  1037.     zSig = bSig - aSig;
  1038.     zExp = bExp;
  1039.     zSign ^= 1;
  1040.     goto normalizeRoundAndPack;
  1041.  aExpBigger:
  1042.     if ( aExp == 0xFF ) {
  1043.         if ( aSig ) return propagateFloat32NaN( a, b );
  1044.         return a;
  1045.     }
  1046.     if ( bExp == 0 ) {
  1047.         --expDiff;
  1048.     }
  1049.     else {
  1050.         bSig |= 0x40000000;
  1051.     }
  1052.     shift32RightJamming( bSig, expDiff, &bSig );
  1053.     aSig |= 0x40000000;
  1054.  aBigger:
  1055.     zSig = aSig - bSig;
  1056.     zExp = aExp;
  1057.  normalizeRoundAndPack:
  1058.     --zExp;
  1059.     return normalizeRoundAndPackFloat32( zSign, zExp, zSig );
  1060. }
  1061. /*
  1062. -------------------------------------------------------------------------------
  1063. Returns the result of adding the single-precision floating-point values `a'
  1064. and `b'.  The operation is performed according to the IEC/IEEE Standard for
  1065. Binary Floating-point Arithmetic.
  1066. -------------------------------------------------------------------------------
  1067. */
  1068. float32 float32_add( float32 a, float32 b )
  1069. {
  1070.     flag aSign, bSign;
  1071.     aSign = extractFloat32Sign( a );
  1072.     bSign = extractFloat32Sign( b );
  1073.     if ( aSign == bSign ) {
  1074.         return addFloat32Sigs( a, b, aSign );
  1075.     }
  1076.     else {
  1077.         return subFloat32Sigs( a, b, aSign );
  1078.     }
  1079. }
  1080. /*
  1081. -------------------------------------------------------------------------------
  1082. Returns the result of subtracting the single-precision floating-point values
  1083. `a' and `b'.  The operation is performed according to the IEC/IEEE Standard
  1084. for Binary Floating-point Arithmetic.
  1085. -------------------------------------------------------------------------------
  1086. */
  1087. float32 float32_sub( float32 a, float32 b )
  1088. {
  1089.     flag aSign, bSign;
  1090.     aSign = extractFloat32Sign( a );
  1091.     bSign = extractFloat32Sign( b );
  1092.     if ( aSign == bSign ) {
  1093.         return subFloat32Sigs( a, b, aSign );
  1094.     }
  1095.     else {
  1096.         return addFloat32Sigs( a, b, aSign );
  1097.     }
  1098. }
  1099. /*
  1100. -------------------------------------------------------------------------------
  1101. Returns the result of multiplying the single-precision floating-point values
  1102. `a' and `b'.  The operation is performed according to the IEC/IEEE Standard
  1103. for Binary Floating-point Arithmetic.
  1104. -------------------------------------------------------------------------------
  1105. */
  1106. float32 float32_mul( float32 a, float32 b )
  1107. {
  1108.     flag aSign, bSign, zSign;
  1109.     int16 aExp, bExp, zExp;
  1110.     bits32 aSig, bSig;
  1111.     bits64 zSig64;
  1112.     bits32 zSig;
  1113.     aSig = extractFloat32Frac( a );
  1114.     aExp = extractFloat32Exp( a );
  1115.     aSign = extractFloat32Sign( a );
  1116.     bSig = extractFloat32Frac( b );
  1117.     bExp = extractFloat32Exp( b );
  1118.     bSign = extractFloat32Sign( b );
  1119.     zSign = aSign ^ bSign;
  1120.     if ( aExp == 0xFF ) {
  1121.         if ( aSig || ( ( bExp == 0xFF ) && bSig ) ) {
  1122.             return propagateFloat32NaN( a, b );
  1123.         }
  1124.         if ( ( bExp | bSig ) == 0 ) {
  1125.             float_raise( float_flag_invalid );
  1126.             return float32_default_nan;
  1127.         }
  1128.         return packFloat32( zSign, 0xFF, 0 );
  1129.     }
  1130.     if ( bExp == 0xFF ) {
  1131.         if ( bSig ) return propagateFloat32NaN( a, b );
  1132.         if ( ( aExp | aSig ) == 0 ) {
  1133.             float_raise( float_flag_invalid );
  1134.             return float32_default_nan;
  1135.         }
  1136.         return packFloat32( zSign, 0xFF, 0 );
  1137.     }
  1138.     if ( aExp == 0 ) {
  1139.         if ( aSig == 0 ) return packFloat32( zSign, 0, 0 );
  1140.         normalizeFloat32Subnormal( aSig, &aExp, &aSig );
  1141.     }
  1142.     if ( bExp == 0 ) {
  1143.         if ( bSig == 0 ) return packFloat32( zSign, 0, 0 );
  1144.         normalizeFloat32Subnormal( bSig, &bExp, &bSig );
  1145.     }
  1146.     zExp = aExp + bExp - 0x7F;
  1147.     aSig = ( aSig | 0x00800000 )<<7;
  1148.     bSig = ( bSig | 0x00800000 )<<8;
  1149.     shift64RightJamming( ( (bits64) aSig ) * bSig, 32, &zSig64 );
  1150.     zSig = zSig64;
  1151.     if ( 0 <= (sbits32) ( zSig<<1 ) ) {
  1152.         zSig <<= 1;
  1153.         --zExp;
  1154.     }
  1155.     return roundAndPackFloat32( zSign, zExp, zSig );
  1156. }
  1157. /*
  1158. -------------------------------------------------------------------------------
  1159. Returns the result of dividing the single-precision floating-point value `a'
  1160. by the corresponding value `b'.  The operation is performed according to the
  1161. IEC/IEEE Standard for Binary Floating-point Arithmetic.
  1162. -------------------------------------------------------------------------------
  1163. */
  1164. float32 float32_div( float32 a, float32 b )
  1165. {
  1166.     flag aSign, bSign, zSign;
  1167.     int16 aExp, bExp, zExp;
  1168.     bits32 aSig, bSig, zSig;
  1169.     aSig = extractFloat32Frac( a );
  1170.     aExp = extractFloat32Exp( a );
  1171.     aSign = extractFloat32Sign( a );
  1172.     bSig = extractFloat32Frac( b );
  1173.     bExp = extractFloat32Exp( b );
  1174.     bSign = extractFloat32Sign( b );
  1175.     zSign = aSign ^ bSign;
  1176.     if ( aExp == 0xFF ) {
  1177.         if ( aSig ) return propagateFloat32NaN( a, b );
  1178.         if ( bExp == 0xFF ) {
  1179.             if ( bSig ) return propagateFloat32NaN( a, b );
  1180.             float_raise( float_flag_invalid );
  1181.             return float32_default_nan;
  1182.         }
  1183.         return packFloat32( zSign, 0xFF, 0 );
  1184.     }
  1185.     if ( bExp == 0xFF ) {
  1186.         if ( bSig ) return propagateFloat32NaN( a, b );
  1187.         return packFloat32( zSign, 0, 0 );
  1188.     }
  1189.     if ( bExp == 0 ) {
  1190.         if ( bSig == 0 ) {
  1191.             if ( ( aExp | aSig ) == 0 ) {
  1192.                 float_raise( float_flag_invalid );
  1193.                 return float32_default_nan;
  1194.             }
  1195.             float_raise( float_flag_divbyzero );
  1196.             return packFloat32( zSign, 0xFF, 0 );
  1197.         }
  1198.         normalizeFloat32Subnormal( bSig, &bExp, &bSig );
  1199.     }
  1200.     if ( aExp == 0 ) {
  1201.         if ( aSig == 0 ) return packFloat32( zSign, 0, 0 );
  1202.         normalizeFloat32Subnormal( aSig, &aExp, &aSig );
  1203.     }
  1204.     zExp = aExp - bExp + 0x7D;
  1205.     aSig = ( aSig | 0x00800000 )<<7;
  1206.     bSig = ( bSig | 0x00800000 )<<8;
  1207.     if ( bSig <= ( aSig + aSig ) ) {
  1208.         aSig >>= 1;
  1209.         ++zExp;
  1210.     }
  1211.     zSig = ( ( (bits64) aSig )<<32 ) / bSig;
  1212.     if ( ( zSig & 0x3F ) == 0 ) {
  1213.         zSig |= ( ( (bits64) bSig ) * zSig != ( (bits64) aSig )<<32 );
  1214.     }
  1215.     return roundAndPackFloat32( zSign, zExp, zSig );
  1216. }
  1217. /*
  1218. -------------------------------------------------------------------------------
  1219. Returns the remainder of the single-precision floating-point value `a'
  1220. with respect to the corresponding value `b'.  The operation is performed
  1221. according to the IEC/IEEE Standard for Binary Floating-point Arithmetic.
  1222. -------------------------------------------------------------------------------
  1223. */
  1224. float32 float32_rem( float32 a, float32 b )
  1225. {
  1226.     flag aSign, bSign, zSign;
  1227.     int16 aExp, bExp, expDiff;
  1228.     bits32 aSig, bSig;
  1229.     bits32 q;
  1230.     bits64 aSig64, bSig64, q64;
  1231.     bits32 alternateASig;
  1232.     sbits32 sigMean;
  1233.     aSig = extractFloat32Frac( a );
  1234.     aExp = extractFloat32Exp( a );
  1235.     aSign = extractFloat32Sign( a );
  1236.     bSig = extractFloat32Frac( b );
  1237.     bExp = extractFloat32Exp( b );
  1238.     bSign = extractFloat32Sign( b );
  1239.     if ( aExp == 0xFF ) {
  1240.         if ( aSig || ( ( bExp == 0xFF ) && bSig ) ) {
  1241.             return propagateFloat32NaN( a, b );
  1242.         }
  1243.         float_raise( float_flag_invalid );
  1244.         return float32_default_nan;
  1245.     }
  1246.     if ( bExp == 0xFF ) {
  1247.         if ( bSig ) return propagateFloat32NaN( a, b );
  1248.         return a;
  1249.     }
  1250.     if ( bExp == 0 ) {
  1251.         if ( bSig == 0 ) {
  1252.             float_raise( float_flag_invalid );
  1253.             return float32_default_nan;
  1254.         }
  1255.         normalizeFloat32Subnormal( bSig, &bExp, &bSig );
  1256.     }
  1257.     if ( aExp == 0 ) {
  1258.         if ( aSig == 0 ) return a;
  1259.         normalizeFloat32Subnormal( aSig, &aExp, &aSig );
  1260.     }
  1261.     expDiff = aExp - bExp;
  1262.     aSig |= 0x00800000;
  1263.     bSig |= 0x00800000;
  1264.     if ( expDiff < 32 ) {
  1265.         aSig <<= 8;
  1266.         bSig <<= 8;
  1267.         if ( expDiff < 0 ) {
  1268.             if ( expDiff < -1 ) return a;
  1269.             aSig >>= 1;
  1270.         }
  1271.         q = ( bSig <= aSig );
  1272.         if ( q ) aSig -= bSig;
  1273.         if ( 0 < expDiff ) {
  1274.             q = ( ( (bits64) aSig )<<32 ) / bSig;
  1275.             q >>= 32 - expDiff;
  1276.             bSig >>= 2;
  1277.             aSig = ( ( aSig>>1 )<<( expDiff - 1 ) ) - bSig * q;
  1278.         }
  1279.         else {
  1280.             aSig >>= 2;
  1281.             bSig >>= 2;
  1282.         }
  1283.     }
  1284.     else {
  1285.         if ( bSig <= aSig ) aSig -= bSig;
  1286.         aSig64 = ( (bits64) aSig )<<40;
  1287.         bSig64 = ( (bits64) bSig )<<40;
  1288.         expDiff -= 64;
  1289.         while ( 0 < expDiff ) {
  1290.             q64 = estimateDiv128To64( aSig64, 0, bSig64 );
  1291.             q64 = ( 2 < q64 ) ? q64 - 2 : 0;
  1292.             aSig64 = - ( ( bSig * q64 )<<38 );
  1293.             expDiff -= 62;
  1294.         }
  1295.         expDiff += 64;
  1296.         q64 = estimateDiv128To64( aSig64, 0, bSig64 );
  1297.         q64 = ( 2 < q64 ) ? q64 - 2 : 0;
  1298.         q = q64>>( 64 - expDiff );
  1299.         bSig <<= 6;
  1300.         aSig = ( ( aSig64>>33 )<<( expDiff - 1 ) ) - bSig * q;
  1301.     }
  1302.     do {
  1303.         alternateASig = aSig;
  1304.         ++q;
  1305.         aSig -= bSig;
  1306.     } while ( 0 <= (sbits32) aSig );
  1307.     sigMean = aSig + alternateASig;
  1308.     if ( ( sigMean < 0 ) || ( ( sigMean == 0 ) && ( q & 1 ) ) ) {
  1309.         aSig = alternateASig;
  1310.     }
  1311.     zSign = ( (sbits32) aSig < 0 );
  1312.     if ( zSign ) aSig = - aSig;
  1313.     return normalizeRoundAndPackFloat32( aSign ^ zSign, bExp, aSig );
  1314. }
  1315. /*
  1316. -------------------------------------------------------------------------------
  1317. Returns the square root of the single-precision floating-point value `a'.
  1318. The operation is performed according to the IEC/IEEE Standard for Binary
  1319. Floating-point Arithmetic.
  1320. -------------------------------------------------------------------------------
  1321. */
  1322. float32 float32_sqrt( float32 a )
  1323. {
  1324.     flag aSign;
  1325.     int16 aExp, zExp;
  1326.     bits32 aSig, zSig;
  1327.     bits64 rem, term;
  1328.     aSig = extractFloat32Frac( a );
  1329.     aExp = extractFloat32Exp( a );
  1330.     aSign = extractFloat32Sign( a );
  1331.     if ( aExp == 0xFF ) {
  1332.         if ( aSig ) return propagateFloat32NaN( a, 0 );
  1333.         if ( ! aSign ) return a;
  1334.         float_raise( float_flag_invalid );
  1335.         return float32_default_nan;
  1336.     }
  1337.     if ( aSign ) {
  1338.         if ( ( aExp | aSig ) == 0 ) return a;
  1339.         float_raise( float_flag_invalid );
  1340.         return float32_default_nan;
  1341.     }
  1342.     if ( aExp == 0 ) {
  1343.         if ( aSig == 0 ) return 0;
  1344.         normalizeFloat32Subnormal( aSig, &aExp, &aSig );
  1345.     }
  1346.     zExp = ( ( aExp - 0x7F )>>1 ) + 0x7E;
  1347.     aSig = ( aSig | 0x00800000 )<<8;
  1348.     zSig = estimateSqrt32( aExp, aSig ) + 2;
  1349.     if ( ( zSig & 0x7F ) <= 5 ) {
  1350.         if ( zSig < 2 ) {
  1351.             zSig = 0xFFFFFFFF;
  1352.         }
  1353.         else {
  1354.             aSig >>= aExp & 1;
  1355.             term = ( (bits64) zSig ) * zSig;
  1356.             rem = ( ( (bits64) aSig )<<32 ) - term;
  1357.             while ( (sbits64) rem < 0 ) {
  1358.                 --zSig;
  1359.                 rem += ( ( (bits64) zSig )<<1 ) | 1;
  1360.             }
  1361.             zSig |= ( rem != 0 );
  1362.         }
  1363.     }
  1364.     shift32RightJamming( zSig, 1, &zSig );
  1365.     return roundAndPackFloat32( 0, zExp, zSig );
  1366. }
  1367. /*
  1368. -------------------------------------------------------------------------------
  1369. Returns 1 if the single-precision floating-point value `a' is equal to the
  1370. corresponding value `b', and 0 otherwise.  The comparison is performed
  1371. according to the IEC/IEEE Standard for Binary Floating-point Arithmetic.
  1372. -------------------------------------------------------------------------------
  1373. */
  1374. flag float32_eq( float32 a, float32 b )
  1375. {
  1376.     if (    ( ( extractFloat32Exp( a ) == 0xFF ) && extractFloat32Frac( a ) )
  1377.          || ( ( extractFloat32Exp( b ) == 0xFF ) && extractFloat32Frac( b ) )
  1378.        ) {
  1379.         if ( float32_is_signaling_nan( a ) || float32_is_signaling_nan( b ) ) {
  1380.             float_raise( float_flag_invalid );
  1381.         }
  1382.         return 0;
  1383.     }
  1384.     return ( a == b ) || ( (bits32) ( ( a | b )<<1 ) == 0 );
  1385. }
  1386. /*
  1387. -------------------------------------------------------------------------------
  1388. Returns 1 if the single-precision floating-point value `a' is less than or
  1389. equal to the corresponding value `b', and 0 otherwise.  The comparison is
  1390. performed according to the IEC/IEEE Standard for Binary Floating-point
  1391. Arithmetic.
  1392. -------------------------------------------------------------------------------
  1393. */
  1394. flag float32_le( float32 a, float32 b )
  1395. {
  1396.     flag aSign, bSign;
  1397.     if (    ( ( extractFloat32Exp( a ) == 0xFF ) && extractFloat32Frac( a ) )
  1398.          || ( ( extractFloat32Exp( b ) == 0xFF ) && extractFloat32Frac( b ) )
  1399.        ) {
  1400.         float_raise( float_flag_invalid );
  1401.         return 0;
  1402.     }
  1403.     aSign = extractFloat32Sign( a );
  1404.     bSign = extractFloat32Sign( b );
  1405.     if ( aSign != bSign ) return aSign || ( (bits32) ( ( a | b )<<1 ) == 0 );
  1406.     return ( a == b ) || ( aSign ^ ( a < b ) );
  1407. }
  1408. /*
  1409. -------------------------------------------------------------------------------
  1410. Returns 1 if the single-precision floating-point value `a' is less than
  1411. the corresponding value `b', and 0 otherwise.  The comparison is performed
  1412. according to the IEC/IEEE Standard for Binary Floating-point Arithmetic.
  1413. -------------------------------------------------------------------------------
  1414. */
  1415. flag float32_lt( float32 a, float32 b )
  1416. {
  1417.     flag aSign, bSign;
  1418.     if (    ( ( extractFloat32Exp( a ) == 0xFF ) && extractFloat32Frac( a ) )
  1419.          || ( ( extractFloat32Exp( b ) == 0xFF ) && extractFloat32Frac( b ) )
  1420.        ) {
  1421.         float_raise( float_flag_invalid );
  1422.         return 0;
  1423.     }
  1424.     aSign = extractFloat32Sign( a );
  1425.     bSign = extractFloat32Sign( b );
  1426.     if ( aSign != bSign ) return aSign && ( (bits32) ( ( a | b )<<1 ) != 0 );
  1427.     return ( a != b ) && ( aSign ^ ( a < b ) );
  1428. }
  1429. /*
  1430. -------------------------------------------------------------------------------
  1431. Returns 1 if the single-precision floating-point value `a' is equal to the
  1432. corresponding value `b', and 0 otherwise.  The invalid exception is raised
  1433. if either operand is a NaN.  Otherwise, the comparison is performed
  1434. according to the IEC/IEEE Standard for Binary Floating-point Arithmetic.
  1435. -------------------------------------------------------------------------------
  1436. */
  1437. flag float32_eq_signaling( float32 a, float32 b )
  1438. {
  1439.     if (    ( ( extractFloat32Exp( a ) == 0xFF ) && extractFloat32Frac( a ) )
  1440.          || ( ( extractFloat32Exp( b ) == 0xFF ) && extractFloat32Frac( b ) )
  1441.        ) {
  1442.         float_raise( float_flag_invalid );
  1443.         return 0;
  1444.     }
  1445.     return ( a == b ) || ( (bits32) ( ( a | b )<<1 ) == 0 );
  1446. }
  1447. /*
  1448. -------------------------------------------------------------------------------
  1449. Returns 1 if the single-precision floating-point value `a' is less than or
  1450. equal to the corresponding value `b', and 0 otherwise.  Quiet NaNs do not
  1451. cause an exception.  Otherwise, the comparison is performed according to the
  1452. IEC/IEEE Standard for Binary Floating-point Arithmetic.
  1453. -------------------------------------------------------------------------------
  1454. */
  1455. flag float32_le_quiet( float32 a, float32 b )
  1456. {
  1457.     flag aSign, bSign;
  1458.     //int16 aExp, bExp;
  1459.     if (    ( ( extractFloat32Exp( a ) == 0xFF ) && extractFloat32Frac( a ) )
  1460.          || ( ( extractFloat32Exp( b ) == 0xFF ) && extractFloat32Frac( b ) )
  1461.        ) {
  1462.         if ( float32_is_signaling_nan( a ) || float32_is_signaling_nan( b ) ) {
  1463.             float_raise( float_flag_invalid );
  1464.         }
  1465.         return 0;
  1466.     }
  1467.     aSign = extractFloat32Sign( a );
  1468.     bSign = extractFloat32Sign( b );
  1469.     if ( aSign != bSign ) return aSign || ( (bits32) ( ( a | b )<<1 ) == 0 );
  1470.     return ( a == b ) || ( aSign ^ ( a < b ) );
  1471. }
  1472. /*
  1473. -------------------------------------------------------------------------------
  1474. Returns 1 if the single-precision floating-point value `a' is less than
  1475. the corresponding value `b', and 0 otherwise.  Quiet NaNs do not cause an
  1476. exception.  Otherwise, the comparison is performed according to the IEC/IEEE
  1477. Standard for Binary Floating-point Arithmetic.
  1478. -------------------------------------------------------------------------------
  1479. */
  1480. flag float32_lt_quiet( float32 a, float32 b )
  1481. {
  1482.     flag aSign, bSign;
  1483.     if (    ( ( extractFloat32Exp( a ) == 0xFF ) && extractFloat32Frac( a ) )
  1484.          || ( ( extractFloat32Exp( b ) == 0xFF ) && extractFloat32Frac( b ) )
  1485.        ) {
  1486.         if ( float32_is_signaling_nan( a ) || float32_is_signaling_nan( b ) ) {
  1487.             float_raise( float_flag_invalid );
  1488.         }
  1489.         return 0;
  1490.     }
  1491.     aSign = extractFloat32Sign( a );
  1492.     bSign = extractFloat32Sign( b );
  1493.     if ( aSign != bSign ) return aSign && ( (bits32) ( ( a | b )<<1 ) != 0 );
  1494.     return ( a != b ) && ( aSign ^ ( a < b ) );
  1495. }
  1496. /*
  1497. -------------------------------------------------------------------------------
  1498. Returns the result of converting the double-precision floating-point value
  1499. `a' to the 32-bit two's complement integer format.  The conversion is
  1500. performed according to the IEC/IEEE Standard for Binary Floating-point
  1501. Arithmetic---which means in particular that the conversion is rounded
  1502. according to the current rounding mode.  If `a' is a NaN, the largest
  1503. positive integer is returned.  Otherwise, if the conversion overflows, the
  1504. largest integer with the same sign as `a' is returned.
  1505. -------------------------------------------------------------------------------
  1506. */
  1507. int32 float64_to_int32( float64 a )
  1508. {
  1509.     flag aSign;
  1510.     int16 aExp, shiftCount;
  1511.     bits64 aSig;
  1512.     aSig = extractFloat64Frac( a );
  1513.     aExp = extractFloat64Exp( a );
  1514.     aSign = extractFloat64Sign( a );
  1515.     if ( ( aExp == 0x7FF ) && aSig ) aSign = 0;
  1516.     if ( aExp ) aSig |= LIT64( 0x0010000000000000 );
  1517.     shiftCount = 0x42C - aExp;
  1518.     if ( 0 < shiftCount ) shift64RightJamming( aSig, shiftCount, &aSig );
  1519.     return roundAndPackInt32( aSign, aSig );
  1520. }
  1521. /*
  1522. -------------------------------------------------------------------------------
  1523. Returns the result of converting the double-precision floating-point value
  1524. `a' to the 32-bit two's complement integer format.  The conversion is
  1525. performed according to the IEC/IEEE Standard for Binary Floating-point
  1526. Arithmetic, except that the conversion is always rounded toward zero.  If
  1527. `a' is a NaN, the largest positive integer is returned.  Otherwise, if the
  1528. conversion overflows, the largest integer with the same sign as `a' is
  1529. returned.
  1530. -------------------------------------------------------------------------------
  1531. */
  1532. int32 float64_to_int32_round_to_zero( float64 a )
  1533. {
  1534.     flag aSign;
  1535.     int16 aExp, shiftCount;
  1536.     bits64 aSig, savedASig;
  1537.     int32 z;
  1538.     aSig = extractFloat64Frac( a );
  1539.     aExp = extractFloat64Exp( a );
  1540.     aSign = extractFloat64Sign( a );
  1541.     shiftCount = 0x433 - aExp;
  1542.     if ( shiftCount < 21 ) {
  1543.         if ( ( aExp == 0x7FF ) && aSig ) aSign = 0;
  1544.         goto invalid;
  1545.     }
  1546.     else if ( 52 < shiftCount ) {
  1547.         if ( aExp || aSig ) float_exception_flags |= float_flag_inexact;
  1548.         return 0;
  1549.     }
  1550.     aSig |= LIT64( 0x0010000000000000 );
  1551.     savedASig = aSig;
  1552.     aSig >>= shiftCount;
  1553.     z = aSig;
  1554.     if ( aSign ) z = - z;
  1555.     if ( ( z < 0 ) ^ aSign ) {
  1556.  invalid:
  1557.         float_exception_flags |= float_flag_invalid;
  1558.         return aSign ? 0x80000000 : 0x7FFFFFFF;
  1559.     }
  1560.     if ( ( aSig<<shiftCount ) != savedASig ) {
  1561.         float_exception_flags |= float_flag_inexact;
  1562.     }
  1563.     return z;
  1564. }
  1565. /*
  1566. -------------------------------------------------------------------------------
  1567. Returns the result of converting the double-precision floating-point value
  1568. `a' to the 32-bit two's complement unsigned integer format.  The conversion
  1569. is performed according to the IEC/IEEE Standard for Binary Floating-point
  1570. Arithmetic---which means in particular that the conversion is rounded
  1571. according to the current rounding mode.  If `a' is a NaN, the largest
  1572. positive integer is returned.  Otherwise, if the conversion overflows, the
  1573. largest positive integer is returned.
  1574. -------------------------------------------------------------------------------
  1575. */
  1576. int32 float64_to_uint32( float64 a )
  1577. {
  1578.     flag aSign;
  1579.     int16 aExp, shiftCount;
  1580.     bits64 aSig;
  1581.     aSig = extractFloat64Frac( a );
  1582.     aExp = extractFloat64Exp( a );
  1583.     aSign = 0; //extractFloat64Sign( a );
  1584.     //if ( ( aExp == 0x7FF ) && aSig ) aSign = 0;
  1585.     if ( aExp ) aSig |= LIT64( 0x0010000000000000 );
  1586.     shiftCount = 0x42C - aExp;
  1587.     if ( 0 < shiftCount ) shift64RightJamming( aSig, shiftCount, &aSig );
  1588.     return roundAndPackInt32( aSign, aSig );
  1589. }
  1590. /*
  1591. -------------------------------------------------------------------------------
  1592. Returns the result of converting the double-precision floating-point value
  1593. `a' to the 32-bit two's complement integer format.  The conversion is
  1594. performed according to the IEC/IEEE Standard for Binary Floating-point
  1595. Arithmetic, except that the conversion is always rounded toward zero.  If
  1596. `a' is a NaN, the largest positive integer is returned.  Otherwise, if the
  1597. conversion overflows, the largest positive integer is returned.
  1598. -------------------------------------------------------------------------------
  1599. */
  1600. int32 float64_to_uint32_round_to_zero( float64 a )
  1601. {
  1602.     flag aSign;
  1603.     int16 aExp, shiftCount;
  1604.     bits64 aSig, savedASig;
  1605.     int32 z;
  1606.     aSig = extractFloat64Frac( a );
  1607.     aExp = extractFloat64Exp( a );
  1608.     aSign = extractFloat64Sign( a );
  1609.     shiftCount = 0x433 - aExp;
  1610.     if ( shiftCount < 21 ) {
  1611.         if ( ( aExp == 0x7FF ) && aSig ) aSign = 0;
  1612.         goto invalid;
  1613.     }
  1614.     else if ( 52 < shiftCount ) {
  1615.         if ( aExp || aSig ) float_exception_flags |= float_flag_inexact;
  1616.         return 0;
  1617.     }
  1618.     aSig |= LIT64( 0x0010000000000000 );
  1619.     savedASig = aSig;
  1620.     aSig >>= shiftCount;
  1621.     z = aSig;
  1622.     if ( aSign ) z = - z;
  1623.     if ( ( z < 0 ) ^ aSign ) {
  1624.  invalid:
  1625.         float_exception_flags |= float_flag_invalid;
  1626.         return aSign ? 0x80000000 : 0x7FFFFFFF;
  1627.     }
  1628.     if ( ( aSig<<shiftCount ) != savedASig ) {
  1629.         float_exception_flags |= float_flag_inexact;
  1630.     }
  1631.     return z;
  1632. }
  1633. /*
  1634. -------------------------------------------------------------------------------
  1635. Returns the result of converting the double-precision floating-point value
  1636. `a' to the single-precision floating-point format.  The conversion is
  1637. performed according to the IEC/IEEE Standard for Binary Floating-point
  1638. Arithmetic.
  1639. -------------------------------------------------------------------------------
  1640. */
  1641. float32 float64_to_float32( float64 a )
  1642. {
  1643.     flag aSign;
  1644.     int16 aExp;
  1645.     bits64 aSig;
  1646.     bits32 zSig;
  1647.     aSig = extractFloat64Frac( a );
  1648.     aExp = extractFloat64Exp( a );
  1649.     aSign = extractFloat64Sign( a );
  1650.     if ( aExp == 0x7FF ) {
  1651.         if ( aSig ) return commonNaNToFloat32( float64ToCommonNaN( a ) );
  1652.         return packFloat32( aSign, 0xFF, 0 );
  1653.     }
  1654.     shift64RightJamming( aSig, 22, &aSig );
  1655.     zSig = aSig;
  1656.     if ( aExp || zSig ) {
  1657.         zSig |= 0x40000000;
  1658.         aExp -= 0x381;
  1659.     }
  1660.     return roundAndPackFloat32( aSign, aExp, zSig );
  1661. }
  1662. #ifdef FLOATX80
  1663. /*
  1664. -------------------------------------------------------------------------------
  1665. Returns the result of converting the double-precision floating-point value
  1666. `a' to the extended double-precision floating-point format.  The conversion
  1667. is performed according to the IEC/IEEE Standard for Binary Floating-point
  1668. Arithmetic.
  1669. -------------------------------------------------------------------------------
  1670. */
  1671. floatx80 float64_to_floatx80( float64 a )
  1672. {
  1673.     flag aSign;
  1674.     int16 aExp;
  1675.     bits64 aSig;
  1676.     aSig = extractFloat64Frac( a );
  1677.     aExp = extractFloat64Exp( a );
  1678.     aSign = extractFloat64Sign( a );
  1679.     if ( aExp == 0x7FF ) {
  1680.         if ( aSig ) return commonNaNToFloatx80( float64ToCommonNaN( a ) );
  1681.         return packFloatx80( aSign, 0x7FFF, LIT64( 0x8000000000000000 ) );
  1682.     }
  1683.     if ( aExp == 0 ) {
  1684.         if ( aSig == 0 ) return packFloatx80( aSign, 0, 0 );
  1685.         normalizeFloat64Subnormal( aSig, &aExp, &aSig );
  1686.     }
  1687.     return
  1688.         packFloatx80(
  1689.             aSign, aExp + 0x3C00, ( aSig | LIT64( 0x0010000000000000 ) )<<11 );
  1690. }
  1691. #endif
  1692. /*
  1693. -------------------------------------------------------------------------------
  1694. Rounds the double-precision floating-point value `a' to an integer, and
  1695. returns the result as a double-precision floating-point value.  The
  1696. operation is performed according to the IEC/IEEE Standard for Binary
  1697. Floating-point Arithmetic.
  1698. -------------------------------------------------------------------------------
  1699. */
  1700. float64 float64_round_to_int( float64 a )
  1701. {
  1702.     flag aSign;
  1703.     int16 aExp;
  1704.     bits64 lastBitMask, roundBitsMask;
  1705.     int8 roundingMode;
  1706.     float64 z;
  1707.     aExp = extractFloat64Exp( a );
  1708.     if ( 0x433 <= aExp ) {
  1709.         if ( ( aExp == 0x7FF ) && extractFloat64Frac( a ) ) {
  1710.             return propagateFloat64NaN( a, a );
  1711.         }
  1712.         return a;
  1713.     }
  1714.     if ( aExp <= 0x3FE ) {
  1715.         if ( (bits64) ( a<<1 ) == 0 ) return a;
  1716.         float_exception_flags |= float_flag_inexact;
  1717.         aSign = extractFloat64Sign( a );
  1718.         switch ( float_rounding_mode ) {
  1719.          case float_round_nearest_even:
  1720.             if ( ( aExp == 0x3FE ) && extractFloat64Frac( a ) ) {
  1721.                 return packFloat64( aSign, 0x3FF, 0 );
  1722.             }
  1723.             break;
  1724.          case float_round_down:
  1725.             return aSign ? LIT64( 0xBFF0000000000000 ) : 0;
  1726.          case float_round_up:
  1727.             return
  1728.             aSign ? LIT64( 0x8000000000000000 ) : LIT64( 0x3FF0000000000000 );
  1729.         }
  1730.         return packFloat64( aSign, 0, 0 );
  1731.     }
  1732.     lastBitMask = 1;
  1733.     lastBitMask <<= 0x433 - aExp;
  1734.     roundBitsMask = lastBitMask - 1;
  1735.     z = a;
  1736.     roundingMode = float_rounding_mode;
  1737.     if ( roundingMode == float_round_nearest_even ) {
  1738.         z += lastBitMask>>1;
  1739.         if ( ( z & roundBitsMask ) == 0 ) z &= ~ lastBitMask;
  1740.     }
  1741.     else if ( roundingMode != float_round_to_zero ) {
  1742.         if ( extractFloat64Sign( z ) ^ ( roundingMode == float_round_up ) ) {
  1743.             z += roundBitsMask;
  1744.         }
  1745.     }
  1746.     z &= ~ roundBitsMask;
  1747.     if ( z != a ) float_exception_flags |= float_flag_inexact;
  1748.     return z;
  1749. }
  1750. /*
  1751. -------------------------------------------------------------------------------
  1752. Returns the result of adding the absolute values of the double-precision
  1753. floating-point values `a' and `b'.  If `zSign' is true, the sum is negated
  1754. before being returned.  `zSign' is ignored if the result is a NaN.  The
  1755. addition is performed according to the IEC/IEEE Standard for Binary
  1756. Floating-point Arithmetic.
  1757. -------------------------------------------------------------------------------
  1758. */
  1759. static float64 addFloat64Sigs( float64 a, float64 b, flag zSign )
  1760. {
  1761.     int16 aExp, bExp, zExp;
  1762.     bits64 aSig, bSig, zSig;
  1763.     int16 expDiff;
  1764.     aSig = extractFloat64Frac( a );
  1765.     aExp = extractFloat64Exp( a );
  1766.     bSig = extractFloat64Frac( b );
  1767.     bExp = extractFloat64Exp( b );
  1768.     expDiff = aExp - bExp;
  1769.     aSig <<= 9;
  1770.     bSig <<= 9;
  1771.     if ( 0 < expDiff ) {
  1772.         if ( aExp == 0x7FF ) {
  1773.             if ( aSig ) return propagateFloat64NaN( a, b );
  1774.             return a;
  1775.         }
  1776.         if ( bExp == 0 ) {
  1777.             --expDiff;
  1778.         }
  1779.         else {
  1780.             bSig |= LIT64( 0x2000000000000000 );
  1781.         }
  1782.         shift64RightJamming( bSig, expDiff, &bSig );
  1783.         zExp = aExp;
  1784.     }
  1785.     else if ( expDiff < 0 ) {
  1786.         if ( bExp == 0x7FF ) {
  1787.             if ( bSig ) return propagateFloat64NaN( a, b );
  1788.             return packFloat64( zSign, 0x7FF, 0 );
  1789.         }
  1790.         if ( aExp == 0 ) {
  1791.             ++expDiff;
  1792.         }
  1793.         else {
  1794.             aSig |= LIT64( 0x2000000000000000 );
  1795.         }
  1796.         shift64RightJamming( aSig, - expDiff, &aSig );
  1797.         zExp = bExp;
  1798.     }
  1799.     else {
  1800.         if ( aExp == 0x7FF ) {
  1801.             if ( aSig | bSig ) return propagateFloat64NaN( a, b );
  1802.             return a;
  1803.         }
  1804.         if ( aExp == 0 ) return packFloat64( zSign, 0, ( aSig + bSig )>>9 );
  1805.         zSig = LIT64( 0x4000000000000000 ) + aSig + bSig;
  1806.         zExp = aExp;
  1807.         goto roundAndPack;
  1808.     }
  1809.     aSig |= LIT64( 0x2000000000000000 );
  1810.     zSig = ( aSig + bSig )<<1;
  1811.     --zExp;
  1812.     if ( (sbits64) zSig < 0 ) {
  1813.         zSig = aSig + bSig;
  1814.         ++zExp;
  1815.     }
  1816.  roundAndPack:
  1817.     return roundAndPackFloat64( zSign, zExp, zSig );
  1818. }
  1819. /*
  1820. -------------------------------------------------------------------------------
  1821. Returns the result of subtracting the absolute values of the double-
  1822. precision floating-point values `a' and `b'.  If `zSign' is true, the
  1823. difference is negated before being returned.  `zSign' is ignored if the
  1824. result is a NaN.  The subtraction is performed according to the IEC/IEEE
  1825. Standard for Binary Floating-point Arithmetic.
  1826. -------------------------------------------------------------------------------
  1827. */
  1828. static float64 subFloat64Sigs( float64 a, float64 b, flag zSign )
  1829. {
  1830.     int16 aExp, bExp, zExp;
  1831.     bits64 aSig, bSig, zSig;
  1832.     int16 expDiff;
  1833.     aSig = extractFloat64Frac( a );
  1834.     aExp = extractFloat64Exp( a );
  1835.     bSig = extractFloat64Frac( b );
  1836.     bExp = extractFloat64Exp( b );
  1837.     expDiff = aExp - bExp;
  1838.     aSig <<= 10;
  1839.     bSig <<= 10;
  1840.     if ( 0 < expDiff ) goto aExpBigger;
  1841.     if ( expDiff < 0 ) goto bExpBigger;
  1842.     if ( aExp == 0x7FF ) {
  1843.         if ( aSig | bSig ) return propagateFloat64NaN( a, b );
  1844.         float_raise( float_flag_invalid );
  1845.         return float64_default_nan;
  1846.     }
  1847.     if ( aExp == 0 ) {
  1848.         aExp = 1;
  1849.         bExp = 1;
  1850.     }
  1851.     if ( bSig < aSig ) goto aBigger;
  1852.     if ( aSig < bSig ) goto bBigger;
  1853.     return packFloat64( float_rounding_mode == float_round_down, 0, 0 );
  1854.  bExpBigger:
  1855.     if ( bExp == 0x7FF ) {
  1856.         if ( bSig ) return propagateFloat64NaN( a, b );
  1857.         return packFloat64( zSign ^ 1, 0x7FF, 0 );
  1858.     }
  1859.     if ( aExp == 0 ) {
  1860.         ++expDiff;
  1861.     }
  1862.     else {
  1863.         aSig |= LIT64( 0x4000000000000000 );
  1864.     }
  1865.     shift64RightJamming( aSig, - expDiff, &aSig );
  1866.     bSig |= LIT64( 0x4000000000000000 );
  1867.  bBigger:
  1868.     zSig = bSig - aSig;
  1869.     zExp = bExp;
  1870.     zSign ^= 1;
  1871.     goto normalizeRoundAndPack;
  1872.  aExpBigger:
  1873.     if ( aExp == 0x7FF ) {
  1874.         if ( aSig ) return propagateFloat64NaN( a, b );
  1875.         return a;
  1876.     }
  1877.     if ( bExp == 0 ) {
  1878.         --expDiff;
  1879.     }
  1880.     else {
  1881.         bSig |= LIT64( 0x4000000000000000 );
  1882.     }
  1883.     shift64RightJamming( bSig, expDiff, &bSig );
  1884.     aSig |= LIT64( 0x4000000000000000 );
  1885.  aBigger:
  1886.     zSig = aSig - bSig;
  1887.     zExp = aExp;
  1888.  normalizeRoundAndPack:
  1889.     --zExp;
  1890.     return normalizeRoundAndPackFloat64( zSign, zExp, zSig );
  1891. }
  1892. /*
  1893. -------------------------------------------------------------------------------
  1894. Returns the result of adding the double-precision floating-point values `a'
  1895. and `b'.  The operation is performed according to the IEC/IEEE Standard for
  1896. Binary Floating-point Arithmetic.
  1897. -------------------------------------------------------------------------------
  1898. */
  1899. float64 float64_add( float64 a, float64 b )
  1900. {
  1901.     flag aSign, bSign;
  1902.     aSign = extractFloat64Sign( a );
  1903.     bSign = extractFloat64Sign( b );
  1904.     if ( aSign == bSign ) {
  1905.         return addFloat64Sigs( a, b, aSign );
  1906.     }
  1907.     else {
  1908.         return subFloat64Sigs( a, b, aSign );
  1909.     }
  1910. }
  1911. /*
  1912. -------------------------------------------------------------------------------
  1913. Returns the result of subtracting the double-precision floating-point values
  1914. `a' and `b'.  The operation is performed according to the IEC/IEEE Standard
  1915. for Binary Floating-point Arithmetic.
  1916. -------------------------------------------------------------------------------
  1917. */
  1918. float64 float64_sub( float64 a, float64 b )
  1919. {
  1920.     flag aSign, bSign;
  1921.     aSign = extractFloat64Sign( a );
  1922.     bSign = extractFloat64Sign( b );
  1923.     if ( aSign == bSign ) {
  1924.         return subFloat64Sigs( a, b, aSign );
  1925.     }
  1926.     else {
  1927.         return addFloat64Sigs( a, b, aSign );
  1928.     }
  1929. }
  1930. /*
  1931. -------------------------------------------------------------------------------
  1932. Returns the result of multiplying the double-precision floating-point values
  1933. `a' and `b'.  The operation is performed according to the IEC/IEEE Standard
  1934. for Binary Floating-point Arithmetic.
  1935. -------------------------------------------------------------------------------
  1936. */
  1937. float64 float64_mul( float64 a, float64 b )
  1938. {
  1939.     flag aSign, bSign, zSign;
  1940.     int16 aExp, bExp, zExp;
  1941.     bits64 aSig, bSig, zSig0, zSig1;
  1942.     aSig = extractFloat64Frac( a );
  1943.     aExp = extractFloat64Exp( a );
  1944.     aSign = extractFloat64Sign( a );
  1945.     bSig = extractFloat64Frac( b );
  1946.     bExp = extractFloat64Exp( b );
  1947.     bSign = extractFloat64Sign( b );
  1948.     zSign = aSign ^ bSign;
  1949.     if ( aExp == 0x7FF ) {
  1950.         if ( aSig || ( ( bExp == 0x7FF ) && bSig ) ) {
  1951.             return propagateFloat64NaN( a, b );
  1952.         }
  1953.         if ( ( bExp | bSig ) == 0 ) {
  1954.             float_raise( float_flag_invalid );
  1955.             return float64_default_nan;
  1956.         }
  1957.         return packFloat64( zSign, 0x7FF, 0 );
  1958.     }
  1959.     if ( bExp == 0x7FF ) {
  1960.         if ( bSig ) return propagateFloat64NaN( a, b );
  1961.         if ( ( aExp | aSig ) == 0 ) {
  1962.             float_raise( float_flag_invalid );
  1963.             return float64_default_nan;
  1964.         }
  1965.         return packFloat64( zSign, 0x7FF, 0 );
  1966.     }
  1967.     if ( aExp == 0 ) {
  1968.         if ( aSig == 0 ) return packFloat64( zSign, 0, 0 );
  1969.         normalizeFloat64Subnormal( aSig, &aExp, &aSig );
  1970.     }
  1971.     if ( bExp == 0 ) {
  1972.         if ( bSig == 0 ) return packFloat64( zSign, 0, 0 );
  1973.         normalizeFloat64Subnormal( bSig, &bExp, &bSig );
  1974.     }
  1975.     zExp = aExp + bExp - 0x3FF;
  1976.     aSig = ( aSig | LIT64( 0x0010000000000000 ) )<<10;
  1977.     bSig = ( bSig | LIT64( 0x0010000000000000 ) )<<11;
  1978.     mul64To128( aSig, bSig, &zSig0, &zSig1 );
  1979.     zSig0 |= ( zSig1 != 0 );
  1980.     if ( 0 <= (sbits64) ( zSig0<<1 ) ) {
  1981.         zSig0 <<= 1;
  1982.         --zExp;
  1983.     }
  1984.     return roundAndPackFloat64( zSign, zExp, zSig0 );
  1985. }
  1986. /*
  1987. -------------------------------------------------------------------------------
  1988. Returns the result of dividing the double-precision floating-point value `a'
  1989. by the corresponding value `b'.  The operation is performed according to
  1990. the IEC/IEEE Standard for Binary Floating-point Arithmetic.
  1991. -------------------------------------------------------------------------------
  1992. */
  1993. float64 float64_div( float64 a, float64 b )
  1994. {
  1995.     flag aSign, bSign, zSign;
  1996.     int16 aExp, bExp, zExp;
  1997.     bits64 aSig, bSig, zSig;
  1998.     bits64 rem0, rem1;
  1999.     bits64 term0, term1;
  2000.     aSig = extractFloat64Frac( a );
  2001.     aExp = extractFloat64Exp( a );
  2002.     aSign = extractFloat64Sign( a );
  2003.     bSig = extractFloat64Frac( b );
  2004.     bExp = extractFloat64Exp( b );
  2005.     bSign = extractFloat64Sign( b );
  2006.     zSign = aSign ^ bSign;
  2007.     if ( aExp == 0x7FF ) {
  2008.         if ( aSig ) return propagateFloat64NaN( a, b );
  2009.         if ( bExp == 0x7FF ) {
  2010.             if ( bSig ) return propagateFloat64NaN( a, b );
  2011.             float_raise( float_flag_invalid );
  2012.             return float64_default_nan;
  2013.         }
  2014.         return packFloat64( zSign, 0x7FF, 0 );
  2015.     }
  2016.     if ( bExp == 0x7FF ) {
  2017.         if ( bSig ) return propagateFloat64NaN( a, b );
  2018.         return packFloat64( zSign, 0, 0 );
  2019.     }
  2020.     if ( bExp == 0 ) {
  2021.         if ( bSig == 0 ) {
  2022.             if ( ( aExp | aSig ) == 0 ) {
  2023.                 float_raise( float_flag_invalid );
  2024.                 return float64_default_nan;
  2025.             }
  2026.             float_raise( float_flag_divbyzero );
  2027.             return packFloat64( zSign, 0x7FF, 0 );
  2028.         }
  2029.         normalizeFloat64Subnormal( bSig, &bExp, &bSig );
  2030.     }
  2031.     if ( aExp == 0 ) {
  2032.         if ( aSig == 0 ) return packFloat64( zSign, 0, 0 );
  2033.         normalizeFloat64Subnormal( aSig, &aExp, &aSig );
  2034.     }
  2035.     zExp = aExp - bExp + 0x3FD;
  2036.     aSig = ( aSig | LIT64( 0x0010000000000000 ) )<<10;
  2037.     bSig = ( bSig | LIT64( 0x0010000000000000 ) )<<11;
  2038.     if ( bSig <= ( aSig + aSig ) ) {
  2039.         aSig >>= 1;
  2040.         ++zExp;
  2041.     }
  2042.     zSig = estimateDiv128To64( aSig, 0, bSig );
  2043.     if ( ( zSig & 0x1FF ) <= 2 ) {
  2044.         mul64To128( bSig, zSig, &term0, &term1 );
  2045.         sub128( aSig, 0, term0, term1, &rem0, &rem1 );
  2046.         while ( (sbits64) rem0 < 0 ) {
  2047.             --zSig;
  2048.             add128( rem0, rem1, 0, bSig, &rem0, &rem1 );
  2049.         }
  2050.         zSig |= ( rem1 != 0 );
  2051.     }
  2052.     return roundAndPackFloat64( zSign, zExp, zSig );
  2053. }
  2054. /*
  2055. -------------------------------------------------------------------------------
  2056. Returns the remainder of the double-precision floating-point value `a'
  2057. with respect to the corresponding value `b'.  The operation is performed
  2058. according to the IEC/IEEE Standard for Binary Floating-point Arithmetic.
  2059. -------------------------------------------------------------------------------
  2060. */
  2061. float64 float64_rem( float64 a, float64 b )
  2062. {
  2063.     flag aSign, bSign, zSign;
  2064.     int16 aExp, bExp, expDiff;
  2065.     bits64 aSig, bSig;
  2066.     bits64 q, alternateASig;
  2067.     sbits64 sigMean;
  2068.     aSig = extractFloat64Frac( a );
  2069.     aExp = extractFloat64Exp( a );
  2070.     aSign = extractFloat64Sign( a );
  2071.     bSig = extractFloat64Frac( b );
  2072.     bExp = extractFloat64Exp( b );
  2073.     bSign = extractFloat64Sign( b );
  2074.     if ( aExp == 0x7FF ) {
  2075.         if ( aSig || ( ( bExp == 0x7FF ) && bSig ) ) {
  2076.             return propagateFloat64NaN( a, b );
  2077.         }
  2078.         float_raise( float_flag_invalid );
  2079.         return float64_default_nan;
  2080.     }
  2081.     if ( bExp == 0x7FF ) {
  2082.         if ( bSig ) return propagateFloat64NaN( a, b );
  2083.         return a;
  2084.     }
  2085.     if ( bExp == 0 ) {
  2086.         if ( bSig == 0 ) {
  2087.             float_raise( float_flag_invalid );
  2088.             return float64_default_nan;
  2089.         }
  2090.         normalizeFloat64Subnormal( bSig, &bExp, &bSig );
  2091.     }
  2092.     if ( aExp == 0 ) {
  2093.         if ( aSig == 0 ) return a;
  2094.         normalizeFloat64Subnormal( aSig, &aExp, &aSig );
  2095.     }
  2096.     expDiff = aExp - bExp;
  2097.     aSig = ( aSig | LIT64( 0x0010000000000000 ) )<<11;
  2098.     bSig = ( bSig | LIT64( 0x0010000000000000 ) )<<11;
  2099.     if ( expDiff < 0 ) {
  2100.         if ( expDiff < -1 ) return a;
  2101.         aSig >>= 1;
  2102.     }
  2103.     q = ( bSig <= aSig );
  2104.     if ( q ) aSig -= bSig;
  2105.     expDiff -= 64;
  2106.     while ( 0 < expDiff ) {
  2107.         q = estimateDiv128To64( aSig, 0, bSig );
  2108.         q = ( 2 < q ) ? q - 2 : 0;
  2109.         aSig = - ( ( bSig>>2 ) * q );
  2110.         expDiff -= 62;
  2111.     }
  2112.     expDiff += 64;
  2113.     if ( 0 < expDiff ) {
  2114.         q = estimateDiv128To64( aSig, 0, bSig );
  2115.         q = ( 2 < q ) ? q - 2 : 0;
  2116.         q >>= 64 - expDiff;
  2117.         bSig >>= 2;
  2118.         aSig = ( ( aSig>>1 )<<( expDiff - 1 ) ) - bSig * q;
  2119.     }
  2120.     else {
  2121.         aSig >>= 2;
  2122.         bSig >>= 2;
  2123.     }
  2124.     do {
  2125.         alternateASig = aSig;
  2126.         ++q;
  2127.         aSig -= bSig;
  2128.     } while ( 0 <= (sbits64) aSig );
  2129.     sigMean = aSig + alternateASig;
  2130.     if ( ( sigMean < 0 ) || ( ( sigMean == 0 ) && ( q & 1 ) ) ) {
  2131.         aSig = alternateASig;
  2132.     }
  2133.     zSign = ( (sbits64) aSig < 0 );
  2134.     if ( zSign ) aSig = - aSig;
  2135.     return normalizeRoundAndPackFloat64( aSign ^ zSign, bExp, aSig );
  2136. }
  2137. /*
  2138. -------------------------------------------------------------------------------
  2139. Returns the square root of the double-precision floating-point value `a'.
  2140. The operation is performed according to the IEC/IEEE Standard for Binary
  2141. Floating-point Arithmetic.
  2142. -------------------------------------------------------------------------------
  2143. */
  2144. float64 float64_sqrt( float64 a )
  2145. {
  2146.     flag aSign;
  2147.     int16 aExp, zExp;
  2148.     bits64 aSig, zSig;
  2149.     bits64 rem0, rem1, term0, term1; //, shiftedRem;
  2150.     //float64 z;
  2151.     aSig = extractFloat64Frac( a );
  2152.     aExp = extractFloat64Exp( a );
  2153.     aSign = extractFloat64Sign( a );
  2154.     if ( aExp == 0x7FF ) {
  2155.         if ( aSig ) return propagateFloat64NaN( a, a );
  2156.         if ( ! aSign ) return a;
  2157.         float_raise( float_flag_invalid );
  2158.         return float64_default_nan;
  2159.     }
  2160.     if ( aSign ) {
  2161.         if ( ( aExp | aSig ) == 0 ) return a;
  2162.         float_raise( float_flag_invalid );
  2163.         return float64_default_nan;
  2164.     }
  2165.     if ( aExp == 0 ) {
  2166.         if ( aSig == 0 ) return 0;
  2167.         normalizeFloat64Subnormal( aSig, &aExp, &aSig );
  2168.     }
  2169.     zExp = ( ( aExp - 0x3FF )>>1 ) + 0x3FE;
  2170.     aSig |= LIT64( 0x0010000000000000 );
  2171.     zSig = estimateSqrt32( aExp, aSig>>21 );
  2172.     zSig <<= 31;
  2173.     aSig <<= 9 - ( aExp & 1 );
  2174.     zSig = estimateDiv128To64( aSig, 0, zSig ) + zSig + 2;
  2175.     if ( ( zSig & 0x3FF ) <= 5 ) {
  2176.         if ( zSig < 2 ) {
  2177.             zSig = LIT64( 0xFFFFFFFFFFFFFFFF );
  2178.         }
  2179.         else {
  2180.             aSig <<= 2;
  2181.             mul64To128( zSig, zSig, &term0, &term1 );
  2182.             sub128( aSig, 0, term0, term1, &rem0, &rem1 );
  2183.             while ( (sbits64) rem0 < 0 ) {
  2184.                 --zSig;
  2185.                 shortShift128Left( 0, zSig, 1, &term0, &term1 );
  2186.                 term1 |= 1;
  2187.                 add128( rem0, rem1, term0, term1, &rem0, &rem1 );
  2188.             }
  2189.             zSig |= ( ( rem0 | rem1 ) != 0 );
  2190.         }
  2191.     }
  2192.     shift64RightJamming( zSig, 1, &zSig );
  2193.     return roundAndPackFloat64( 0, zExp, zSig );
  2194. }
  2195. /*
  2196. -------------------------------------------------------------------------------
  2197. Returns 1 if the double-precision floating-point value `a' is equal to the
  2198. corresponding value `b', and 0 otherwise.  The comparison is performed
  2199. according to the IEC/IEEE Standard for Binary Floating-point Arithmetic.
  2200. -------------------------------------------------------------------------------
  2201. */
  2202. flag float64_eq( float64 a, float64 b )
  2203. {
  2204.     if (    ( ( extractFloat64Exp( a ) == 0x7FF ) && extractFloat64Frac( a ) )
  2205.          || ( ( extractFloat64Exp( b ) == 0x7FF ) && extractFloat64Frac( b ) )
  2206.        ) {
  2207.         if ( float64_is_signaling_nan( a ) || float64_is_signaling_nan( b ) ) {
  2208.             float_raise( float_flag_invalid );
  2209.         }
  2210.         return 0;
  2211.     }
  2212.     return ( a == b ) || ( (bits64) ( ( a | b )<<1 ) == 0 );
  2213. }
  2214. /*
  2215. -------------------------------------------------------------------------------
  2216. Returns 1 if the double-precision floating-point value `a' is less than or
  2217. equal to the corresponding value `b', and 0 otherwise.  The comparison is
  2218. performed according to the IEC/IEEE Standard for Binary Floating-point
  2219. Arithmetic.
  2220. -------------------------------------------------------------------------------
  2221. */
  2222. flag float64_le( float64 a, float64 b )
  2223. {
  2224.     flag aSign, bSign;
  2225.     if (    ( ( extractFloat64Exp( a ) == 0x7FF ) && extractFloat64Frac( a ) )
  2226.          || ( ( extractFloat64Exp( b ) == 0x7FF ) && extractFloat64Frac( b ) )
  2227.        ) {
  2228.         float_raise( float_flag_invalid );
  2229.         return 0;
  2230.     }
  2231.     aSign = extractFloat64Sign( a );
  2232.     bSign = extractFloat64Sign( b );
  2233.     if ( aSign != bSign ) return aSign || ( (bits64) ( ( a | b )<<1 ) == 0 );
  2234.     return ( a == b ) || ( aSign ^ ( a < b ) );
  2235. }
  2236. /*
  2237. -------------------------------------------------------------------------------
  2238. Returns 1 if the double-precision floating-point value `a' is less than
  2239. the corresponding value `b', and 0 otherwise.  The comparison is performed
  2240. according to the IEC/IEEE Standard for Binary Floating-point Arithmetic.
  2241. -------------------------------------------------------------------------------
  2242. */
  2243. flag float64_lt( float64 a, float64 b )
  2244. {
  2245.     flag aSign, bSign;
  2246.     if (    ( ( extractFloat64Exp( a ) == 0x7FF ) && extractFloat64Frac( a ) )
  2247.          || ( ( extractFloat64Exp( b ) == 0x7FF ) && extractFloat64Frac( b ) )
  2248.        ) {
  2249.         float_raise( float_flag_invalid );
  2250.         return 0;
  2251.     }
  2252.     aSign = extractFloat64Sign( a );
  2253.     bSign = extractFloat64Sign( b );
  2254.     if ( aSign != bSign ) return aSign && ( (bits64) ( ( a | b )<<1 ) != 0 );
  2255.     return ( a != b ) && ( aSign ^ ( a < b ) );
  2256. }
  2257. /*
  2258. -------------------------------------------------------------------------------
  2259. Returns 1 if the double-precision floating-point value `a' is equal to the
  2260. corresponding value `b', and 0 otherwise.  The invalid exception is raised
  2261. if either operand is a NaN.  Otherwise, the comparison is performed
  2262. according to the IEC/IEEE Standard for Binary Floating-point Arithmetic.
  2263. -------------------------------------------------------------------------------
  2264. */
  2265. flag float64_eq_signaling( float64 a, float64 b )
  2266. {
  2267.     if (    ( ( extractFloat64Exp( a ) == 0x7FF ) && extractFloat64Frac( a ) )
  2268.          || ( ( extractFloat64Exp( b ) == 0x7FF ) && extractFloat64Frac( b ) )
  2269.        ) {
  2270.         float_raise( float_flag_invalid );
  2271.         return 0;
  2272.     }
  2273.     return ( a == b ) || ( (bits64) ( ( a | b )<<1 ) == 0 );
  2274. }
  2275. /*
  2276. -------------------------------------------------------------------------------
  2277. Returns 1 if the double-precision floating-point value `a' is less than or
  2278. equal to the corresponding value `b', and 0 otherwise.  Quiet NaNs do not
  2279. cause an exception.  Otherwise, the comparison is performed according to the
  2280. IEC/IEEE Standard for Binary Floating-point Arithmetic.
  2281. -------------------------------------------------------------------------------
  2282. */
  2283. flag float64_le_quiet( float64 a, float64 b )
  2284. {
  2285.     flag aSign, bSign;
  2286.     //int16 aExp, bExp;
  2287.     if (    ( ( extractFloat64Exp( a ) == 0x7FF ) && extractFloat64Frac( a ) )
  2288.          || ( ( extractFloat64Exp( b ) == 0x7FF ) && extractFloat64Frac( b ) )
  2289.        ) {
  2290.         if ( float64_is_signaling_nan( a ) || float64_is_signaling_nan( b ) ) {
  2291.             float_raise( float_flag_invalid );
  2292.         }
  2293.         return 0;
  2294.     }
  2295.     aSign = extractFloat64Sign( a );
  2296.     bSign = extractFloat64Sign( b );
  2297.     if ( aSign != bSign ) return aSign || ( (bits64) ( ( a | b )<<1 ) == 0 );
  2298.     return ( a == b ) || ( aSign ^ ( a < b ) );
  2299. }
  2300. /*
  2301. -------------------------------------------------------------------------------
  2302. Returns 1 if the double-precision floating-point value `a' is less than
  2303. the corresponding value `b', and 0 otherwise.  Quiet NaNs do not cause an
  2304. exception.  Otherwise, the comparison is performed according to the IEC/IEEE
  2305. Standard for Binary Floating-point Arithmetic.
  2306. -------------------------------------------------------------------------------
  2307. */
  2308. flag float64_lt_quiet( float64 a, float64 b )
  2309. {
  2310.     flag aSign, bSign;
  2311.     if (    ( ( extractFloat64Exp( a ) == 0x7FF ) && extractFloat64Frac( a ) )
  2312.          || ( ( extractFloat64Exp( b ) == 0x7FF ) && extractFloat64Frac( b ) )
  2313.        ) {
  2314.         if ( float64_is_signaling_nan( a ) || float64_is_signaling_nan( b ) ) {
  2315.             float_raise( float_flag_invalid );
  2316.         }
  2317.         return 0;
  2318.     }
  2319.     aSign = extractFloat64Sign( a );
  2320.     bSign = extractFloat64Sign( b );
  2321.     if ( aSign != bSign ) return aSign && ( (bits64) ( ( a | b )<<1 ) != 0 );
  2322.     return ( a != b ) && ( aSign ^ ( a < b ) );
  2323. }
  2324. #ifdef FLOATX80
  2325. /*
  2326. -------------------------------------------------------------------------------
  2327. Returns the result of converting the extended double-precision floating-
  2328. point value `a' to the 32-bit two's complement integer format.  The
  2329. conversion is performed according to the IEC/IEEE Standard for Binary
  2330. Floating-point Arithmetic---which means in particular that the conversion
  2331. is rounded according to the current rounding mode.  If `a' is a NaN, the
  2332. largest positive integer is returned.  Otherwise, if the conversion
  2333. overflows, the largest integer with the same sign as `a' is returned.
  2334. -------------------------------------------------------------------------------
  2335. */
  2336. int32 floatx80_to_int32( floatx80 a )
  2337. {
  2338.     flag aSign;
  2339.     int32 aExp, shiftCount;
  2340.     bits64 aSig;
  2341.     aSig = extractFloatx80Frac( a );
  2342.     aExp = extractFloatx80Exp( a );
  2343.     aSign = extractFloatx80Sign( a );
  2344.     if ( ( aExp == 0x7FFF ) && (bits64) ( aSig<<1 ) ) aSign = 0;
  2345.     shiftCount = 0x4037 - aExp;
  2346.     if ( shiftCount <= 0 ) shiftCount = 1;
  2347.     shift64RightJamming( aSig, shiftCount, &aSig );
  2348.     return roundAndPackInt32( aSign, aSig );
  2349. }
  2350. /*
  2351. -------------------------------------------------------------------------------
  2352. Returns the result of converting the extended double-precision floating-
  2353. point value `a' to the 32-bit two's complement integer format.  The
  2354. conversion is performed according to the IEC/IEEE Standard for Binary
  2355. Floating-point Arithmetic, except that the conversion is always rounded
  2356. toward zero.  If `a' is a NaN, the largest positive integer is returned.
  2357. Otherwise, if the conversion overflows, the largest integer with the same
  2358. sign as `a' is returned.
  2359. -------------------------------------------------------------------------------
  2360. */
  2361. int32 floatx80_to_int32_round_to_zero( floatx80 a )
  2362. {
  2363.     flag aSign;
  2364.     int32 aExp, shiftCount;
  2365.     bits64 aSig, savedASig;
  2366.     int32 z;
  2367.     aSig = extractFloatx80Frac( a );
  2368.     aExp = extractFloatx80Exp( a );
  2369.     aSign = extractFloatx80Sign( a );
  2370.     shiftCount = 0x403E - aExp;
  2371.     if ( shiftCount < 32 ) {
  2372.         if ( ( aExp == 0x7FFF ) && (bits64) ( aSig<<1 ) ) aSign = 0;
  2373.         goto invalid;
  2374.     }
  2375.     else if ( 63 < shiftCount ) {
  2376.         if ( aExp || aSig ) float_exception_flags |= float_flag_inexact;
  2377.         return 0;
  2378.     }
  2379.     savedASig = aSig;
  2380.     aSig >>= shiftCount;
  2381.     z = aSig;
  2382.     if ( aSign ) z = - z;
  2383.     if ( ( z < 0 ) ^ aSign ) {
  2384.  invalid:
  2385.         float_exception_flags |= float_flag_invalid;
  2386.         return aSign ? 0x80000000 : 0x7FFFFFFF;
  2387.     }
  2388.     if ( ( aSig<<shiftCount ) != savedASig ) {
  2389.         float_exception_flags |= float_flag_inexact;
  2390.     }
  2391.     return z;
  2392. }
  2393. /*
  2394. -------------------------------------------------------------------------------
  2395. Returns the result of converting the extended double-precision floating-
  2396. point value `a' to the single-precision floating-point format.  The
  2397. conversion is performed according to the IEC/IEEE Standard for Binary
  2398. Floating-point Arithmetic.
  2399. -------------------------------------------------------------------------------
  2400. */
  2401. float32 floatx80_to_float32( floatx80 a )
  2402. {
  2403.     flag aSign;
  2404.     int32 aExp;
  2405.     bits64 aSig;
  2406.     aSig = extractFloatx80Frac( a );
  2407.     aExp = extractFloatx80Exp( a );
  2408.     aSign = extractFloatx80Sign( a );
  2409.     if ( aExp == 0x7FFF ) {
  2410.         if ( (bits64) ( aSig<<1 ) ) {
  2411.             return commonNaNToFloat32( floatx80ToCommonNaN( a ) );
  2412.         }
  2413.         return packFloat32( aSign, 0xFF, 0 );
  2414.     }
  2415.     shift64RightJamming( aSig, 33, &aSig );
  2416.     if ( aExp || aSig ) aExp -= 0x3F81;
  2417.     return roundAndPackFloat32( aSign, aExp, aSig );
  2418. }
  2419. /*
  2420. -------------------------------------------------------------------------------
  2421. Returns the result of converting the extended double-precision floating-
  2422. point value `a' to the double-precision floating-point format.  The
  2423. conversion is performed according to the IEC/IEEE Standard for Binary
  2424. Floating-point Arithmetic.
  2425. -------------------------------------------------------------------------------
  2426. */
  2427. float64 floatx80_to_float64( floatx80 a )
  2428. {
  2429.     flag aSign;
  2430.     int32 aExp;
  2431.     bits64 aSig, zSig;
  2432.     aSig = extractFloatx80Frac( a );
  2433.     aExp = extractFloatx80Exp( a );
  2434.     aSign = extractFloatx80Sign( a );
  2435.     if ( aExp == 0x7FFF ) {
  2436.         if ( (bits64) ( aSig<<1 ) ) {
  2437.             return commonNaNToFloat64( floatx80ToCommonNaN( a ) );
  2438.         }
  2439.         return packFloat64( aSign, 0x7FF, 0 );
  2440.     }
  2441.     shift64RightJamming( aSig, 1, &zSig );
  2442.     if ( aExp || aSig ) aExp -= 0x3C01;
  2443.     return roundAndPackFloat64( aSign, aExp, zSig );
  2444. }
  2445. /*
  2446. -------------------------------------------------------------------------------
  2447. Rounds the extended double-precision floating-point value `a' to an integer,
  2448. and returns the result as an extended quadruple-precision floating-point
  2449. value.  The operation is performed according to the IEC/IEEE Standard for
  2450. Binary Floating-point Arithmetic.
  2451. -------------------------------------------------------------------------------
  2452. */
  2453. floatx80 floatx80_round_to_int( floatx80 a )
  2454. {
  2455.     flag aSign;
  2456.     int32 aExp;
  2457.     bits64 lastBitMask, roundBitsMask;
  2458.     int8 roundingMode;
  2459.     floatx80 z;
  2460.     aExp = extractFloatx80Exp( a );
  2461.     if ( 0x403E <= aExp ) {
  2462.         if ( ( aExp == 0x7FFF ) && (bits64) ( extractFloatx80Frac( a )<<1 ) ) {
  2463.             return propagateFloatx80NaN( a, a );
  2464.         }
  2465.         return a;
  2466.     }
  2467.     if ( aExp <= 0x3FFE ) {
  2468.         if (    ( aExp == 0 )
  2469.              && ( (bits64) ( extractFloatx80Frac( a )<<1 ) == 0 ) ) {
  2470.             return a;
  2471.         }
  2472.         float_exception_flags |= float_flag_inexact;
  2473.         aSign = extractFloatx80Sign( a );
  2474.         switch ( float_rounding_mode ) {
  2475.          case float_round_nearest_even:
  2476.             if ( ( aExp == 0x3FFE ) && (bits64) ( extractFloatx80Frac( a )<<1 )
  2477.                ) {
  2478.                 return
  2479.                     packFloatx80( aSign, 0x3FFF, LIT64( 0x8000000000000000 ) );
  2480.             }
  2481.             break;
  2482.          case float_round_down:
  2483.             return
  2484.                   aSign ?
  2485.                       packFloatx80( 1, 0x3FFF, LIT64( 0x8000000000000000 ) )
  2486.                 : packFloatx80( 0, 0, 0 );
  2487.          case float_round_up:
  2488.             return
  2489.                   aSign ? packFloatx80( 1, 0, 0 )
  2490.                 : packFloatx80( 0, 0x3FFF, LIT64( 0x8000000000000000 ) );
  2491.         }
  2492.         return packFloatx80( aSign, 0, 0 );
  2493.     }
  2494.     lastBitMask = 1;
  2495.     lastBitMask <<= 0x403E - aExp;
  2496.     roundBitsMask = lastBitMask - 1;
  2497.     z = a;
  2498.     roundingMode = float_rounding_mode;
  2499.     if ( roundingMode == float_round_nearest_even ) {
  2500.         z.low += lastBitMask>>1;
  2501.         if ( ( z.low & roundBitsMask ) == 0 ) z.low &= ~ lastBitMask;
  2502.     }
  2503.     else if ( roundingMode != float_round_to_zero ) {
  2504.         if ( extractFloatx80Sign( z ) ^ ( roundingMode == float_round_up ) ) {
  2505.             z.low += roundBitsMask;
  2506.         }
  2507.     }
  2508.     z.low &= ~ roundBitsMask;
  2509.     if ( z.low == 0 ) {
  2510.         ++z.high;
  2511.         z.low = LIT64( 0x8000000000000000 );
  2512.     }
  2513.     if ( z.low != a.low ) float_exception_flags |= float_flag_inexact;
  2514.     return z;
  2515. }
  2516. /*
  2517. -------------------------------------------------------------------------------
  2518. Returns the result of adding the absolute values of the extended double-
  2519. precision floating-point values `a' and `b'.  If `zSign' is true, the sum is
  2520. negated before being returned.  `zSign' is ignored if the result is a NaN.
  2521. The addition is performed according to the IEC/IEEE Standard for Binary
  2522. Floating-point Arithmetic.
  2523. -------------------------------------------------------------------------------
  2524. */
  2525. static floatx80 addFloatx80Sigs( floatx80 a, floatx80 b, flag zSign )
  2526. {
  2527.     int32 aExp, bExp, zExp;
  2528.     bits64 aSig, bSig, zSig0, zSig1;
  2529.     int32 expDiff;
  2530.     aSig = extractFloatx80Frac( a );
  2531.     aExp = extractFloatx80Exp( a );
  2532.     bSig = extractFloatx80Frac( b );
  2533.     bExp = extractFloatx80Exp( b );
  2534.     expDiff = aExp - bExp;
  2535.     if ( 0 < expDiff ) {
  2536.         if ( aExp == 0x7FFF ) {
  2537.             if ( (bits64) ( aSig<<1 ) ) return propagateFloatx80NaN( a, b );
  2538.             return a;
  2539.         }
  2540.         if ( bExp == 0 ) --expDiff;
  2541.         shift64ExtraRightJamming( bSig, 0, expDiff, &bSig, &zSig1 );
  2542.         zExp = aExp;
  2543.     }
  2544.     else if ( expDiff < 0 ) {
  2545.         if ( bExp == 0x7FFF ) {
  2546.             if ( (bits64) ( bSig<<1 ) ) return propagateFloatx80NaN( a, b );
  2547.             return packFloatx80( zSign, 0x7FFF, LIT64( 0x8000000000000000 ) );
  2548.         }
  2549.         if ( aExp == 0 ) ++expDiff;
  2550.         shift64ExtraRightJamming( aSig, 0, - expDiff, &aSig, &zSig1 );
  2551.         zExp = bExp;
  2552.     }
  2553.     else {
  2554.         if ( aExp == 0x7FFF ) {
  2555.             if ( (bits64) ( ( aSig | bSig )<<1 ) ) {
  2556.                 return propagateFloatx80NaN( a, b );
  2557.             }
  2558.             return a;
  2559.         }
  2560.         zSig1 = 0;
  2561.         zSig0 = aSig + bSig;
  2562.         if ( aExp == 0 ) {
  2563.             normalizeFloatx80Subnormal( zSig0, &zExp, &zSig0 );
  2564.             goto roundAndPack;
  2565.         }
  2566.         zExp = aExp;
  2567.         goto shiftRight1;
  2568.     }
  2569.     
  2570.     zSig0 = aSig + bSig;
  2571.     if ( (sbits64) zSig0 < 0 ) goto roundAndPack; 
  2572.  shiftRight1:
  2573.     shift64ExtraRightJamming( zSig0, zSig1, 1, &zSig0, &zSig1 );
  2574.     zSig0 |= LIT64( 0x8000000000000000 );
  2575.     ++zExp;
  2576.  roundAndPack:
  2577.     return
  2578.         roundAndPackFloatx80(
  2579.             floatx80_rounding_precision, zSign, zExp, zSig0, zSig1 );
  2580. }
  2581. /*
  2582. -------------------------------------------------------------------------------
  2583. Returns the result of subtracting the absolute values of the extended
  2584. double-precision floating-point values `a' and `b'.  If `zSign' is true,
  2585. the difference is negated before being returned.  `zSign' is ignored if the
  2586. result is a NaN.  The subtraction is performed according to the IEC/IEEE
  2587. Standard for Binary Floating-point Arithmetic.
  2588. -------------------------------------------------------------------------------
  2589. */
  2590. static floatx80 subFloatx80Sigs( floatx80 a, floatx80 b, flag zSign )
  2591. {
  2592.     int32 aExp, bExp, zExp;
  2593.     bits64 aSig, bSig, zSig0, zSig1;
  2594.     int32 expDiff;
  2595.     floatx80 z;
  2596.     aSig = extractFloatx80Frac( a );
  2597.     aExp = extractFloatx80Exp( a );
  2598.     bSig = extractFloatx80Frac( b );
  2599.     bExp = extractFloatx80Exp( b );
  2600.     expDiff = aExp - bExp;
  2601.     if ( 0 < expDiff ) goto aExpBigger;
  2602.     if ( expDiff < 0 ) goto bExpBigger;
  2603.     if ( aExp == 0x7FFF ) {
  2604.         if ( (bits64) ( ( aSig | bSig )<<1 ) ) {
  2605.             return propagateFloatx80NaN( a, b );
  2606.         }
  2607.         float_raise( float_flag_invalid );
  2608.         z.low = floatx80_default_nan_low;
  2609.         z.high = floatx80_default_nan_high;
  2610.         return z;
  2611.     }
  2612.     if ( aExp == 0 ) {
  2613.         aExp = 1;
  2614.         bExp = 1;
  2615.     }
  2616.     zSig1 = 0;
  2617.     if ( bSig < aSig ) goto aBigger;
  2618.     if ( aSig < bSig ) goto bBigger;
  2619.     return packFloatx80( float_rounding_mode == float_round_down, 0, 0 );
  2620.  bExpBigger:
  2621.     if ( bExp == 0x7FFF ) {
  2622.         if ( (bits64) ( bSig<<1 ) ) return propagateFloatx80NaN( a, b );
  2623.         return packFloatx80( zSign ^ 1, 0x7FFF, LIT64( 0x8000000000000000 ) );
  2624.     }
  2625.     if ( aExp == 0 ) ++expDiff;
  2626.     shift128RightJamming( aSig, 0, - expDiff, &aSig, &zSig1 );
  2627.  bBigger:
  2628.     sub128( bSig, 0, aSig, zSig1, &zSig0, &zSig1 );
  2629.     zExp = bExp;
  2630.     zSign ^= 1;
  2631.     goto normalizeRoundAndPack;
  2632.  aExpBigger:
  2633.     if ( aExp == 0x7FFF ) {
  2634.         if ( (bits64) ( aSig<<1 ) ) return propagateFloatx80NaN( a, b );
  2635.         return a;
  2636.     }
  2637.     if ( bExp == 0 ) --expDiff;
  2638.     shift128RightJamming( bSig, 0, expDiff, &bSig, &zSig1 );
  2639.  aBigger:
  2640.     sub128( aSig, 0, bSig, zSig1, &zSig0, &zSig1 );
  2641.     zExp = aExp;
  2642.  normalizeRoundAndPack:
  2643.     return
  2644.         normalizeRoundAndPackFloatx80(
  2645.             floatx80_rounding_precision, zSign, zExp, zSig0, zSig1 );
  2646. }
  2647. /*
  2648. -------------------------------------------------------------------------------
  2649. Returns the result of adding the extended double-precision floating-point
  2650. values `a' and `b'.  The operation is performed according to the IEC/IEEE
  2651. Standard for Binary Floating-point Arithmetic.
  2652. -------------------------------------------------------------------------------
  2653. */
  2654. floatx80 floatx80_add( floatx80 a, floatx80 b )
  2655. {
  2656.     flag aSign, bSign;
  2657.     
  2658.     aSign = extractFloatx80Sign( a );
  2659.     bSign = extractFloatx80Sign( b );
  2660.     if ( aSign == bSign ) {
  2661.         return addFloatx80Sigs( a, b, aSign );
  2662.     }
  2663.     else {
  2664.         return subFloatx80Sigs( a, b, aSign );
  2665.     }
  2666.     
  2667. }
  2668. /*
  2669. -------------------------------------------------------------------------------
  2670. Returns the result of subtracting the extended double-precision floating-
  2671. point values `a' and `b'.  The operation is performed according to the
  2672. IEC/IEEE Standard for Binary Floating-point Arithmetic.
  2673. -------------------------------------------------------------------------------
  2674. */
  2675. floatx80 floatx80_sub( floatx80 a, floatx80 b )
  2676. {
  2677.     flag aSign, bSign;
  2678.     aSign = extractFloatx80Sign( a );
  2679.     bSign = extractFloatx80Sign( b );
  2680.     if ( aSign == bSign ) {
  2681.         return subFloatx80Sigs( a, b, aSign );
  2682.     }
  2683.     else {
  2684.         return addFloatx80Sigs( a, b, aSign );
  2685.     }
  2686. }
  2687. /*
  2688. -------------------------------------------------------------------------------
  2689. Returns the result of multiplying the extended double-precision floating-
  2690. point values `a' and `b'.  The operation is performed according to the
  2691. IEC/IEEE Standard for Binary Floating-point Arithmetic.
  2692. -------------------------------------------------------------------------------
  2693. */
  2694. floatx80 floatx80_mul( floatx80 a, floatx80 b )
  2695. {
  2696.     flag aSign, bSign, zSign;
  2697.     int32 aExp, bExp, zExp;
  2698.     bits64 aSig, bSig, zSig0, zSig1;
  2699.     floatx80 z;
  2700.     aSig = extractFloatx80Frac( a );
  2701.     aExp = extractFloatx80Exp( a );
  2702.     aSign = extractFloatx80Sign( a );
  2703.     bSig = extractFloatx80Frac( b );
  2704.     bExp = extractFloatx80Exp( b );
  2705.     bSign = extractFloatx80Sign( b );
  2706.     zSign = aSign ^ bSign;
  2707.     if ( aExp == 0x7FFF ) {
  2708.         if (    (bits64) ( aSig<<1 )
  2709.              || ( ( bExp == 0x7FFF ) && (bits64) ( bSig<<1 ) ) ) {
  2710.             return propagateFloatx80NaN( a, b );
  2711.         }
  2712.         if ( ( bExp | bSig ) == 0 ) goto invalid;
  2713.         return packFloatx80( zSign, 0x7FFF, LIT64( 0x8000000000000000 ) );
  2714.     }
  2715.     if ( bExp == 0x7FFF ) {
  2716.         if ( (bits64) ( bSig<<1 ) ) return propagateFloatx80NaN( a, b );
  2717.         if ( ( aExp | aSig ) == 0 ) {
  2718.  invalid:
  2719.             float_raise( float_flag_invalid );
  2720.             z.low = floatx80_default_nan_low;
  2721.             z.high = floatx80_default_nan_high;
  2722.             return z;
  2723.         }
  2724.         return packFloatx80( zSign, 0x7FFF, LIT64( 0x8000000000000000 ) );
  2725.     }
  2726.     if ( aExp == 0 ) {
  2727.         if ( aSig == 0 ) return packFloatx80( zSign, 0, 0 );
  2728.         normalizeFloatx80Subnormal( aSig, &aExp, &aSig );
  2729.     }
  2730.     if ( bExp == 0 ) {
  2731.         if ( bSig == 0 ) return packFloatx80( zSign, 0, 0 );
  2732.         normalizeFloatx80Subnormal( bSig, &bExp, &bSig );
  2733.     }
  2734.     zExp = aExp + bExp - 0x3FFE;
  2735.     mul64To128( aSig, bSig, &zSig0, &zSig1 );
  2736.     if ( 0 < (sbits64) zSig0 ) {
  2737.         shortShift128Left( zSig0, zSig1, 1, &zSig0, &zSig1 );
  2738.         --zExp;
  2739.     }
  2740.     return
  2741.         roundAndPackFloatx80(
  2742.             floatx80_rounding_precision, zSign, zExp, zSig0, zSig1 );
  2743. }
  2744. /*
  2745. -------------------------------------------------------------------------------
  2746. Returns the result of dividing the extended double-precision floating-point
  2747. value `a' by the corresponding value `b'.  The operation is performed
  2748. according to the IEC/IEEE Standard for Binary Floating-point Arithmetic.
  2749. -------------------------------------------------------------------------------
  2750. */
  2751. floatx80 floatx80_div( floatx80 a, floatx80 b )
  2752. {
  2753.     flag aSign, bSign, zSign;
  2754.     int32 aExp, bExp, zExp;
  2755.     bits64 aSig, bSig, zSig0, zSig1;
  2756.     bits64 rem0, rem1, rem2, term0, term1, term2;
  2757.     floatx80 z;
  2758.     aSig = extractFloatx80Frac( a );
  2759.     aExp = extractFloatx80Exp( a );
  2760.     aSign = extractFloatx80Sign( a );
  2761.     bSig = extractFloatx80Frac( b );
  2762.     bExp = extractFloatx80Exp( b );
  2763.     bSign = extractFloatx80Sign( b );
  2764.     zSign = aSign ^ bSign;
  2765.     if ( aExp == 0x7FFF ) {
  2766.         if ( (bits64) ( aSig<<1 ) ) return propagateFloatx80NaN( a, b );
  2767.         if ( bExp == 0x7FFF ) {
  2768.             if ( (bits64) ( bSig<<1 ) ) return propagateFloatx80NaN( a, b );
  2769.             goto invalid;
  2770.         }
  2771.         return packFloatx80( zSign, 0x7FFF, LIT64( 0x8000000000000000 ) );
  2772.     }
  2773.     if ( bExp == 0x7FFF ) {
  2774.         if ( (bits64) ( bSig<<1 ) ) return propagateFloatx80NaN( a, b );
  2775.         return packFloatx80( zSign, 0, 0 );
  2776.     }
  2777.     if ( bExp == 0 ) {
  2778.         if ( bSig == 0 ) {
  2779.             if ( ( aExp | aSig ) == 0 ) {
  2780.  invalid:
  2781.                 float_raise( float_flag_invalid );
  2782.                 z.low = floatx80_default_nan_low;
  2783.                 z.high = floatx80_default_nan_high;
  2784.                 return z;
  2785.             }
  2786.             float_raise( float_flag_divbyzero );
  2787.             return packFloatx80( zSign, 0x7FFF, LIT64( 0x8000000000000000 ) );
  2788.         }
  2789.         normalizeFloatx80Subnormal( bSig, &bExp, &bSig );
  2790.     }
  2791.     if ( aExp == 0 ) {
  2792.         if ( aSig == 0 ) return packFloatx80( zSign, 0, 0 );
  2793.         normalizeFloatx80Subnormal( aSig, &aExp, &aSig );
  2794.     }
  2795.     zExp = aExp - bExp + 0x3FFE;
  2796.     rem1 = 0;
  2797.     if ( bSig <= aSig ) {
  2798.         shift128Right( aSig, 0, 1, &aSig, &rem1 );
  2799.         ++zExp;
  2800.     }
  2801.     zSig0 = estimateDiv128To64( aSig, rem1, bSig );
  2802.     mul64To128( bSig, zSig0, &term0, &term1 );
  2803.     sub128( aSig, rem1, term0, term1, &rem0, &rem1 );
  2804.     while ( (sbits64) rem0 < 0 ) {
  2805.         --zSig0;
  2806.         add128( rem0, rem1, 0, bSig, &rem0, &rem1 );
  2807.     }
  2808.     zSig1 = estimateDiv128To64( rem1, 0, bSig );
  2809.     if ( (bits64) ( zSig1<<1 ) <= 8 ) {
  2810.         mul64To128( bSig, zSig1, &term1, &term2 );
  2811.         sub128( rem1, 0, term1, term2, &rem1, &rem2 );
  2812.         while ( (sbits64) rem1 < 0 ) {
  2813.             --zSig1;
  2814.             add128( rem1, rem2, 0, bSig, &rem1, &rem2 );
  2815.         }
  2816.         zSig1 |= ( ( rem1 | rem2 ) != 0 );
  2817.     }
  2818.     return
  2819.         roundAndPackFloatx80(
  2820.             floatx80_rounding_precision, zSign, zExp, zSig0, zSig1 );
  2821. }
  2822. /*
  2823. -------------------------------------------------------------------------------
  2824. Returns the remainder of the extended double-precision floating-point value
  2825. `a' with respect to the corresponding value `b'.  The operation is performed
  2826. according to the IEC/IEEE Standard for Binary Floating-point Arithmetic.
  2827. -------------------------------------------------------------------------------
  2828. */
  2829. floatx80 floatx80_rem( floatx80 a, floatx80 b )
  2830. {
  2831.     flag aSign, bSign, zSign;
  2832.     int32 aExp, bExp, expDiff;
  2833.     bits64 aSig0, aSig1, bSig;
  2834.     bits64 q, term0, term1, alternateASig0, alternateASig1;
  2835.     floatx80 z;
  2836.     aSig0 = extractFloatx80Frac( a );
  2837.     aExp = extractFloatx80Exp( a );
  2838.     aSign = extractFloatx80Sign( a );
  2839.     bSig = extractFloatx80Frac( b );
  2840.     bExp = extractFloatx80Exp( b );
  2841.     bSign = extractFloatx80Sign( b );
  2842.     if ( aExp == 0x7FFF ) {
  2843.         if (    (bits64) ( aSig0<<1 )
  2844.              || ( ( bExp == 0x7FFF ) && (bits64) ( bSig<<1 ) ) ) {
  2845.             return propagateFloatx80NaN( a, b );
  2846.         }
  2847.         goto invalid;
  2848.     }
  2849.     if ( bExp == 0x7FFF ) {
  2850.         if ( (bits64) ( bSig<<1 ) ) return propagateFloatx80NaN( a, b );
  2851.         return a;
  2852.     }
  2853.     if ( bExp == 0 ) {
  2854.         if ( bSig == 0 ) {
  2855.  invalid:
  2856.             float_raise( float_flag_invalid );
  2857.             z.low = floatx80_default_nan_low;
  2858.             z.high = floatx80_default_nan_high;
  2859.             return z;
  2860.         }
  2861.         normalizeFloatx80Subnormal( bSig, &bExp, &bSig );
  2862.     }
  2863.     if ( aExp == 0 ) {
  2864.         if ( (bits64) ( aSig0<<1 ) == 0 ) return a;
  2865.         normalizeFloatx80Subnormal( aSig0, &aExp, &aSig0 );
  2866.     }
  2867.     bSig |= LIT64( 0x8000000000000000 );
  2868.     zSign = aSign;
  2869.     expDiff = aExp - bExp;
  2870.     aSig1 = 0;
  2871.     if ( expDiff < 0 ) {
  2872.         if ( expDiff < -1 ) return a;
  2873.         shift128Right( aSig0, 0, 1, &aSig0, &aSig1 );
  2874.         expDiff = 0;
  2875.     }
  2876.     q = ( bSig <= aSig0 );
  2877.     if ( q ) aSig0 -= bSig;
  2878.     expDiff -= 64;
  2879.     while ( 0 < expDiff ) {
  2880.         q = estimateDiv128To64( aSig0, aSig1, bSig );
  2881.         q = ( 2 < q ) ? q - 2 : 0;
  2882.         mul64To128( bSig, q, &term0, &term1 );
  2883.         sub128( aSig0, aSig1, term0, term1, &aSig0, &aSig1 );
  2884.         shortShift128Left( aSig0, aSig1, 62, &aSig0, &aSig1 );
  2885.         expDiff -= 62;
  2886.     }
  2887.     expDiff += 64;
  2888.     if ( 0 < expDiff ) {
  2889.         q = estimateDiv128To64( aSig0, aSig1, bSig );
  2890.         q = ( 2 < q ) ? q - 2 : 0;
  2891.         q >>= 64 - expDiff;
  2892.         mul64To128( bSig, q<<( 64 - expDiff ), &term0, &term1 );
  2893.         sub128( aSig0, aSig1, term0, term1, &aSig0, &aSig1 );
  2894.         shortShift128Left( 0, bSig, 64 - expDiff, &term0, &term1 );
  2895.         while ( le128( term0, term1, aSig0, aSig1 ) ) {
  2896.             ++q;
  2897.             sub128( aSig0, aSig1, term0, term1, &aSig0, &aSig1 );
  2898.         }
  2899.     }
  2900.     else {
  2901.         term1 = 0;
  2902.         term0 = bSig;
  2903.     }
  2904.     sub128( term0, term1, aSig0, aSig1, &alternateASig0, &alternateASig1 );
  2905.     if (    lt128( alternateASig0, alternateASig1, aSig0, aSig1 )
  2906.          || (    eq128( alternateASig0, alternateASig1, aSig0, aSig1 )
  2907.               && ( q & 1 ) )
  2908.        ) {
  2909.         aSig0 = alternateASig0;
  2910.         aSig1 = alternateASig1;
  2911.         zSign = ! zSign;
  2912.     }
  2913.     return
  2914.         normalizeRoundAndPackFloatx80(
  2915.             80, zSign, bExp + expDiff, aSig0, aSig1 );
  2916. }
  2917. /*
  2918. -------------------------------------------------------------------------------
  2919. Returns the square root of the extended double-precision floating-point
  2920. value `a'.  The operation is performed according to the IEC/IEEE Standard
  2921. for Binary Floating-point Arithmetic.
  2922. -------------------------------------------------------------------------------
  2923. */
  2924. floatx80 floatx80_sqrt( floatx80 a )
  2925. {
  2926.     flag aSign;
  2927.     int32 aExp, zExp;
  2928.     bits64 aSig0, aSig1, zSig0, zSig1;
  2929.     bits64 rem0, rem1, rem2, rem3, term0, term1, term2, term3;
  2930.     bits64 shiftedRem0, shiftedRem1;
  2931.     floatx80 z;
  2932.     aSig0 = extractFloatx80Frac( a );
  2933.     aExp = extractFloatx80Exp( a );
  2934.     aSign = extractFloatx80Sign( a );
  2935.     if ( aExp == 0x7FFF ) {
  2936.         if ( (bits64) ( aSig0<<1 ) ) return propagateFloatx80NaN( a, a );
  2937.         if ( ! aSign ) return a;
  2938.         goto invalid;
  2939.     }
  2940.     if ( aSign ) {
  2941.         if ( ( aExp | aSig0 ) == 0 ) return a;
  2942.  invalid:
  2943.         float_raise( float_flag_invalid );
  2944.         z.low = floatx80_default_nan_low;
  2945.         z.high = floatx80_default_nan_high;
  2946.         return z;
  2947.     }
  2948.     if ( aExp == 0 ) {
  2949.         if ( aSig0 == 0 ) return packFloatx80( 0, 0, 0 );
  2950.         normalizeFloatx80Subnormal( aSig0, &aExp, &aSig0 );
  2951.     }
  2952.     zExp = ( ( aExp - 0x3FFF )>>1 ) + 0x3FFF;
  2953.     zSig0 = estimateSqrt32( aExp, aSig0>>32 );
  2954.     zSig0 <<= 31;
  2955.     aSig1 = 0;
  2956.     shift128Right( aSig0, 0, ( aExp & 1 ) + 2, &aSig0, &aSig1 );
  2957.     zSig0 = estimateDiv128To64( aSig0, aSig1, zSig0 ) + zSig0 + 4;
  2958.     if ( 0 <= (sbits64) zSig0 ) zSig0 = LIT64( 0xFFFFFFFFFFFFFFFF );
  2959.     shortShift128Left( aSig0, aSig1, 2, &aSig0, &aSig1 );
  2960.     mul64To128( zSig0, zSig0, &term0, &term1 );
  2961.     sub128( aSig0, aSig1, term0, term1, &rem0, &rem1 );
  2962.     while ( (sbits64) rem0 < 0 ) {
  2963.         --zSig0;
  2964.         shortShift128Left( 0, zSig0, 1, &term0, &term1 );
  2965.         term1 |= 1;
  2966.         add128( rem0, rem1, term0, term1, &rem0, &rem1 );
  2967.     }
  2968.     shortShift128Left( rem0, rem1, 63, &shiftedRem0, &shiftedRem1 );
  2969.     zSig1 = estimateDiv128To64( shiftedRem0, shiftedRem1, zSig0 );
  2970.     if ( (bits64) ( zSig1<<1 ) <= 10 ) {
  2971.         if ( zSig1 == 0 ) zSig1 = 1;
  2972.         mul64To128( zSig0, zSig1, &term1, &term2 );
  2973.         shortShift128Left( term1, term2, 1, &term1, &term2 );
  2974.         sub128( rem1, 0, term1, term2, &rem1, &rem2 );
  2975.         mul64To128( zSig1, zSig1, &term2, &term3 );
  2976.         sub192( rem1, rem2, 0, 0, term2, term3, &rem1, &rem2, &rem3 );
  2977.         while ( (sbits64) rem1 < 0 ) {
  2978.             --zSig1;
  2979.             shortShift192Left( 0, zSig0, zSig1, 1, &term1, &term2, &term3 );
  2980.             term3 |= 1;
  2981.             add192(
  2982.                 rem1, rem2, rem3, term1, term2, term3, &rem1, &rem2, &rem3 );
  2983.         }
  2984.         zSig1 |= ( ( rem1 | rem2 | rem3 ) != 0 );
  2985.     }
  2986.     return
  2987.         roundAndPackFloatx80(
  2988.             floatx80_rounding_precision, 0, zExp, zSig0, zSig1 );
  2989. }
  2990. /*
  2991. -------------------------------------------------------------------------------
  2992. Returns 1 if the extended double-precision floating-point value `a' is
  2993. equal to the corresponding value `b', and 0 otherwise.  The comparison is
  2994. performed according to the IEC/IEEE Standard for Binary Floating-point
  2995. Arithmetic.
  2996. -------------------------------------------------------------------------------
  2997. */
  2998. flag floatx80_eq( floatx80 a, floatx80 b )
  2999. {
  3000.     if (    (    ( extractFloatx80Exp( a ) == 0x7FFF )
  3001.               && (bits64) ( extractFloatx80Frac( a )<<1 ) )
  3002.          || (    ( extractFloatx80Exp( b ) == 0x7FFF )
  3003.               && (bits64) ( extractFloatx80Frac( b )<<1 ) )
  3004.        ) {
  3005.         if (    floatx80_is_signaling_nan( a )
  3006.              || floatx80_is_signaling_nan( b ) ) {
  3007.             float_raise( float_flag_invalid );
  3008.         }
  3009.         return 0;
  3010.     }
  3011.     return
  3012.            ( a.low == b.low )
  3013.         && (    ( a.high == b.high )
  3014.              || (    ( a.low == 0 )
  3015.                   && ( (bits16) ( ( a.high | b.high )<<1 ) == 0 ) )
  3016.            );
  3017. }
  3018. /*
  3019. -------------------------------------------------------------------------------
  3020. Returns 1 if the extended double-precision floating-point value `a' is
  3021. less than or equal to the corresponding value `b', and 0 otherwise.  The
  3022. comparison is performed according to the IEC/IEEE Standard for Binary
  3023. Floating-point Arithmetic.
  3024. -------------------------------------------------------------------------------
  3025. */
  3026. flag floatx80_le( floatx80 a, floatx80 b )
  3027. {
  3028.     flag aSign, bSign;
  3029.     if (    (    ( extractFloatx80Exp( a ) == 0x7FFF )
  3030.               && (bits64) ( extractFloatx80Frac( a )<<1 ) )
  3031.          || (    ( extractFloatx80Exp( b ) == 0x7FFF )
  3032.               && (bits64) ( extractFloatx80Frac( b )<<1 ) )
  3033.        ) {
  3034.         float_raise( float_flag_invalid );
  3035.         return 0;
  3036.     }
  3037.     aSign = extractFloatx80Sign( a );
  3038.     bSign = extractFloatx80Sign( b );
  3039.     if ( aSign != bSign ) {
  3040.         return
  3041.                aSign
  3042.             || (    ( ( (bits16) ( ( a.high | b.high )<<1 ) ) | a.low | b.low )
  3043.                  == 0 );
  3044.     }
  3045.     return
  3046.           aSign ? le128( b.high, b.low, a.high, a.low )
  3047.         : le128( a.high, a.low, b.high, b.low );
  3048. }
  3049. /*
  3050. -------------------------------------------------------------------------------
  3051. Returns 1 if the extended double-precision floating-point value `a' is
  3052. less than the corresponding value `b', and 0 otherwise.  The comparison
  3053. is performed according to the IEC/IEEE Standard for Binary Floating-point
  3054. Arithmetic.
  3055. -------------------------------------------------------------------------------
  3056. */
  3057. flag floatx80_lt( floatx80 a, floatx80 b )
  3058. {
  3059.     flag aSign, bSign;
  3060.     if (    (    ( extractFloatx80Exp( a ) == 0x7FFF )
  3061.               && (bits64) ( extractFloatx80Frac( a )<<1 ) )
  3062.          || (    ( extractFloatx80Exp( b ) == 0x7FFF )
  3063.               && (bits64) ( extractFloatx80Frac( b )<<1 ) )
  3064.        ) {
  3065.         float_raise( float_flag_invalid );
  3066.         return 0;
  3067.     }
  3068.     aSign = extractFloatx80Sign( a );
  3069.     bSign = extractFloatx80Sign( b );
  3070.     if ( aSign != bSign ) {
  3071.         return
  3072.                aSign
  3073.             && (    ( ( (bits16) ( ( a.high | b.high )<<1 ) ) | a.low | b.low )
  3074.                  != 0 );
  3075.     }
  3076.     return
  3077.           aSign ? lt128( b.high, b.low, a.high, a.low )
  3078.         : lt128( a.high, a.low, b.high, b.low );
  3079. }
  3080. /*
  3081. -------------------------------------------------------------------------------
  3082. Returns 1 if the extended double-precision floating-point value `a' is equal
  3083. to the corresponding value `b', and 0 otherwise.  The invalid exception is
  3084. raised if either operand is a NaN.  Otherwise, the comparison is performed
  3085. according to the IEC/IEEE Standard for Binary Floating-point Arithmetic.
  3086. -------------------------------------------------------------------------------
  3087. */
  3088. flag floatx80_eq_signaling( floatx80 a, floatx80 b )
  3089. {
  3090.     if (    (    ( extractFloatx80Exp( a ) == 0x7FFF )
  3091.               && (bits64) ( extractFloatx80Frac( a )<<1 ) )
  3092.          || (    ( extractFloatx80Exp( b ) == 0x7FFF )
  3093.               && (bits64) ( extractFloatx80Frac( b )<<1 ) )
  3094.        ) {
  3095.         float_raise( float_flag_invalid );
  3096.         return 0;
  3097.     }
  3098.     return
  3099.            ( a.low == b.low )
  3100.         && (    ( a.high == b.high )
  3101.              || (    ( a.low == 0 )
  3102.                   && ( (bits16) ( ( a.high | b.high )<<1 ) == 0 ) )
  3103.            );
  3104. }
  3105. /*
  3106. -------------------------------------------------------------------------------
  3107. Returns 1 if the extended double-precision floating-point value `a' is less
  3108. than or equal to the corresponding value `b', and 0 otherwise.  Quiet NaNs
  3109. do not cause an exception.  Otherwise, the comparison is performed according
  3110. to the IEC/IEEE Standard for Binary Floating-point Arithmetic.
  3111. -------------------------------------------------------------------------------
  3112. */
  3113. flag floatx80_le_quiet( floatx80 a, floatx80 b )
  3114. {
  3115.     flag aSign, bSign;
  3116.     if (    (    ( extractFloatx80Exp( a ) == 0x7FFF )
  3117.               && (bits64) ( extractFloatx80Frac( a )<<1 ) )
  3118.          || (    ( extractFloatx80Exp( b ) == 0x7FFF )
  3119.               && (bits64) ( extractFloatx80Frac( b )<<1 ) )
  3120.        ) {
  3121.         if (    floatx80_is_signaling_nan( a )
  3122.              || floatx80_is_signaling_nan( b ) ) {
  3123.             float_raise( float_flag_invalid );
  3124.         }
  3125.         return 0;
  3126.     }
  3127.     aSign = extractFloatx80Sign( a );
  3128.     bSign = extractFloatx80Sign( b );
  3129.     if ( aSign != bSign ) {
  3130.         return
  3131.                aSign
  3132.             || (    ( ( (bits16) ( ( a.high | b.high )<<1 ) ) | a.low | b.low )
  3133.                  == 0 );
  3134.     }
  3135.     return
  3136.           aSign ? le128( b.high, b.low, a.high, a.low )
  3137.         : le128( a.high, a.low, b.high, b.low );
  3138. }
  3139. /*
  3140. -------------------------------------------------------------------------------
  3141. Returns 1 if the extended double-precision floating-point value `a' is less
  3142. than the corresponding value `b', and 0 otherwise.  Quiet NaNs do not cause
  3143. an exception.  Otherwise, the comparison is performed according to the
  3144. IEC/IEEE Standard for Binary Floating-point Arithmetic.
  3145. -------------------------------------------------------------------------------
  3146. */
  3147. flag floatx80_lt_quiet( floatx80 a, floatx80 b )
  3148. {
  3149.     flag aSign, bSign;
  3150.     if (    (    ( extractFloatx80Exp( a ) == 0x7FFF )
  3151.               && (bits64) ( extractFloatx80Frac( a )<<1 ) )
  3152.          || (    ( extractFloatx80Exp( b ) == 0x7FFF )
  3153.               && (bits64) ( extractFloatx80Frac( b )<<1 ) )
  3154.        ) {
  3155.         if (    floatx80_is_signaling_nan( a )
  3156.              || floatx80_is_signaling_nan( b ) ) {
  3157.             float_raise( float_flag_invalid );
  3158.         }
  3159.         return 0;
  3160.     }
  3161.     aSign = extractFloatx80Sign( a );
  3162.     bSign = extractFloatx80Sign( b );
  3163.     if ( aSign != bSign ) {
  3164.         return
  3165.                aSign
  3166.             && (    ( ( (bits16) ( ( a.high | b.high )<<1 ) ) | a.low | b.low )
  3167.                  != 0 );
  3168.     }
  3169.     return
  3170.           aSign ? lt128( b.high, b.low, a.high, a.low )
  3171.         : lt128( a.high, a.low, b.high, b.low );
  3172. }
  3173. #endif