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

数学计算

开发平台:

Unix_Linux

  1. /* mpn_toom_eval_pm2rexp -- Evaluate a polynomial in +2^-k and -2^-k
  2.    Contributed to the GNU project by Marco Bodrato
  3.    THE FUNCTION IN THIS FILE IS INTERNAL WITH A MUTABLE INTERFACE.  IT IS ONLY
  4.    SAFE TO REACH IT THROUGH DOCUMENTED INTERFACES.  IN FACT, IT IS ALMOST
  5.    GUARANTEED THAT IT WILL CHANGE OR DISAPPEAR IN A FUTURE GNU MP RELEASE.
  6. Copyright 2009 Free Software Foundation, 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. #if HAVE_NATIVE_mpn_addlsh_n
  21. #define DO_mpn_addlsh_n(dst,src,n,s,ws) mpn_addlsh_n(dst,dst,src,n,s)
  22. #else
  23. static mp_limb_t
  24. DO_mpn_addlsh_n(mp_ptr dst, mp_srcptr src, mp_size_t n, unsigned int s, mp_ptr ws)
  25. {
  26. #if USE_MUL_1 && 0
  27.   return mpn_addmul_1(dst,src,n,CNST_LIMB(1) <<(s));
  28. #else
  29.   mp_limb_t __cy;
  30.   __cy = mpn_lshift(ws,src,n,s);
  31.   return    __cy + mpn_add_n(dst,dst,ws,n);
  32. #endif
  33. }
  34. #endif
  35. /* Evaluates a polynomial of degree k >= 3. */
  36. int
  37. mpn_toom_eval_pm2rexp (mp_ptr rp, mp_ptr rm,
  38.       unsigned int q, mp_srcptr ap, mp_size_t n, mp_size_t t,
  39.       unsigned int s, mp_ptr ws)
  40. {
  41.   unsigned int i;
  42.   int neg;
  43.   /* {ap,q*n+t} -> {rp,n+1} {rm,n+1} , with {ws, n+1}*/
  44.   ASSERT (n >= t);
  45.   ASSERT (s != 0); /* or _eval_pm1 should be used */
  46.   ASSERT (q > 1);
  47.   ASSERT (s*q < GMP_NUMB_BITS);
  48.   rp[n] = mpn_lshift(rp, ap, n, s*q);
  49.   ws[n] = mpn_lshift(ws, ap+n, n, s*(q-1));
  50.   if( (q & 1) != 0) {
  51.     ASSERT_NOCARRY(mpn_add(ws,ws,n+1,ap+n*q,t));
  52.     rp[n] += DO_mpn_addlsh_n(rp, ap+n*(q-1), n, s, rm);
  53.   } else {
  54.     ASSERT_NOCARRY(mpn_add(rp,rp,n+1,ap+n*q,t));
  55.   }
  56.   for(i=2; i<q-1; i++)
  57.   {
  58.     rp[n] += DO_mpn_addlsh_n(rp, ap+n*i, n, s*(q-i), rm);
  59.     i++;
  60.     ws[n] += DO_mpn_addlsh_n(ws, ap+n*i, n, s*(q-i), rm);
  61.   };
  62.   neg = (mpn_cmp (rp, ws, n + 1) < 0) ? ~0 : 0;
  63. #if HAVE_NATIVE_mpn_add_n_sub_n
  64.   if (neg)
  65.     mpn_add_n_sub_n (rp, rm, ws, rp, n + 1);
  66.   else
  67.     mpn_add_n_sub_n (rp, rm, rp, ws, n + 1);
  68. #else /* !HAVE_NATIVE_mpn_add_n_sub_n */
  69.   if (neg)
  70.     mpn_sub_n (rm, ws, rp, n + 1);
  71.   else
  72.     mpn_sub_n (rm, rp, ws, n + 1);
  73.   ASSERT_NOCARRY (mpn_add_n (rp, rp, ws, n + 1));
  74. #endif /* !HAVE_NATIVE_mpn_add_n_sub_n */
  75.   return neg;
  76. }