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

数学计算

开发平台:

Unix_Linux

  1. /* mpn_addmul_1 -- multiply the N long limb vector pointed to by UP by VL,
  2.    add the N least significant limbs of the product to the limb vector
  3.    pointed to by RP.  Return the most significant limb of the product,
  4.    adjusted for carry-out from the addition.
  5. Copyright 1992, 1993, 1994, 1996, 2000, 2002, 2004 Free Software Foundation,
  6. Inc.
  7. This file is part of the GNU MP Library.
  8. The GNU MP Library is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU Lesser General Public License as published by
  10. the Free Software Foundation; either version 3 of the License, or (at your
  11. option) any later version.
  12. The GNU MP Library is distributed in the hope that it will be useful, but
  13. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  14. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  15. License for more details.
  16. You should have received a copy of the GNU Lesser General Public License
  17. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  18. #include "gmp.h"
  19. #include "gmp-impl.h"
  20. #include "longlong.h"
  21. #if GMP_NAIL_BITS == 0
  22. mp_limb_t
  23. mpn_addmul_1 (mp_ptr rp, mp_srcptr up, mp_size_t n, mp_limb_t vl)
  24. {
  25.   mp_limb_t ul, cl, hpl, lpl, rl;
  26.   ASSERT (n >= 1);
  27.   ASSERT (MPN_SAME_OR_SEPARATE_P (rp, up, n));
  28.   cl = 0;
  29.   do
  30.     {
  31.       ul = *up++;
  32.       umul_ppmm (hpl, lpl, ul, vl);
  33.       lpl += cl;
  34.       cl = (lpl < cl) + hpl;
  35.       rl = *rp;
  36.       lpl = rl + lpl;
  37.       cl += lpl < rl;
  38.       *rp++ = lpl;
  39.     }
  40.   while (--n != 0);
  41.   return cl;
  42. }
  43. #endif
  44. #if GMP_NAIL_BITS == 1
  45. mp_limb_t
  46. mpn_addmul_1 (mp_ptr rp, mp_srcptr up, mp_size_t n, mp_limb_t vl)
  47. {
  48.   mp_limb_t shifted_vl, ul, rl, lpl, hpl, prev_hpl, cl, xl, c1, c2, c3;
  49.   ASSERT (n >= 1);
  50.   ASSERT (MPN_SAME_OR_SEPARATE_P (rp, up, n));
  51.   ASSERT_MPN (rp, n);
  52.   ASSERT_MPN (up, n);
  53.   ASSERT_LIMB (vl);
  54.   shifted_vl = vl << GMP_NAIL_BITS;
  55.   cl = 0;
  56.   prev_hpl = 0;
  57.   do
  58.     {
  59.       ul = *up++;
  60.       rl = *rp;
  61.       umul_ppmm (hpl, lpl, ul, shifted_vl);
  62.       lpl >>= GMP_NAIL_BITS;
  63.       ADDC_LIMB (c1, xl, prev_hpl, lpl);
  64.       ADDC_LIMB (c2, xl, xl, rl);
  65.       ADDC_LIMB (c3, xl, xl, cl);
  66.       cl = c1 + c2 + c3;
  67.       *rp++ = xl;
  68.       prev_hpl = hpl;
  69.     }
  70.   while (--n != 0);
  71.   return prev_hpl + cl;
  72. }
  73. #endif
  74. #if GMP_NAIL_BITS >= 2
  75. mp_limb_t
  76. mpn_addmul_1 (mp_ptr rp, mp_srcptr up, mp_size_t n, mp_limb_t vl)
  77. {
  78.   mp_limb_t shifted_vl, ul, rl, lpl, hpl, prev_hpl, xw, cl, xl;
  79.   ASSERT (n >= 1);
  80.   ASSERT (MPN_SAME_OR_SEPARATE_P (rp, up, n));
  81.   ASSERT_MPN (rp, n);
  82.   ASSERT_MPN (up, n);
  83.   ASSERT_LIMB (vl);
  84.   shifted_vl = vl << GMP_NAIL_BITS;
  85.   cl = 0;
  86.   prev_hpl = 0;
  87.   do
  88.     {
  89.       ul = *up++;
  90.       rl = *rp;
  91.       umul_ppmm (hpl, lpl, ul, shifted_vl);
  92.       lpl >>= GMP_NAIL_BITS;
  93.       xw = prev_hpl + lpl + rl + cl;
  94.       cl = xw >> GMP_NUMB_BITS;
  95.       xl = xw & GMP_NUMB_MASK;
  96.       *rp++ = xl;
  97.       prev_hpl = hpl;
  98.     }
  99.   while (--n != 0);
  100.   return prev_hpl + cl;
  101. }
  102. #endif