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