88 lines
2.4 KiB
C
88 lines
2.4 KiB
C
/*============================================================================
|
|
|
|
This file is part of FLINT.
|
|
|
|
FLINT is free software; you can redistribute it and/or modify
|
|
it under the terms of 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.
|
|
|
|
FLINT 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 a copy of the GNU General Public License
|
|
along with FLINT; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
=============================================================================*/
|
|
/******************************************************************************
|
|
|
|
Copyright (C) 2012 Fredrik Johansson
|
|
|
|
******************************************************************************/
|
|
|
|
#include <gmp.h>
|
|
#include "flint.h"
|
|
#include "ulong_extras.h"
|
|
#include "fmpz.h"
|
|
|
|
mp_limb_t
|
|
fmpz_abs_lbound_ui_2exp(slong * exp, const fmpz_t x, int bits)
|
|
{
|
|
mp_limb_t m;
|
|
slong shift, e, size;
|
|
fmpz c = *x;
|
|
|
|
if (!COEFF_IS_MPZ(c))
|
|
{
|
|
m = FLINT_ABS(c);
|
|
e = 0;
|
|
}
|
|
else
|
|
{
|
|
__mpz_struct * z = COEFF_TO_PTR(c);
|
|
size = z->_mp_size;
|
|
size = FLINT_ABS(size);
|
|
e = (size - 1) * FLINT_BITS;
|
|
|
|
if (size == 1)
|
|
{
|
|
m = z->_mp_d[0];
|
|
}
|
|
else /* there are two or more limbs */
|
|
{
|
|
/* top limb (which must be nonzero) */
|
|
m = z->_mp_d[size - 1];
|
|
|
|
count_leading_zeros(shift, m);
|
|
shift = FLINT_BITS - shift - bits;
|
|
e += shift;
|
|
|
|
if (shift >= 0)
|
|
{
|
|
m >>= shift;
|
|
}
|
|
else
|
|
{
|
|
/* read a second limb to get an accurate value */
|
|
mp_limb_t m2 = z->_mp_d[size - 2];
|
|
m = (m << (-shift)) | (m2 >> (FLINT_BITS + shift));
|
|
}
|
|
|
|
*exp = e;
|
|
return m;
|
|
}
|
|
}
|
|
|
|
count_leading_zeros(shift, m);
|
|
e += FLINT_BITS - shift - bits;
|
|
if (e >= 0)
|
|
m >>= e;
|
|
else
|
|
m <<= (-e);
|
|
*exp = e;
|
|
return m;
|
|
}
|