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

数学计算

开发平台:

Unix_Linux

  1. /* mpn_dcpi1_divappr_q -- divide-and-conquer division, returning approximate
  2.    quotient.  The quotient returned is either correct, or one too large.
  3.    Contributed to the GNU project by Torbjorn Granlund.
  4.    THE FUNCTIONS IN THIS FILE ARE INTERNAL WITH MUTABLE INTERFACES.  IT IS ONLY
  5.    SAFE TO REACH THEM THROUGH DOCUMENTED INTERFACES.  IN FACT, IT IS ALMOST
  6.    GUARANTEED THAT THEY WILL CHANGE OR DISAPPEAR IN A FUTURE GMP RELEASE.
  7. Copyright 2006, 2007, 2009, 2010 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_dcpi1_divappr_q_n (mp_ptr qp, mp_ptr np, mp_srcptr dp, mp_size_t n,
  24.        gmp_pi1_t *dinv, mp_ptr tp)
  25. {
  26.   mp_size_t lo, hi;
  27.   mp_limb_t cy, qh, ql;
  28.   lo = n >> 1; /* floor(n/2) */
  29.   hi = n - lo; /* ceil(n/2) */
  30.   if (BELOW_THRESHOLD (hi, DC_DIV_QR_THRESHOLD))
  31.     qh = mpn_sbpi1_div_qr (qp + lo, np + 2 * lo, 2 * hi, dp + lo, hi, dinv->inv32);
  32.   else
  33.     qh = mpn_dcpi1_div_qr_n (qp + lo, np + 2 * lo, dp + lo, hi, dinv, tp);
  34.   mpn_mul (tp, qp + lo, hi, dp, lo);
  35.   cy = mpn_sub_n (np + lo, np + lo, tp, n);
  36.   if (qh != 0)
  37.     cy += mpn_sub_n (np + n, np + n, dp, lo);
  38.   while (cy != 0)
  39.     {
  40.       qh -= mpn_sub_1 (qp + lo, qp + lo, hi, 1);
  41.       cy -= mpn_add_n (np + lo, np + lo, dp, n);
  42.     }
  43.   if (BELOW_THRESHOLD (lo, DC_DIVAPPR_Q_THRESHOLD))
  44.     ql = mpn_sbpi1_divappr_q (qp, np + hi, 2 * lo, dp + hi, lo, dinv->inv32);
  45.   else
  46.     ql = mpn_dcpi1_divappr_q_n (qp, np + hi, dp + hi, lo, dinv, tp);
  47.   if (UNLIKELY (ql != 0))
  48.     {
  49.       mp_size_t i;
  50.       for (i = 0; i < lo; i++)
  51. qp[i] = GMP_NUMB_MASK;
  52.     }
  53.   return qh;
  54. }
  55. mp_limb_t
  56. mpn_dcpi1_divappr_q (mp_ptr qp, mp_ptr np, mp_size_t nn,
  57.      mp_srcptr dp, mp_size_t dn, gmp_pi1_t *dinv)
  58. {
  59.   mp_size_t qn;
  60.   mp_limb_t qh, cy, qsave;
  61.   mp_ptr tp;
  62.   TMP_DECL;
  63.   TMP_MARK;
  64.   ASSERT (dn >= 6);
  65.   ASSERT (nn > dn);
  66.   ASSERT (dp[dn-1] & GMP_NUMB_HIGHBIT);
  67.   qn = nn - dn;
  68.   qp += qn;
  69.   np += nn;
  70.   dp += dn;
  71.   if (qn >= dn)
  72.     {
  73.       qn++; /* pretend we'll need an extra limb */
  74.       /* Reduce qn mod dn without division, optimizing small operations.  */
  75.       do
  76. qn -= dn;
  77.       while (qn > dn);
  78.       qp -= qn; /* point at low limb of next quotient block */
  79.       np -= qn; /* point in the middle of partial remainder */
  80.       tp = TMP_SALLOC_LIMBS (dn);
  81.       /* Perform the typically smaller block first.  */
  82.       if (qn == 1)
  83. {
  84.   mp_limb_t q, n2, n1, n0, d1, d0;
  85.   /* Handle qh up front, for simplicity. */
  86.   qh = mpn_cmp (np - dn + 1, dp - dn, dn) >= 0;
  87.   if (qh)
  88.     ASSERT_NOCARRY (mpn_sub_n (np - dn + 1, np - dn + 1, dp - dn, dn));
  89.   /* A single iteration of schoolbook: One 3/2 division,
  90.      followed by the bignum update and adjustment. */
  91.   n2 = np[0];
  92.   n1 = np[-1];
  93.   n0 = np[-2];
  94.   d1 = dp[-1];
  95.   d0 = dp[-2];
  96.   ASSERT (n2 < d1 || (n2 == d1 && n1 <= d0));
  97.   if (UNLIKELY (n2 == d1) && n1 == d0)
  98.     {
  99.       q = GMP_NUMB_MASK;
  100.       cy = mpn_submul_1 (np - dn, dp - dn, dn, q);
  101.       ASSERT (cy == n2);
  102.     }
  103.   else
  104.     {
  105.       udiv_qr_3by2 (q, n1, n0, n2, n1, n0, d1, d0, dinv->inv32);
  106.       if (dn > 2)
  107. {
  108.   mp_limb_t cy, cy1;
  109.   cy = mpn_submul_1 (np - dn, dp - dn, dn - 2, q);
  110.   cy1 = n0 < cy;
  111.   n0 = (n0 - cy) & GMP_NUMB_MASK;
  112.   cy = n1 < cy1;
  113.   n1 = (n1 - cy1) & GMP_NUMB_MASK;
  114.   np[-2] = n0;
  115.   if (UNLIKELY (cy != 0))
  116.     {
  117.       n1 += d1 + mpn_add_n (np - dn, np - dn, dp - dn, dn - 1);
  118.       qh -= (q == 0);
  119.       q = (q - 1) & GMP_NUMB_MASK;
  120.     }
  121. }
  122.       else
  123. np[-2] = n0;
  124.       np[-1] = n1;
  125.     }
  126.   qp[0] = q;
  127. }
  128.       else
  129. {
  130.   if (qn == 2)
  131.     qh = mpn_divrem_2 (qp, 0L, np - 2, 4, dp - 2);
  132.   else if (BELOW_THRESHOLD (qn, DC_DIV_QR_THRESHOLD))
  133.     qh = mpn_sbpi1_div_qr (qp, np - qn, 2 * qn, dp - qn, qn, dinv->inv32);
  134.   else
  135.     qh = mpn_dcpi1_div_qr_n (qp, np - qn, dp - qn, qn, dinv, tp);
  136.   if (qn != dn)
  137.     {
  138.       if (qn > dn - qn)
  139. mpn_mul (tp, qp, qn, dp - dn, dn - qn);
  140.       else
  141. mpn_mul (tp, dp - dn, dn - qn, qp, qn);
  142.       cy = mpn_sub_n (np - dn, np - dn, tp, dn);
  143.       if (qh != 0)
  144. cy += mpn_sub_n (np - dn + qn, np - dn + qn, dp - dn, dn - qn);
  145.       while (cy != 0)
  146. {
  147.   qh -= mpn_sub_1 (qp, qp, qn, 1);
  148.   cy -= mpn_add_n (np - dn, np - dn, dp - dn, dn);
  149. }
  150.     }
  151. }
  152.       qn = nn - dn - qn + 1;
  153.       while (qn > dn)
  154. {
  155.   qp -= dn;
  156.   np -= dn;
  157.   mpn_dcpi1_div_qr_n (qp, np - dn, dp - dn, dn, dinv, tp);
  158.   qn -= dn;
  159. }
  160.       /* Since we pretended we'd need an extra quotient limb before, we now
  161.  have made sure the code above left just dn-1=qn quotient limbs to
  162.  develop.  Develop that plus a guard limb. */
  163.       qn--;
  164.       qp -= qn;
  165.       np -= dn;
  166.       qsave = qp[qn];
  167.       mpn_dcpi1_divappr_q_n (qp, np - dn, dp - dn, dn, dinv, tp);
  168.       MPN_COPY_INCR (qp, qp + 1, qn);
  169.       qp[qn] = qsave;
  170.     }
  171.   else    /* (qn < dn) */
  172.     {
  173.       mp_ptr q2p;
  174. #if 0 /* not possible since we demand nn > dn */
  175.       if (qn == 0)
  176. {
  177.   qh = mpn_cmp (np - dn, dp - dn, dn) >= 0;
  178.   if (qh)
  179.     mpn_sub_n (np - dn, np - dn, dp - dn, dn);
  180.   TMP_FREE;
  181.   return qh;
  182. }
  183. #endif
  184.       qp -= qn; /* point at low limb of next quotient block */
  185.       np -= qn; /* point in the middle of partial remainder */
  186.       q2p = TMP_SALLOC_LIMBS (qn + 1);
  187.       /* Should we at all check DC_DIVAPPR_Q_THRESHOLD here, or reply on
  188.  callers not to be silly?  */
  189.       if (BELOW_THRESHOLD (qn, DC_DIVAPPR_Q_THRESHOLD))
  190. {
  191.   qh = mpn_sbpi1_divappr_q (q2p, np - qn - 2, 2 * (qn + 1),
  192.     dp - (qn + 1), qn + 1, dinv->inv32);
  193. }
  194.       else
  195. {
  196.   /* It is tempting to use qp for recursive scratch and put quotient in
  197.      tp, but the recursive scratch needs one limb too many.  */
  198.   tp = TMP_SALLOC_LIMBS (qn + 1);
  199.   qh = mpn_dcpi1_divappr_q_n (q2p, np - qn - 2, dp - (qn + 1), qn + 1, dinv, tp);
  200. }
  201.       MPN_COPY (qp, q2p + 1, qn);
  202.     }
  203.   TMP_FREE;
  204.   return qh;
  205. }