1 // SPDX-License-Identifier: GPL-2.0
2
3 //! Implementation of [`Bounded`], a wrapper around integer types limiting the number of bits
4 //! usable for value representation.
5
6 use core::{
7 cmp,
8 fmt,
9 ops::{
10 self,
11 Deref, //
12 }, //,
13 };
14
15 use kernel::{
16 num::{
17 Integer,
18 Unsigned, //
19 },
20 prelude::*, //
21 };
22
23 /// Evaluates to `true` if `$value` can be represented using at most `$n` bits in a `$type`.
24 ///
25 /// `expr` must be of type `type`, or the result will be incorrect.
26 ///
27 /// Can be used in const context.
28 macro_rules! fits_within {
29 ($value:expr, $type:ty, $n:expr) => {{
30 let shift: u32 = <$type>::BITS - $n;
31
32 // `value` fits within `$n` bits if shifting it left by the number of unused bits, then
33 // right by the same number, doesn't change it.
34 //
35 // This method has the benefit of working for both unsigned and signed values.
36 ($value << shift) >> shift == $value
37 }};
38 }
39
40 /// Returns `true` if `value` can be represented with at most `N` bits in a `T`.
41 #[inline(always)]
fits_within<T: Integer>(value: T, num_bits: u32) -> bool42 fn fits_within<T: Integer>(value: T, num_bits: u32) -> bool {
43 fits_within!(value, T, num_bits)
44 }
45
46 /// An integer value that requires only the `N` least significant bits of the wrapped type to be
47 /// encoded.
48 ///
49 /// This limits the number of usable bits in the wrapped integer type, and thus the stored value to
50 /// a narrower range, which provides guarantees that can be useful when working within e.g.
51 /// bitfields.
52 ///
53 /// # Invariants
54 ///
55 /// - `N` is greater than `0`.
56 /// - `N` is less than or equal to `T::BITS`.
57 /// - Stored values can be represented with at most `N` bits.
58 ///
59 /// # Examples
60 ///
61 /// The preferred way to create values is through constants and the [`Bounded::new`] family of
62 /// constructors, as they trigger a build error if the type invariants cannot be upheld.
63 ///
64 /// ```
65 /// use kernel::num::Bounded;
66 ///
67 /// // An unsigned 8-bit integer, of which only the 4 LSBs are used.
68 /// // The value `15` is statically validated to fit that constraint at build time.
69 /// let v = Bounded::<u8, 4>::new::<15>();
70 /// assert_eq!(v.get(), 15);
71 ///
72 /// // Same using signed values.
73 /// let v = Bounded::<i8, 4>::new::<-8>();
74 /// assert_eq!(v.get(), -8);
75 ///
76 /// // This doesn't build: a `u8` is smaller than the requested 9 bits.
77 /// // let _ = Bounded::<u8, 9>::new::<10>();
78 ///
79 /// // This also doesn't build: the requested value doesn't fit within 4 signed bits.
80 /// // let _ = Bounded::<i8, 4>::new::<8>();
81 /// ```
82 ///
83 /// Values can also be validated at runtime with [`Bounded::try_new`].
84 ///
85 /// ```
86 /// use kernel::num::Bounded;
87 ///
88 /// // This succeeds because `15` can be represented with 4 unsigned bits.
89 /// assert!(Bounded::<u8, 4>::try_new(15).is_some());
90 ///
91 /// // This fails because `16` cannot be represented with 4 unsigned bits.
92 /// assert!(Bounded::<u8, 4>::try_new(16).is_none());
93 /// ```
94 ///
95 /// Non-constant expressions can be validated at build-time thanks to compiler optimizations. This
96 /// should be used with caution, on simple expressions only.
97 ///
98 /// ```
99 /// use kernel::num::Bounded;
100 /// # fn some_number() -> u32 { 0xffffffff }
101 ///
102 /// // Here the compiler can infer from the mask that the type invariants are not violated, even
103 /// // though the value returned by `some_number` is not statically known.
104 /// let v = Bounded::<u32, 4>::from_expr(some_number() & 0xf);
105 /// ```
106 ///
107 /// Comparison and arithmetic operations are supported on [`Bounded`]s with a compatible backing
108 /// type, regardless of their number of valid bits.
109 ///
110 /// ```
111 /// use kernel::num::Bounded;
112 ///
113 /// let v1 = Bounded::<u32, 8>::new::<4>();
114 /// let v2 = Bounded::<u32, 4>::new::<15>();
115 ///
116 /// assert!(v1 != v2);
117 /// assert!(v1 < v2);
118 /// assert_eq!(v1 + v2, 19);
119 /// assert_eq!(v2 % v1, 3);
120 /// ```
121 ///
122 /// These operations are also supported between a [`Bounded`] and its backing type.
123 ///
124 /// ```
125 /// use kernel::num::Bounded;
126 ///
127 /// let v = Bounded::<u8, 4>::new::<15>();
128 ///
129 /// assert!(v == 15);
130 /// assert!(v > 12);
131 /// assert_eq!(v + 5, 20);
132 /// assert_eq!(v / 3, 5);
133 /// ```
134 ///
135 /// A change of backing types is possible using [`Bounded::cast`], and the number of valid bits can
136 /// be extended or reduced with [`Bounded::extend`] and [`Bounded::try_shrink`].
137 ///
138 /// ```
139 /// use kernel::num::Bounded;
140 ///
141 /// let v = Bounded::<u32, 12>::new::<127>();
142 ///
143 /// // Changes backing type from `u32` to `u16`.
144 /// let _: Bounded<u16, 12> = v.cast();
145 ///
146 /// // This does not build, as `u8` is smaller than 12 bits.
147 /// // let _: Bounded<u8, 12> = v.cast();
148 ///
149 /// // We can safely extend the number of bits...
150 /// let _ = v.extend::<15>();
151 ///
152 /// // ... to the limits of the backing type. This doesn't build as a `u32` cannot contain 33 bits.
153 /// // let _ = v.extend::<33>();
154 ///
155 /// // Reducing the number of bits is validated at runtime. This works because `127` can be
156 /// // represented with 8 bits.
157 /// assert!(v.try_shrink::<8>().is_some());
158 ///
159 /// // ... but not with 6, so this fails.
160 /// assert!(v.try_shrink::<6>().is_none());
161 /// ```
162 ///
163 /// Infallible conversions from a primitive integer to a large-enough [`Bounded`] are supported.
164 ///
165 /// ```
166 /// use kernel::num::Bounded;
167 ///
168 /// // This unsigned `Bounded` has 8 bits, so it can represent any `u8`.
169 /// let v = Bounded::<u32, 8>::from(128u8);
170 /// assert_eq!(v.get(), 128);
171 ///
172 /// // This signed `Bounded` has 8 bits, so it can represent any `i8`.
173 /// let v = Bounded::<i32, 8>::from(-128i8);
174 /// assert_eq!(v.get(), -128);
175 ///
176 /// // This doesn't build, as this 6-bit `Bounded` does not have enough capacity to represent a
177 /// // `u8` (regardless of the passed value).
178 /// // let _ = Bounded::<u32, 6>::from(10u8);
179 ///
180 /// // Booleans can be converted into unsigned `Bounded`s.
181 ///
182 /// let v = Bounded::<u64, 1>::from(false);
183 /// assert_eq!(v.get(), 0);
184 ///
185 /// let v = Bounded::<u64, 1>::from(true);
186 /// assert_eq!(v.get(), 1);
187 ///
188 /// // This does not build because `i8` is signed.
189 /// // let _ = Bounded::<i8, 2>::from(true);
190 /// ```
191 ///
192 /// Infallible conversions from a [`Bounded`] to a primitive integer are also supported, and
193 /// dependent on the number of bits used for value representation, not on the backing type.
194 ///
195 /// ```
196 /// use kernel::num::Bounded;
197 ///
198 /// // Even though its backing type is `u32`, this `Bounded` only uses 6 bits and thus can safely
199 /// // be converted to a `u8`.
200 /// let v = Bounded::<u32, 6>::new::<63>();
201 /// assert_eq!(u8::from(v), 63);
202 ///
203 /// // Same using signed values.
204 /// let v = Bounded::<i32, 8>::new::<-128>();
205 /// assert_eq!(i8::from(v), -128);
206 ///
207 /// // This however does not build, as 10 bits won't fit into a `u8` (regardless of the actually
208 /// // contained value).
209 /// let _v = Bounded::<u32, 10>::new::<10>();
210 /// // assert_eq!(u8::from(_v), 10);
211 ///
212 /// // Unsigned single-bit `Bounded`s can be converted into a boolean.
213 /// let v = Bounded::<u8, 1>::new::<1>();
214 /// assert_eq!(bool::from(v), true);
215 ///
216 /// let v = Bounded::<u8, 1>::new::<0>();
217 /// assert_eq!(bool::from(v), false);
218 ///
219 /// // This does not build because `i8` is signed.
220 /// // let v = Bounded::<i8, 1>::new::<-1>();
221 /// // let _ = bool::from(v);
222 /// ```
223 ///
224 /// Fallible conversions from any primitive integer to any [`Bounded`] are also supported using the
225 /// [`TryIntoBounded`] trait.
226 ///
227 /// ```
228 /// use kernel::num::{Bounded, TryIntoBounded};
229 ///
230 /// // Succeeds because `128` fits into 8 bits.
231 /// let v: Option<Bounded<u16, 8>> = 128u32.try_into_bounded();
232 /// assert_eq!(v.as_deref().copied(), Some(128));
233 ///
234 /// // Fails because `128` doesn't fit into 6 bits.
235 /// let v: Option<Bounded<u16, 6>> = 128u32.try_into_bounded();
236 /// assert_eq!(v, None);
237 /// ```
238 #[repr(transparent)]
239 #[derive(Clone, Copy, Debug, Default, Hash)]
240 pub struct Bounded<T: Integer, const N: u32>(T);
241
242 /// Validating the value as a const expression cannot be done as a regular method, as the
243 /// arithmetic operations we rely on to check the bounds are not const. Thus, implement
244 /// [`Bounded::new`] using a macro.
245 macro_rules! impl_const_new {
246 ($($type:ty)*) => {
247 $(
248 impl<const N: u32> Bounded<$type, N> {
249 /// Creates a [`Bounded`] for the constant `VALUE`.
250 ///
251 /// Fails at build time if `VALUE` cannot be represented with `N` bits.
252 ///
253 /// This method should be preferred to [`Self::from_expr`] whenever possible.
254 ///
255 /// # Examples
256 ///
257 /// ```
258 /// use kernel::num::Bounded;
259 ///
260 #[doc = ::core::concat!(
261 "let v = Bounded::<",
262 ::core::stringify!($type),
263 ", 4>::new::<7>();")]
264 /// assert_eq!(v.get(), 7);
265 /// ```
266 pub const fn new<const VALUE: $type>() -> Self {
267 // Statically assert that `VALUE` fits within the set number of bits.
268 const_assert!(fits_within!(VALUE, $type, N));
269
270 // SAFETY: `fits_within` confirmed that `VALUE` can be represented within
271 // `N` bits.
272 unsafe { Self::__new(VALUE) }
273 }
274 }
275 )*
276 };
277 }
278
279 impl_const_new!(
280 u8 u16 u32 u64 usize
281 i8 i16 i32 i64 isize
282 );
283
284 impl<T, const N: u32> Bounded<T, N>
285 where
286 T: Integer,
287 {
288 /// Private constructor enforcing the type invariants.
289 ///
290 /// All instances of [`Bounded`] must be created through this method as it enforces most of the
291 /// type invariants.
292 ///
293 /// # Safety
294 ///
295 /// The caller must ensure that `value` can be represented within `N` bits.
__new(value: T) -> Self296 const unsafe fn __new(value: T) -> Self {
297 // Enforce the type invariants.
298 // `N` cannot be zero.
299 const_assert!(N != 0);
300 // The backing type is at least as large as `N` bits.
301 const_assert!(N <= T::BITS);
302
303 // INVARIANT: The caller ensures `value` fits within `N` bits.
304 Self(value)
305 }
306
307 /// Attempts to turn `value` into a `Bounded` using `N` bits.
308 ///
309 /// Returns [`None`] if `value` doesn't fit within `N` bits.
310 ///
311 /// # Examples
312 ///
313 /// ```
314 /// use kernel::num::Bounded;
315 ///
316 /// let v = Bounded::<u8, 1>::try_new(1);
317 /// assert_eq!(v.as_deref().copied(), Some(1));
318 ///
319 /// let v = Bounded::<i8, 4>::try_new(-2);
320 /// assert_eq!(v.as_deref().copied(), Some(-2));
321 ///
322 /// // `0x1ff` doesn't fit into 8 unsigned bits.
323 /// let v = Bounded::<u32, 8>::try_new(0x1ff);
324 /// assert_eq!(v, None);
325 ///
326 /// // The range of values representable with 4 bits is `[-8..=7]`. The following tests these
327 /// // limits.
328 /// let v = Bounded::<i8, 4>::try_new(-8);
329 /// assert_eq!(v.map(Bounded::get), Some(-8));
330 /// let v = Bounded::<i8, 4>::try_new(-9);
331 /// assert_eq!(v, None);
332 /// let v = Bounded::<i8, 4>::try_new(7);
333 /// assert_eq!(v.map(Bounded::get), Some(7));
334 /// let v = Bounded::<i8, 4>::try_new(8);
335 /// assert_eq!(v, None);
336 /// ```
try_new(value: T) -> Option<Self>337 pub fn try_new(value: T) -> Option<Self> {
338 fits_within(value, N).then(|| {
339 // SAFETY: `fits_within` confirmed that `value` can be represented within `N` bits.
340 unsafe { Self::__new(value) }
341 })
342 }
343
344 /// Checks that `expr` is valid for this type at compile-time and build a new value.
345 ///
346 /// This relies on [`build_assert!`] and guaranteed optimization to perform validation at
347 /// compile-time. If `expr` cannot be proved to be within the requested bounds at compile-time,
348 /// use the fallible [`Self::try_new`] instead.
349 ///
350 /// Limit this to simple, easily provable expressions, and prefer one of the [`Self::new`]
351 /// constructors whenever possible as they statically validate the value instead of relying on
352 /// compiler optimizations.
353 ///
354 /// # Examples
355 ///
356 /// ```
357 /// use kernel::num::Bounded;
358 /// # fn some_number() -> u32 { 0xffffffff }
359 ///
360 /// // Some undefined number.
361 /// let v: u32 = some_number();
362 ///
363 /// // Triggers a build error as `v` cannot be asserted to fit within 4 bits...
364 /// // let _ = Bounded::<u32, 4>::from_expr(v);
365 ///
366 /// // ... but this works as the compiler can assert the range from the mask.
367 /// let _ = Bounded::<u32, 4>::from_expr(v & 0xf);
368 ///
369 /// // These expressions are simple enough to be proven correct, but since they are static the
370 /// // `new` constructor should be preferred.
371 /// assert_eq!(Bounded::<u8, 1>::from_expr(1).get(), 1);
372 /// assert_eq!(Bounded::<u16, 8>::from_expr(0xff).get(), 0xff);
373 /// ```
374 // Always inline to optimize out error path of `build_assert`.
375 #[inline(always)]
from_expr(expr: T) -> Self376 pub fn from_expr(expr: T) -> Self {
377 crate::build_assert::build_assert!(
378 fits_within(expr, N),
379 "Requested value larger than maximal representable value."
380 );
381
382 // SAFETY: `fits_within` confirmed that `expr` can be represented within `N` bits.
383 unsafe { Self::__new(expr) }
384 }
385
386 /// Returns the wrapped value as the backing type.
387 ///
388 /// This is similar to the [`Deref`] implementation, but doesn't enforce the size invariant of
389 /// the [`Bounded`], which might produce slightly less optimal code.
390 ///
391 /// # Examples
392 ///
393 /// ```
394 /// use kernel::num::Bounded;
395 ///
396 /// let v = Bounded::<u32, 4>::new::<7>();
397 /// assert_eq!(v.get(), 7u32);
398 /// ```
get(self) -> T399 pub const fn get(self) -> T {
400 self.0
401 }
402
403 /// Increases the number of bits usable for `self`.
404 ///
405 /// This operation cannot fail.
406 ///
407 /// # Examples
408 ///
409 /// ```
410 /// use kernel::num::Bounded;
411 ///
412 /// let v = Bounded::<u32, 4>::new::<7>();
413 /// let larger_v = v.extend::<12>();
414 /// // The contained values are equal even though `larger_v` has a bigger capacity.
415 /// assert_eq!(larger_v, v);
416 /// ```
extend<const M: u32>(self) -> Bounded<T, M>417 pub const fn extend<const M: u32>(self) -> Bounded<T, M> {
418 const_assert!(
419 M >= N,
420 "Requested number of bits is less than the current representation."
421 );
422
423 // SAFETY: The value did fit within `N` bits, so it will all the more fit within
424 // the larger `M` bits.
425 unsafe { Bounded::__new(self.0) }
426 }
427
428 /// Attempts to shrink the number of bits usable for `self`.
429 ///
430 /// Returns [`None`] if the value of `self` cannot be represented within `M` bits.
431 ///
432 /// # Examples
433 ///
434 /// ```
435 /// use kernel::num::Bounded;
436 ///
437 /// let v = Bounded::<u32, 12>::new::<7>();
438 ///
439 /// // `7` can be represented using 3 unsigned bits...
440 /// let smaller_v = v.try_shrink::<3>();
441 /// assert_eq!(smaller_v.as_deref().copied(), Some(7));
442 ///
443 /// // ... but doesn't fit within `2` bits.
444 /// assert_eq!(v.try_shrink::<2>(), None);
445 /// ```
try_shrink<const M: u32>(self) -> Option<Bounded<T, M>>446 pub fn try_shrink<const M: u32>(self) -> Option<Bounded<T, M>> {
447 Bounded::<T, M>::try_new(self.get())
448 }
449
450 /// Casts `self` into a [`Bounded`] backed by a different storage type, but using the same
451 /// number of valid bits.
452 ///
453 /// Both `T` and `U` must be of same signedness, and `U` must be at least as large as
454 /// `N` bits, or a build error will occur.
455 ///
456 /// # Examples
457 ///
458 /// ```
459 /// use kernel::num::Bounded;
460 ///
461 /// let v = Bounded::<u32, 12>::new::<127>();
462 ///
463 /// let u16_v: Bounded<u16, 12> = v.cast();
464 /// assert_eq!(u16_v.get(), 127);
465 ///
466 /// // This won't build: a `u8` is smaller than the required 12 bits.
467 /// // let _: Bounded<u8, 12> = v.cast();
468 /// ```
cast<U>(self) -> Bounded<U, N> where U: TryFrom<T> + Integer, T: Integer, U: Integer<Signedness = T::Signedness>,469 pub fn cast<U>(self) -> Bounded<U, N>
470 where
471 U: TryFrom<T> + Integer,
472 T: Integer,
473 U: Integer<Signedness = T::Signedness>,
474 {
475 // SAFETY: The converted value is represented using `N` bits, `U` can contain `N` bits, and
476 // `U` and `T` have the same sign, hence this conversion cannot fail.
477 let value = unsafe { U::try_from(self.get()).unwrap_unchecked() };
478
479 // SAFETY: Although the backing type has changed, the value is still represented within
480 // `N` bits, and with the same signedness.
481 unsafe { Bounded::__new(value) }
482 }
483
484 /// Right-shifts `self` by `SHIFT` and returns the result as a `Bounded<_, RES>`, where `RES >=
485 /// N - SHIFT`.
486 ///
487 /// # Examples
488 ///
489 /// ```
490 /// use kernel::num::Bounded;
491 ///
492 /// let v = Bounded::<u32, 16>::new::<0xff00>();
493 /// let v_shifted: Bounded::<u32, 8> = v.shr::<8, _>();
494 ///
495 /// assert_eq!(v_shifted.get(), 0xff);
496 /// ```
shr<const SHIFT: u32, const RES: u32>(self) -> Bounded<T, RES>497 pub fn shr<const SHIFT: u32, const RES: u32>(self) -> Bounded<T, RES> {
498 const_assert!(SHIFT < T::BITS);
499 const_assert!(RES + SHIFT >= N);
500
501 // SAFETY: We shift the value right by `SHIFT`, reducing the number of bits needed to
502 // represent the shifted value by as much, and just asserted that `RES >= N - SHIFT`.
503 unsafe { Bounded::__new(self.0 >> SHIFT) }
504 }
505
506 /// Right-shifts `self` by `SHIFT` if that loses no set bits, and returns the result as a
507 /// `Bounded<_, RES>`, where `RES >= N - SHIFT`.
508 ///
509 /// Returns [`None`] if any of the `SHIFT` least significant bits of `self` is set.
510 ///
511 /// # Examples
512 ///
513 /// ```
514 /// use kernel::num::Bounded;
515 ///
516 /// let v = Bounded::<u32, 16>::new::<0xff00>();
517 /// let v_shifted: Option<Bounded<u32, 8>> = v.shr_exact::<8, _>();
518 ///
519 /// assert_eq!(v_shifted.map(|v| v.get()), Some(0xff));
520 ///
521 /// // A set bit would be shifted out.
522 /// let v = Bounded::<u32, 16>::new::<0xff01>();
523 /// let v_shifted: Option<Bounded<u32, 8>> = v.shr_exact::<8, _>();
524 ///
525 /// assert!(v_shifted.is_none());
526 /// ```
527 #[inline]
shr_exact<const SHIFT: u32, const RES: u32>(self) -> Option<Bounded<T, RES>>528 pub fn shr_exact<const SHIFT: u32, const RES: u32>(self) -> Option<Bounded<T, RES>> {
529 let shifted = self.shr::<SHIFT, RES>();
530 if shifted.get() << SHIFT == self.0 {
531 Some(shifted)
532 } else {
533 None
534 }
535 }
536
537 /// Left-shifts `self` by `SHIFT` and returns the result as a `Bounded<_, RES>`, where `RES >=
538 /// N + SHIFT`.
539 ///
540 /// # Examples
541 ///
542 /// ```
543 /// use kernel::num::Bounded;
544 ///
545 /// let v = Bounded::<u32, 8>::new::<0xff>();
546 /// let v_shifted: Bounded::<u32, 16> = v.shl::<8, _>();
547 ///
548 /// assert_eq!(v_shifted.get(), 0xff00);
549 /// ```
shl<const SHIFT: u32, const RES: u32>(self) -> Bounded<T, RES>550 pub fn shl<const SHIFT: u32, const RES: u32>(self) -> Bounded<T, RES> {
551 const_assert!(RES >= N + SHIFT);
552
553 // SAFETY: We shift the value left by `SHIFT`, augmenting the number of bits needed to
554 // represent the shifted value by as much, and just asserted that `RES >= N + SHIFT`.
555 unsafe { Bounded::__new(self.0 << SHIFT) }
556 }
557 }
558
559 impl<T, const N: u32> Deref for Bounded<T, N>
560 where
561 T: Integer,
562 {
563 type Target = T;
564
deref(&self) -> &Self::Target565 fn deref(&self) -> &Self::Target {
566 // Enforce the invariant to inform the compiler of the bounds of the value.
567 if !fits_within(self.0, N) {
568 // SAFETY: Per the `Bounded` invariants, `fits_within` can never return `false` on the
569 // value of a valid instance.
570 unsafe { core::hint::unreachable_unchecked() }
571 }
572
573 &self.0
574 }
575 }
576
577 /// Trait similar to [`TryInto`] but for [`Bounded`], to avoid conflicting implementations.
578 ///
579 /// # Examples
580 ///
581 /// ```
582 /// use kernel::num::{Bounded, TryIntoBounded};
583 ///
584 /// // Succeeds because `128` fits into 8 bits.
585 /// let v: Option<Bounded<u16, 8>> = 128u32.try_into_bounded();
586 /// assert_eq!(v.as_deref().copied(), Some(128));
587 ///
588 /// // Fails because `128` doesn't fit into 6 bits.
589 /// let v: Option<Bounded<u16, 6>> = 128u32.try_into_bounded();
590 /// assert_eq!(v, None);
591 /// ```
592 pub trait TryIntoBounded<T: Integer, const N: u32> {
593 /// Attempts to convert `self` into a [`Bounded`] using `N` bits.
594 ///
595 /// Returns [`None`] if `self` does not fit into the target type.
try_into_bounded(self) -> Option<Bounded<T, N>>596 fn try_into_bounded(self) -> Option<Bounded<T, N>>;
597 }
598
599 /// Any integer value can be attempted to be converted into a [`Bounded`] of any size.
600 impl<T, U, const N: u32> TryIntoBounded<T, N> for U
601 where
602 T: Integer,
603 U: TryInto<T>,
604 {
try_into_bounded(self) -> Option<Bounded<T, N>>605 fn try_into_bounded(self) -> Option<Bounded<T, N>> {
606 self.try_into().ok().and_then(Bounded::try_new)
607 }
608 }
609
610 // Comparisons between `Bounded`s.
611
612 impl<T, U, const N: u32, const M: u32> PartialEq<Bounded<U, M>> for Bounded<T, N>
613 where
614 T: Integer,
615 U: Integer,
616 T: PartialEq<U>,
617 {
eq(&self, other: &Bounded<U, M>) -> bool618 fn eq(&self, other: &Bounded<U, M>) -> bool {
619 self.get() == other.get()
620 }
621 }
622
623 impl<T, const N: u32> Eq for Bounded<T, N> where T: Integer {}
624
625 impl<T, U, const N: u32, const M: u32> PartialOrd<Bounded<U, M>> for Bounded<T, N>
626 where
627 T: Integer,
628 U: Integer,
629 T: PartialOrd<U>,
630 {
partial_cmp(&self, other: &Bounded<U, M>) -> Option<cmp::Ordering>631 fn partial_cmp(&self, other: &Bounded<U, M>) -> Option<cmp::Ordering> {
632 self.get().partial_cmp(&other.get())
633 }
634 }
635
636 impl<T, const N: u32> Ord for Bounded<T, N>
637 where
638 T: Integer,
639 T: Ord,
640 {
cmp(&self, other: &Self) -> cmp::Ordering641 fn cmp(&self, other: &Self) -> cmp::Ordering {
642 self.get().cmp(&other.get())
643 }
644 }
645
646 // Comparisons between a `Bounded` and its backing type.
647
648 impl<T, const N: u32> PartialEq<T> for Bounded<T, N>
649 where
650 T: Integer,
651 T: PartialEq,
652 {
eq(&self, other: &T) -> bool653 fn eq(&self, other: &T) -> bool {
654 self.get() == *other
655 }
656 }
657
658 impl<T, const N: u32> PartialOrd<T> for Bounded<T, N>
659 where
660 T: Integer,
661 T: PartialOrd,
662 {
partial_cmp(&self, other: &T) -> Option<cmp::Ordering>663 fn partial_cmp(&self, other: &T) -> Option<cmp::Ordering> {
664 self.get().partial_cmp(other)
665 }
666 }
667
668 // Implementations of `core::ops` for two `Bounded` with the same backing type.
669
670 impl<T, const N: u32, const M: u32> ops::Add<Bounded<T, M>> for Bounded<T, N>
671 where
672 T: Integer,
673 T: ops::Add<Output = T>,
674 {
675 type Output = T;
676
add(self, rhs: Bounded<T, M>) -> Self::Output677 fn add(self, rhs: Bounded<T, M>) -> Self::Output {
678 self.get() + rhs.get()
679 }
680 }
681
682 impl<T, const N: u32, const M: u32> ops::BitAnd<Bounded<T, M>> for Bounded<T, N>
683 where
684 T: Integer,
685 T: ops::BitAnd<Output = T>,
686 {
687 type Output = T;
688
bitand(self, rhs: Bounded<T, M>) -> Self::Output689 fn bitand(self, rhs: Bounded<T, M>) -> Self::Output {
690 self.get() & rhs.get()
691 }
692 }
693
694 impl<T, const N: u32, const M: u32> ops::BitOr<Bounded<T, M>> for Bounded<T, N>
695 where
696 T: Integer,
697 T: ops::BitOr<Output = T>,
698 {
699 type Output = T;
700
bitor(self, rhs: Bounded<T, M>) -> Self::Output701 fn bitor(self, rhs: Bounded<T, M>) -> Self::Output {
702 self.get() | rhs.get()
703 }
704 }
705
706 impl<T, const N: u32, const M: u32> ops::BitXor<Bounded<T, M>> for Bounded<T, N>
707 where
708 T: Integer,
709 T: ops::BitXor<Output = T>,
710 {
711 type Output = T;
712
bitxor(self, rhs: Bounded<T, M>) -> Self::Output713 fn bitxor(self, rhs: Bounded<T, M>) -> Self::Output {
714 self.get() ^ rhs.get()
715 }
716 }
717
718 impl<T, const N: u32, const M: u32> ops::Div<Bounded<T, M>> for Bounded<T, N>
719 where
720 T: Integer,
721 T: ops::Div<Output = T>,
722 {
723 type Output = T;
724
div(self, rhs: Bounded<T, M>) -> Self::Output725 fn div(self, rhs: Bounded<T, M>) -> Self::Output {
726 self.get() / rhs.get()
727 }
728 }
729
730 impl<T, const N: u32, const M: u32> ops::Mul<Bounded<T, M>> for Bounded<T, N>
731 where
732 T: Integer,
733 T: ops::Mul<Output = T>,
734 {
735 type Output = T;
736
mul(self, rhs: Bounded<T, M>) -> Self::Output737 fn mul(self, rhs: Bounded<T, M>) -> Self::Output {
738 self.get() * rhs.get()
739 }
740 }
741
742 impl<T, const N: u32, const M: u32> ops::Rem<Bounded<T, M>> for Bounded<T, N>
743 where
744 T: Integer,
745 T: ops::Rem<Output = T>,
746 {
747 type Output = T;
748
rem(self, rhs: Bounded<T, M>) -> Self::Output749 fn rem(self, rhs: Bounded<T, M>) -> Self::Output {
750 self.get() % rhs.get()
751 }
752 }
753
754 impl<T, const N: u32, const M: u32> ops::Sub<Bounded<T, M>> for Bounded<T, N>
755 where
756 T: Integer,
757 T: ops::Sub<Output = T>,
758 {
759 type Output = T;
760
sub(self, rhs: Bounded<T, M>) -> Self::Output761 fn sub(self, rhs: Bounded<T, M>) -> Self::Output {
762 self.get() - rhs.get()
763 }
764 }
765
766 // Implementations of `core::ops` between a `Bounded` and its backing type.
767
768 impl<T, const N: u32> ops::Add<T> for Bounded<T, N>
769 where
770 T: Integer,
771 T: ops::Add<Output = T>,
772 {
773 type Output = T;
774
add(self, rhs: T) -> Self::Output775 fn add(self, rhs: T) -> Self::Output {
776 self.get() + rhs
777 }
778 }
779
780 impl<T, const N: u32> ops::BitAnd<T> for Bounded<T, N>
781 where
782 T: Integer,
783 T: ops::BitAnd<Output = T>,
784 {
785 type Output = T;
786
bitand(self, rhs: T) -> Self::Output787 fn bitand(self, rhs: T) -> Self::Output {
788 self.get() & rhs
789 }
790 }
791
792 impl<T, const N: u32> ops::BitOr<T> for Bounded<T, N>
793 where
794 T: Integer,
795 T: ops::BitOr<Output = T>,
796 {
797 type Output = T;
798
bitor(self, rhs: T) -> Self::Output799 fn bitor(self, rhs: T) -> Self::Output {
800 self.get() | rhs
801 }
802 }
803
804 impl<T, const N: u32> ops::BitXor<T> for Bounded<T, N>
805 where
806 T: Integer,
807 T: ops::BitXor<Output = T>,
808 {
809 type Output = T;
810
bitxor(self, rhs: T) -> Self::Output811 fn bitxor(self, rhs: T) -> Self::Output {
812 self.get() ^ rhs
813 }
814 }
815
816 impl<T, const N: u32> ops::Div<T> for Bounded<T, N>
817 where
818 T: Integer,
819 T: ops::Div<Output = T>,
820 {
821 type Output = T;
822
div(self, rhs: T) -> Self::Output823 fn div(self, rhs: T) -> Self::Output {
824 self.get() / rhs
825 }
826 }
827
828 impl<T, const N: u32> ops::Mul<T> for Bounded<T, N>
829 where
830 T: Integer,
831 T: ops::Mul<Output = T>,
832 {
833 type Output = T;
834
mul(self, rhs: T) -> Self::Output835 fn mul(self, rhs: T) -> Self::Output {
836 self.get() * rhs
837 }
838 }
839
840 impl<T, const N: u32> ops::Neg for Bounded<T, N>
841 where
842 T: Integer,
843 T: ops::Neg<Output = T>,
844 {
845 type Output = T;
846
neg(self) -> Self::Output847 fn neg(self) -> Self::Output {
848 -self.get()
849 }
850 }
851
852 impl<T, const N: u32> ops::Not for Bounded<T, N>
853 where
854 T: Integer,
855 T: ops::Not<Output = T>,
856 {
857 type Output = T;
858
not(self) -> Self::Output859 fn not(self) -> Self::Output {
860 !self.get()
861 }
862 }
863
864 impl<T, const N: u32> ops::Rem<T> for Bounded<T, N>
865 where
866 T: Integer,
867 T: ops::Rem<Output = T>,
868 {
869 type Output = T;
870
rem(self, rhs: T) -> Self::Output871 fn rem(self, rhs: T) -> Self::Output {
872 self.get() % rhs
873 }
874 }
875
876 impl<T, const N: u32> ops::Sub<T> for Bounded<T, N>
877 where
878 T: Integer,
879 T: ops::Sub<Output = T>,
880 {
881 type Output = T;
882
sub(self, rhs: T) -> Self::Output883 fn sub(self, rhs: T) -> Self::Output {
884 self.get() - rhs
885 }
886 }
887
888 // Proxy implementations of `core::fmt`.
889
890 impl<T, const N: u32> fmt::Display for Bounded<T, N>
891 where
892 T: Integer,
893 T: fmt::Display,
894 {
fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result895 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
896 self.get().fmt(f)
897 }
898 }
899
900 impl<T, const N: u32> fmt::Binary for Bounded<T, N>
901 where
902 T: Integer,
903 T: fmt::Binary,
904 {
fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result905 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
906 self.get().fmt(f)
907 }
908 }
909
910 impl<T, const N: u32> fmt::LowerExp for Bounded<T, N>
911 where
912 T: Integer,
913 T: fmt::LowerExp,
914 {
fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result915 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
916 self.get().fmt(f)
917 }
918 }
919
920 impl<T, const N: u32> fmt::LowerHex for Bounded<T, N>
921 where
922 T: Integer,
923 T: fmt::LowerHex,
924 {
fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result925 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
926 self.get().fmt(f)
927 }
928 }
929
930 impl<T, const N: u32> fmt::Octal for Bounded<T, N>
931 where
932 T: Integer,
933 T: fmt::Octal,
934 {
fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result935 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
936 self.get().fmt(f)
937 }
938 }
939
940 impl<T, const N: u32> fmt::UpperExp for Bounded<T, N>
941 where
942 T: Integer,
943 T: fmt::UpperExp,
944 {
fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result945 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
946 self.get().fmt(f)
947 }
948 }
949
950 impl<T, const N: u32> fmt::UpperHex for Bounded<T, N>
951 where
952 T: Integer,
953 T: fmt::UpperHex,
954 {
fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result955 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
956 self.get().fmt(f)
957 }
958 }
959
960 /// Implements `$trait` for all [`Bounded`] types represented using `$num_bits`.
961 ///
962 /// This is used to declare size properties as traits that we can constrain against in impl blocks.
963 macro_rules! impl_size_rule {
964 ($trait:ty, $($num_bits:literal)*) => {
965 $(
966 impl<T> $trait for Bounded<T, $num_bits> where T: Integer {}
967 )*
968 };
969 }
970
971 /// Local trait expressing the fact that a given [`Bounded`] has at least `N` bits used for value
972 /// representation.
973 trait AtLeastXBits<const N: usize> {}
974
975 /// Implementations for infallibly converting a primitive type into a [`Bounded`] that can contain
976 /// it.
977 ///
978 /// Put into their own module for readability, and to avoid cluttering the rustdoc of the parent
979 /// module.
980 mod atleast_impls {
981 use super::*;
982
983 // Number of bits at least as large as 64.
984 impl_size_rule!(AtLeastXBits<64>, 64);
985
986 // Anything 64 bits or more is also larger than 32.
987 impl<T> AtLeastXBits<32> for T where T: AtLeastXBits<64> {}
988 // Other numbers of bits at least as large as 32.
989 impl_size_rule!(AtLeastXBits<32>,
990 32 33 34 35 36 37 38 39
991 40 41 42 43 44 45 46 47
992 48 49 50 51 52 53 54 55
993 56 57 58 59 60 61 62 63
994 );
995
996 // Anything 32 bits or more is also larger than 16.
997 impl<T> AtLeastXBits<16> for T where T: AtLeastXBits<32> {}
998 // Other numbers of bits at least as large as 16.
999 impl_size_rule!(AtLeastXBits<16>,
1000 16 17 18 19 20 21 22 23
1001 24 25 26 27 28 29 30 31
1002 );
1003
1004 // Anything 16 bits or more is also larger than 8.
1005 impl<T> AtLeastXBits<8> for T where T: AtLeastXBits<16> {}
1006 // Other numbers of bits at least as large as 8.
1007 impl_size_rule!(AtLeastXBits<8>, 8 9 10 11 12 13 14 15);
1008 }
1009
1010 /// Generates `From` implementations from a primitive type into a [`Bounded`] with
1011 /// enough bits to store any value of that type.
1012 ///
1013 /// Note: The only reason for having this macro is that if we pass `$type` as a generic
1014 /// parameter, we cannot use it in the const context of [`AtLeastXBits`]'s generic parameter. This
1015 /// can be fixed once the `generic_const_exprs` feature is usable, and this macro replaced by a
1016 /// regular `impl` block.
1017 macro_rules! impl_from_primitive {
1018 ($($type:ty)*) => {
1019 $(
1020 #[doc = ::core::concat!(
1021 "Conversion from a [`",
1022 ::core::stringify!($type),
1023 "`] into a [`Bounded`] of same signedness with enough bits to store it.")]
1024 impl<T, const N: u32> From<$type> for Bounded<T, N>
1025 where
1026 $type: Integer,
1027 T: Integer<Signedness = <$type as Integer>::Signedness> + From<$type>,
1028 Self: AtLeastXBits<{ <$type as Integer>::BITS as usize }>,
1029 {
1030 fn from(value: $type) -> Self {
1031 // SAFETY: The trait bound on `Self` guarantees that `N` bits is
1032 // enough to hold any value of the source type.
1033 unsafe { Self::__new(T::from(value)) }
1034 }
1035 }
1036 )*
1037 }
1038 }
1039
1040 impl_from_primitive!(
1041 u8 u16 u32 u64 usize
1042 i8 i16 i32 i64 isize
1043 );
1044
1045 /// Local trait expressing the fact that a given [`Bounded`] fits into a primitive type of `N` bits,
1046 /// provided they have the same signedness.
1047 trait FitsInXBits<const N: usize> {}
1048
1049 /// Implementations for infallibly converting a [`Bounded`] into a primitive type that can contain
1050 /// it.
1051 ///
1052 /// Put into their own module for readability, and to avoid cluttering the rustdoc of the parent
1053 /// module.
1054 mod fits_impls {
1055 use super::*;
1056
1057 // Number of bits that fit into a 8-bits primitive.
1058 impl_size_rule!(FitsInXBits<8>, 1 2 3 4 5 6 7 8);
1059
1060 // Anything that fits into 8 bits also fits into 16.
1061 impl<T> FitsInXBits<16> for T where T: FitsInXBits<8> {}
1062 // Other number of bits that fit into a 16-bits primitive.
1063 impl_size_rule!(FitsInXBits<16>, 9 10 11 12 13 14 15 16);
1064
1065 // Anything that fits into 16 bits also fits into 32.
1066 impl<T> FitsInXBits<32> for T where T: FitsInXBits<16> {}
1067 // Other number of bits that fit into a 32-bits primitive.
1068 impl_size_rule!(FitsInXBits<32>,
1069 17 18 19 20 21 22 23 24
1070 25 26 27 28 29 30 31 32
1071 );
1072
1073 // Anything that fits into 32 bits also fits into 64.
1074 impl<T> FitsInXBits<64> for T where T: FitsInXBits<32> {}
1075 // Other number of bits that fit into a 64-bits primitive.
1076 impl_size_rule!(FitsInXBits<64>,
1077 33 34 35 36 37 38 39 40
1078 41 42 43 44 45 46 47 48
1079 49 50 51 52 53 54 55 56
1080 57 58 59 60 61 62 63 64
1081 );
1082 }
1083
1084 /// Generates [`From`] implementations from a [`Bounded`] into a primitive type that is
1085 /// guaranteed to contain it.
1086 ///
1087 /// Note: The only reason for having this macro is that if we pass `$type` as a generic
1088 /// parameter, we cannot use it in the const context of `AtLeastXBits`'s generic parameter. This
1089 /// can be fixed once the `generic_const_exprs` feature is usable, and this macro replaced by a
1090 /// regular `impl` block.
1091 macro_rules! impl_into_primitive {
1092 ($($type:ty)*) => {
1093 $(
1094 #[doc = ::core::concat!(
1095 "Conversion from a [`Bounded`] with no more bits than a [`",
1096 ::core::stringify!($type),
1097 "`] and of same signedness into [`",
1098 ::core::stringify!($type),
1099 "`]")]
1100 impl<T, const N: u32> From<Bounded<T, N>> for $type
1101 where
1102 $type: Integer + TryFrom<T>,
1103 T: Integer<Signedness = <$type as Integer>::Signedness>,
1104 Bounded<T, N>: FitsInXBits<{ <$type as Integer>::BITS as usize }>,
1105 {
1106 fn from(value: Bounded<T, N>) -> $type {
1107 // SAFETY: The trait bound on `Bounded` ensures that any value it holds (which
1108 // is constrained to `N` bits) can fit into the destination type, so this
1109 // conversion cannot fail.
1110 unsafe { <$type>::try_from(value.get()).unwrap_unchecked() }
1111 }
1112 }
1113 )*
1114 }
1115 }
1116
1117 impl_into_primitive!(
1118 u8 u16 u32 u64 usize
1119 i8 i16 i32 i64 isize
1120 );
1121
1122 // Unsigned single-bit `Bounded`s can be converted to a boolean.
1123
1124 impl<T> From<Bounded<T, 1>> for bool
1125 where
1126 T: Integer<Signedness = Unsigned> + Zeroable,
1127 {
from(value: Bounded<T, 1>) -> Self1128 fn from(value: Bounded<T, 1>) -> Self {
1129 value.get() != Zeroable::zeroed()
1130 }
1131 }
1132
1133 // Booleans can be converted to unsigned `Bounded`s.
1134
1135 impl<T, const N: u32> From<bool> for Bounded<T, N>
1136 where
1137 T: Integer<Signedness = Unsigned> + From<bool>,
1138 {
from(value: bool) -> Self1139 fn from(value: bool) -> Self {
1140 // SAFETY: A boolean is represented by `0` or `1`, so it fits within any valid unsigned
1141 // `Bounded` width.
1142 unsafe { Self::__new(T::from(value)) }
1143 }
1144 }
1145
1146 impl<T> Bounded<T, 1>
1147 where
1148 T: Integer<Signedness = Unsigned> + Zeroable,
1149 {
1150 /// Converts this [`Bounded`] into a [`bool`].
1151 ///
1152 /// This is a shorter way of writing `bool::from(self)`.
1153 ///
1154 /// # Examples
1155 ///
1156 /// ```
1157 /// use kernel::num::Bounded;
1158 ///
1159 /// assert_eq!(Bounded::<u8, 1>::new::<0>().into_bool(), false);
1160 /// assert_eq!(Bounded::<u8, 1>::new::<1>().into_bool(), true);
1161 /// ```
into_bool(self) -> bool1162 pub fn into_bool(self) -> bool {
1163 self.into()
1164 }
1165 }
1166