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

数学计算

开发平台:

Unix_Linux

  1. /* mpz_mul -- Multiply two integers.
  2. Copyright 1991, 1993, 1994, 1996, 2000, 2001, 2005, 2009 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. #ifdef BERKELEY_MP
  19. #include "mp.h"
  20. #endif
  21. void
  22. #ifndef BERKELEY_MP
  23. mpz_mul (mpz_ptr w, mpz_srcptr u, mpz_srcptr v)
  24. #else /* BERKELEY_MP */
  25. mult (mpz_srcptr u, mpz_srcptr v, mpz_ptr w)
  26. #endif /* BERKELEY_MP */
  27. {
  28.   mp_size_t usize = SIZ(u);
  29.   mp_size_t vsize = SIZ(v);
  30.   mp_size_t wsize;
  31.   mp_size_t sign_product;
  32.   mp_ptr up, vp;
  33.   mp_ptr wp;
  34.   mp_ptr free_me;
  35.   size_t free_me_size;
  36.   mp_limb_t cy_limb;
  37.   TMP_DECL;
  38.   sign_product = usize ^ vsize;
  39.   usize = ABS (usize);
  40.   vsize = ABS (vsize);
  41.   if (usize < vsize)
  42.     {
  43.       MPZ_SRCPTR_SWAP (u, v);
  44.       MP_SIZE_T_SWAP (usize, vsize);
  45.     }
  46.   if (vsize == 0)
  47.     {
  48.       SIZ(w) = 0;
  49.       return;
  50.     }
  51. #if HAVE_NATIVE_mpn_mul_2
  52.   if (vsize <= 2)
  53.     {
  54.       MPZ_REALLOC (w, usize+vsize);
  55.       wp = PTR(w);
  56.       if (vsize == 1)
  57.         cy_limb = mpn_mul_1 (wp, PTR(u), usize, PTR(v)[0]);
  58.       else
  59.         {
  60.           cy_limb = mpn_mul_2 (wp, PTR(u), usize, PTR(v));
  61.           usize++;
  62.         }
  63.       wp[usize] = cy_limb;
  64.       usize += (cy_limb != 0);
  65.       SIZ(w) = (sign_product >= 0 ? usize : -usize);
  66.       return;
  67.     }
  68. #else
  69.   if (vsize == 1)
  70.     {
  71.       MPZ_REALLOC (w, usize+1);
  72.       wp = PTR(w);
  73.       cy_limb = mpn_mul_1 (wp, PTR(u), usize, PTR(v)[0]);
  74.       wp[usize] = cy_limb;
  75.       usize += (cy_limb != 0);
  76.       SIZ(w) = (sign_product >= 0 ? usize : -usize);
  77.       return;
  78.     }
  79. #endif
  80.   TMP_MARK;
  81.   free_me = NULL;
  82.   up = PTR(u);
  83.   vp = PTR(v);
  84.   wp = PTR(w);
  85.   /* Ensure W has space enough to store the result.  */
  86.   wsize = usize + vsize;
  87.   if (ALLOC(w) < wsize)
  88.     {
  89.       if (wp == up || wp == vp)
  90. {
  91.   free_me = wp;
  92.   free_me_size = ALLOC(w);
  93. }
  94.       else
  95. (*__gmp_free_func) (wp, ALLOC(w) * BYTES_PER_MP_LIMB);
  96.       ALLOC(w) = wsize;
  97.       wp = (mp_ptr) (*__gmp_allocate_func) (wsize * BYTES_PER_MP_LIMB);
  98.       PTR(w) = wp;
  99.     }
  100.   else
  101.     {
  102.       /* Make U and V not overlap with W.  */
  103.       if (wp == up)
  104. {
  105.   /* W and U are identical.  Allocate temporary space for U.  */
  106.   up = TMP_ALLOC_LIMBS (usize);
  107.   /* Is V identical too?  Keep it identical with U.  */
  108.   if (wp == vp)
  109.     vp = up;
  110.   /* Copy to the temporary space.  */
  111.   MPN_COPY (up, wp, usize);
  112. }
  113.       else if (wp == vp)
  114. {
  115.   /* W and V are identical.  Allocate temporary space for V.  */
  116.   vp = TMP_ALLOC_LIMBS (vsize);
  117.   /* Copy to the temporary space.  */
  118.   MPN_COPY (vp, wp, vsize);
  119. }
  120.     }
  121.   if (up == vp)
  122.     {
  123.       mpn_sqr (wp, up, usize);
  124.       wsize = usize + vsize;
  125.       cy_limb = wp[wsize - 1];
  126.     }
  127.   else
  128.     {
  129.       cy_limb = mpn_mul (wp, up, usize, vp, vsize);
  130.       wsize = usize + vsize;
  131.     }
  132.   wsize -= cy_limb == 0;
  133.   SIZ(w) = sign_product < 0 ? -wsize : wsize;
  134.   if (free_me != NULL)
  135.     (*__gmp_free_func) (free_me, free_me_size * BYTES_PER_MP_LIMB);
  136.   TMP_FREE;
  137. }