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

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. #ifdef __NO_PA_HDRS
  22.     PA header file -- do not include this header file for non-PA builds.
  23. #endif
  24. /* 32-bit word grabing functions */
  25. #define Dbl_firstword(value) Dallp1(value)
  26. #define Dbl_secondword(value) Dallp2(value)
  27. #define Dbl_thirdword(value) dummy_location
  28. #define Dbl_fourthword(value) dummy_location
  29. #define Dbl_sign(object) Dsign(object)
  30. #define Dbl_exponent(object) Dexponent(object)
  31. #define Dbl_signexponent(object) Dsignexponent(object)
  32. #define Dbl_mantissap1(object) Dmantissap1(object)
  33. #define Dbl_mantissap2(object) Dmantissap2(object)
  34. #define Dbl_exponentmantissap1(object) Dexponentmantissap1(object)
  35. #define Dbl_allp1(object) Dallp1(object)
  36. #define Dbl_allp2(object) Dallp2(object)
  37. /* dbl_and_signs ands the sign bits of each argument and puts the result
  38.  * into the first argument. dbl_or_signs ors those same sign bits */
  39. #define Dbl_and_signs( src1dst, src2)
  40.     Dallp1(src1dst) = (Dallp1(src2)|~((unsigned int)1<<31)) & Dallp1(src1dst)
  41. #define Dbl_or_signs( src1dst, src2)
  42.     Dallp1(src1dst) = (Dallp1(src2)&((unsigned int)1<<31)) | Dallp1(src1dst)
  43. /* The hidden bit is always the low bit of the exponent */
  44. #define Dbl_clear_exponent_set_hidden(srcdst) Deposit_dexponent(srcdst,1)
  45. #define Dbl_clear_signexponent_set_hidden(srcdst) 
  46.     Deposit_dsignexponent(srcdst,1)
  47. #define Dbl_clear_sign(srcdst) Dallp1(srcdst) &= ~((unsigned int)1<<31)
  48. #define Dbl_clear_signexponent(srcdst) 
  49.     Dallp1(srcdst) &= Dmantissap1((unsigned int)-1)
  50. /* Exponent field for doubles has already been cleared and may be
  51.  * included in the shift.  Here we need to generate two double width
  52.  * variable shifts.  The insignificant bits can be ignored.
  53.  *      MTSAR f(varamount)
  54.  *      VSHD srcdst.high,srcdst.low => srcdst.low
  55.  * VSHD 0,srcdst.high => srcdst.high 
  56.  * This is very difficult to model with C expressions since the shift amount
  57.  * could exceed 32.  */
  58. /* varamount must be less than 64 */
  59. #define Dbl_rightshift(srcdstA, srcdstB, varamount)
  60.     {if((varamount) >= 32) {
  61.         Dallp2(srcdstB) = Dallp1(srcdstA) >> (varamount-32);
  62.         Dallp1(srcdstA)=0;
  63.     }
  64.     else if(varamount > 0) {
  65. Variable_shift_double(Dallp1(srcdstA), Dallp2(srcdstB), 
  66.   (varamount), Dallp2(srcdstB));
  67. Dallp1(srcdstA) >>= varamount;
  68.     } }
  69. /* varamount must be less than 64 */
  70. #define Dbl_rightshift_exponentmantissa(srcdstA, srcdstB, varamount)
  71.     {if((varamount) >= 32) {
  72.         Dallp2(srcdstB) = Dexponentmantissap1(srcdstA) >> (varamount-32); 
  73. Dallp1(srcdstA) &= ((unsigned int)1<<31);  /* clear expmant field */ 
  74.     }
  75.     else if(varamount > 0) {
  76. Variable_shift_double(Dexponentmantissap1(srcdstA), Dallp2(srcdstB), 
  77. (varamount), Dallp2(srcdstB));
  78. Deposit_dexponentmantissap1(srcdstA,
  79.     (Dexponentmantissap1(srcdstA)>>varamount));
  80.     } }
  81. /* varamount must be less than 64 */
  82. #define Dbl_leftshift(srcdstA, srcdstB, varamount)
  83.     {if((varamount) >= 32) {
  84. Dallp1(srcdstA) = Dallp2(srcdstB) << (varamount-32);
  85. Dallp2(srcdstB)=0;
  86.     }
  87.     else {
  88. if ((varamount) > 0) {
  89.     Dallp1(srcdstA) = (Dallp1(srcdstA) << (varamount)) |
  90. (Dallp2(srcdstB) >> (32-(varamount)));
  91.     Dallp2(srcdstB) <<= varamount;
  92. }
  93.     } }
  94. #define Dbl_leftshiftby1_withextent(lefta,leftb,right,resulta,resultb)
  95.     Shiftdouble(Dallp1(lefta), Dallp2(leftb), 31, Dallp1(resulta));
  96.     Shiftdouble(Dallp2(leftb), Extall(right), 31, Dallp2(resultb)) 
  97.     
  98. #define Dbl_rightshiftby1_withextent(leftb,right,dst)
  99.     Extall(dst) = (Dallp2(leftb) << 31) | ((unsigned int)Extall(right) >> 1) | 
  100.   Extlow(right)
  101. #define Dbl_arithrightshiftby1(srcdstA,srcdstB)
  102.     Shiftdouble(Dallp1(srcdstA),Dallp2(srcdstB),1,Dallp2(srcdstB));
  103.     Dallp1(srcdstA) = (int)Dallp1(srcdstA) >> 1
  104.    
  105. /* Sign extend the sign bit with an integer destination */
  106. #define Dbl_signextendedsign(value)  Dsignedsign(value)
  107. #define Dbl_isone_hidden(dbl_value) (Is_dhidden(dbl_value)!=0)
  108. /* Singles and doubles may include the sign and exponent fields.  The
  109.  * hidden bit and the hidden overflow must be included. */
  110. #define Dbl_increment(dbl_valueA,dbl_valueB) 
  111.     if( (Dallp2(dbl_valueB) += 1) == 0 )  Dallp1(dbl_valueA) += 1
  112. #define Dbl_increment_mantissa(dbl_valueA,dbl_valueB) 
  113.     if( (Dmantissap2(dbl_valueB) += 1) == 0 )  
  114.     Deposit_dmantissap1(dbl_valueA,dbl_valueA+1)
  115. #define Dbl_decrement(dbl_valueA,dbl_valueB) 
  116.     if( Dallp2(dbl_valueB) == 0 )  Dallp1(dbl_valueA) -= 1; 
  117.     Dallp2(dbl_valueB) -= 1
  118. #define Dbl_isone_sign(dbl_value) (Is_dsign(dbl_value)!=0)
  119. #define Dbl_isone_hiddenoverflow(dbl_value) (Is_dhiddenoverflow(dbl_value)!=0)
  120. #define Dbl_isone_lowmantissap1(dbl_valueA) (Is_dlowp1(dbl_valueA)!=0)
  121. #define Dbl_isone_lowmantissap2(dbl_valueB) (Is_dlowp2(dbl_valueB)!=0)
  122. #define Dbl_isone_signaling(dbl_value) (Is_dsignaling(dbl_value)!=0)
  123. #define Dbl_is_signalingnan(dbl_value) (Dsignalingnan(dbl_value)==0xfff)
  124. #define Dbl_isnotzero(dbl_valueA,dbl_valueB) 
  125.     (Dallp1(dbl_valueA) || Dallp2(dbl_valueB))
  126. #define Dbl_isnotzero_hiddenhigh7mantissa(dbl_value) 
  127.     (Dhiddenhigh7mantissa(dbl_value)!=0)
  128. #define Dbl_isnotzero_exponent(dbl_value) (Dexponent(dbl_value)!=0)
  129. #define Dbl_isnotzero_mantissa(dbl_valueA,dbl_valueB) 
  130.     (Dmantissap1(dbl_valueA) || Dmantissap2(dbl_valueB))
  131. #define Dbl_isnotzero_mantissap1(dbl_valueA) (Dmantissap1(dbl_valueA)!=0)
  132. #define Dbl_isnotzero_mantissap2(dbl_valueB) (Dmantissap2(dbl_valueB)!=0)
  133. #define Dbl_isnotzero_exponentmantissa(dbl_valueA,dbl_valueB) 
  134.     (Dexponentmantissap1(dbl_valueA) || Dmantissap2(dbl_valueB))
  135. #define Dbl_isnotzero_low4p2(dbl_value) (Dlow4p2(dbl_value)!=0)
  136. #define Dbl_iszero(dbl_valueA,dbl_valueB) (Dallp1(dbl_valueA)==0 && 
  137.     Dallp2(dbl_valueB)==0)
  138. #define Dbl_iszero_allp1(dbl_value) (Dallp1(dbl_value)==0)
  139. #define Dbl_iszero_allp2(dbl_value) (Dallp2(dbl_value)==0)
  140. #define Dbl_iszero_hidden(dbl_value) (Is_dhidden(dbl_value)==0)
  141. #define Dbl_iszero_hiddenoverflow(dbl_value) (Is_dhiddenoverflow(dbl_value)==0)
  142. #define Dbl_iszero_hiddenhigh3mantissa(dbl_value) 
  143.     (Dhiddenhigh3mantissa(dbl_value)==0)
  144. #define Dbl_iszero_hiddenhigh7mantissa(dbl_value) 
  145.     (Dhiddenhigh7mantissa(dbl_value)==0)
  146. #define Dbl_iszero_sign(dbl_value) (Is_dsign(dbl_value)==0)
  147. #define Dbl_iszero_exponent(dbl_value) (Dexponent(dbl_value)==0)
  148. #define Dbl_iszero_mantissa(dbl_valueA,dbl_valueB) 
  149.     (Dmantissap1(dbl_valueA)==0 && Dmantissap2(dbl_valueB)==0)
  150. #define Dbl_iszero_exponentmantissa(dbl_valueA,dbl_valueB) 
  151.     (Dexponentmantissap1(dbl_valueA)==0 && Dmantissap2(dbl_valueB)==0)
  152. #define Dbl_isinfinity_exponent(dbl_value)
  153.     (Dexponent(dbl_value)==DBL_INFINITY_EXPONENT)
  154. #define Dbl_isnotinfinity_exponent(dbl_value)
  155.     (Dexponent(dbl_value)!=DBL_INFINITY_EXPONENT)
  156. #define Dbl_isinfinity(dbl_valueA,dbl_valueB)
  157.     (Dexponent(dbl_valueA)==DBL_INFINITY_EXPONENT &&
  158.     Dmantissap1(dbl_valueA)==0 && Dmantissap2(dbl_valueB)==0)
  159. #define Dbl_isnan(dbl_valueA,dbl_valueB)
  160.     (Dexponent(dbl_valueA)==DBL_INFINITY_EXPONENT &&
  161.     (Dmantissap1(dbl_valueA)!=0 || Dmantissap2(dbl_valueB)!=0))
  162. #define Dbl_isnotnan(dbl_valueA,dbl_valueB)
  163.     (Dexponent(dbl_valueA)!=DBL_INFINITY_EXPONENT ||
  164.     (Dmantissap1(dbl_valueA)==0 && Dmantissap2(dbl_valueB)==0))
  165. #define Dbl_islessthan(dbl_op1a,dbl_op1b,dbl_op2a,dbl_op2b)
  166.     (Dallp1(dbl_op1a) < Dallp1(dbl_op2a) ||
  167.      (Dallp1(dbl_op1a) == Dallp1(dbl_op2a) &&
  168.       Dallp2(dbl_op1b) < Dallp2(dbl_op2b)))
  169. #define Dbl_isgreaterthan(dbl_op1a,dbl_op1b,dbl_op2a,dbl_op2b)
  170.     (Dallp1(dbl_op1a) > Dallp1(dbl_op2a) ||
  171.      (Dallp1(dbl_op1a) == Dallp1(dbl_op2a) &&
  172.       Dallp2(dbl_op1b) > Dallp2(dbl_op2b)))
  173. #define Dbl_isnotlessthan(dbl_op1a,dbl_op1b,dbl_op2a,dbl_op2b)
  174.     (Dallp1(dbl_op1a) > Dallp1(dbl_op2a) ||
  175.      (Dallp1(dbl_op1a) == Dallp1(dbl_op2a) &&
  176.       Dallp2(dbl_op1b) >= Dallp2(dbl_op2b)))
  177. #define Dbl_isnotgreaterthan(dbl_op1a,dbl_op1b,dbl_op2a,dbl_op2b) 
  178.     (Dallp1(dbl_op1a) < Dallp1(dbl_op2a) ||
  179.      (Dallp1(dbl_op1a) == Dallp1(dbl_op2a) &&
  180.       Dallp2(dbl_op1b) <= Dallp2(dbl_op2b)))
  181. #define Dbl_isequal(dbl_op1a,dbl_op1b,dbl_op2a,dbl_op2b)
  182.      ((Dallp1(dbl_op1a) == Dallp1(dbl_op2a)) &&
  183.       (Dallp2(dbl_op1b) == Dallp2(dbl_op2b)))
  184. #define Dbl_leftshiftby8(dbl_valueA,dbl_valueB) 
  185.     Shiftdouble(Dallp1(dbl_valueA),Dallp2(dbl_valueB),24,Dallp1(dbl_valueA)); 
  186.     Dallp2(dbl_valueB) <<= 8
  187. #define Dbl_leftshiftby7(dbl_valueA,dbl_valueB) 
  188.     Shiftdouble(Dallp1(dbl_valueA),Dallp2(dbl_valueB),25,Dallp1(dbl_valueA)); 
  189.     Dallp2(dbl_valueB) <<= 7
  190. #define Dbl_leftshiftby4(dbl_valueA,dbl_valueB) 
  191.     Shiftdouble(Dallp1(dbl_valueA),Dallp2(dbl_valueB),28,Dallp1(dbl_valueA)); 
  192.     Dallp2(dbl_valueB) <<= 4
  193. #define Dbl_leftshiftby3(dbl_valueA,dbl_valueB) 
  194.     Shiftdouble(Dallp1(dbl_valueA),Dallp2(dbl_valueB),29,Dallp1(dbl_valueA)); 
  195.     Dallp2(dbl_valueB) <<= 3
  196. #define Dbl_leftshiftby2(dbl_valueA,dbl_valueB) 
  197.     Shiftdouble(Dallp1(dbl_valueA),Dallp2(dbl_valueB),30,Dallp1(dbl_valueA)); 
  198.     Dallp2(dbl_valueB) <<= 2
  199. #define Dbl_leftshiftby1(dbl_valueA,dbl_valueB) 
  200.     Shiftdouble(Dallp1(dbl_valueA),Dallp2(dbl_valueB),31,Dallp1(dbl_valueA)); 
  201.     Dallp2(dbl_valueB) <<= 1
  202. #define Dbl_rightshiftby8(dbl_valueA,dbl_valueB) 
  203.     Shiftdouble(Dallp1(dbl_valueA),Dallp2(dbl_valueB),8,Dallp2(dbl_valueB)); 
  204.     Dallp1(dbl_valueA) >>= 8
  205. #define Dbl_rightshiftby4(dbl_valueA,dbl_valueB) 
  206.     Shiftdouble(Dallp1(dbl_valueA),Dallp2(dbl_valueB),4,Dallp2(dbl_valueB)); 
  207.     Dallp1(dbl_valueA) >>= 4
  208. #define Dbl_rightshiftby2(dbl_valueA,dbl_valueB) 
  209.     Shiftdouble(Dallp1(dbl_valueA),Dallp2(dbl_valueB),2,Dallp2(dbl_valueB)); 
  210.     Dallp1(dbl_valueA) >>= 2
  211. #define Dbl_rightshiftby1(dbl_valueA,dbl_valueB) 
  212.     Shiftdouble(Dallp1(dbl_valueA),Dallp2(dbl_valueB),1,Dallp2(dbl_valueB)); 
  213.     Dallp1(dbl_valueA) >>= 1
  214.     
  215. /* This magnitude comparison uses the signless first words and
  216.  * the regular part2 words.  The comparison is graphically:
  217.  *
  218.  *       1st greater?  -------------
  219.  *                                 |
  220.  *       1st less?-----------------+---------
  221.  *                                 |        |
  222.  *       2nd greater or equal----->|        |
  223.  *                               False     True
  224.  */
  225. #define Dbl_ismagnitudeless(leftB,rightB,signlessleft,signlessright)
  226.       ((signlessleft <= signlessright) &&
  227.        ( (signlessleft < signlessright) || (Dallp2(leftB)<Dallp2(rightB)) ))
  228.     
  229. #define Dbl_copytoint_exponentmantissap1(src,dest) 
  230.     dest = Dexponentmantissap1(src)
  231. /* A quiet NaN has the high mantissa bit clear and at least on other (in this
  232.  * case the adjacent bit) bit set. */
  233. #define Dbl_set_quiet(dbl_value) Deposit_dhigh2mantissa(dbl_value,1)
  234. #define Dbl_set_exponent(dbl_value, exp) Deposit_dexponent(dbl_value,exp)
  235. #define Dbl_set_mantissa(desta,destb,valuea,valueb)
  236.     Deposit_dmantissap1(desta,valuea);
  237.     Dmantissap2(destb) = Dmantissap2(valueb)
  238. #define Dbl_set_mantissap1(desta,valuea)
  239.     Deposit_dmantissap1(desta,valuea)
  240. #define Dbl_set_mantissap2(destb,valueb)
  241.     Dmantissap2(destb) = Dmantissap2(valueb)
  242. #define Dbl_set_exponentmantissa(desta,destb,valuea,valueb)
  243.     Deposit_dexponentmantissap1(desta,valuea);
  244.     Dmantissap2(destb) = Dmantissap2(valueb)
  245. #define Dbl_set_exponentmantissap1(dest,value)
  246.     Deposit_dexponentmantissap1(dest,value)
  247. #define Dbl_copyfromptr(src,desta,destb) 
  248.     Dallp1(desta) = src->wd0;
  249.     Dallp2(destb) = src->wd1 
  250. #define Dbl_copytoptr(srca,srcb,dest)
  251.     dest->wd0 = Dallp1(srca);
  252.     dest->wd1 = Dallp2(srcb)
  253. /*  An infinity is represented with the max exponent and a zero mantissa */
  254. #define Dbl_setinfinity_exponent(dbl_value) 
  255.     Deposit_dexponent(dbl_value,DBL_INFINITY_EXPONENT)
  256. #define Dbl_setinfinity_exponentmantissa(dbl_valueA,dbl_valueB)
  257.     Deposit_dexponentmantissap1(dbl_valueA, 
  258.     (DBL_INFINITY_EXPONENT << (32-(1+DBL_EXP_LENGTH))));
  259.     Dmantissap2(dbl_valueB) = 0
  260. #define Dbl_setinfinitypositive(dbl_valueA,dbl_valueB)
  261.     Dallp1(dbl_valueA) 
  262.         = (DBL_INFINITY_EXPONENT << (32-(1+DBL_EXP_LENGTH)));
  263.     Dmantissap2(dbl_valueB) = 0
  264. #define Dbl_setinfinitynegative(dbl_valueA,dbl_valueB)
  265.     Dallp1(dbl_valueA) = ((unsigned int)1<<31) |
  266.          (DBL_INFINITY_EXPONENT << (32-(1+DBL_EXP_LENGTH)));
  267.     Dmantissap2(dbl_valueB) = 0
  268. #define Dbl_setinfinity(dbl_valueA,dbl_valueB,sign)
  269.     Dallp1(dbl_valueA) = ((unsigned int)sign << 31) | 
  270. (DBL_INFINITY_EXPONENT << (32-(1+DBL_EXP_LENGTH)));
  271.     Dmantissap2(dbl_valueB) = 0
  272. #define Dbl_sethigh4bits(dbl_value, extsign) Deposit_dhigh4p1(dbl_value,extsign)
  273. #define Dbl_set_sign(dbl_value,sign) Deposit_dsign(dbl_value,sign)
  274. #define Dbl_invert_sign(dbl_value) Deposit_dsign(dbl_value,~Dsign(dbl_value))
  275. #define Dbl_setone_sign(dbl_value) Deposit_dsign(dbl_value,1)
  276. #define Dbl_setone_lowmantissap2(dbl_value) Deposit_dlowp2(dbl_value,1)
  277. #define Dbl_setzero_sign(dbl_value) Dallp1(dbl_value) &= 0x7fffffff
  278. #define Dbl_setzero_exponent(dbl_value) 
  279.     Dallp1(dbl_value) &= 0x800fffff
  280. #define Dbl_setzero_mantissa(dbl_valueA,dbl_valueB)
  281.     Dallp1(dbl_valueA) &= 0xfff00000; 
  282.     Dallp2(dbl_valueB) = 0
  283. #define Dbl_setzero_mantissap1(dbl_value) Dallp1(dbl_value) &= 0xfff00000
  284. #define Dbl_setzero_mantissap2(dbl_value) Dallp2(dbl_value) = 0
  285. #define Dbl_setzero_exponentmantissa(dbl_valueA,dbl_valueB)
  286.     Dallp1(dbl_valueA) &= 0x80000000;
  287.     Dallp2(dbl_valueB) = 0
  288. #define Dbl_setzero_exponentmantissap1(dbl_valueA)
  289.     Dallp1(dbl_valueA) &= 0x80000000
  290. #define Dbl_setzero(dbl_valueA,dbl_valueB) 
  291.     Dallp1(dbl_valueA) = 0; Dallp2(dbl_valueB) = 0
  292. #define Dbl_setzerop1(dbl_value) Dallp1(dbl_value) = 0
  293. #define Dbl_setzerop2(dbl_value) Dallp2(dbl_value) = 0
  294. #define Dbl_setnegativezero(dbl_value) 
  295.     Dallp1(dbl_value) = (unsigned int)1 << 31; Dallp2(dbl_value) = 0
  296. #define Dbl_setnegativezerop1(dbl_value) Dallp1(dbl_value) = (unsigned int)1<<31
  297. /* Use the following macro for both overflow & underflow conditions */
  298. #define ovfl -
  299. #define unfl +
  300. #define Dbl_setwrapped_exponent(dbl_value,exponent,op) 
  301.     Deposit_dexponent(dbl_value,(exponent op DBL_WRAP))
  302. #define Dbl_setlargestpositive(dbl_valueA,dbl_valueB) 
  303.     Dallp1(dbl_valueA) = ((DBL_EMAX+DBL_BIAS) << (32-(1+DBL_EXP_LENGTH))) 
  304. | ((1<<(32-(1+DBL_EXP_LENGTH))) - 1 );
  305.     Dallp2(dbl_valueB) = 0xFFFFFFFF
  306. #define Dbl_setlargestnegative(dbl_valueA,dbl_valueB) 
  307.     Dallp1(dbl_valueA) = ((DBL_EMAX+DBL_BIAS) << (32-(1+DBL_EXP_LENGTH))) 
  308. | ((1<<(32-(1+DBL_EXP_LENGTH))) - 1 )
  309. | ((unsigned int)1<<31);
  310.     Dallp2(dbl_valueB) = 0xFFFFFFFF
  311. #define Dbl_setlargest_exponentmantissa(dbl_valueA,dbl_valueB)
  312.     Deposit_dexponentmantissap1(dbl_valueA,
  313. (((DBL_EMAX+DBL_BIAS) << (32-(1+DBL_EXP_LENGTH)))
  314. | ((1<<(32-(1+DBL_EXP_LENGTH))) - 1 )));
  315.     Dallp2(dbl_valueB) = 0xFFFFFFFF
  316. #define Dbl_setnegativeinfinity(dbl_valueA,dbl_valueB) 
  317.     Dallp1(dbl_valueA) = ((1<<DBL_EXP_LENGTH) | DBL_INFINITY_EXPONENT) 
  318.  << (32-(1+DBL_EXP_LENGTH)) ; 
  319.     Dallp2(dbl_valueB) = 0
  320. #define Dbl_setlargest(dbl_valueA,dbl_valueB,sign)
  321.     Dallp1(dbl_valueA) = ((unsigned int)sign << 31) |
  322.          ((DBL_EMAX+DBL_BIAS) << (32-(1+DBL_EXP_LENGTH))) |  
  323.  ((1 << (32-(1+DBL_EXP_LENGTH))) - 1 );
  324.     Dallp2(dbl_valueB) = 0xFFFFFFFF
  325.     
  326. /* The high bit is always zero so arithmetic or logical shifts will work. */
  327. #define Dbl_right_align(srcdstA,srcdstB,shift,extent)
  328.     if( shift >= 32 ) 
  329. {
  330. /* Big shift requires examining the portion shift off 
  331. the end to properly set inexact.  */
  332. if(shift < 64)
  333.     {
  334.     if(shift > 32)
  335. {
  336.         Variable_shift_double(Dallp1(srcdstA),Dallp2(srcdstB),
  337.  shift-32, Extall(extent));
  338.         if(Dallp2(srcdstB) << 64 - (shift)) Ext_setone_low(extent); 
  339.         }
  340.     else Extall(extent) = Dallp2(srcdstB);
  341.     Dallp2(srcdstB) = Dallp1(srcdstA) >> (shift - 32);
  342.     }
  343. else
  344.     {
  345.     Extall(extent) = Dallp1(srcdstA);
  346.     if(Dallp2(srcdstB)) Ext_setone_low(extent);
  347.     Dallp2(srcdstB) = 0;
  348.     }
  349. Dallp1(srcdstA) = 0;
  350. }
  351.     else
  352. {
  353. /* Small alignment is simpler.  Extension is easily set. */
  354. if (shift > 0)
  355.     {
  356.     Extall(extent) = Dallp2(srcdstB) << 32 - (shift);
  357.     Variable_shift_double(Dallp1(srcdstA),Dallp2(srcdstB),shift, 
  358.      Dallp2(srcdstB));
  359.     Dallp1(srcdstA) >>= shift;
  360.     }
  361. else Extall(extent) = 0;
  362. }
  363. /* 
  364.  * Here we need to shift the result right to correct for an overshift
  365.  * (due to the exponent becoming negative) during normalization.
  366.  */
  367. #define Dbl_fix_overshift(srcdstA,srcdstB,shift,extent)
  368.     Extall(extent) = Dallp2(srcdstB) << 32 - (shift);
  369.     Dallp2(srcdstB) = (Dallp1(srcdstA) << 32 - (shift)) |
  370. (Dallp2(srcdstB) >> (shift));
  371.     Dallp1(srcdstA) = Dallp1(srcdstA) >> shift
  372. #define Dbl_hiddenhigh3mantissa(dbl_value) Dhiddenhigh3mantissa(dbl_value)
  373. #define Dbl_hidden(dbl_value) Dhidden(dbl_value)
  374. #define Dbl_lowmantissap2(dbl_value) Dlowp2(dbl_value)
  375. /* The left argument is never smaller than the right argument */
  376. #define Dbl_subtract(lefta,leftb,righta,rightb,resulta,resultb)
  377.     if( Dallp2(rightb) > Dallp2(leftb) ) Dallp1(lefta)--;
  378.     Dallp2(resultb) = Dallp2(leftb) - Dallp2(rightb);
  379.     Dallp1(resulta) = Dallp1(lefta) - Dallp1(righta)
  380. /* Subtract right augmented with extension from left augmented with zeros and
  381.  * store into result and extension. */
  382. #define Dbl_subtract_withextension(lefta,leftb,righta,rightb,extent,resulta,resultb)
  383.     Dbl_subtract(lefta,leftb,righta,rightb,resulta,resultb);
  384.     if( (Extall(extent) = 0-Extall(extent)) )
  385.         {
  386.         if((Dallp2(resultb)--) == 0) Dallp1(resulta)--;
  387.         }
  388. #define Dbl_addition(lefta,leftb,righta,rightb,resulta,resultb)
  389.     /* If the sum of the low words is less than either source, then
  390.      * an overflow into the next word occurred. */
  391.     Dallp1(resulta) = Dallp1(lefta) + Dallp1(righta);
  392.     if((Dallp2(resultb) = Dallp2(leftb) + Dallp2(rightb)) < Dallp2(rightb)) 
  393. Dallp1(resulta)++
  394. #define Dbl_xortointp1(left,right,result)
  395.     result = Dallp1(left) XOR Dallp1(right)
  396. #define Dbl_xorfromintp1(left,right,result)
  397.     Dallp1(result) = left XOR Dallp1(right)
  398. #define Dbl_swap_lower(left,right)
  399.     Dallp2(left)  = Dallp2(left) XOR Dallp2(right);
  400.     Dallp2(right) = Dallp2(left) XOR Dallp2(right);
  401.     Dallp2(left)  = Dallp2(left) XOR Dallp2(right)
  402. /* Need to Initialize */
  403. #define Dbl_makequietnan(desta,destb)
  404.     Dallp1(desta) = ((DBL_EMAX+DBL_BIAS)+1)<< (32-(1+DBL_EXP_LENGTH))
  405.                  | (1<<(32-(1+DBL_EXP_LENGTH+2)));
  406.     Dallp2(destb) = 0
  407. #define Dbl_makesignalingnan(desta,destb)
  408.     Dallp1(desta) = ((DBL_EMAX+DBL_BIAS)+1)<< (32-(1+DBL_EXP_LENGTH))
  409.                  | (1<<(32-(1+DBL_EXP_LENGTH+1)));
  410.     Dallp2(destb) = 0
  411. #define Dbl_normalize(dbl_opndA,dbl_opndB,exponent)
  412. while(Dbl_iszero_hiddenhigh7mantissa(dbl_opndA)) {
  413. Dbl_leftshiftby8(dbl_opndA,dbl_opndB);
  414. exponent -= 8;
  415. }
  416. if(Dbl_iszero_hiddenhigh3mantissa(dbl_opndA)) {
  417. Dbl_leftshiftby4(dbl_opndA,dbl_opndB);
  418. exponent -= 4;
  419. }
  420. while(Dbl_iszero_hidden(dbl_opndA)) {
  421. Dbl_leftshiftby1(dbl_opndA,dbl_opndB);
  422. exponent -= 1;
  423. }
  424. #define Twoword_add(src1dstA,src1dstB,src2A,src2B)
  425. /* 
  426.  * want this macro to generate:
  427.  * ADD src1dstB,src2B,src1dstB;
  428.  * ADDC src1dstA,src2A,src1dstA;
  429.  */
  430. if ((src1dstB) + (src2B) < (src1dstB)) Dallp1(src1dstA)++; 
  431. Dallp1(src1dstA) += (src2A);
  432. Dallp2(src1dstB) += (src2B)
  433. #define Twoword_subtract(src1dstA,src1dstB,src2A,src2B)
  434. /* 
  435.  * want this macro to generate:
  436.  * SUB src1dstB,src2B,src1dstB;
  437.  * SUBB src1dstA,src2A,src1dstA;
  438.  */
  439. if ((src1dstB) < (src2B)) Dallp1(src1dstA)--;
  440. Dallp1(src1dstA) -= (src2A);
  441. Dallp2(src1dstB) -= (src2B)
  442. #define Dbl_setoverflow(resultA,resultB)
  443. /* set result to infinity or largest number */
  444. switch (Rounding_mode()) {
  445. case ROUNDPLUS:
  446. if (Dbl_isone_sign(resultA)) {
  447. Dbl_setlargestnegative(resultA,resultB); 
  448. }
  449. else {
  450. Dbl_setinfinitypositive(resultA,resultB); 
  451. }
  452. break;
  453. case ROUNDMINUS:
  454. if (Dbl_iszero_sign(resultA)) {
  455. Dbl_setlargestpositive(resultA,resultB); 
  456. }
  457. else {
  458. Dbl_setinfinitynegative(resultA,resultB); 
  459. }
  460. break;
  461. case ROUNDNEAREST:
  462. Dbl_setinfinity_exponentmantissa(resultA,resultB); 
  463. break;
  464. case ROUNDZERO:
  465. Dbl_setlargest_exponentmantissa(resultA,resultB); 
  466. }
  467. #define Dbl_denormalize(opndp1,opndp2,exponent,guard,sticky,inexact)
  468.     Dbl_clear_signexponent_set_hidden(opndp1);
  469.     if (exponent >= (1-DBL_P)) {
  470. if (exponent >= -31) {
  471.     guard = (Dallp2(opndp2) >> -exponent) & 1;
  472.     if (exponent < 0) sticky |= Dallp2(opndp2) << (32+exponent); 
  473.     if (exponent > -31) {
  474. Variable_shift_double(opndp1,opndp2,1-exponent,opndp2);
  475. Dallp1(opndp1) >>= 1-exponent;
  476.     }
  477.     else {
  478. Dallp2(opndp2) = Dallp1(opndp1);
  479. Dbl_setzerop1(opndp1);
  480.     }
  481. }
  482. else {
  483.     guard = (Dallp1(opndp1) >> -32-exponent) & 1;
  484.     if (exponent == -32) sticky |= Dallp2(opndp2);
  485.     else sticky |= (Dallp2(opndp2) | Dallp1(opndp1) << 64+exponent); 
  486.     Dallp2(opndp2) = Dallp1(opndp1) >> -31-exponent;
  487.     Dbl_setzerop1(opndp1);
  488. }
  489. inexact = guard | sticky;
  490.     }
  491.     else {
  492. guard = 0;
  493. sticky |= (Dallp1(opndp1) | Dallp2(opndp2));
  494. Dbl_setzero(opndp1,opndp2);
  495. inexact = sticky;
  496.     }
  497. /* 
  498.  * The fused multiply add instructions requires a double extended format,
  499.  * with 106 bits of mantissa.
  500.  */
  501. #define DBLEXT_THRESHOLD 106
  502. #define Dblext_setzero(valA,valB,valC,valD)
  503.     Dextallp1(valA) = 0; Dextallp2(valB) = 0;
  504.     Dextallp3(valC) = 0; Dextallp4(valD) = 0
  505. #define Dblext_isnotzero_mantissap3(valC) (Dextallp3(valC)!=0)
  506. #define Dblext_isnotzero_mantissap4(valD) (Dextallp3(valD)!=0)
  507. #define Dblext_isone_lowp2(val) (Dextlowp2(val)!=0)
  508. #define Dblext_isone_highp3(val) (Dexthighp3(val)!=0)
  509. #define Dblext_isnotzero_low31p3(val) (Dextlow31p3(val)!=0)
  510. #define Dblext_iszero(valA,valB,valC,valD) (Dextallp1(valA)==0 && 
  511.     Dextallp2(valB)==0 && Dextallp3(valC)==0 && Dextallp4(valD)==0)
  512. #define Dblext_copy(srca,srcb,srcc,srcd,desta,destb,destc,destd) 
  513.     Dextallp1(desta) = Dextallp4(srca);
  514.     Dextallp2(destb) = Dextallp4(srcb);
  515.     Dextallp3(destc) = Dextallp4(srcc);
  516.     Dextallp4(destd) = Dextallp4(srcd)
  517. #define Dblext_swap_lower(leftp2,leftp3,leftp4,rightp2,rightp3,rightp4)  
  518.     Dextallp2(leftp2)  = Dextallp2(leftp2) XOR Dextallp2(rightp2);  
  519.     Dextallp2(rightp2) = Dextallp2(leftp2) XOR Dextallp2(rightp2);  
  520.     Dextallp2(leftp2)  = Dextallp2(leftp2) XOR Dextallp2(rightp2);  
  521.     Dextallp3(leftp3)  = Dextallp3(leftp3) XOR Dextallp3(rightp3);  
  522.     Dextallp3(rightp3) = Dextallp3(leftp3) XOR Dextallp3(rightp3);  
  523.     Dextallp3(leftp3)  = Dextallp3(leftp3) XOR Dextallp3(rightp3);  
  524.     Dextallp4(leftp4)  = Dextallp4(leftp4) XOR Dextallp4(rightp4);  
  525.     Dextallp4(rightp4) = Dextallp4(leftp4) XOR Dextallp4(rightp4);  
  526.     Dextallp4(leftp4)  = Dextallp4(leftp4) XOR Dextallp4(rightp4)
  527. #define Dblext_setone_lowmantissap4(dbl_value) Deposit_dextlowp4(dbl_value,1)
  528. /* The high bit is always zero so arithmetic or logical shifts will work. */
  529. #define Dblext_right_align(srcdstA,srcdstB,srcdstC,srcdstD,shift) 
  530.   {int shiftamt, sticky;
  531.     shiftamt = shift % 32;
  532.     sticky = 0;
  533.     switch (shift/32) {
  534.      case 0: if (shiftamt > 0) {
  535.         sticky = Dextallp4(srcdstD) << 32 - (shiftamt); 
  536.                 Variable_shift_double(Dextallp3(srcdstC),
  537.  Dextallp4(srcdstD),shiftamt,Dextallp4(srcdstD));
  538.                 Variable_shift_double(Dextallp2(srcdstB),
  539.  Dextallp3(srcdstC),shiftamt,Dextallp3(srcdstC));
  540.                 Variable_shift_double(Dextallp1(srcdstA),
  541.  Dextallp2(srcdstB),shiftamt,Dextallp2(srcdstB));
  542.         Dextallp1(srcdstA) >>= shiftamt;
  543.      }
  544.      break;
  545.      case 1: if (shiftamt > 0) {
  546.                 sticky = (Dextallp3(srcdstC) << 31 - shiftamt) |
  547.  Dextallp4(srcdstD);
  548.                 Variable_shift_double(Dextallp2(srcdstB),
  549.  Dextallp3(srcdstC),shiftamt,Dextallp4(srcdstD));
  550.                 Variable_shift_double(Dextallp1(srcdstA),
  551.  Dextallp2(srcdstB),shiftamt,Dextallp3(srcdstC));
  552.      }
  553.      else {
  554. sticky = Dextallp4(srcdstD);
  555. Dextallp4(srcdstD) = Dextallp3(srcdstC);
  556. Dextallp3(srcdstC) = Dextallp2(srcdstB);
  557.      }
  558.      Dextallp2(srcdstB) = Dextallp1(srcdstA) >> shiftamt;
  559.      Dextallp1(srcdstA) = 0;
  560.      break;
  561.      case 2: if (shiftamt > 0) {
  562.                 sticky = (Dextallp2(srcdstB) << 31 - shiftamt) |
  563.  Dextallp3(srcdstC) | Dextallp4(srcdstD);
  564.                 Variable_shift_double(Dextallp1(srcdstA),
  565.  Dextallp2(srcdstB),shiftamt,Dextallp4(srcdstD));
  566.      }
  567.      else {
  568. sticky = Dextallp3(srcdstC) | Dextallp4(srcdstD);
  569. Dextallp4(srcdstD) = Dextallp2(srcdstB);
  570.      }
  571.      Dextallp3(srcdstC) = Dextallp1(srcdstA) >> shiftamt;
  572.      Dextallp1(srcdstA) = Dextallp2(srcdstB) = 0;
  573.      break;
  574.      case 3: if (shiftamt > 0) {
  575.                 sticky = (Dextallp1(srcdstA) << 31 - shiftamt) |
  576.  Dextallp2(srcdstB) | Dextallp3(srcdstC) |
  577.  Dextallp4(srcdstD);
  578.      }
  579.      else {
  580. sticky = Dextallp2(srcdstB) | Dextallp3(srcdstC) |
  581.     Dextallp4(srcdstD);
  582.      }
  583.      Dextallp4(srcdstD) = Dextallp1(srcdstA) >> shiftamt;
  584.      Dextallp1(srcdstA) = Dextallp2(srcdstB) = 0;
  585.      Dextallp3(srcdstC) = 0;
  586.      break;
  587.     }
  588.     if (sticky) Dblext_setone_lowmantissap4(srcdstD);
  589.   }
  590. /* The left argument is never smaller than the right argument */
  591. #define Dblext_subtract(lefta,leftb,leftc,leftd,righta,rightb,rightc,rightd,resulta,resultb,resultc,resultd) 
  592.     if( Dextallp4(rightd) > Dextallp4(leftd) ) 
  593. if( (Dextallp3(leftc)--) == 0)
  594.     if( (Dextallp2(leftb)--) == 0) Dextallp1(lefta)--;
  595.     Dextallp4(resultd) = Dextallp4(leftd) - Dextallp4(rightd);
  596.     if( Dextallp3(rightc) > Dextallp3(leftc) ) 
  597.         if( (Dextallp2(leftb)--) == 0) Dextallp1(lefta)--;
  598.     Dextallp3(resultc) = Dextallp3(leftc) - Dextallp3(rightc);
  599.     if( Dextallp2(rightb) > Dextallp2(leftb) ) Dextallp1(lefta)--; 
  600.     Dextallp2(resultb) = Dextallp2(leftb) - Dextallp2(rightb);
  601.     Dextallp1(resulta) = Dextallp1(lefta) - Dextallp1(righta)
  602. #define Dblext_addition(lefta,leftb,leftc,leftd,righta,rightb,rightc,rightd,resulta,resultb,resultc,resultd) 
  603.     /* If the sum of the low words is less than either source, then 
  604.      * an overflow into the next word occurred. */ 
  605.     if ((Dextallp4(resultd) = Dextallp4(leftd)+Dextallp4(rightd)) < 
  606. Dextallp4(rightd)) 
  607. if((Dextallp3(resultc) = Dextallp3(leftc)+Dextallp3(rightc)+1) <= 
  608.     Dextallp3(rightc)) 
  609.     if((Dextallp2(resultb) = Dextallp2(leftb)+Dextallp2(rightb)+1) 
  610.         <= Dextallp2(rightb))  
  611.     Dextallp1(resulta) = Dextallp1(lefta)+Dextallp1(righta)+1; 
  612.     else Dextallp1(resulta) = Dextallp1(lefta)+Dextallp1(righta); 
  613. else 
  614.     if ((Dextallp2(resultb) = Dextallp2(leftb)+Dextallp2(rightb)) < 
  615.         Dextallp2(rightb)) 
  616.     Dextallp1(resulta) = Dextallp1(lefta)+Dextallp1(righta)+1; 
  617.     else Dextallp1(resulta) = Dextallp1(lefta)+Dextallp1(righta); 
  618.     else 
  619. if ((Dextallp3(resultc) = Dextallp3(leftc)+Dextallp3(rightc)) < 
  620.     Dextallp3(rightc))  
  621.     if ((Dextallp2(resultb) = Dextallp2(leftb)+Dextallp2(rightb)+1) 
  622.         <= Dextallp2(rightb)) 
  623.     Dextallp1(resulta) = Dextallp1(lefta)+Dextallp1(righta)+1; 
  624.     else Dextallp1(resulta) = Dextallp1(lefta)+Dextallp1(righta); 
  625. else 
  626.     if ((Dextallp2(resultb) = Dextallp2(leftb)+Dextallp2(rightb)) < 
  627.         Dextallp2(rightb)) 
  628.     Dextallp1(resulta) = Dextallp1(lefta)+Dextallp1(righta)+1; 
  629.     else Dextallp1(resulta) = Dextallp1(lefta)+Dextallp1(righta)
  630. #define Dblext_arithrightshiftby1(srcdstA,srcdstB,srcdstC,srcdstD)
  631.     Shiftdouble(Dextallp3(srcdstC),Dextallp4(srcdstD),1,Dextallp4(srcdstD)); 
  632.     Shiftdouble(Dextallp2(srcdstB),Dextallp3(srcdstC),1,Dextallp3(srcdstC)); 
  633.     Shiftdouble(Dextallp1(srcdstA),Dextallp2(srcdstB),1,Dextallp2(srcdstB)); 
  634.     Dextallp1(srcdstA) = (int)Dextallp1(srcdstA) >> 1
  635.    
  636. #define Dblext_leftshiftby8(valA,valB,valC,valD) 
  637.     Shiftdouble(Dextallp1(valA),Dextallp2(valB),24,Dextallp1(valA)); 
  638.     Shiftdouble(Dextallp2(valB),Dextallp3(valC),24,Dextallp2(valB)); 
  639.     Shiftdouble(Dextallp3(valC),Dextallp4(valD),24,Dextallp3(valC)); 
  640.     Dextallp4(valD) <<= 8
  641. #define Dblext_leftshiftby4(valA,valB,valC,valD) 
  642.     Shiftdouble(Dextallp1(valA),Dextallp2(valB),28,Dextallp1(valA)); 
  643.     Shiftdouble(Dextallp2(valB),Dextallp3(valC),28,Dextallp2(valB)); 
  644.     Shiftdouble(Dextallp3(valC),Dextallp4(valD),28,Dextallp3(valC)); 
  645.     Dextallp4(valD) <<= 4
  646. #define Dblext_leftshiftby3(valA,valB,valC,valD) 
  647.     Shiftdouble(Dextallp1(valA),Dextallp2(valB),29,Dextallp1(valA)); 
  648.     Shiftdouble(Dextallp2(valB),Dextallp3(valC),29,Dextallp2(valB)); 
  649.     Shiftdouble(Dextallp3(valC),Dextallp4(valD),29,Dextallp3(valC)); 
  650.     Dextallp4(valD) <<= 3
  651. #define Dblext_leftshiftby2(valA,valB,valC,valD) 
  652.     Shiftdouble(Dextallp1(valA),Dextallp2(valB),30,Dextallp1(valA)); 
  653.     Shiftdouble(Dextallp2(valB),Dextallp3(valC),30,Dextallp2(valB)); 
  654.     Shiftdouble(Dextallp3(valC),Dextallp4(valD),30,Dextallp3(valC)); 
  655.     Dextallp4(valD) <<= 2
  656. #define Dblext_leftshiftby1(valA,valB,valC,valD) 
  657.     Shiftdouble(Dextallp1(valA),Dextallp2(valB),31,Dextallp1(valA)); 
  658.     Shiftdouble(Dextallp2(valB),Dextallp3(valC),31,Dextallp2(valB)); 
  659.     Shiftdouble(Dextallp3(valC),Dextallp4(valD),31,Dextallp3(valC)); 
  660.     Dextallp4(valD) <<= 1
  661. #define Dblext_rightshiftby4(valueA,valueB,valueC,valueD) 
  662.     Shiftdouble(Dextallp3(valueC),Dextallp4(valueD),4,Dextallp4(valueD)); 
  663.     Shiftdouble(Dextallp2(valueB),Dextallp3(valueC),4,Dextallp3(valueC)); 
  664.     Shiftdouble(Dextallp1(valueA),Dextallp2(valueB),4,Dextallp2(valueB)); 
  665.     Dextallp1(valueA) >>= 4
  666. #define Dblext_rightshiftby1(valueA,valueB,valueC,valueD) 
  667.     Shiftdouble(Dextallp3(valueC),Dextallp4(valueD),1,Dextallp4(valueD)); 
  668.     Shiftdouble(Dextallp2(valueB),Dextallp3(valueC),1,Dextallp3(valueC)); 
  669.     Shiftdouble(Dextallp1(valueA),Dextallp2(valueB),1,Dextallp2(valueB)); 
  670.     Dextallp1(valueA) >>= 1
  671. #define Dblext_xortointp1(left,right,result) Dbl_xortointp1(left,right,result)
  672. #define Dblext_xorfromintp1(left,right,result) 
  673. Dbl_xorfromintp1(left,right,result)
  674. #define Dblext_copytoint_exponentmantissap1(src,dest) 
  675. Dbl_copytoint_exponentmantissap1(src,dest)
  676. #define Dblext_ismagnitudeless(leftB,rightB,signlessleft,signlessright) 
  677. Dbl_ismagnitudeless(leftB,rightB,signlessleft,signlessright)
  678. #define Dbl_copyto_dblext(src1,src2,dest1,dest2,dest3,dest4) 
  679. Dextallp1(dest1) = Dallp1(src1); Dextallp2(dest2) = Dallp2(src2); 
  680. Dextallp3(dest3) = 0; Dextallp4(dest4) = 0
  681. #define Dblext_set_sign(dbl_value,sign)  Dbl_set_sign(dbl_value,sign)  
  682. #define Dblext_clear_signexponent_set_hidden(srcdst) 
  683. Dbl_clear_signexponent_set_hidden(srcdst) 
  684. #define Dblext_clear_signexponent(srcdst) Dbl_clear_signexponent(srcdst) 
  685. #define Dblext_clear_sign(srcdst) Dbl_clear_sign(srcdst) 
  686. #define Dblext_isone_hidden(dbl_value) Dbl_isone_hidden(dbl_value) 
  687. /*
  688.  * The Fourword_add() macro assumes that integers are 4 bytes in size.
  689.  * It will break if this is not the case.
  690.  */
  691. #define Fourword_add(src1dstA,src1dstB,src1dstC,src1dstD,src2A,src2B,src2C,src2D) 
  692. /* 
  693.  * want this macro to generate:
  694.  * ADD src1dstD,src2D,src1dstD;
  695.  * ADDC src1dstC,src2C,src1dstC;
  696.  * ADDC src1dstB,src2B,src1dstB;
  697.  * ADDC src1dstA,src2A,src1dstA;
  698.  */
  699. if ((unsigned int)(src1dstD += (src2D)) < (unsigned int)(src2D)) { 
  700.    if ((unsigned int)(src1dstC += (src2C) + 1) <=
  701.        (unsigned int)(src2C)) {
  702.      if ((unsigned int)(src1dstB += (src2B) + 1) <=
  703.  (unsigned int)(src2B)) src1dstA++;
  704.    }
  705.    else if ((unsigned int)(src1dstB += (src2B)) < 
  706.     (unsigned int)(src2B)) src1dstA++;
  707. }
  708. else {
  709.    if ((unsigned int)(src1dstC += (src2C)) <
  710.        (unsigned int)(src2C)) {
  711.       if ((unsigned int)(src1dstB += (src2B) + 1) <=
  712.   (unsigned int)(src2B)) src1dstA++;
  713.    }
  714.    else if ((unsigned int)(src1dstB += (src2B)) <
  715.     (unsigned int)(src2B)) src1dstA++;
  716. }
  717. src1dstA += (src2A)
  718. #define Dblext_denormalize(opndp1,opndp2,opndp3,opndp4,exponent,is_tiny) 
  719.   {int shiftamt, sticky;
  720.     is_tiny = TRUE;
  721.     if (exponent == 0 && (Dextallp3(opndp3) || Dextallp4(opndp4))) {
  722. switch (Rounding_mode()) {
  723. case ROUNDPLUS:
  724. if (Dbl_iszero_sign(opndp1)) {
  725. Dbl_increment(opndp1,opndp2);
  726. if (Dbl_isone_hiddenoverflow(opndp1))
  727. is_tiny = FALSE;
  728. Dbl_decrement(opndp1,opndp2);
  729. }
  730. break;
  731. case ROUNDMINUS:
  732. if (Dbl_isone_sign(opndp1)) {
  733. Dbl_increment(opndp1,opndp2);
  734. if (Dbl_isone_hiddenoverflow(opndp1))
  735. is_tiny = FALSE;
  736. Dbl_decrement(opndp1,opndp2);
  737. }
  738. break;
  739. case ROUNDNEAREST:
  740. if (Dblext_isone_highp3(opndp3) &&
  741.     (Dblext_isone_lowp2(opndp2) || 
  742.      Dblext_isnotzero_low31p3(opndp3))) {
  743. Dbl_increment(opndp1,opndp2);
  744. if (Dbl_isone_hiddenoverflow(opndp1))
  745. is_tiny = FALSE;
  746. Dbl_decrement(opndp1,opndp2);
  747. }
  748. break;
  749. }
  750.     }
  751.     Dblext_clear_signexponent_set_hidden(opndp1);
  752.     if (exponent >= (1-QUAD_P)) {
  753. shiftamt = (1-exponent) % 32;
  754. switch((1-exponent)/32) {
  755.   case 0: sticky = Dextallp4(opndp4) << 32-(shiftamt);
  756.   Variableshiftdouble(opndp3,opndp4,shiftamt,opndp4);
  757.   Variableshiftdouble(opndp2,opndp3,shiftamt,opndp3);
  758.   Variableshiftdouble(opndp1,opndp2,shiftamt,opndp2);
  759.   Dextallp1(opndp1) >>= shiftamt;
  760.   break;
  761.   case 1: sticky = (Dextallp3(opndp3) << 32-(shiftamt)) | 
  762.    Dextallp4(opndp4);
  763.   Variableshiftdouble(opndp2,opndp3,shiftamt,opndp4);
  764.   Variableshiftdouble(opndp1,opndp2,shiftamt,opndp3);
  765.   Dextallp2(opndp2) = Dextallp1(opndp1) >> shiftamt;
  766.   Dextallp1(opndp1) = 0;
  767.   break;
  768.   case 2: sticky = (Dextallp2(opndp2) << 32-(shiftamt)) |
  769.     Dextallp3(opndp3) | Dextallp4(opndp4);
  770.   Variableshiftdouble(opndp1,opndp2,shiftamt,opndp4);
  771.   Dextallp3(opndp3) = Dextallp1(opndp1) >> shiftamt;
  772.   Dextallp1(opndp1) = Dextallp2(opndp2) = 0;
  773.   break;
  774.   case 3: sticky = (Dextallp1(opndp1) << 32-(shiftamt)) |
  775.    Dextallp2(opndp2) | Dextallp3(opndp3) | 
  776. Dextallp4(opndp4);
  777.   Dextallp4(opndp4) = Dextallp1(opndp1) >> shiftamt;
  778.   Dextallp1(opndp1) = Dextallp2(opndp2) = 0;
  779.   Dextallp3(opndp3) = 0;
  780.   break;
  781. }
  782.     }
  783.     else {
  784. sticky = Dextallp1(opndp1) | Dextallp2(opndp2) |
  785.  Dextallp3(opndp3) | Dextallp4(opndp4);
  786. Dblext_setzero(opndp1,opndp2,opndp3,opndp4);
  787.     }
  788.     if (sticky) Dblext_setone_lowmantissap4(opndp4);
  789.     exponent = 0;
  790.   }