1 unstable release

0.4.2 Dec 22, 2023

#220 in Memory management

Download history 1/week @ 2023-12-19 3/week @ 2024-01-09 20/week @ 2024-01-16 16/week @ 2024-01-23 51/week @ 2024-01-30 1/week @ 2024-02-06 25/week @ 2024-02-13 46/week @ 2024-02-20 81/week @ 2024-02-27 150/week @ 2024-03-05 133/week @ 2024-03-12 218/week @ 2024-03-19 127/week @ 2024-03-26 610/week @ 2024-04-02

1,098 downloads per month

MIT/Apache

8KB
61 lines

mini-alloc

mini-alloc is a small and performant allocator optimized for wasm32 targets like Arbitrum Stylus. You can use it in your program as follows.

#[global_allocator]
static ALLOC: mini_alloc::MiniAlloc = mini_alloc::MiniAlloc::INIT;

Benchmarks

mini-alloc implements a minimal bump allocator strategy. It never deallocates memory -- that is, dealloc does nothing. It's suitable for cases where binary size is at a premium and it's acceptable to leak all allocations. The simplicity of this model makes it very efficient, as seen in the following benchmarks.

MiniAlloc WeeAlloc Std Library
alloc 333 gas 721 gas 516 gas
alloc_zeroed 329 gas 95 million gas 48 million gas

The benchmarks compare the performance of this crate's edge_cases test in the Stylus VM. Normal allocations are over 2x cheaper than when using WeeAlloc, a common WASM alternative that this crate defaults to when built for non-WASM targets.

Replacing each instance of alloc in the test with alloc_zeroed reveals an over 99% improvement for zero-filled allocations. Unlike WeeAlloc and the standard library, MiniAlloc takes advantage of the fact that WASM pages are zero-filled at initialization, and uses fewer of them due to the layout of Rust's memory.

In the above tests we disable memory expansion costs, which unfairly penelize WeeAlloc and the standard library due to their increased resource consumption.

Notice

MiniAlloc should not be used in wasm32 environments that enable the multithreading proposal. Although MiniAlloc implements Sync since Rust requires it for the global allocator, this crate should not be used in this way. This should not be a concern in Stylus.

Also, core::arch::wasm32::memory_grow must never be called by any code outside this crate.

On targets other than wasm32, MiniAlloc simply forwards to the allocator from another crate, wee_alloc::WeeAlloc.

License

© 2023 Offchain Labs, Inc.

This project is licensed under either of

at your option.

The SPDX license identifier for this project is MIT OR Apache-2.0.

Dependencies

~200KB