[project @ 1998-11-26 09:17:22 by sof]
[ghc-hetmet.git] / ghc / runtime / gmp / mpz_random.c
1 /* mpz_random -- Generate a random MP_INT of specified size.
2
3 Copyright (C) 1991, 1993 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 #include "gmp-impl.h"
23
24 #if !defined(__GNUC__)
25 #define __inline__ inline
26 #endif
27
28 #if defined (hpux) || defined (__alpha__)
29 /* HPUX lacks random().  DEC Alpha's random() returns a double.  */
30 static __inline__ long
31 urandom ()
32 {
33   return mrand48 ();
34 }
35 #else
36 long random ();
37
38 static __inline__ long
39 urandom ()
40 {
41   /* random() returns 31 bits, we want 32.  */
42   return random() ^ (random() << 1);
43 }
44 #endif
45
46 void
47 #ifdef __STDC__
48 mpz_random (MP_INT *x, mp_size size)
49 #else
50 mpz_random (x, size)
51      MP_INT *x;
52      mp_size size;
53 #endif
54 {
55   mp_size i;
56   mp_limb ran;
57
58   if (x->alloc < size)
59     _mpz_realloc (x, size);
60
61   for (i = 0; i < size; i++)
62     {
63       ran = urandom ();
64       x->d[i] = ran;
65     }
66
67   for (i = size - 1; i >= 0; i--)
68     if (x->d[i] != 0)
69       break;
70
71   x->size = i + 1;
72 }