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

数学计算

开发平台:

Unix_Linux

  1. /* Cray PVP/IEEE mpn_mul_1 -- multiply a limb vector with a limb and store the
  2.    result in a second limb vector.
  3. Copyright 2000, 2001 Free Software Foundation, Inc.
  4. This file is part of the GNU MP Library.
  5. The GNU MP Library is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU Lesser General Public License as published by
  7. the Free Software Foundation; either version 3 of the License, or (at your
  8. option) any later version.
  9. The GNU MP Library is distributed in the hope that it will be useful, but
  10. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  12. License for more details.
  13. You should have received a copy of the GNU Lesser General Public License
  14. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  15. /* This code runs at 5 cycles/limb on a T90.  That would probably
  16.    be hard to improve upon, even with assembly code.  */
  17. #include <intrinsics.h>
  18. #include "gmp.h"
  19. #include "gmp-impl.h"
  20. mp_limb_t
  21. mpn_mul_1 (mp_ptr rp, mp_srcptr up, mp_size_t n, mp_limb_t vl)
  22. {
  23.   mp_limb_t cy[n];
  24.   mp_limb_t a, b, r, s0, s1, c0, c1;
  25.   mp_size_t i;
  26.   int more_carries;
  27.   if (up == rp)
  28.     {
  29.       /* The algorithm used below cannot handle overlap.  Handle it here by
  30.  making a temporary copy of the source vector, then call ourselves.  */
  31.       mp_limb_t xp[n];
  32.       MPN_COPY (xp, up, n);
  33.       return mpn_mul_1 (rp, xp, n, vl);
  34.     }
  35.   a = up[0] * vl;
  36.   rp[0] = a;
  37.   cy[0] = 0;
  38.   /* Main multiply loop.  Generate a raw accumulated output product in rp[]
  39.      and a carry vector in cy[].  */
  40. #pragma _CRI ivdep
  41.   for (i = 1; i < n; i++)
  42.     {
  43.       a = up[i] * vl;
  44.       b = _int_mult_upper (up[i - 1], vl);
  45.       s0 = a + b;
  46.       c0 = ((a & b) | ((a | b) & ~s0)) >> 63;
  47.       rp[i] = s0;
  48.       cy[i] = c0;
  49.     }
  50.   /* Carry add loop.  Add the carry vector cy[] to the raw sum rp[] and
  51.      store the new sum back to rp[0].  */
  52.   more_carries = 0;
  53. #pragma _CRI ivdep
  54.   for (i = 2; i < n; i++)
  55.     {
  56.       r = rp[i];
  57.       c0 = cy[i - 1];
  58.       s0 = r + c0;
  59.       rp[i] = s0;
  60.       c0 = (r & ~s0) >> 63;
  61.       more_carries += c0;
  62.     }
  63.   /* If that second loop generated carry, handle that in scalar loop.  */
  64.   if (more_carries)
  65.     {
  66.       mp_limb_t cyrec = 0;
  67.       /* Look for places where rp[k] is zero and cy[k-1] is non-zero.
  68.  These are where we got a recurrency carry.  */
  69.       for (i = 2; i < n; i++)
  70. {
  71.   r = rp[i];
  72.   c0 = (r == 0 && cy[i - 1] != 0);
  73.   s0 = r + cyrec;
  74.   rp[i] = s0;
  75.   c1 = (r & ~s0) >> 63;
  76.   cyrec = c0 | c1;
  77. }
  78.       return _int_mult_upper (up[n - 1], vl) + cyrec + cy[n - 1];
  79.     }
  80.   return _int_mult_upper (up[n - 1], vl) + cy[n - 1];
  81. }