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
160
161
162
163
use crate::{
arch::word::Word,
fast_divide::{FastDivideNormalized, FastDivideSmall},
primitive::WORD_BITS,
};
use static_assertions::const_assert;
pub(crate) type Digit = u32;
pub(crate) const MAX_RADIX: Digit = 36;
pub(crate) fn is_radix_valid(radix: Digit) -> bool {
(2..=MAX_RADIX).contains(&radix)
}
pub(crate) fn check_radix_valid(radix: Digit) {
if !is_radix_valid(radix) {
panic!("Invalid radix: {}", radix);
}
}
const_assert!(b'a' > b'0' + 10 && b'A' > b'0' + 10);
#[derive(Clone, Copy, Eq, PartialEq)]
#[repr(u8)]
pub(crate) enum DigitCase {
NoLetters = 0,
Lower = b'a' - b'0' - 10,
Upper = b'A' - b'0' - 10,
}
pub(crate) fn digit_from_utf8_byte(byte: u8, radix: Digit) -> Option<Digit> {
let res = match byte {
b'0'..=b'9' => (byte - b'0') as Digit,
b'a'..=b'z' => (byte - b'a') as Digit + 10,
b'A'..=b'Z' => (byte - b'A') as Digit + 10,
_ => return None,
};
if res < radix {
Some(res)
} else {
None
}
}
pub(crate) const MAX_WORD_DIGITS_NON_POW_2: usize = RadixInfo::for_radix(3).digits_per_word + 1;
#[derive(Clone, Copy)]
pub(crate) struct RadixInfo {
pub(crate) digits_per_word: usize,
pub(crate) range_per_word: Word,
pub(crate) fast_div_radix: FastDivideSmall,
pub(crate) fast_div_range_per_word: FastDivideNormalized,
}
pub(crate) fn radix_info(radix: Digit) -> &'static RadixInfo {
debug_assert!(is_radix_valid(radix));
&RADIX_INFO_TABLE[radix as usize]
}
impl RadixInfo {
const fn for_radix(radix: Digit) -> RadixInfo {
let fast_div_radix = FastDivideSmall::new(radix as Word);
if radix.is_power_of_two() {
RadixInfo {
digits_per_word: (WORD_BITS / radix.trailing_zeros()) as usize,
range_per_word: 0,
fast_div_radix,
fast_div_range_per_word: FastDivideNormalized::dummy(),
}
} else {
let mut digits_per_word = 0;
let mut range_per_word: Word = 1;
while let Some(range) = range_per_word.checked_mul(radix as Word) {
digits_per_word += 1;
range_per_word = range;
}
let shift = range_per_word.leading_zeros();
let fast_div_range_per_word = FastDivideNormalized::new(range_per_word << shift);
RadixInfo {
digits_per_word,
range_per_word,
fast_div_radix,
fast_div_range_per_word,
}
}
}
}
type RadixInfoTable = [RadixInfo; MAX_RADIX as usize + 1];
static RADIX_INFO_TABLE: RadixInfoTable = generate_radix_info_table();
const fn generate_radix_info_table() -> RadixInfoTable {
let mut table = [RadixInfo {
digits_per_word: 0,
range_per_word: 0,
fast_div_radix: FastDivideSmall::dummy(),
fast_div_range_per_word: FastDivideNormalized::dummy(),
}; MAX_RADIX as usize + 1];
let mut radix = 2;
while radix <= MAX_RADIX {
table[radix as usize] = RadixInfo::for_radix(radix);
radix += 1;
}
table
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_radix_info_table() {
for radix in 2..=MAX_RADIX {
let info = radix_info(radix);
assert_eq!(
info.digits_per_word,
((WORD_BITS as f64 + 0.01) / (radix as f64).log2()) as usize
);
if !radix.is_power_of_two() {
assert_eq!(
info.range_per_word,
(radix as Word).pow(info.digits_per_word as u32)
);
}
}
}
#[test]
fn test_digit_from_utf8_byte() {
assert_eq!(digit_from_utf8_byte(b'7', 10), Some(7));
assert_eq!(digit_from_utf8_byte(b'a', 16), Some(10));
assert_eq!(digit_from_utf8_byte(b'z', 36), Some(35));
assert_eq!(digit_from_utf8_byte(b'Z', 36), Some(35));
assert_eq!(digit_from_utf8_byte(b'?', 10), None);
assert_eq!(digit_from_utf8_byte(b'a', 10), None);
assert_eq!(digit_from_utf8_byte(b'z', 35), None);
assert_eq!(digit_from_utf8_byte(255, 35), None);
}
}