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