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

数学计算

开发平台:

Unix_Linux

  1. /* Alpha mpn_divexact_1 -- mpn by limb exact division.
  2.    THE FUNCTIONS IN THIS FILE ARE FOR INTERNAL USE ONLY.  THEY'RE ALMOST
  3.    CERTAIN TO BE SUBJECT TO INCOMPATIBLE CHANGES OR DISAPPEAR COMPLETELY IN
  4.    FUTURE GNU MP RELEASES.
  5. Copyright 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
  6. This file is part of the GNU MP Library.
  7. The GNU MP Library is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU Lesser General Public License as published by
  9. the Free Software Foundation; either version 3 of the License, or (at your
  10. option) any later version.
  11. The GNU MP Library is distributed in the hope that it will be useful, but
  12. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  13. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  14. License for more details.
  15. You should have received a copy of the GNU Lesser General Public License
  16. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  17. #include "gmp.h"
  18. #include "gmp-impl.h"
  19. #include "longlong.h"
  20. /*      cycles/limb
  21.    EV4:    47.0
  22.    EV5:    30.0
  23.    EV6:    15.0
  24. */
  25. /* The dependent chain is as follows (the same as modexact), and this is
  26.    what the code runs as.
  27.        ev4    ev5   ev6
  28.         1      1     1    sub    y = x - h
  29.        23     13     7    mulq   q = y * inverse
  30.        23     15     7    umulh  h = high (q * d)
  31.        --     --    --
  32.        47     30    15
  33.    The time to load src[i+1] and establish x hides under the umulh latency.  */
  34. void
  35. mpn_divexact_1 (mp_ptr dst, mp_srcptr src, mp_size_t size, mp_limb_t divisor)
  36. {
  37.   mp_limb_t  inverse, lshift_mask, s, sr, s_next, c, h, x, y, q, dummy;
  38.   unsigned   rshift, lshift;
  39.   ASSERT (size >= 1);
  40.   ASSERT (divisor != 0);
  41.   ASSERT (MPN_SAME_OR_SEPARATE_P (dst, src, size));
  42.   ASSERT_MPN (src, size);
  43.   ASSERT_LIMB (divisor);
  44.   s_next = *src++;   /* src[0] */
  45.   rshift = 0;
  46.   lshift_mask = 0;
  47.   if ((divisor & 1) == 0)
  48.     {
  49.       count_trailing_zeros (rshift, divisor);
  50.       lshift_mask = MP_LIMB_T_MAX;
  51.       divisor >>= rshift;
  52.     }
  53.   binvert_limb (inverse, divisor);
  54.   lshift = 64 - rshift;
  55.   c = 0;
  56.   h = 0;
  57.   sr = s_next >> rshift;
  58.   size--;
  59.   if (LIKELY (size != 0))
  60.     {
  61.       do
  62.         {
  63.           s_next = *src++;      /* src[i+1] */
  64.           s = sr | ((s_next << lshift) & lshift_mask);
  65.           x = s - c;
  66.           c = s < c;
  67.           sr = s_next >> rshift;
  68.           y = x - h;
  69.           c += (x < h);
  70.           q = y * inverse;
  71.           *dst++ = q;
  72.           umul_ppmm (h, dummy, q, divisor);
  73.           size--;
  74.         }
  75.       while (size != 0);
  76.     }
  77.   x = sr - c;
  78.   y = x - h;
  79.   q = y * inverse;
  80.   *dst = q;         /* dst[size-1] */
  81. }