gmp-mparam.h
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:2k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. /* Fat binary x86_64 gmp-mparam.h -- Compiler/machine parameter header file.
  2. Copyright 1991, 1993, 1994, 2000, 2001, 2002, 2003, 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. #define GMP_LIMB_BITS 64
  16. #define BYTES_PER_MP_LIMB 8
  17. /* mpn_divexact_1 is faster than mpn_divrem_1 at all sizes.  The only time
  18.    this might not be true currently is for actual 80386 and 80486 chips,
  19.    where mpn/x86/dive_1.asm might be slower than mpn/x86/divrem_1.asm, but
  20.    that's not worth worrying about.  */
  21. #define DIVEXACT_1_THRESHOLD  0
  22. /* Only some of the x86s have an mpn_preinv_divrem_1, but we set
  23.    USE_PREINV_DIVREM_1 so that all callers use it, and then let the
  24.    __gmpn_cpuvec pointer go to plain mpn_divrem_1 if there's not an actual
  25.    preinv.  */
  26. #define USE_PREINV_DIVREM_1   1
  27. /* mpn_sqr_basecase is faster than mpn_mul_basecase at all sizes, no need
  28.    for mpn_sqr to call the latter.  */
  29. #define SQR_BASECASE_THRESHOLD 0
  30. /* Sensible fallbacks for these, when not taken from a cpu-specific
  31.    gmp-mparam.h.  */
  32. #define MUL_TOOM22_THRESHOLD      20
  33. #define MUL_TOOM33_THRESHOLD     130
  34. #define SQR_TOOM2_THRESHOLD       30
  35. #define SQR_TOOM3_THRESHOLD      200
  36. /* These are values more or less in the middle of what the typical x86 chips
  37.    come out as.  For a fat binary it's necessary to have values for these,
  38.    since the defaults for MUL_FFT_TABLE and SQR_FFT_TABLE otherwise come out
  39.    as non-constant array initializers.  FIXME: Perhaps these should be done
  40.    in the cpuvec structure like other thresholds.  */
  41. #define MUL_FFT_TABLE  { 464, 928, 1920, 3584, 10240, 40960, 0 }
  42. #define MUL_FFT_MODF_THRESHOLD          400
  43. #define MUL_FFT_THRESHOLD              2000
  44. #define SQR_FFT_TABLE  { 528, 1184, 1920, 4608, 14336, 40960, 0 }
  45. #define SQR_FFT_MODF_THRESHOLD          500
  46. #define SQR_FFT_THRESHOLD              3000