ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
175 lines
5.1 KiB
C
175 lines
5.1 KiB
C
/* mpn_fib2_ui -- calculate Fibonacci numbers.
|
|
|
|
THE FUNCTIONS IN THIS FILE ARE FOR INTERNAL USE ONLY. THEY'RE ALMOST
|
|
CERTAIN TO BE SUBJECT TO INCOMPATIBLE CHANGES OR DISAPPEAR COMPLETELY IN
|
|
FUTURE GNU MP RELEASES.
|
|
|
|
Copyright 2001, 2002, 2005, 2009, 2018 Free Software Foundation, Inc.
|
|
|
|
This file is part of the GNU MP Library.
|
|
|
|
The GNU MP Library is free software; you can redistribute it and/or modify
|
|
it under the terms of either:
|
|
|
|
* the GNU Lesser General Public License as published by the Free
|
|
Software Foundation; either version 3 of the License, or (at your
|
|
option) any later version.
|
|
|
|
or
|
|
|
|
* the GNU General Public License as published by the Free Software
|
|
Foundation; either version 2 of the License, or (at your option) any
|
|
later version.
|
|
|
|
or both in parallel, as here.
|
|
|
|
The GNU MP Library is distributed in the hope that it will be useful, but
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received copies of the GNU General Public License and the
|
|
GNU Lesser General Public License along with the GNU MP Library. If not,
|
|
see https://www.gnu.org/licenses/. */
|
|
|
|
#include <stdio.h>
|
|
#include "gmp-impl.h"
|
|
|
|
/* change this to "#define TRACE(x) x" for diagnostics */
|
|
#define TRACE(x)
|
|
|
|
|
|
/* Store F[n] at fp and F[n-1] at f1p. fp and f1p should have room for
|
|
MPN_FIB2_SIZE(n) limbs.
|
|
|
|
The return value is the actual number of limbs stored, this will be at
|
|
least 1. fp[size-1] will be non-zero, except when n==0, in which case
|
|
fp[0] is 0 and f1p[0] is 1. f1p[size-1] can be zero, since F[n-1]<F[n]
|
|
(for n>0).
|
|
|
|
Notes: F[2k+1] = 4*F[k]^2 - F[k-1]^2 + 2*(-1)^k.
|
|
|
|
In F[2k+1] with k even, +2 is applied to 4*F[k]^2 just by ORing into the
|
|
low limb.
|
|
|
|
In F[2k+1] with k odd, -2 is applied to F[k-1]^2 just by ORing into the
|
|
low limb.
|
|
*/
|
|
|
|
mp_size_t
|
|
mpn_fib2_ui (mp_ptr fp, mp_ptr f1p, unsigned long int n)
|
|
{
|
|
mp_size_t size;
|
|
unsigned long nfirst, mask;
|
|
|
|
TRACE (printf ("mpn_fib2_ui n=%lu\n", n));
|
|
|
|
ASSERT (! MPN_OVERLAP_P (fp, MPN_FIB2_SIZE(n), f1p, MPN_FIB2_SIZE(n)));
|
|
|
|
/* Take a starting pair from the table. */
|
|
mask = 1;
|
|
for (nfirst = n; nfirst > FIB_TABLE_LIMIT; nfirst /= 2)
|
|
mask <<= 1;
|
|
TRACE (printf ("nfirst=%lu mask=0x%lX\n", nfirst, mask));
|
|
|
|
f1p[0] = FIB_TABLE ((int) nfirst - 1);
|
|
fp[0] = FIB_TABLE (nfirst);
|
|
size = 1;
|
|
|
|
/* Skip to the end if the table lookup gives the final answer. */
|
|
if (mask != 1)
|
|
{
|
|
mp_size_t alloc;
|
|
mp_ptr xp;
|
|
TMP_DECL;
|
|
|
|
TMP_MARK;
|
|
alloc = MPN_FIB2_SIZE (n);
|
|
xp = TMP_ALLOC_LIMBS (alloc);
|
|
|
|
do
|
|
{
|
|
/* Here fp==F[k] and f1p==F[k-1], with k being the bits of n from
|
|
n&mask upwards.
|
|
|
|
The next bit of n is n&(mask>>1) and we'll double to the pair
|
|
fp==F[2k],f1p==F[2k-1] or fp==F[2k+1],f1p==F[2k], according as
|
|
that bit is 0 or 1 respectively. */
|
|
|
|
TRACE (printf ("k=%lu mask=0x%lX size=%ld alloc=%ld\n",
|
|
n >> refmpn_count_trailing_zeros(mask),
|
|
mask, size, alloc);
|
|
mpn_trace ("fp ", fp, size);
|
|
mpn_trace ("f1p", f1p, size));
|
|
|
|
/* fp normalized, f1p at most one high zero */
|
|
ASSERT (fp[size-1] != 0);
|
|
ASSERT (f1p[size-1] != 0 || f1p[size-2] != 0);
|
|
|
|
/* f1p[size-1] might be zero, but this occurs rarely, so it's not
|
|
worth bothering checking for it */
|
|
ASSERT (alloc >= 2*size);
|
|
mpn_sqr (xp, fp, size);
|
|
mpn_sqr (fp, f1p, size);
|
|
size *= 2;
|
|
|
|
/* Shrink if possible. Since fp was normalized there'll be at
|
|
most one high zero on xp (and if there is then there's one on
|
|
yp too). */
|
|
ASSERT (xp[size-1] != 0 || fp[size-1] == 0);
|
|
size -= (xp[size-1] == 0);
|
|
ASSERT (xp[size-1] != 0); /* only one xp high zero */
|
|
|
|
/* Calculate F[2k-1] = F[k]^2 + F[k-1]^2. */
|
|
f1p[size] = mpn_add_n (f1p, xp, fp, size);
|
|
|
|
/* Calculate F[2k+1] = 4*F[k]^2 - F[k-1]^2 + 2*(-1)^k.
|
|
n&mask is the low bit of our implied k. */
|
|
|
|
ASSERT ((fp[0] & 2) == 0);
|
|
/* fp is F[k-1]^2 == 0 or 1 mod 4, like all squares. */
|
|
fp[0] |= (n & mask ? 2 : 0); /* possible -2 */
|
|
#if HAVE_NATIVE_mpn_rsblsh2_n
|
|
fp[size] = mpn_rsblsh2_n (fp, fp, xp, size);
|
|
MPN_INCR_U(fp, size + 1, (n & mask ? 0 : 2)); /* possible +2 */
|
|
#else
|
|
{
|
|
mp_limb_t c;
|
|
|
|
c = mpn_lshift (xp, xp, size, 2);
|
|
xp[0] |= (n & mask ? 0 : 2); /* possible +2 */
|
|
c -= mpn_sub_n (fp, xp, fp, size);
|
|
fp[size] = c;
|
|
}
|
|
#endif
|
|
ASSERT (alloc >= size+1);
|
|
size += (fp[size] != 0);
|
|
|
|
/* now n&mask is the new bit of n being considered */
|
|
mask >>= 1;
|
|
|
|
/* Calculate F[2k] = F[2k+1] - F[2k-1], replacing the unwanted one of
|
|
F[2k+1] and F[2k-1]. */
|
|
if (n & mask)
|
|
ASSERT_NOCARRY (mpn_sub_n (f1p, fp, f1p, size));
|
|
else {
|
|
ASSERT_NOCARRY (mpn_sub_n ( fp, fp, f1p, size));
|
|
|
|
/* Can have a high zero after replacing F[2k+1] with F[2k].
|
|
f1p will have a high zero if fp does. */
|
|
ASSERT (fp[size-1] != 0 || f1p[size-1] == 0);
|
|
size -= (fp[size-1] == 0);
|
|
}
|
|
}
|
|
while (mask != 1);
|
|
|
|
TMP_FREE;
|
|
}
|
|
|
|
TRACE (printf ("done size=%ld\n", size);
|
|
mpn_trace ("fp ", fp, size);
|
|
mpn_trace ("f1p", f1p, size));
|
|
|
|
return size;
|
|
}
|