Blame mpn/generic/redc_n.c

Packit 5c3484
/* mpn_redc_n.  Set rp[] <- up[]/R^n mod mp[].  Clobber up[].
Packit 5c3484
   mp[] is n limbs; up[] is 2n limbs, the inverse ip[] is n limbs.
Packit 5c3484
Packit 5c3484
   THIS IS AN INTERNAL FUNCTION WITH A MUTABLE INTERFACE.  IT IS ONLY
Packit 5c3484
   SAFE TO REACH THIS FUNCTION THROUGH DOCUMENTED INTERFACES.
Packit 5c3484
Packit 5c3484
Copyright 2009, 2012 Free Software Foundation, Inc.
Packit 5c3484
Packit 5c3484
This file is part of the GNU MP Library.
Packit 5c3484
Packit 5c3484
The GNU MP Library is free software; you can redistribute it and/or modify
Packit 5c3484
it under the terms of either:
Packit 5c3484
Packit 5c3484
  * the GNU Lesser General Public License as published by the Free
Packit 5c3484
    Software Foundation; either version 3 of the License, or (at your
Packit 5c3484
    option) any later version.
Packit 5c3484
Packit 5c3484
or
Packit 5c3484
Packit 5c3484
  * the GNU General Public License as published by the Free Software
Packit 5c3484
    Foundation; either version 2 of the License, or (at your option) any
Packit 5c3484
    later version.
Packit 5c3484
Packit 5c3484
or both in parallel, as here.
Packit 5c3484
Packit 5c3484
The GNU MP Library is distributed in the hope that it will be useful, but
Packit 5c3484
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
Packit 5c3484
or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
Packit 5c3484
for more details.
Packit 5c3484
Packit 5c3484
You should have received copies of the GNU General Public License and the
Packit 5c3484
GNU Lesser General Public License along with the GNU MP Library.  If not,
Packit 5c3484
see https://www.gnu.org/licenses/.  */
Packit 5c3484
Packit 5c3484
#include "gmp.h"
Packit 5c3484
#include "gmp-impl.h"
Packit 5c3484
Packit 5c3484
/*
Packit 5c3484
  TODO
Packit 5c3484
Packit 5c3484
  * We assume mpn_mulmod_bnm1 is always faster than plain mpn_mul_n (or a
Packit 5c3484
    future mpn_mulhi) for the range we will be called.  Follow up that
Packit 5c3484
    assumption.
Packit 5c3484
Packit 5c3484
  * Decrease scratch usage.
Packit 5c3484
Packit 5c3484
  * Consider removing the residue canonicalisation.
Packit 5c3484
*/
Packit 5c3484
Packit 5c3484
void
Packit 5c3484
mpn_redc_n (mp_ptr rp, mp_ptr up, mp_srcptr mp, mp_size_t n, mp_srcptr ip)
Packit 5c3484
{
Packit 5c3484
  mp_ptr xp, yp, scratch;
Packit 5c3484
  mp_limb_t cy;
Packit 5c3484
  mp_size_t rn;
Packit 5c3484
  TMP_DECL;
Packit 5c3484
  TMP_MARK;
Packit 5c3484
Packit 5c3484
  ASSERT (n > 8);
Packit 5c3484
Packit 5c3484
  rn = mpn_mulmod_bnm1_next_size (n);
Packit 5c3484
Packit 5c3484
  scratch = TMP_ALLOC_LIMBS (n + rn + mpn_mulmod_bnm1_itch (rn, n, n));
Packit 5c3484
Packit 5c3484
  xp = scratch;
Packit 5c3484
  mpn_mullo_n (xp, up, ip, n);
Packit 5c3484
Packit 5c3484
  yp = scratch + n;
Packit 5c3484
  mpn_mulmod_bnm1 (yp, rn, xp, n, mp, n, scratch + n + rn);
Packit 5c3484
Packit 5c3484
  ASSERT_ALWAYS (2 * n > rn);				/* could handle this */
Packit 5c3484
Packit 5c3484
  cy = mpn_sub_n (yp + rn, yp, up, 2*n - rn);		/* undo wrap around */
Packit 5c3484
  MPN_DECR_U (yp + 2*n - rn, rn, cy);
Packit 5c3484
Packit 5c3484
  cy = mpn_sub_n (rp, up + n, yp + n, n);
Packit 5c3484
  if (cy != 0)
Packit 5c3484
    mpn_add_n (rp, rp, mp, n);
Packit 5c3484
Packit 5c3484
  TMP_FREE;
Packit 5c3484
}