Annotation of OpenXM_contrib/gmp/mpn/pa64/gmp-mparam.h, Revision 1.1.1.2
1.1 maekawa 1: /* gmp-mparam.h -- Compiler/machine parameter header file.
2:
1.1.1.2 ! ohara 3: Copyright 1991, 1993, 1994, 1999, 2000, 2001, 2002 Free Software Foundation,
! 4: Inc.
1.1 maekawa 5:
6: This file is part of the GNU MP Library.
7:
1.1.1.2 ! ohara 8: The GNU MP Library is free software; you can redistribute it and/or modify it
! 9: under the terms of the GNU Lesser General Public License as published by the
! 10: Free Software Foundation; either version 2.1 of the License, or (at your
1.1 maekawa 11: option) any later version.
12:
13: The GNU MP Library is distributed in the hope that it will be useful, but
1.1.1.2 ! ohara 14: WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
! 15: FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
! 16: for more details.
! 17:
! 18: You should have received a copy of the GNU Lesser General Public License along
! 19: with the GNU MP Library; see the file COPYING.LIB. If not, write to the Free
! 20: Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
! 21: USA. */
1.1 maekawa 22:
23: #define BITS_PER_MP_LIMB 64
24: #define BYTES_PER_MP_LIMB 8
1.1.1.2 ! ohara 25:
! 26: /* These values were measured on a PA8500 using the system compiler version
! 27: B.11.11.04. Measurements on PA8000 with system compiler version A.10.32.30
! 28: give very similar values, GCC 3.1 will probably give somewhat different
! 29: results (earlier GCC versions do not support HPPA in 64-bit mode). */
! 30:
! 31: /* Generated by tuneup.c, 2002-03-26, system compiler */
! 32:
! 33: #define MUL_KARATSUBA_THRESHOLD 23
! 34: #define MUL_TOOM3_THRESHOLD 131
! 35:
! 36: #define SQR_BASECASE_THRESHOLD 5
! 37: #define SQR_KARATSUBA_THRESHOLD 64
! 38: #define SQR_TOOM3_THRESHOLD 149
! 39:
! 40: #define DIV_SB_PREINV_THRESHOLD 0 /* always */
! 41: #define DIV_DC_THRESHOLD 124
! 42: #define POWM_THRESHOLD 206
! 43:
! 44: #define GCD_ACCEL_THRESHOLD 3
! 45: #define GCDEXT_THRESHOLD 0 /* always */
! 46: #define JACOBI_BASE_METHOD 2
! 47:
! 48: #define DIVREM_1_NORM_THRESHOLD 0 /* always */
! 49: #define DIVREM_1_UNNORM_THRESHOLD 0 /* always */
! 50: #define MOD_1_NORM_THRESHOLD 0 /* always */
! 51: #define MOD_1_UNNORM_THRESHOLD 0 /* always */
! 52: #define USE_PREINV_DIVREM_1 1
! 53: #define USE_PREINV_MOD_1 1
! 54: #define DIVREM_2_THRESHOLD 0 /* always */
! 55: #define DIVEXACT_1_THRESHOLD 0 /* always */
! 56: #define MODEXACT_1_ODD_THRESHOLD 0 /* always */
! 57:
! 58: #define GET_STR_DC_THRESHOLD 21
! 59: #define GET_STR_PRECOMPUTE_THRESHOLD 23
! 60: #define SET_STR_THRESHOLD 14423
! 61:
! 62: #define MUL_FFT_TABLE { 560, 1184, 2752, 5376, 11264, 36864, 0 }
! 63: #define MUL_FFT_MODF_THRESHOLD 360
! 64: #define MUL_FFT_THRESHOLD 2816
! 65:
! 66: #define SQR_FFT_TABLE { 560, 1184, 2752, 5888, 13312, 28672, 0 }
! 67: #define SQR_FFT_MODF_THRESHOLD 408
! 68: #define SQR_FFT_THRESHOLD 2912
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>