1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
use core::ops::{Shl, ShlAssign, Shr, ShrAssign};
use crate::{Digit, Unsigned};
use crate::numbers::{Array, Bits, NumberMut};
fn wrapping_shl_assign<T>(number: &mut T, bits: usize)
where
T: NumberMut
{
let l = number.significant_digits().len();
let n_digits = bits / Digit::BITS;
number.copy_within(..(l - n_digits), n_digits);
number[..n_digits].fill(0);
let n_bits = bits % Digit::BITS;
if n_bits > 0 {
let mut carry = 0;
for elem in number[n_digits..l + n_digits + 1].iter_mut() {
let new_carry = *elem >> (Digit::BITS - n_bits);
*elem = (*elem << n_bits) | carry;
carry = new_carry;
}
}
}
impl<const D: usize, const E: usize> ShlAssign<usize> for Unsigned<D, E> {
#[inline]
fn shl_assign(&mut self, bits: usize) {
wrapping_shl_assign(self, bits)
}
}
impl<const D: usize, const E: usize, const L: usize> ShlAssign<usize> for Array<D, E, L> {
#[inline]
fn shl_assign(&mut self, bits: usize) {
wrapping_shl_assign(self, bits)
}
}
fn generic_shr_assign<T>(number: &mut T, bits: usize)
where
T: NumberMut
{
let l = number.significant_digits().len();
let n_digits = bits / Digit::BITS;
if n_digits >= l {
number.set_zero();
return;
}
number.copy_within(n_digits.., 0);
number[(l - n_digits)..l].fill(0);
let n_bits = bits % Digit::BITS;
if n_bits > 0 {
let mut borrow = 0;
for elem in number.iter_mut().rev().skip(n_digits) {
let new_borrow = *elem << (Digit::BITS - n_bits);
*elem = (*elem >> n_bits) | borrow;
borrow = new_borrow;
}
}
}
impl<const D: usize, const E: usize> ShrAssign<usize> for Unsigned<D, E> {
#[inline]
fn shr_assign(&mut self, bits: usize) {
generic_shr_assign(self, bits)
}
}
impl<const D: usize, const E: usize, const L: usize> ShrAssign<usize> for Array<D, E, L> {
#[inline]
fn shr_assign(&mut self, bits: usize) {
generic_shr_assign(self, bits)
}
}
impl<const D: usize, const E: usize> Shl<usize> for &Unsigned<D, E> {
type Output = Unsigned<D, E>;
#[inline]
fn shl(self, bits: usize) -> Self::Output {
let mut result = self.clone();
result <<= bits;
result
}
}
impl<const D: usize, const E: usize, const L: usize> Shl<usize> for &Array<D, E, L> {
type Output = Array<D, E, L>;
#[inline]
fn shl(self, bits: usize) -> Self::Output {
let mut result = self.clone();
result <<= bits;
result
}
}
impl<const D: usize, const E: usize, const L: usize> Shr<usize> for &Array<D, E, L> {
type Output = Array<D, E, L>;
#[inline]
fn shr(self, bits: usize) -> Self::Output {
let mut result = self.clone();
result >>= bits;
result
}
}