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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
#![cfg_attr(feature = "nightly", feature(const_trait_impl))]
#![cfg_attr(all(doc, feature = "nightly"), feature(const_mut_refs))]
#![warn(clippy::all)]
mod conv;
pub use conv::*;
pub use macros::*;
pub use static_assertions;
pub trait BitRange<T> {
fn bit_range<const START: usize, const END: usize>(self) -> T;
#[must_use]
fn set_bit_range<const START: usize, const END: usize>(self, value: T) -> Self;
}
pub trait Bit {
fn bit<const BIT: usize>(self) -> bool;
#[must_use]
fn set_bit<const BIT: usize>(self, value: bool) -> Self;
}
macro_rules! impl_bitrange {
($storage: ty, $value: ty$(, $const: ident)?) => {
impl $($const)* BitRange<$value> for $storage {
#[inline]
fn bit_range<const START: usize, const END: usize>(self) -> $value {
const VALUE_BIT_LEN: usize = core::mem::size_of::<$value>() << 3;
let selected = END - START;
((self >> START) as $value) << (VALUE_BIT_LEN - selected)
>> (VALUE_BIT_LEN - selected)
}
#[inline]
fn set_bit_range<const START: usize, const END: usize>(self, value: $value) -> Self {
const VALUE_BIT_LEN: usize = core::mem::size_of::<$value>() << 3;
let selected = END - START;
let mask = (if selected == VALUE_BIT_LEN {
<$value>::MAX
} else {
((1 as $value) << selected) - 1
} as $storage)
<< START;
(self & !mask) | ((value as $storage) << START & mask)
}
}
};
}
macro_rules! impl_bitrange_for_types {
(=> $($dst_ty: ty),*) => {};
($src_ty: ty $(, $other_src_ty: ty)* => $($dst_ty: ty),*) => {
$(
#[cfg(feature = "nightly")]
impl_bitrange!($src_ty, $dst_ty, const);
#[cfg(not(feature = "nightly"))]
impl_bitrange!($src_ty, $dst_ty);
)*
impl_bitrange_for_types!($($other_src_ty),* => $($dst_ty),*);
};
($($($src_ty: ty),* => $($dst_ty: ty),*);*) => {
$(
impl_bitrange_for_types!($($src_ty),* => $($dst_ty),*);
)*
};
}
impl_bitrange_for_types!(
u8, i8 => u8, i8;
u16, i16 => u8, u16, i8, i16;
u32, i32 => u8, u16, u32, i8, i16, i32;
u64, i64 => u8, u16, u32, u64, i8, i16, i32, i64;
u128, i128 => u8, u16, u32, u64, u128, i8, i16, i32, i64, i128
);
#[cfg(target_pointer_width = "16")]
impl_bitrange_for_types!(
usize, isize => u8, u16, i8, i16
);
#[cfg(target_pointer_width = "32")]
impl_bitrange_for_types!(
usize, isize => u8, u16, u32, i8, i16, i32
);
#[cfg(target_pointer_width = "64")]
impl_bitrange_for_types!(
usize, isize => u8, u16, u32, u64, i8, i16, i32, i64
);
macro_rules! impl_bit {
($t: ty$(, $const: ident)?) => {
impl $($const)* Bit for $t {
#[inline(always)]
fn bit<const BIT: usize>(self) -> bool {
self & 1 << BIT != 0
}
#[inline(always)]
#[must_use]
fn set_bit<const BIT: usize>(self, value: bool) -> Self {
(self & !(1 << BIT)) | (value as $t) << BIT
}
}
};
}
#[cfg(feature = "nightly")]
macro_rules! impl_bit_for_types {
($($t: ty),*) => {
$(impl_bit!($t, const);)*
};
}
#[cfg(not(feature = "nightly"))]
macro_rules! impl_bit_for_types {
($($t: ty),*) => {
$(impl_bit!($t);)*
};
}
impl_bit_for_types!(u8, u16, u32, u64, u128, usize, i8, i16, i32, i64, i128, isize);
#[cfg(doc)]
extern crate self as proc_bitfield;
#[cfg(all(doc, feature = "nightly"))]
bitfield! {
#[derive(Clone, Copy, PartialEq, Eq)]
pub const struct Example(pub u16): Debug {
pub raw: u16 @ ..,
pub vblank: bool @ 0,
pub hblank: bool @ 1,
pub vcount_match: bool @ 2,
pub irq_mask: u8 @ 3..=5,
pub vcount_compare_high: u8 @ 7..8,
pub vcount_compare_low: u8 @ 8; 8,
}
}
#[cfg(all(doc, not(feature = "nightly")))]
bitfield! {
#[derive(Clone, Copy, PartialEq, Eq)]
pub struct Example(pub u16): Debug {
pub raw: u16 @ ..,
pub vblank: bool @ 0,
pub hblank: bool @ 1,
pub vcount_match: bool @ 2,
pub irq_mask: u8 @ 3..=5,
pub vcount_compare_high: u8 @ 7..8,
pub vcount_compare_low: u8 @ 8; 8,
}
}