mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-24 06:37:45 +01:00
* merged mpfr 3.0.0 and gmp 5.0.1 in buildtools trunk git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@37378 a95241bf-73f2-0310-859d-f6bbb57e9c96
88 lines
2.3 KiB
C
88 lines
2.3 KiB
C
/* mpn_sbpi1_bdiv_q -- schoolbook Hensel division with precomputed inverse,
|
|
returning quotient only.
|
|
|
|
Contributed to the GNU project by Niels Möller.
|
|
|
|
THE FUNCTIONS IN THIS FILE ARE INTERNAL FUNCTIONS WITH MUTABLE INTERFACES.
|
|
IT IS ONLY SAFE TO REACH THEM THROUGH DOCUMENTED INTERFACES. IN FACT, IT IS
|
|
ALMOST GUARANTEED THAT THEY'LL CHANGE OR DISAPPEAR IN A FUTURE GMP RELEASE.
|
|
|
|
Copyright 2005, 2006, 2009 Free Software Foundation, Inc.
|
|
|
|
This file is part of the GNU MP Library.
|
|
|
|
The GNU MP Library is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or (at your
|
|
option) any later version.
|
|
|
|
The GNU MP Library is distributed in the hope that it will be useful, but
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
|
License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. */
|
|
|
|
#include "gmp.h"
|
|
#include "gmp-impl.h"
|
|
|
|
|
|
/* Computes Q = N / D mod B^nn, destroys N.
|
|
|
|
D must be odd. dinv is (-D)^-1 mod B.
|
|
|
|
|
|
The straightforward way to compute Q is to cancel one limb at a time, using
|
|
|
|
qp[i] = D^{-1} * np[i] (mod B)
|
|
N -= B^i * qp[i] * D
|
|
|
|
But we prefer addition to subtraction, since mpn_addmul_1 is often faster
|
|
than mpn_submul_1. Q = - N / D can be computed by iterating
|
|
|
|
qp[i] = (-D)^{-1} * np[i] (mod B)
|
|
N += B^i * qp[i] * D
|
|
|
|
And then we flip the sign, -Q = (not Q) + 1. */
|
|
|
|
void
|
|
mpn_sbpi1_bdiv_q (mp_ptr qp,
|
|
mp_ptr np, mp_size_t nn,
|
|
mp_srcptr dp, mp_size_t dn,
|
|
mp_limb_t dinv)
|
|
{
|
|
mp_size_t i;
|
|
mp_limb_t cy, q;
|
|
|
|
ASSERT (dn > 0);
|
|
ASSERT (nn >= dn);
|
|
ASSERT ((dp[0] & 1) != 0);
|
|
|
|
for (i = nn - dn; i > 0; i--)
|
|
{
|
|
q = dinv * np[0];
|
|
qp[0] = ~q;
|
|
qp++;
|
|
cy = mpn_addmul_1 (np, dp, dn, q);
|
|
mpn_add_1 (np + dn, np + dn, i, cy);
|
|
ASSERT (np[0] == 0);
|
|
np++;
|
|
}
|
|
|
|
for (i = dn; i > 1; i--)
|
|
{
|
|
q = dinv * np[0];
|
|
qp[0] = ~q;
|
|
qp++;
|
|
mpn_addmul_1 (np, dp, i, q);
|
|
ASSERT (np[0] == 0);
|
|
np++;
|
|
}
|
|
|
|
/* Final limb */
|
|
q = dinv * np[0];
|
|
qp[0] = ~q;
|
|
mpn_add_1 (qp - nn + 1, qp - nn + 1, nn, 1);
|
|
}
|