sfsub.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:14k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Linux/PA-RISC Project (http://www.parisc-linux.org/)
  3.  *
  4.  * Floating-point emulation code
  5.  *  Copyright (C) 2001 Hewlett-Packard (Paul Bame) <bame@debian.org>
  6.  *
  7.  *    This program is free software; you can redistribute it and/or modify
  8.  *    it under the terms of the GNU General Public License as published by
  9.  *    the Free Software Foundation; either version 2, or (at your option)
  10.  *    any later version.
  11.  *
  12.  *    This program is distributed in the hope that it will be useful,
  13.  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.  *    GNU General Public License for more details.
  16.  *
  17.  *    You should have received a copy of the GNU General Public License
  18.  *    along with this program; if not, write to the Free Software
  19.  *    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20.  */
  21. /*
  22.  * BEGIN_DESC
  23.  *
  24.  *  File:
  25.  * @(#) pa/spmath/sfsub.c $Revision: 1.1 $
  26.  *
  27.  *  Purpose:
  28.  * Single_subtract: subtract two single precision values.
  29.  *
  30.  *  External Interfaces:
  31.  * sgl_fsub(leftptr, rightptr, dstptr, status)
  32.  *
  33.  *  Internal Interfaces:
  34.  *
  35.  *  Theory:
  36.  * <<please update with a overview of the operation of this file>>
  37.  *
  38.  * END_DESC
  39. */
  40. #include "float.h"
  41. #include "sgl_float.h"
  42. /*
  43.  * Single_subtract: subtract two single precision values.
  44.  */
  45. int
  46. sgl_fsub(
  47.     sgl_floating_point *leftptr,
  48.     sgl_floating_point *rightptr,
  49.     sgl_floating_point *dstptr,
  50.     unsigned int *status)
  51.     {
  52.     register unsigned int left, right, result, extent;
  53.     register unsigned int signless_upper_left, signless_upper_right, save;
  54.     
  55.     register int result_exponent, right_exponent, diff_exponent;
  56.     register int sign_save, jumpsize;
  57.     register boolean inexact = FALSE, underflowtrap;
  58.         
  59.     /* Create local copies of the numbers */
  60.     left = *leftptr;
  61.     right = *rightptr;
  62.     /* A zero "save" helps discover equal operands (for later),  *
  63.      * and is used in swapping operands (if needed).             */
  64.     Sgl_xortointp1(left,right,/*to*/save);
  65.     /*
  66.      * check first operand for NaN's or infinity
  67.      */
  68.     if ((result_exponent = Sgl_exponent(left)) == SGL_INFINITY_EXPONENT)
  69. {
  70. if (Sgl_iszero_mantissa(left)) 
  71.     {
  72.     if (Sgl_isnotnan(right)) 
  73. {
  74. if (Sgl_isinfinity(right) && save==0) 
  75.     {
  76.     /* 
  77.      * invalid since operands are same signed infinity's
  78.      */
  79.     if (Is_invalidtrap_enabled()) return(INVALIDEXCEPTION);
  80.                     Set_invalidflag();
  81.                     Sgl_makequietnan(result);
  82.     *dstptr = result;
  83.     return(NOEXCEPTION);
  84.     }
  85. /*
  86.    * return infinity
  87.    */
  88. *dstptr = left;
  89. return(NOEXCEPTION);
  90. }
  91.     }
  92. else 
  93.     {
  94.             /*
  95.              * is NaN; signaling or quiet?
  96.              */
  97.             if (Sgl_isone_signaling(left)) 
  98. {
  99.                 /* trap if INVALIDTRAP enabled */
  100. if (Is_invalidtrap_enabled()) return(INVALIDEXCEPTION);
  101.          /* make NaN quiet */
  102.          Set_invalidflag();
  103.          Sgl_set_quiet(left);
  104.          }
  105.     /* 
  106.      * is second operand a signaling NaN? 
  107.      */
  108.     else if (Sgl_is_signalingnan(right)) 
  109. {
  110.          /* trap if INVALIDTRAP enabled */
  111.                 if (Is_invalidtrap_enabled()) return(INVALIDEXCEPTION);
  112. /* make NaN quiet */
  113. Set_invalidflag();
  114. Sgl_set_quiet(right);
  115. *dstptr = right;
  116. return(NOEXCEPTION);
  117. }
  118.     /*
  119.        * return quiet NaN
  120.        */
  121.       *dstptr = left;
  122.       return(NOEXCEPTION);
  123.     }
  124. } /* End left NaN or Infinity processing */
  125.     /*
  126.      * check second operand for NaN's or infinity
  127.      */
  128.     if (Sgl_isinfinity_exponent(right)) 
  129. {
  130. if (Sgl_iszero_mantissa(right)) 
  131.     {
  132.     /* return infinity */
  133.     Sgl_invert_sign(right);
  134.     *dstptr = right;
  135.     return(NOEXCEPTION);
  136.     }
  137.         /*
  138.          * is NaN; signaling or quiet?
  139.          */
  140.         if (Sgl_isone_signaling(right)) 
  141.     {
  142.             /* trap if INVALIDTRAP enabled */
  143.     if (Is_invalidtrap_enabled()) return(INVALIDEXCEPTION);
  144.     /* make NaN quiet */
  145.     Set_invalidflag();
  146.     Sgl_set_quiet(right);
  147.     }
  148. /*
  149.  * return quiet NaN
  150.    */
  151. *dstptr = right;
  152. return(NOEXCEPTION);
  153.      } /* End right NaN or Infinity processing */
  154.     /* Invariant: Must be dealing with finite numbers */
  155.     /* Compare operands by removing the sign */
  156.     Sgl_copytoint_exponentmantissa(left,signless_upper_left);
  157.     Sgl_copytoint_exponentmantissa(right,signless_upper_right);
  158.     /* sign difference selects sub or add operation. */
  159.     if(Sgl_ismagnitudeless(signless_upper_left,signless_upper_right))
  160. {
  161. /* Set the left operand to the larger one by XOR swap *
  162.  *  First finish the first word using "save"          */
  163. Sgl_xorfromintp1(save,right,/*to*/right);
  164. Sgl_xorfromintp1(save,left,/*to*/left);
  165. result_exponent = Sgl_exponent(left);
  166. Sgl_invert_sign(left);
  167. }
  168.     /* Invariant:  left is not smaller than right. */ 
  169.     if((right_exponent = Sgl_exponent(right)) == 0)
  170.         {
  171. /* Denormalized operands.  First look for zeroes */
  172. if(Sgl_iszero_mantissa(right)) 
  173.     {
  174.     /* right is zero */
  175.     if(Sgl_iszero_exponentmantissa(left))
  176. {
  177. /* Both operands are zeros */
  178. Sgl_invert_sign(right);
  179. if(Is_rounding_mode(ROUNDMINUS))
  180.     {
  181.     Sgl_or_signs(left,/*with*/right);
  182.     }
  183. else
  184.     {
  185.     Sgl_and_signs(left,/*with*/right);
  186.     }
  187. }
  188.     else 
  189. {
  190. /* Left is not a zero and must be the result.  Trapped
  191.  * underflows are signaled if left is denormalized.  Result
  192.  * is always exact. */
  193. if( (result_exponent == 0) && Is_underflowtrap_enabled() )
  194.     {
  195.     /* need to normalize results mantissa */
  196.          sign_save = Sgl_signextendedsign(left);
  197.     Sgl_leftshiftby1(left);
  198.     Sgl_normalize(left,result_exponent);
  199.     Sgl_set_sign(left,/*using*/sign_save);
  200.                     Sgl_setwrapped_exponent(left,result_exponent,unfl);
  201.     *dstptr = left;
  202.     /* inexact = FALSE */
  203.     return(UNDERFLOWEXCEPTION);
  204.     }
  205. }
  206.     *dstptr = left;
  207.     return(NOEXCEPTION);
  208.     }
  209. /* Neither are zeroes */
  210. Sgl_clear_sign(right); /* Exponent is already cleared */
  211. if(result_exponent == 0 )
  212.     {
  213.     /* Both operands are denormalized.  The result must be exact
  214.      * and is simply calculated.  A sum could become normalized and a
  215.      * difference could cancel to a true zero. */
  216.     if( (/*signed*/int) save >= 0 )
  217. {
  218. Sgl_subtract(left,/*minus*/right,/*into*/result);
  219. if(Sgl_iszero_mantissa(result))
  220.     {
  221.     if(Is_rounding_mode(ROUNDMINUS))
  222. {
  223. Sgl_setone_sign(result);
  224. }
  225.     else
  226. {
  227. Sgl_setzero_sign(result);
  228. }
  229.     *dstptr = result;
  230.     return(NOEXCEPTION);
  231.     }
  232. }
  233.     else
  234. {
  235. Sgl_addition(left,right,/*into*/result);
  236. if(Sgl_isone_hidden(result))
  237.     {
  238.     *dstptr = result;
  239.     return(NOEXCEPTION);
  240.     }
  241. }
  242.     if(Is_underflowtrap_enabled())
  243. {
  244. /* need to normalize result */
  245.      sign_save = Sgl_signextendedsign(result);
  246. Sgl_leftshiftby1(result);
  247. Sgl_normalize(result,result_exponent);
  248. Sgl_set_sign(result,/*using*/sign_save);
  249.                 Sgl_setwrapped_exponent(result,result_exponent,unfl);
  250. *dstptr = result;
  251. /* inexact = FALSE */
  252. return(UNDERFLOWEXCEPTION);
  253. }
  254.     *dstptr = result;
  255.     return(NOEXCEPTION);
  256.     }
  257. right_exponent = 1; /* Set exponent to reflect different bias
  258.  * with denomalized numbers. */
  259. }
  260.     else
  261. {
  262. Sgl_clear_signexponent_set_hidden(right);
  263. }
  264.     Sgl_clear_exponent_set_hidden(left);
  265.     diff_exponent = result_exponent - right_exponent;
  266.     /* 
  267.      * Special case alignment of operands that would force alignment 
  268.      * beyond the extent of the extension.  A further optimization
  269.      * could special case this but only reduces the path length for this
  270.      * infrequent case.
  271.      */
  272.     if(diff_exponent > SGL_THRESHOLD)
  273. {
  274. diff_exponent = SGL_THRESHOLD;
  275. }
  276.     
  277.     /* Align right operand by shifting to right */
  278.     Sgl_right_align(/*operand*/right,/*shifted by*/diff_exponent,
  279.       /*and lower to*/extent);
  280.     /* Treat sum and difference of the operands separately. */
  281.     if( (/*signed*/int) save >= 0 )
  282. {
  283. /*
  284.  * Difference of the two operands.  Their can be no overflow.  A
  285.  * borrow can occur out of the hidden bit and force a post
  286.  * normalization phase.
  287.  */
  288. Sgl_subtract_withextension(left,/*minus*/right,/*with*/extent,/*into*/result);
  289. if(Sgl_iszero_hidden(result))
  290.     {
  291.     /* Handle normalization */
  292.     /* A straight foward algorithm would now shift the result
  293.      * and extension left until the hidden bit becomes one.  Not
  294.      * all of the extension bits need participate in the shift.
  295.      * Only the two most significant bits (round and guard) are
  296.      * needed.  If only a single shift is needed then the guard
  297.      * bit becomes a significant low order bit and the extension
  298.      * must participate in the rounding.  If more than a single 
  299.      * shift is needed, then all bits to the right of the guard 
  300.      * bit are zeros, and the guard bit may or may not be zero. */
  301.     sign_save = Sgl_signextendedsign(result);
  302.             Sgl_leftshiftby1_withextent(result,extent,result);
  303.             /* Need to check for a zero result.  The sign and exponent
  304.      * fields have already been zeroed.  The more efficient test
  305.      * of the full object can be used.
  306.      */
  307.          if(Sgl_iszero(result))
  308. /* Must have been "x-x" or "x+(-x)". */
  309. {
  310. if(Is_rounding_mode(ROUNDMINUS)) Sgl_setone_sign(result);
  311. *dstptr = result;
  312. return(NOEXCEPTION);
  313. }
  314.     result_exponent--;
  315.     /* Look to see if normalization is finished. */
  316.     if(Sgl_isone_hidden(result))
  317. {
  318. if(result_exponent==0)
  319.     {
  320.     /* Denormalized, exponent should be zero.  Left operand *
  321.        * was normalized, so extent (guard, round) was zero    */
  322.     goto underflow;
  323.     }
  324. else
  325.     {
  326.     /* No further normalization is needed. */
  327.     Sgl_set_sign(result,/*using*/sign_save);
  328.          Ext_leftshiftby1(extent);
  329.     goto round;
  330.     }
  331. }
  332.     /* Check for denormalized, exponent should be zero.  Left    *
  333.      * operand was normalized, so extent (guard, round) was zero */
  334.     if(!(underflowtrap = Is_underflowtrap_enabled()) &&
  335.        result_exponent==0) goto underflow;
  336.     /* Shift extension to complete one bit of normalization and
  337.      * update exponent. */
  338.     Ext_leftshiftby1(extent);
  339.     /* Discover first one bit to determine shift amount.  Use a
  340.      * modified binary search.  We have already shifted the result
  341.      * one position right and still not found a one so the remainder
  342.      * of the extension must be zero and simplifies rounding. */
  343.     /* Scan bytes */
  344.     while(Sgl_iszero_hiddenhigh7mantissa(result))
  345. {
  346. Sgl_leftshiftby8(result);
  347. if((result_exponent -= 8) <= 0  && !underflowtrap)
  348.     goto underflow;
  349. }
  350.     /* Now narrow it down to the nibble */
  351.     if(Sgl_iszero_hiddenhigh3mantissa(result))
  352. {
  353. /* The lower nibble contains the normalizing one */
  354. Sgl_leftshiftby4(result);
  355. if((result_exponent -= 4) <= 0 && !underflowtrap)
  356.     goto underflow;
  357. }
  358.     /* Select case were first bit is set (already normalized)
  359.      * otherwise select the proper shift. */
  360.     if((jumpsize = Sgl_hiddenhigh3mantissa(result)) > 7)
  361. {
  362. /* Already normalized */
  363. if(result_exponent <= 0) goto underflow;
  364. Sgl_set_sign(result,/*using*/sign_save);
  365. Sgl_set_exponent(result,/*using*/result_exponent);
  366. *dstptr = result;
  367. return(NOEXCEPTION);
  368. }
  369.     Sgl_sethigh4bits(result,/*using*/sign_save);
  370.     switch(jumpsize) 
  371. {
  372. case 1:
  373.     {
  374.     Sgl_leftshiftby3(result);
  375.     result_exponent -= 3;
  376.     break;
  377.     }
  378. case 2:
  379. case 3:
  380.     {
  381.     Sgl_leftshiftby2(result);
  382.     result_exponent -= 2;
  383.     break;
  384.     }
  385. case 4:
  386. case 5:
  387. case 6:
  388. case 7:
  389.     {
  390.     Sgl_leftshiftby1(result);
  391.     result_exponent -= 1;
  392.     break;
  393.     }
  394. }
  395.     if(result_exponent > 0) 
  396. {
  397. Sgl_set_exponent(result,/*using*/result_exponent);
  398. *dstptr = result; /* Sign bit is already set */
  399. return(NOEXCEPTION);
  400. }
  401.     /* Fixup potential underflows */
  402.   underflow:
  403.     if(Is_underflowtrap_enabled())
  404. {
  405. Sgl_set_sign(result,sign_save);
  406.                 Sgl_setwrapped_exponent(result,result_exponent,unfl);
  407. *dstptr = result;
  408. /* inexact = FALSE */
  409. return(UNDERFLOWEXCEPTION);
  410. }
  411.     /*
  412.      * Since we cannot get an inexact denormalized result,
  413.      * we can now return.
  414.      */
  415.     Sgl_right_align(result,/*by*/(1-result_exponent),extent);
  416.     Sgl_clear_signexponent(result);
  417.     Sgl_set_sign(result,sign_save);
  418.     *dstptr = result;
  419.     return(NOEXCEPTION);
  420.     } /* end if(hidden...)... */
  421. /* Fall through and round */
  422. } /* end if(save >= 0)... */
  423.     else 
  424. {
  425. /* Add magnitudes */
  426. Sgl_addition(left,right,/*to*/result);
  427. if(Sgl_isone_hiddenoverflow(result))
  428.     {
  429.     /* Prenormalization required. */
  430.     Sgl_rightshiftby1_withextent(result,extent,extent);
  431.     Sgl_arithrightshiftby1(result);
  432.     result_exponent++;
  433.     } /* end if hiddenoverflow... */
  434. } /* end else ...sub magnitudes... */
  435.     
  436.     /* Round the result.  If the extension is all zeros,then the result is
  437.      * exact.  Otherwise round in the correct direction.  No underflow is
  438.      * possible. If a postnormalization is necessary, then the mantissa is
  439.      * all zeros so no shift is needed. */
  440.   round:
  441.     if(Ext_isnotzero(extent))
  442. {
  443. inexact = TRUE;
  444. switch(Rounding_mode())
  445.     {
  446.     case ROUNDNEAREST: /* The default. */
  447.     if(Ext_isone_sign(extent))
  448. {
  449. /* at least 1/2 ulp */
  450. if(Ext_isnotzero_lower(extent)  ||
  451.   Sgl_isone_lowmantissa(result))
  452.     {
  453.     /* either exactly half way and odd or more than 1/2ulp */
  454.     Sgl_increment(result);
  455.     }
  456. }
  457.     break;
  458.     case ROUNDPLUS:
  459.     if(Sgl_iszero_sign(result))
  460. {
  461. /* Round up positive results */
  462. Sgl_increment(result);
  463. }
  464.     break;
  465.     
  466.     case ROUNDMINUS:
  467.     if(Sgl_isone_sign(result))
  468. {
  469. /* Round down negative results */
  470. Sgl_increment(result);
  471. }
  472.     
  473.     case ROUNDZERO:;
  474.     /* truncate is simple */
  475.     } /* end switch... */
  476. if(Sgl_isone_hiddenoverflow(result)) result_exponent++;
  477. }
  478.     if(result_exponent == SGL_INFINITY_EXPONENT)
  479.         {
  480.         /* Overflow */
  481.         if(Is_overflowtrap_enabled())
  482.     {
  483.     Sgl_setwrapped_exponent(result,result_exponent,ovfl);
  484.     *dstptr = result;
  485.     if (inexact)
  486. if (Is_inexacttrap_enabled())
  487.     return(OVERFLOWEXCEPTION | INEXACTEXCEPTION);
  488. else Set_inexactflag();
  489.     return(OVERFLOWEXCEPTION);
  490.     }
  491.         else
  492.     {
  493.     Set_overflowflag();
  494.     inexact = TRUE;
  495.     Sgl_setoverflow(result);
  496.     }
  497. }
  498.     else Sgl_set_exponent(result,result_exponent);
  499.     *dstptr = result;
  500.     if(inexact) 
  501. if(Is_inexacttrap_enabled()) return(INEXACTEXCEPTION);
  502. else Set_inexactflag();
  503.     return(NOEXCEPTION);
  504.     }