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

数学计算

开发平台:

Unix_Linux

  1. /* mpn_redc_2.  Set cp[] <- up[]/R^n mod mp[].  Clobber up[].
  2.    mp[] is n limbs; up[] is 2n limbs.
  3.    THIS IS AN INTERNAL FUNCTION WITH A MUTABLE INTERFACE.  IT IS ONLY
  4.    SAFE TO REACH THIS FUNCTION THROUGH DOCUMENTED INTERFACES.
  5. Copyright (C) 2000, 2001, 2002, 2004, 2008 Free Software Foundation, Inc.
  6. This file is part of the GNU MP Library.
  7. The GNU MP Library is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU Lesser General Public License as published by
  9. the Free Software Foundation; either version 3 of the License, or (at your
  10. option) any later version.
  11. The GNU MP Library is distributed in the hope that it will be useful, but
  12. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  13. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  14. License for more details.
  15. You should have received a copy of the GNU Lesser General Public License
  16. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  17. #include "gmp.h"
  18. #include "gmp-impl.h"
  19. #include "longlong.h"
  20. #if GMP_NAIL_BITS != 0
  21. you lose
  22. #endif
  23. /* For testing purposes, define our own mpn_addmul_2 if there is none already
  24.    available.  */
  25. #ifndef HAVE_NATIVE_mpn_addmul_2
  26. mp_limb_t
  27. mpn_addmul_2 (mp_ptr rp, mp_srcptr up, mp_size_t n, mp_srcptr vp)
  28. {
  29.   rp[n] = mpn_addmul_1 (rp, up, n, vp[0]);
  30.   return mpn_addmul_1 (rp + 1, up, n, vp[1]);
  31. }
  32. #endif
  33. #if defined (__ia64) && W_TYPE_SIZE == 64
  34. #define umul2low(ph, pl, uh, ul, vh, vl) 
  35.   do {
  36.     mp_limb_t _ph, _pl;
  37.     __asm__ ("xma.hu %0 = %3, %5, f0nt"
  38.      "xma.l %1 = %3, %5, f0nt"
  39.      ";;nt"
  40.      "xma.l %0 = %3, %4, %0nt"
  41.      ";;nt"
  42.      "xma.l %0 = %2, %5, %0"
  43.      : "=&f" (ph), "=&f" (pl)
  44.      : "f" (uh), "f" (ul), "f" (vh), "f" (vl));
  45.   } while (0)
  46. #endif
  47. #ifndef umul2low
  48. #define umul2low(ph, pl, uh, ul, vh, vl) 
  49.   do {
  50.     mp_limb_t _ph, _pl;
  51.     umul_ppmm (_ph, _pl, ul, vl);
  52.     (ph) = _ph + (ul) * (vh) + (uh) * (vl);
  53.     (pl) = _pl;
  54.   } while (0)
  55. #endif
  56. void
  57. mpn_redc_2 (mp_ptr rp, mp_ptr up, mp_srcptr mp, mp_size_t n, mp_srcptr mip)
  58. {
  59.   mp_limb_t q[2];
  60.   mp_size_t j;
  61.   mp_limb_t upn;
  62.   mp_limb_t cy;
  63.   ASSERT (n > 0);
  64.   ASSERT_MPN (up, 2*n);
  65.   if ((n & 1) != 0)
  66.     {
  67.       up[0] = mpn_addmul_1 (up, mp, n, (up[0] * mip[0]) & GMP_NUMB_MASK);
  68.       up++;
  69.     }
  70.   for (j = n - 2; j >= 0; j -= 2)
  71.     {
  72.       umul2low (q[1], q[0], mip[1], mip[0], up[1], up[0]);
  73.       upn = up[n]; /* mpn_addmul_2 overwrites this */
  74.       up[1] = mpn_addmul_2 (up, mp, n, q);
  75.       up[0] = up[n];
  76.       up[n] = upn;
  77.       up += 2;
  78.     }
  79.   cy = mpn_add_n (rp, up, up - n, n);
  80.   if (cy != 0)
  81.     mpn_sub_n (rp, rp, mp, n);
  82. }