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

数学计算

开发平台:

Unix_Linux

  1. /* mpn_sbpi1_div_qr -- Schoolbook division using the M鰈ler-Granlund 3/2
  2.    division algorithm.
  3.    Contributed to the GNU project by Torbjorn Granlund.
  4.    THE FUNCTION IN THIS FILE IS INTERNAL WITH A MUTABLE INTERFACE.  IT IS ONLY
  5.    SAFE TO REACH IT THROUGH DOCUMENTED INTERFACES.  IN FACT, IT IS ALMOST
  6.    GUARANTEED THAT IT WILL CHANGE OR DISAPPEAR IN A FUTURE GMP RELEASE.
  7. Copyright 2007, 2009 Free Software Foundation, Inc.
  8. This file is part of the GNU MP Library.
  9. The GNU MP Library is free software; you can redistribute it and/or modify
  10. it under the terms of the GNU Lesser General Public License as published by
  11. the Free Software Foundation; either version 3 of the License, or (at your
  12. option) any later version.
  13. The GNU MP Library is distributed in the hope that it will be useful, but
  14. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  15. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  16. License for more details.
  17. You should have received a copy of the GNU Lesser General Public License
  18. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  19. #include "gmp.h"
  20. #include "gmp-impl.h"
  21. #include "longlong.h"
  22. mp_limb_t
  23. mpn_sbpi1_div_qr (mp_ptr qp,
  24.   mp_ptr np, mp_size_t nn,
  25.   mp_srcptr dp, mp_size_t dn,
  26.   mp_limb_t dinv)
  27. {
  28.   mp_limb_t qh;
  29.   mp_size_t i;
  30.   mp_limb_t n1, n0;
  31.   mp_limb_t d1, d0;
  32.   mp_limb_t cy, cy1;
  33.   mp_limb_t q;
  34.   ASSERT (dn > 2);
  35.   ASSERT (nn >= dn);
  36.   ASSERT ((dp[dn-1] & GMP_NUMB_HIGHBIT) != 0);
  37.   np += nn;
  38.   qh = mpn_cmp (np - dn, dp, dn) >= 0;
  39.   if (qh != 0)
  40.     mpn_sub_n (np - dn, np - dn, dp, dn);
  41.   qp += nn - dn;
  42.   dn -= 2; /* offset dn by 2 for main division loops,
  43.    saving two iterations in mpn_submul_1.  */
  44.   d1 = dp[dn + 1];
  45.   d0 = dp[dn + 0];
  46.   np -= 2;
  47.   n1 = np[1];
  48.   for (i = nn - (dn + 2); i > 0; i--)
  49.     {
  50.       np--;
  51.       if (UNLIKELY (n1 == d1) && np[1] == d0)
  52. {
  53.   q = GMP_NUMB_MASK;
  54.   mpn_submul_1 (np - dn, dp, dn + 2, q);
  55.   n1 = np[1]; /* update n1, last loop's value will now be invalid */
  56. }
  57.       else
  58. {
  59.   udiv_qr_3by2 (q, n1, n0, n1, np[1], np[0], d1, d0, dinv);
  60.   cy = mpn_submul_1 (np - dn, dp, dn, q);
  61.   cy1 = n0 < cy;
  62.   n0 = (n0 - cy) & GMP_NUMB_MASK;
  63.   cy = n1 < cy1;
  64.   n1 = (n1 - cy1) & GMP_NUMB_MASK;
  65.   np[0] = n0;
  66.   if (UNLIKELY (cy != 0))
  67.     {
  68.       n1 += d1 + mpn_add_n (np - dn, np - dn, dp, dn + 1);
  69.       q--;
  70.     }
  71. }
  72.       *--qp = q;
  73.     }
  74.   np[1] = n1;
  75.   return qh;
  76. }