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 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 12 The GNU MP Library is distributed in the hope that it will be useful, but 13 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 15 License for more details. 16 17 You should have received a copy of the GNU Lesser General Public License 18 along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. */ 19 20 /* This is just mpn_mul_basecase with trivial modifications. */ 21 22 #include <intrinsics.h> 23 #include "gmp.h" 24 #include "gmp-impl.h" 25 26 void 27 mpn_sqr_basecase (mp_ptr rp, 28 mp_srcptr up, mp_size_t un) 29 { 30 mp_limb_t cy[un + un]; 31 mp_limb_t ul; 32 mp_limb_t a, b, r, s0, s1, c0, c1; 33 mp_size_t i, j; 34 int more_carries; 35 36 for (i = 0; i < un + un; i++) 37 { 38 rp[i] = 0; 39 cy[i] = 0; 40 } 41 42 #pragma _CRI novector 43 for (j = 0; j < un; j++) 44 { 45 ul = up[j]; 46 47 a = up[0] * ul; 48 r = rp[j]; 49 s0 = a + r; 50 rp[j] = s0; 51 c0 = ((a & r) | ((a | r) & ~s0)) >> 63; 52 cy[j] += c0; 53 54 #pragma _CRI ivdep 55 for (i = 1; i < un; i++) 56 { 57 a = up[i] * ul; 58 b = _int_mult_upper (up[i - 1], ul); 59 s0 = a + b; 60 c0 = ((a & b) | ((a | b) & ~s0)) >> 63; 61 r = rp[j + i]; 62 s1 = s0 + r; 63 rp[j + i] = s1; 64 c1 = ((s0 & r) | ((s0 | r) & ~s1)) >> 63; 65 cy[j + i] += c0 + c1; 66 } 67 rp[j + un] = _int_mult_upper (up[un - 1], ul); 68 } 69 70 more_carries = 0; 71 #pragma _CRI ivdep 72 for (i = 1; i < un + un; i++) 73 { 74 r = rp[i]; 75 c0 = cy[i - 1]; 76 s0 = r + c0; 77 rp[i] = s0; 78 c0 = (r & ~s0) >> 63; 79 more_carries += c0; 80 } 81 /* If that second loop generated carry, handle that in scalar loop. */ 82 if (more_carries) 83 { 84 mp_limb_t cyrec = 0; 85 for (i = 1; i < un + un; i++) 86 { 87 r = rp[i]; 88 c0 = (r < cy[i - 1]); 89 s0 = r + cyrec; 90 rp[i] = s0; 91 c1 = (r & ~s0) >> 63; 92 cyrec = c0 | c1; 93 } 94 } 95 } 96