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

数学计算

开发平台:

Unix_Linux

  1. /* mpn_mod_1_1p (ap, n, b, cps)
  2.    Divide (ap,,n) by b.  Return the single-limb remainder.
  3.    Contributed to the GNU project by Torbjorn Granlund.
  4.    Based on a suggestion by Peter L. Montgomery.
  5.    THE FUNCTIONS IN THIS FILE ARE INTERNAL WITH MUTABLE INTERFACES.  IT IS ONLY
  6.    SAFE TO REACH THEM THROUGH DOCUMENTED INTERFACES.  IN FACT, IT IS ALMOST
  7.    GUARANTEED THAT THEY WILL CHANGE OR DISAPPEAR IN A FUTURE GNU MP RELEASE.
  8. Copyright 2008, 2009 Free Software Foundation, Inc.
  9. This file is part of the GNU MP Library.
  10. The GNU MP Library is free software; you can redistribute it and/or modify
  11. it under the terms of the GNU Lesser General Public License as published by
  12. the Free Software Foundation; either version 3 of the License, or (at your
  13. option) any later version.
  14. The GNU MP Library is distributed in the hope that it will be useful, but
  15. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  16. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  17. License for more details.
  18. You should have received a copy of the GNU Lesser General Public License
  19. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  20. #include "gmp.h"
  21. #include "gmp-impl.h"
  22. #include "longlong.h"
  23. void
  24. mpn_mod_1_1p_cps (mp_limb_t cps[4], mp_limb_t b)
  25. {
  26.   mp_limb_t bi;
  27.   mp_limb_t B1modb, B2modb;
  28.   int cnt;
  29.   count_leading_zeros (cnt, b);
  30.   b <<= cnt;
  31.   invert_limb (bi, b);
  32.   if (UNLIKELY (cnt == 0))
  33.     B1modb = -b;
  34.   else
  35.     B1modb = -b * ((bi >> (GMP_LIMB_BITS-cnt)) | (CNST_LIMB(1) << cnt));
  36.   ASSERT (B1modb <= b); /* NB: not fully reduced mod b */
  37.   udiv_rnd_preinv (B2modb, B1modb, b, bi);
  38.   cps[0] = bi;
  39.   cps[1] = cnt;
  40.   cps[2] = B1modb >> cnt;
  41.   cps[3] = B2modb >> cnt;
  42. }
  43. mp_limb_t
  44. mpn_mod_1_1p (mp_srcptr ap, mp_size_t n, mp_limb_t b, mp_limb_t bmodb[4])
  45. {
  46.   mp_limb_t rh, rl, bi, q, ph, pl, r;
  47.   mp_limb_t B1modb, B2modb;
  48.   mp_size_t i;
  49.   int cnt;
  50.   mp_limb_t mask;
  51.   ASSERT (n >= 2); /* fix tuneup.c if this is changed */
  52.   B1modb = bmodb[2];
  53.   B2modb = bmodb[3];
  54.   umul_ppmm (ph, pl, ap[n - 1], B1modb);
  55.   add_ssaaaa (rh, rl, ph, pl, 0, ap[n - 2]);
  56.   for (i = n - 3; i >= 0; i -= 1)
  57.     {
  58.       /* rr = ap[i] < B
  59.     + LO(rr)  * (B mod b) <= (B-1)(b-1)
  60.     + HI(rr)  * (B^2 mod b) <= (B-1)(b-1)
  61.       */
  62.       umul_ppmm (ph, pl, rl, B1modb);
  63.       add_ssaaaa (ph, pl, ph, pl, 0, ap[i]);
  64.       umul_ppmm (rh, rl, rh, B2modb);
  65.       add_ssaaaa (rh, rl, rh, rl, ph, pl);
  66.     }
  67.   bi = bmodb[0];
  68.   cnt = bmodb[1];
  69.   if (LIKELY (cnt != 0))
  70.     rh = (rh << cnt) | (rl >> (GMP_LIMB_BITS - cnt));
  71.   mask = -(mp_limb_t) (rh >= b);
  72.   rh -= mask & b;
  73.   udiv_qrnnd_preinv (q, r, rh, rl << cnt, b, bi);
  74.   return r >> cnt;
  75. }