Modular Bitfields for Rust

This crate implements the #[bitfield] macros introduced and specified in David Tolnay's procedural macro workshop.

Check out his workshop and learn from it!

Thanks go to David Tolnay for designing the specification for the macros implemented in modular_bitfield.

Showcase

```rust use modular_bitfield::prelude::*;

// Works with aliases - just for the showcase. type Vitamin = B12;

/// Bitfield struct with 32 bits in total.

[bitfield]

pub struct Example { a: bool, // Uses 1 bit b: B9, // Uses 9 bits c: Vitamin, // Uses 12 bits, works with aliases. #[bits = 3] // Optional, asserts at compiletime that DeliveryMode uses 3 bits. d: DeliveryMode, // Uses 3 bits e: B7, // Uses 7 bits }

/// Enums that derive from BitfieldSpecifier /// can also be used within bitfield structs /// as shown above.

[derive(BitfieldSpecifier, Debug, PartialEq)]

pub enum DeliveryMode { Fixed, Lowest, SMI, RemoteRead, NMI, Init = 0, Startup, External, }

fn it_works() { let mut example = Example::new();

// Assert that everything is inizialized to 0.
assert_eq!(example.get_a(), false);
assert_eq!(example.get_b(), 0);
assert_eq!(example.get_c(), 0);
assert_eq!(example.get_d(), DeliveryMode::Init);
assert_eq!(example.get_e(), 0);

// Modify the bitfields.
example.set_a(true);
example.set_b(0b111_1111_u8); // Uses `u8`
example.set_c(42_u16);        // Uses `u16`
example.set_d(DeliveryMode::Startup);
example.set_e(1);             // Uses `u8`

// Assert the previous modifications.
assert_eq!(example.get_a(), true);
assert_eq!(example.get_b(), 0b111_1111_u8);
assert_eq!(example.get_c(), 42_u16);
assert_eq!(example.get_d(), DeliveryMode::Startup);
assert_eq!(example.get_c(), 1_u8);

} ```

Advantages

Benchmarks

Below are some benchmarks between the hand-written code and the macro-generated code for some example getters and setters that cover a decent variety of use cases.

We can conclude that the macro-generated code is as fast as hand-written code would be. Please file a PR if you see a way to improve either side.

``` generated::geta ... bench: 99 ns/iter (+/- 4) generated::getb ... bench: 98 ns/iter (+/- 4) generated::getc ... bench: 98 ns/iter (+/- 14) generated::getd ... bench: 97 ns/iter (+/- 2) generated::gete ... bench: 99 ns/iter (+/- 2) generated::seta ... bench: 481 ns/iter (+/- 19) generated::setb ... bench: 627 ns/iter (+/- 37) generated::setc ... bench: 507 ns/iter (+/- 35) generated::setd ... bench: 622 ns/iter (+/- 24) generated::sete ... bench: 459 ns/iter (+/- 16)

handwritten::geta ... bench: 99 ns/iter (+/- 3) handwritten::getb ... bench: 102 ns/iter (+/- 14) handwritten::getc ... bench: 102 ns/iter (+/- 8) handwritten::getd ... bench: 100 ns/iter (+/- 20) handwritten::gete ... bench: 98 ns/iter (+/- 6) handwritten::seta ... bench: 582 ns/iter (+/- 20) handwritten::setb ... bench: 614 ns/iter (+/- 35) handwritten::setc ... bench: 533 ns/iter (+/- 18) handwritten::setd ... bench: 606 ns/iter (+/- 21) handwritten::sete ... bench: 456 ns/iter (+/- 21) ```

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.


Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this codebase by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.