[project @ 1998-11-26 09:17:22 by sof]
[ghc-hetmet.git] / ghc / runtime / gmp / mpn_rshift.c
1 /* mpn_rshift -- Shift right a low-level natural-number integer.
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 #include "gmp-impl.h"
23
24 /* Shift U (pointed to by UP and USIZE limbs long) CNT bits to the right
25    and store the USIZE least significant limbs of the result at WP.
26    Return the size of the result.
27
28    Argument constraints:
29    0. U must be normalized (i.e. it's most significant limb != 0).
30    1. 0 <= CNT < BITS_PER_MP_LIMB
31    2. If the result is to be written over the input, WP must be <= UP.
32 */
33
34 mp_size
35 #ifdef __STDC__
36 mpn_rshift (mp_ptr wp,
37             mp_srcptr up, mp_size usize,
38             unsigned cnt)
39 #else
40 mpn_rshift (wp, up, usize, cnt)
41      mp_ptr wp;
42      mp_srcptr up;
43      mp_size usize;
44      unsigned cnt;
45 #endif
46 {
47   mp_limb high_limb, low_limb;
48 /* The following #ifdef hackery is from Lennart (0.999.6) [WDP 94/10] */
49 /* bug in the c compiler */
50 #ifdef __alpha
51   unsigned long
52 #else
53   unsigned
54 #endif
55       sh_1, sh_2;
56   mp_size i;
57
58   if (usize == 0)
59     return 0;
60
61   sh_1 = cnt;
62   if (sh_1 == 0)
63     {
64       if (wp != up)
65         {
66           /* Copy from low end to high end, to allow specified input/output
67              overlapping.  */
68           for (i = 0; i < usize; i++)
69             wp[i] = up[i];
70         }
71       return usize;
72     }
73
74   wp -= 1;
75   sh_2 = BITS_PER_MP_LIMB - sh_1;
76   high_limb = up[0];
77 #if 0
78   if (cy_limb != NULL)
79     *cy_limb = high_limb << sh_2;
80 #endif
81   low_limb = high_limb;
82
83   for (i = 1; i < usize; i++)
84     {
85       high_limb = up[i];
86       wp[i] = (low_limb >> sh_1) | (high_limb << sh_2);
87       low_limb = high_limb;
88     }
89   low_limb >>= sh_1;
90   if (low_limb != 0)
91     {
92       wp[i] = low_limb;
93       return usize;
94     }
95
96   return usize - 1;
97 }