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

数学计算

开发平台:

Unix_Linux

  1. /* mpn_mul_n -- multiply natural numbers.
  2. Copyright 1991, 1993, 1994, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
  3. 2005, 2008, 2009 Free Software 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 "gmp.h"
  16. #include "gmp-impl.h"
  17. #include "longlong.h"
  18. void
  19. mpn_mul_n (mp_ptr p, mp_srcptr a, mp_srcptr b, mp_size_t n)
  20. {
  21.   ASSERT (n >= 1);
  22.   ASSERT (! MPN_OVERLAP_P (p, 2 * n, a, n));
  23.   ASSERT (! MPN_OVERLAP_P (p, 2 * n, b, n));
  24.   if (BELOW_THRESHOLD (n, MUL_TOOM22_THRESHOLD))
  25.     {
  26.       mpn_mul_basecase (p, a, n, b, n);
  27.     }
  28.   else if (BELOW_THRESHOLD (n, MUL_TOOM33_THRESHOLD))
  29.     {
  30.       /* Allocate workspace of fixed size on stack: fast! */
  31.       mp_limb_t ws[mpn_toom22_mul_itch (MUL_TOOM33_THRESHOLD_LIMIT-1,
  32. MUL_TOOM33_THRESHOLD_LIMIT-1)];
  33.       ASSERT (MUL_TOOM33_THRESHOLD <= MUL_TOOM33_THRESHOLD_LIMIT);
  34.       mpn_toom22_mul (p, a, n, b, n, ws);
  35.     }
  36.   else if (BELOW_THRESHOLD (n, MUL_TOOM44_THRESHOLD))
  37.     {
  38.       mp_ptr ws;
  39.       TMP_SDECL;
  40.       TMP_SMARK;
  41.       ws = TMP_SALLOC_LIMBS (mpn_toom33_mul_itch (n, n));
  42.       mpn_toom33_mul (p, a, n, b, n, ws);
  43.       TMP_SFREE;
  44.     }
  45.   else if (BELOW_THRESHOLD (n, MUL_TOOM6H_THRESHOLD))
  46.     {
  47.       mp_ptr ws;
  48.       TMP_SDECL;
  49.       TMP_SMARK;
  50.       ws = TMP_SALLOC_LIMBS (mpn_toom44_mul_itch (n, n));
  51.       mpn_toom44_mul (p, a, n, b, n, ws);
  52.       TMP_SFREE;
  53.     }
  54.   else if (BELOW_THRESHOLD (n, MUL_TOOM8H_THRESHOLD))
  55.     {
  56.       mp_ptr ws;
  57.       TMP_SDECL;
  58.       TMP_SMARK;
  59.       ws = TMP_SALLOC_LIMBS (mpn_toom6_mul_n_itch (n));
  60.       mpn_toom6h_mul (p, a, n, b, n, ws);
  61.       TMP_SFREE;
  62.     }
  63.   else if (BELOW_THRESHOLD (n, MUL_FFT_THRESHOLD))
  64.     {
  65.       mp_ptr ws;
  66.       TMP_DECL;
  67.       TMP_MARK;
  68.       ws = TMP_ALLOC_LIMBS (mpn_toom8_mul_n_itch (n));
  69.       mpn_toom8h_mul (p, a, n, b, n, ws);
  70.       TMP_FREE;
  71.     }
  72.   else
  73.     {
  74.       /* The current FFT code allocates its own space.  That should probably
  75.  change.  */
  76.       mpn_fft_mul (p, a, n, b, n);
  77.     }
  78. }