[project @ 1998-11-26 09:17:22 by sof]
[ghc-hetmet.git] / ghc / runtime / gmp / mpz_mul_2exp.c
1 /* mpz_mul_2exp -- Multiply a bignum by 2**CNT
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 void
25 #ifdef __STDC__
26 mpz_mul_2exp (MP_INT *w, const MP_INT *u, unsigned long int cnt)
27 #else
28 mpz_mul_2exp (w, u, cnt)
29      MP_INT *w;
30      const MP_INT *u;
31      unsigned long int cnt;
32 #endif
33 {
34   mp_size usize = u->size;
35   mp_size abs_usize = ABS (usize);
36   mp_size wsize;
37   mp_size limb_cnt;
38   mp_ptr wp;
39   mp_limb wdigit;
40
41   if (usize == 0)
42     {
43       w->size = 0;
44       return;
45     }
46
47   limb_cnt = cnt / BITS_PER_MP_LIMB;
48   wsize = abs_usize + limb_cnt + 1;
49   if (w->alloc < wsize)
50     _mpz_realloc (w, wsize);
51   wp = w->d;
52
53   wdigit = mpn_lshift (wp + limb_cnt, u->d, abs_usize,
54                         cnt % BITS_PER_MP_LIMB);
55   wsize = abs_usize + limb_cnt;
56
57   if (wdigit != 0)
58     {
59       wp[wsize] = wdigit;
60       wsize++;
61     }
62
63   /* Zero all whole digits at low end.  Do it here and not before calling
64      mpn_lshift, not to loose for U == W.  */
65   MPN_ZERO (wp, limb_cnt);
66
67   w->size = (usize >= 0) ? wsize : -wsize;
68 }