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

数学计算

开发平台:

Unix_Linux

  1. /* mpf_ui_div -- Divide an unsigned integer with a float.
  2. Copyright 1993, 1994, 1995, 1996, 2000, 2001, 2002, 2004, 2005 Free Software
  3. Foundation, 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 <stdio.h>  /* for NULL */
  16. #include "gmp.h"
  17. #include "gmp-impl.h"
  18. #include "longlong.h"
  19. void
  20. mpf_ui_div (mpf_ptr r, unsigned long int u, mpf_srcptr v)
  21. {
  22.   mp_srcptr vp;
  23.   mp_ptr rp, tp, remp, new_vp;
  24.   mp_size_t vsize;
  25.   mp_size_t rsize, prospective_rsize, zeros, tsize, high_zero;
  26.   mp_size_t sign_quotient;
  27.   mp_size_t prec;
  28.   mp_exp_t rexp;
  29.   TMP_DECL;
  30.   vsize = v->_mp_size;
  31.   sign_quotient = vsize;
  32.   vsize = ABS (vsize);
  33.   prec = r->_mp_prec;
  34.   if (UNLIKELY (vsize == 0))
  35.     DIVIDE_BY_ZERO;
  36.   if (UNLIKELY (u == 0))
  37.     {
  38.       r->_mp_size = 0;
  39.       r->_mp_exp = 0;
  40.       return;
  41.     }
  42.   TMP_MARK;
  43.   rexp = 1 - v->_mp_exp + 1;
  44.   rp = r->_mp_d;
  45.   vp = v->_mp_d;
  46.   prospective_rsize = 1 - vsize + 1;    /* quot from using given u,v sizes */
  47.   rsize = prec + 1;                     /* desired quot size */
  48.   zeros = rsize - prospective_rsize;    /* padding u to give rsize */
  49.   tsize = 1 + zeros;                    /* u with zeros */
  50.   if (WANT_TMP_DEBUG)
  51.     {
  52.       /* separate alloc blocks, for malloc debugging */
  53.       remp = TMP_ALLOC_LIMBS (vsize);
  54.       tp = TMP_ALLOC_LIMBS (tsize);
  55.       new_vp = NULL;
  56.       if (rp == vp)
  57.         new_vp = TMP_ALLOC_LIMBS (vsize);
  58.     }
  59.   else
  60.     {
  61.       /* one alloc with calculated size, for efficiency */
  62.       mp_size_t size = vsize + tsize + (rp == vp ? vsize : 0);
  63.       remp = TMP_ALLOC_LIMBS (size);
  64.       tp = remp + vsize;
  65.       new_vp = tp + tsize;
  66.     }
  67.   /* ensure divisor doesn't overlap quotient */
  68.   if (rp == vp)
  69.     {
  70.       MPN_COPY (new_vp, vp, vsize);
  71.       vp = new_vp;
  72.     }
  73.   MPN_ZERO (tp, tsize-1);
  74.   tp[tsize - 1] = u & GMP_NUMB_MASK;
  75. #if BITS_PER_ULONG > GMP_NUMB_BITS
  76.   if (u > GMP_NUMB_MAX)
  77.     {
  78.       /* tsize-vsize+1 == rsize, so tsize >= rsize.  rsize == prec+1 >= 2,
  79.          so tsize >= 2, hence there's room for 2-limb u with nails */
  80.       ASSERT (tsize >= 2);
  81.       tp[tsize - 1] = u >> GMP_NUMB_BITS;
  82.       tp[tsize - 2] = u & GMP_NUMB_MASK;
  83.       rexp++;
  84.     }
  85. #endif
  86.   ASSERT (tsize-vsize+1 == rsize);
  87.   mpn_tdiv_qr (rp, remp, (mp_size_t) 0, tp, tsize, vp, vsize);
  88.   /* strip possible zero high limb */
  89.   high_zero = (rp[rsize-1] == 0);
  90.   rsize -= high_zero;
  91.   rexp -= high_zero;
  92.   r->_mp_size = sign_quotient >= 0 ? rsize : -rsize;
  93.   r->_mp_exp = rexp;
  94.   TMP_FREE;
  95. }