Line | Count | Source |
1 | | /* mpn_lshift -- Shift left low level. |
2 | | |
3 | | Copyright 1991, 1993, 1994, 1996, 2000-2002 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 either: |
9 | | |
10 | | * the GNU Lesser General Public License as published by the Free |
11 | | Software Foundation; either version 3 of the License, or (at your |
12 | | option) any later version. |
13 | | |
14 | | or |
15 | | |
16 | | * the GNU General Public License as published by the Free Software |
17 | | Foundation; either version 2 of the License, or (at your option) any |
18 | | later version. |
19 | | |
20 | | or both in parallel, as here. |
21 | | |
22 | | The GNU MP Library is distributed in the hope that it will be useful, but |
23 | | WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY |
24 | | or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
25 | | for more details. |
26 | | |
27 | | You should have received copies of the GNU General Public License and the |
28 | | GNU Lesser General Public License along with the GNU MP Library. If not, |
29 | | see https://www.gnu.org/licenses/. */ |
30 | | |
31 | | #include "gmp-impl.h" |
32 | | |
33 | | /* Shift U (pointed to by up and n limbs long) cnt bits to the left |
34 | | and store the n least significant limbs of the result at rp. |
35 | | Return the bits shifted out from the most significant limb. |
36 | | |
37 | | Argument constraints: |
38 | | 1. 0 < cnt < GMP_NUMB_BITS. |
39 | | 2. If the result is to be written over the input, rp must be >= up. |
40 | | */ |
41 | | |
42 | | mp_limb_t |
43 | | mpn_lshift (mp_ptr rp, mp_srcptr up, mp_size_t n, unsigned int cnt) |
44 | 9.58M | { |
45 | 9.58M | mp_limb_t high_limb, low_limb; |
46 | 9.58M | unsigned int tnc; |
47 | 9.58M | mp_size_t i; |
48 | 9.58M | mp_limb_t retval; |
49 | | |
50 | 9.58M | ASSERT (n >= 1); |
51 | 9.58M | ASSERT (cnt >= 1); |
52 | 9.58M | ASSERT (cnt < GMP_NUMB_BITS); |
53 | 9.58M | ASSERT (MPN_SAME_OR_DECR_P (rp, up, n)); |
54 | | |
55 | 9.58M | up += n; |
56 | 9.58M | rp += n; |
57 | | |
58 | 9.58M | tnc = GMP_NUMB_BITS - cnt; |
59 | 9.58M | low_limb = *--up; |
60 | 9.58M | retval = low_limb >> tnc; |
61 | 9.58M | high_limb = (low_limb << cnt) & GMP_NUMB_MASK; |
62 | | |
63 | 133M | for (i = n - 1; i != 0; i--) |
64 | 123M | { |
65 | 123M | low_limb = *--up; |
66 | 123M | *--rp = high_limb | (low_limb >> tnc); |
67 | 123M | high_limb = (low_limb << cnt) & GMP_NUMB_MASK; |
68 | 123M | } |
69 | 9.58M | *--rp = high_limb; |
70 | | |
71 | 9.58M | return retval; |
72 | 9.58M | } |