aorsmul.c
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:4k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. /* mpz_addmul, mpz_submul -- add or subtract multiple.
  2. Copyright 2001, 2004, 2005 Free Software Foundation, Inc.
  3. This file is part of the GNU MP Library.
  4. The GNU MP Library is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU Lesser General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or (at your
  7. option) any later version.
  8. The GNU MP Library is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  11. License for more details.
  12. You should have received a copy of the GNU Lesser General Public License
  13. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  14. #include "gmp.h"
  15. #include "gmp-impl.h"
  16. /* expecting x and y both with non-zero high limbs */
  17. #define mpn_cmp_twosizes_lt(xp,xsize, yp,ysize)                 
  18.   ((xsize) < (ysize)                                            
  19.    || ((xsize) == (ysize) && mpn_cmp (xp, yp, xsize) < 0))
  20. /* sub>=0 means an addmul w += x*y, sub<0 means a submul w -= x*y.
  21.    The signs of w, x and y are fully accounted for by each flipping "sub".
  22.    The sign of w is retained for the result, unless the absolute value
  23.    submul underflows, in which case it flips.  */
  24. static void __gmpz_aorsmul __GMP_PROTO ((REGPARM_3_1 (mpz_ptr w, mpz_srcptr x, mpz_srcptr y, mp_size_t sub))) REGPARM_ATTR (1);
  25. #define mpz_aorsmul(w,x,y,sub)  __gmpz_aorsmul (REGPARM_3_1 (w, x, y, sub))
  26. REGPARM_ATTR (1) static void
  27. mpz_aorsmul (mpz_ptr w, mpz_srcptr x, mpz_srcptr y, mp_size_t sub)
  28. {
  29.   mp_size_t  xsize, ysize, tsize, wsize, wsize_signed;
  30.   mp_ptr     wp, tp;
  31.   mp_limb_t  c, high;
  32.   TMP_DECL;
  33.   /* w unaffected if x==0 or y==0 */
  34.   xsize = SIZ(x);
  35.   ysize = SIZ(y);
  36.   if (xsize == 0 || ysize == 0)
  37.     return;
  38.   /* make x the bigger of the two */
  39.   if (ABS(ysize) > ABS(xsize))
  40.     {
  41.       MPZ_SRCPTR_SWAP (x, y);
  42.       MP_SIZE_T_SWAP (xsize, ysize);
  43.     }
  44.   sub ^= ysize;
  45.   ysize = ABS(ysize);
  46.   /* use mpn_addmul_1/mpn_submul_1 if possible */
  47.   if (ysize == 1)
  48.     {
  49.       mpz_aorsmul_1 (w, x, PTR(y)[0], sub);
  50.       return;
  51.     }
  52.   sub ^= xsize;
  53.   xsize = ABS(xsize);
  54.   wsize_signed = SIZ(w);
  55.   sub ^= wsize_signed;
  56.   wsize = ABS(wsize_signed);
  57.   tsize = xsize + ysize;
  58.   MPZ_REALLOC (w, MAX (wsize, tsize) + 1);
  59.   wp = PTR(w);
  60.   if (wsize_signed == 0)
  61.     {
  62.       /* Nothing to add to, just set w=x*y.  No w==x or w==y overlap here,
  63.          since we know x,y!=0 but w==0.  */
  64.       high = mpn_mul (wp, PTR(x),xsize, PTR(y),ysize);
  65.       tsize -= (high == 0);
  66.       SIZ(w) = (sub >= 0 ? tsize : -tsize);
  67.       return;
  68.     }
  69.   TMP_MARK;
  70.   tp = TMP_ALLOC_LIMBS (tsize);
  71.   high = mpn_mul (tp, PTR(x),xsize, PTR(y),ysize);
  72.   tsize -= (high == 0);
  73.   ASSERT (tp[tsize-1] != 0);
  74.   if (sub >= 0)
  75.     {
  76.       mp_srcptr up    = wp;
  77.       mp_size_t usize = wsize;
  78.       if (usize < tsize)
  79.         {
  80.           up    = tp;
  81.           usize = tsize;
  82.           tp    = wp;
  83.           tsize = wsize;
  84.           wsize = usize;
  85.         }
  86.       c = mpn_add (wp, up,usize, tp,tsize);
  87.       wp[wsize] = c;
  88.       wsize += (c != 0);
  89.     }
  90.   else
  91.     {
  92.       mp_srcptr up    = wp;
  93.       mp_size_t usize = wsize;
  94.       if (mpn_cmp_twosizes_lt (up,usize, tp,tsize))
  95.         {
  96.           up    = tp;
  97.           usize = tsize;
  98.           tp    = wp;
  99.           tsize = wsize;
  100.           wsize = usize;
  101.           wsize_signed = -wsize_signed;
  102.         }
  103.       ASSERT_NOCARRY (mpn_sub (wp, up,usize, tp,tsize));
  104.       wsize = usize;
  105.       MPN_NORMALIZE (wp, wsize);
  106.     }
  107.   SIZ(w) = (wsize_signed >= 0 ? wsize : -wsize);
  108.   TMP_FREE;
  109. }
  110. void
  111. mpz_addmul (mpz_ptr w, mpz_srcptr u, mpz_srcptr v)
  112. {
  113.   mpz_aorsmul (w, u, v, (mp_size_t) 0);
  114. }
  115. void
  116. mpz_submul (mpz_ptr w, mpz_srcptr u, mpz_srcptr v)
  117. {
  118.   mpz_aorsmul (w, u, v, (mp_size_t) -1);
  119. }