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

数学计算

开发平台:

Unix_Linux

  1. /* Cray PVP/IEEE mpn_sqr_basecase.
  2. Copyright 2000, 2001 Free Software Foundation, Inc.
  3. This file is part of the GNU MP Library.
  4. The GNU MP Library is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU Lesser General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or (at your
  7. option) any later version.
  8. The GNU MP Library is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  11. License for more details.
  12. You should have received a copy of the GNU Lesser General Public License
  13. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  14. /* This is just mpn_mul_basecase with trivial modifications.  */
  15. #include <intrinsics.h>
  16. #include "gmp.h"
  17. #include "gmp-impl.h"
  18. void
  19. mpn_sqr_basecase (mp_ptr rp,
  20.   mp_srcptr up, mp_size_t un)
  21. {
  22.   mp_limb_t cy[un + un];
  23.   mp_limb_t ul;
  24.   mp_limb_t a, b, r, s0, s1, c0, c1;
  25.   mp_size_t i, j;
  26.   int more_carries;
  27.   for (i = 0; i < un + un; i++)
  28.     {
  29.       rp[i] = 0;
  30.       cy[i] = 0;
  31.     }
  32. #pragma _CRI novector
  33.   for (j = 0; j < un; j++)
  34.     {
  35.       ul = up[j];
  36.       a = up[0] * ul;
  37.       r = rp[j];
  38.       s0 = a + r;
  39.       rp[j] = s0;
  40.       c0 = ((a & r) | ((a | r) & ~s0)) >> 63;
  41.       cy[j] += c0;
  42. #pragma _CRI ivdep
  43.       for (i = 1; i < un; i++)
  44. {
  45.   a = up[i] * ul;
  46.   b = _int_mult_upper (up[i - 1], ul);
  47.   s0 = a + b;
  48.   c0 = ((a & b) | ((a | b) & ~s0)) >> 63;
  49.   r = rp[j + i];
  50.   s1 = s0 + r;
  51.   rp[j + i] = s1;
  52.   c1 = ((s0 & r) | ((s0 | r) & ~s1)) >> 63;
  53.   cy[j + i] += c0 + c1;
  54. }
  55.       rp[j + un] = _int_mult_upper (up[un - 1], ul);
  56.     }
  57.   more_carries = 0;
  58. #pragma _CRI ivdep
  59.   for (i = 1; i < un + un; i++)
  60.     {
  61.       r = rp[i];
  62.       c0 = cy[i - 1];
  63.       s0 = r + c0;
  64.       rp[i] = s0;
  65.       c0 = (r & ~s0) >> 63;
  66.       more_carries += c0;
  67.     }
  68.   /* If that second loop generated carry, handle that in scalar loop.  */
  69.   if (more_carries)
  70.     {
  71.       mp_limb_t cyrec = 0;
  72.       for (i = 1; i < un + un; i++)
  73. {
  74.   r = rp[i];
  75.   c0 = (r < cy[i - 1]);
  76.   s0 = r + cyrec;
  77.   rp[i] = s0;
  78.   c1 = (r & ~s0) >> 63;
  79.   cyrec = c0 | c1;
  80. }
  81.     }
  82. }