Are you using Rust on bare metal with #[no_std]
? Do you lack even a
working malloc
and free
? Would you like to have a Rust-compatible
allocator that works with core::alloc
?
This is a simple buddy allocator that you can use a drop-in replacement
for Rust's regular allocators. It's highly experimental and may corrupt
your data, panic your machine, etc. But it appears to be enough to make
Vec::push
work, at least in extremely limited testing.
There is a test suite which attempts to allocate and deallocate a bunch of memory, and which tries to make sure everything winds up at the expected location in memory each time.
This library was originally based on the work done in the toyos repository.
// This can be a block of free system memory on your microcontroller.
const HEAP_MEM: usize = 0xFFF0_0000;
const HEAP_SIZE: usize = 0x0008_0000;
let mut heap: Heap<16> = unsafe {
Heap::new(NonNull::new(HEAP_MEM as *mut u8).unwrap(), HEAP_SIZE).unwrap()
};
let mem = heap.allocate(Layout::from_size_align(16, 16).unwrap()).unwrap();
// Yay! We have a 16-byte block of memory from the heap.
This allocator does not have to be initialized at runtime!
const HEAP_MEM: usize = 0xFFF0_0000;
const HEAP_SIZE: usize = 0x0008_0000;
// You'll want to wrap this heap in a lock abstraction for real-world use.
static mut ALLOCATOR: Heap<16> = unsafe {
Heap::new_unchecked(HEAP_MEM as *mut u8, HEAP_SIZE)
};
pub fn some_func() {
let mem = unsafe {
ALLOCATOR.allocate(Layout::from_size_align(16, 16).unwrap()).unwrap()
};
// Yay! We now have a 16-byte block from the heap without initializing it!
}
See the allocator example for a more complete idea of how to use this heap.
The last change made to the original crate was back in 2016. It uses more unsafe code than I felt comfortable with, does not have detailed error reporting, and does not have an interface compatible with Rust's allocator trait.
The new version minimizes the amount of unsafe code, preferring to return error codes if the API is misused (as well as providing unchecked variants).
In addition, every possible error condition now has an associated error enum, ensuring reliable error reporting (which is important when you can't attach a debugger to an embedded system).
And finally, since we report all possible error conditions, I've removed all panicking statements from this crate.
Licensed under the Apache License, Version 2.0 or the MIT license, at your option. This is HIGHLY EXPERIMENTAL CODE PROVIDED "AS IS", AND IT MAY DO HORRIBLE THINGS TO YOUR COMPUTER OR DATA.