1 /* mpfr_fits_intmax_p -- test whether an mpfr fits an intmax_t.
3 Copyright 2004, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Free Software Foundation, Inc.
4 Contributed by the AriC and Caramel projects, INRIA.
6 This file is part of the GNU MPFR Library.
8 The GNU MPFR Library is free software; you can redistribute it and/or modify
9 it under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or (at your
11 option) any later version.
13 The GNU MPFR Library is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
16 License for more details.
18 You should have received a copy of the GNU Lesser General Public License
19 along with the GNU MPFR Library; see the file COPYING.LESSER. If not, see
20 http://www.gnu.org/licenses/ or write to the Free Software Foundation, Inc.,
21 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */
24 # include "config.h" /* for a build within gmp */
27 #include "mpfr-intmax.h"
28 #include "mpfr-impl.h"
30 #ifdef _MPFR_H_HAVE_INTMAX_T
32 /* We can't use fits_s.h <= mpfr_cmp_ui */
34 mpfr_fits_intmax_p (mpfr_srcptr f
, mpfr_rnd_t rnd
)
42 if (MPFR_UNLIKELY (MPFR_IS_SINGULAR (f
)))
44 return MPFR_IS_ZERO (f
) ? 1 : 0;
46 /* now it fits if either
47 (a) MINIMUM <= f <= MAXIMUM
48 (b) or MINIMUM <= round(f, prec(slong), rnd) <= MAXIMUM */
52 return 1; /* |f| < 1: always fits */
54 neg
= MPFR_IS_NEG (f
);
56 /* let EXTREMUM be MAXIMUM if f > 0, and MINIMUM if f < 0 */
58 /* first compute prec(EXTREMUM), this could be done at configure time,
59 but the result can depend on neg (the loop is moved inside the "if"
60 to give the compiler a better chance to compute prec statically) */
64 /* In C89, the division on negative integers isn't well-defined. */
65 s
= SAFE_ABS (uintmax_t, MPFR_INTMAX_MIN
);
66 for (prec
= 0; s
!= 0; s
/= 2, prec
++);
72 for (prec
= 0; s
!= 0; s
/= 2, prec
++);
75 /* EXTREMUM needs prec bits, i.e. 2^(prec-1) <= |EXTREMUM| < 2^prec */
77 /* if e <= prec - 1, then f < 2^(prec-1) <= |EXTREMUM| */
81 /* if e >= prec + 1, then f >= 2^prec > |EXTREMUM| */
85 MPFR_ASSERTD (e
== prec
);
87 /* hard case: first round to prec bits, then check */
94 mpfr_set_sj (y
, MPFR_INTMAX_MIN
, MPFR_RNDN
);
95 res
= mpfr_cmp (x
, y
) >= 0;
100 res
= MPFR_GET_EXP (x
) == e
;