[project @ 1998-11-26 09:17:22 by sof]
[ghc-hetmet.git] / ghc / runtime / gmp / cre-mparam.c
1 /* cre-mparam.c -- Create machine-depedent parameter file.
2
3 Copyright (C) 1991 Free Software Foundation, Inc.
4
5 This file is part of the GNU MP Library.
6
7 The GNU MP Library is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 The GNU MP Library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with the GNU MP Library; see the file COPYING.  If not, write to
19 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
20
21 #include "gmp.h"
22
23 unsigned int
24 ulog2 (x)
25      unsigned long int x;
26 {
27   unsigned int i;
28   for (i = 0;  x != 0;  i++)
29     x >>= 1;
30   return i;
31 }
32
33 main ()
34 {
35   int i;
36
37   unsigned long int max_uli;
38   int bits_uli;
39
40   unsigned long int max_ui;
41   int bits_ui;
42
43   unsigned long int max_usi;
44   int bits_usi;
45
46   unsigned long int max_uc;
47   int bits_uc;
48
49   max_uli = 1;
50   for (i = 0; ; i++)
51     {
52       if (max_uli == 0)
53         break;
54       max_uli <<= 1;
55     }
56   bits_uli = i;
57
58   max_ui = 1;
59   for (i = 0; ; i++)
60     {
61       if ((unsigned int) max_ui == 0)
62         break;
63       max_ui <<= 1;
64     }
65   bits_ui = i;
66
67   max_usi = 1;
68   for (i = 0; ; i++)
69     {
70       if ((unsigned short int) max_usi == 0)
71         break;
72       max_usi <<= 1;
73     }
74   bits_usi = i;
75
76   max_uc = 1;
77   for (i = 0; ; i++)
78     {
79       if ((unsigned char) max_uc == 0)
80         break;
81       max_uc <<= 1;
82     }
83   bits_uc = i;
84
85   puts ("/* gmp-mparam.h -- Compiler/machine parameter header file.");
86   puts ("");
87   puts ("   ***** THIS FILE WAS CREATED BY A PROGRAM.  DON'T EDIT IT! *****");
88   puts ("");
89   puts ("Copyright (C) 1991 Free Software Foundation, Inc.");
90   puts ("");
91   puts ("This file is part of the GNU MP Library.");
92   puts ("");
93   puts ("The GNU MP Library is free software; you can redistribute it and/or");
94   puts ("modify it under the terms of the GNU General Public License as");
95   puts ("published by the Free Software Foundation; either version 2, or");
96   puts ("(at your option) any later version.");
97   puts ("");
98   puts ("The GNU MP Library is distributed in the hope that it will be");
99   puts ("useful, but WITHOUT ANY WARRANTY; without even the implied warranty");
100   puts ("of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the");
101   puts ("GNU General Public License for more details.");
102   puts ("");
103   puts ("You should have received a copy of the GNU General Public License");
104   puts ("along with the GNU MP Library; see the file COPYING.  If not, write");
105   puts ("to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139,");
106   puts ("USA.  */");
107   puts ("");
108
109   printf ("#define BITS_PER_MP_LIMB %d\n", bits_uli);
110   printf ("#define BYTES_PER_MP_LIMB %d\n", sizeof(mp_limb));
111
112   printf ("#define BITS_PER_LONGINT %d\n", bits_uli);
113   printf ("#define BITS_PER_INT %d\n", bits_ui);
114   printf ("#define BITS_PER_SHORTINT %d\n", bits_usi);
115   printf ("#define BITS_PER_CHAR %d\n", bits_uc);
116
117   exit (0);
118 }