get_ui.c
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:3k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. /* mpf_get_ui -- mpf to ulong conversion
  2. Copyright 2001, 2002, 2004 Free Software Foundation, Inc.
  3. This file is part of the GNU MP Library.
  4. The GNU MP Library is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU Lesser General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or (at your
  7. option) any later version.
  8. The GNU MP Library is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  11. License for more details.
  12. You should have received a copy of the GNU Lesser General Public License
  13. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  14. #include "gmp.h"
  15. #include "gmp-impl.h"
  16. /* Any fraction bits are truncated, meaning simply discarded.
  17.    For values bigger than a ulong, the low bits are returned (the low
  18.    absolute value bits actually), like mpz_get_ui, but this isn't
  19.    documented.
  20.    Notice this is equivalent to mpz_set_f + mpz_get_ui.
  21.    Implementation:
  22.    The limb just above the radix point for us to extract is ptr[size-exp].
  23.    We need to check that the size-exp index falls in our available data
  24.    range, 0 to size-1 inclusive.  We test this without risk of an overflow
  25.    involving exp by requiring size>=exp (giving size-exp >= 0) and exp>0
  26.    (giving size-exp <= size-1).
  27.    Notice if size==0 there's no fetch, since of course size>=exp and exp>0
  28.    can only be true if size>0.  So there's no special handling for size==0,
  29.    it comes out as 0 the same as any other time we have no data at our
  30.    target index.
  31.    For nails, the second limb above the radix point is also required, this
  32.    is ptr[size-exp+1].
  33.    Again we need to check that size-exp+1 falls in our data range, 0 to
  34.    size-1 inclusive.  We test without risk of overflow by requiring
  35.    size+1>=exp (giving size-exp+1 >= 0) and exp>1 (giving size-exp+1 <=
  36.    size-1).
  37.    And again if size==0 these second fetch conditions are not satisfied
  38.    either since size+1>=exp and exp>1 are only true if size>0.
  39.    The code is arranged with exp>0 wrapping the exp>1 test since exp>1 is
  40.    mis-compiled by alpha gcc prior to version 3.4.  It re-writes it as
  41.    exp-1>0, which is incorrect when exp==MP_EXP_T_MIN.  By having exp>0
  42.    tested first we ensure MP_EXP_T_MIN doesn't reach exp>1.  */
  43. unsigned long
  44. mpf_get_ui (mpf_srcptr f)
  45. {
  46.   mp_size_t size;
  47.   mp_exp_t exp;
  48.   mp_srcptr fp;
  49.   mp_limb_t fl;
  50.   exp = EXP (f);
  51.   size = SIZ (f);
  52.   fp = PTR (f);
  53.   fl = 0;
  54.   if (exp > 0)
  55.     {
  56.       /* there are some limbs above the radix point */
  57.       size = ABS (size);
  58.       if (size >= exp)
  59.         fl = fp[size-exp];
  60. #if BITS_PER_ULONG > GMP_NUMB_BITS
  61.       if (exp > 1 && size+1 >= exp)
  62.         fl += (fp[size-exp+1] << GMP_NUMB_BITS);
  63. #endif
  64.     }
  65.   return (unsigned long) fl;
  66. }