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

数学计算

开发平台:

Unix_Linux

  1. /* mpf_div_2exp -- Divide a float by 2^n.
  2. Copyright 1993, 1994, 1996, 2000, 2001, 2002, 2004 Free Software Foundation,
  3. Inc.
  4. This file is part of the GNU MP Library.
  5. The GNU MP Library is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU Lesser General Public License as published by
  7. the Free Software Foundation; either version 3 of the License, or (at your
  8. option) any later version.
  9. The GNU MP Library is distributed in the hope that it will be useful, but
  10. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  12. License for more details.
  13. You should have received a copy of the GNU Lesser General Public License
  14. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  15. #include "gmp.h"
  16. #include "gmp-impl.h"
  17. /* Multiples of GMP_NUMB_BITS in exp simply mean an amount subtracted from
  18.    EXP(u) to set EXP(r).  The remainder exp%GMP_NUMB_BITS is then a right
  19.    shift for the limb data.
  20.    If exp%GMP_NUMB_BITS == 0 then there's no shifting, we effectively just
  21.    do an mpz_set with changed EXP(r).  Like mpz_set we take prec+1 limbs in
  22.    this case.  Although just prec would suffice, it's nice to have
  23.    mpf_div_2exp with exp==0 come out the same as mpz_set.
  24.    When shifting we take up to prec many limbs from the input.  Our shift is
  25.    cy = mpn_rshift (PTR(r)+1, PTR(u)+k, ...), where k is the number of low
  26.    limbs dropped from u, and the carry out is stored to PTR(r)[0].  We don't
  27.    try to work extra bits from PTR(u)[k-1] (when k>=1 makes it available)
  28.    into that low carry limb.  Just prec limbs (with the high non-zero) from
  29.    the input is enough bits for the application requested precision, no need
  30.    to do extra work.
  31.    If r==u the shift will have overlapping operands.  When k>=1 (ie. when
  32.    usize > prec), the overlap is in the style supported by rshift (ie. dst
  33.    <= src).
  34.    But when r==u and k==0 (ie. usize <= prec), we would have an invalid
  35.    overlap (mpn_rshift (rp+1, rp, ...)).  In this case we must instead use
  36.    mpn_lshift (PTR(r), PTR(u), size, NUMB-shift).  An lshift by NUMB-shift
  37.    bits gives identical data of course, it's just its overlap restrictions
  38.    which differ.
  39.    In both shift cases, the resulting data is abs_usize+1 limbs.  "adj" is
  40.    used to add +1 to that size if the high is non-zero (it may of course
  41.    have become zero by the shifting).  EXP(u) is the exponent just above
  42.    those abs_usize+1 limbs, so it gets -1+adj, which means -1 if the high is
  43.    zero, or no change if the high is non-zero.
  44.    Enhancements:
  45.    The way mpn_lshift is used means successive mpf_div_2exp calls on the
  46.    same operand will accumulate low zero limbs, until prec+1 limbs is
  47.    reached.  This is wasteful for subsequent operations.  When abs_usize <=
  48.    prec, we should test the low exp%GMP_NUMB_BITS many bits of PTR(u)[0],
  49.    ie. those which would be shifted out by an mpn_rshift.  If they're zero
  50.    then use that mpn_rshift.  */
  51. void
  52. mpf_div_2exp (mpf_ptr r, mpf_srcptr u, mp_bitcnt_t exp)
  53. {
  54.   mp_srcptr up;
  55.   mp_ptr rp = r->_mp_d;
  56.   mp_size_t usize;
  57.   mp_size_t abs_usize;
  58.   mp_size_t prec = r->_mp_prec;
  59.   mp_exp_t uexp = u->_mp_exp;
  60.   usize = u->_mp_size;
  61.   if (UNLIKELY (usize == 0))
  62.     {
  63.       r->_mp_size = 0;
  64.       r->_mp_exp = 0;
  65.       return;
  66.     }
  67.   abs_usize = ABS (usize);
  68.   up = u->_mp_d;
  69.   if (exp % GMP_NUMB_BITS == 0)
  70.     {
  71.       prec++; /* retain more precision here as we don't need
  72.    to account for carry-out here */
  73.       if (abs_usize > prec)
  74. {
  75.   up += abs_usize - prec;
  76.   abs_usize = prec;
  77. }
  78.       if (rp != up)
  79. MPN_COPY_INCR (rp, up, abs_usize);
  80.       r->_mp_exp = uexp - exp / GMP_NUMB_BITS;
  81.     }
  82.   else
  83.     {
  84.       mp_limb_t cy_limb;
  85.       mp_size_t adj;
  86.       if (abs_usize > prec)
  87. {
  88.   up += abs_usize - prec;
  89.   abs_usize = prec;
  90.   /* Use mpn_rshift since mpn_lshift operates downwards, and we
  91.      therefore would clobber part of U before using that part, in case
  92.      R is the same variable as U.  */
  93.   cy_limb = mpn_rshift (rp + 1, up, abs_usize, exp % GMP_NUMB_BITS);
  94.   rp[0] = cy_limb;
  95.   adj = rp[abs_usize] != 0;
  96. }
  97.       else
  98. {
  99.   cy_limb = mpn_lshift (rp, up, abs_usize,
  100. GMP_NUMB_BITS - exp % GMP_NUMB_BITS);
  101.   rp[abs_usize] = cy_limb;
  102.   adj = cy_limb != 0;
  103. }
  104.       abs_usize += adj;
  105.       r->_mp_exp = uexp - exp / GMP_NUMB_BITS - 1 + adj;
  106.     }
  107.   r->_mp_size = usize >= 0 ? abs_usize : -abs_usize;
  108. }