1/* HP-PA 1.0 gmp-mparam.h -- Compiler/machine parameter header file.
2
3Copyright 1991, 1993, 1994, 1999, 2000, 2001, 2002, 2012 Free Software
4Foundation, Inc.
5
6This file is part of the GNU MP Library.
7
8The GNU MP Library is free software; you can redistribute it and/or modify
9it under the terms of the GNU Lesser General Public License as published by
10the Free Software Foundation; either version 3 of the License, or (at your
11option) any later version.
12
13The GNU MP Library is distributed in the hope that it will be useful, but
14WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
16License for more details.
17
18You should have received a copy of the GNU Lesser General Public License
19along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
20
21#define GMP_LIMB_BITS 32
22#define BYTES_PER_MP_LIMB 4
23
24/* These values are for the PA7100 using GCC.  */
25/* Generated by tuneup.c, 2000-10-27. */
26
27#ifndef MUL_TOOM22_THRESHOLD
28#define MUL_TOOM22_THRESHOLD      30
29#endif
30#ifndef MUL_TOOM33_THRESHOLD
31#define MUL_TOOM33_THRESHOLD     141
32#endif
33
34#ifndef SQR_TOOM2_THRESHOLD
35#define SQR_TOOM2_THRESHOLD       59
36#endif
37#ifndef SQR_TOOM3_THRESHOLD
38#define SQR_TOOM3_THRESHOLD      177
39#endif
40
41#ifndef DIV_DC_THRESHOLD
42#define DIV_DC_THRESHOLD         108
43#endif
44
45#ifndef POWM_THRESHOLD
46#define POWM_THRESHOLD            18
47#endif
48
49#ifndef GCDEXT_THRESHOLD
50#define GCDEXT_THRESHOLD          33
51#endif
52