As a systems programmer, I’ve spent years exploring the performance boundaries of Rust. One of the language’s greatest strengths is its ability to create extremely efficient code with precise control over memory usage. I’d like to share seven powerful techniques I’ve refined to write zero-allocation Rust code for performance-critical applications.
The Power of Stack Allocation
When working with memory in Rust, the stack offers tremendous performance advantages over the heap. Stack allocation is predictable, fast, and doesn’t require cleanup through Rust’s ownership system.
I’ve found that replacing heap allocations with stack-based alternatives often yields immediate performance benefits. Consider this simple example:
// Heap allocation approach
fn process_data_heap() {
let values = vec![0; 1024]; // Allocates on the heap
// Process values...
}
// Stack allocation approach
fn process_data_stack() {
let values = [0; 1024]; // Allocated entirely on the stack
// Process values...
}
The stack version avoids the heap allocation entirely, eliminates the need for deallocation, and typically executes faster. This technique works well when the size is known at compile time and reasonably small.
For cases where the exact size isn’t known but has a reasonable upper bound, I’ve had success with arrays plus a length:
fn parse_limited_input(input: &str) -> (usize, [Token; 128]) {
let mut tokens = [Token::default(); 128];
let mut count = 0;
for (i, token_str) in input.split_whitespace().enumerate() {
if i >= tokens.len() {
break; // Handle overflow scenario
}
tokens[i] = parse_token(token_str);
count += 1;
}
(count, tokens)
}
This approach avoids any heap allocation while still handling variable-sized inputs up to a practical limit.
Leveraging Static Lifetimes
Static data lives for the entire duration of the program and doesn’t require runtime allocation. I’ve found this particularly useful for constants and fixed data:
// Heap allocation on each call
fn error_message_heap() -> String {
"Operation failed".to_string()
}
// Zero allocation alternative
fn error_message_static() -> &'static str {
"Operation failed"
}
The static version doesn’t just avoid allocation—it’s also more efficient for the caller, who receives a borrowed reference instead of taking ownership of heap data.
For more complex scenarios, I use the lazy_static
or once_cell
crates to initialize complex static data:
use once_cell::sync::Lazy;
use std::collections::HashMap;
static LOOKUP_TABLE: Lazy<HashMap<&str, i32>> = Lazy::new(|| {
let mut map = HashMap::new();
map.insert("one", 1);
map.insert("two", 2);
map.insert("three", 3);
// etc.
map
});
fn lookup(key: &str) -> Option<i32> {
LOOKUP_TABLE.get(key).copied()
}
While the HashMap
itself is heap-allocated, this happens only once at initialization, not on every function call.
The Power of Borrowed Types
Ownership is fundamental to Rust, but borrowing is key to zero-allocation code. I extensively use references and borrowed types to avoid unnecessary cloning:
// Allocates new storage
fn process_owned(input: String) -> String {
let mut result = input;
result.push_str(" - processed");
result
}
// Zero allocation version
fn process_borrowed<'a>(input: &'a str, buffer: &'a mut String) -> &'a str {
buffer.clear();
buffer.push_str(input);
buffer.push_str(" - processed");
buffer
}
I’ve found this particularly useful with string processing, where the &str
type lets us work with string data without owning it.
Slices are another powerful way to work with data without allocation:
fn extract_digits(text: &str) -> &str {
if let Some(start) = text.find(|c: char| c.is_digit(10)) {
if let Some(end) = text[start..].find(|c: char| !c.is_digit(10)) {
return &text[start..start+end];
}
return &text[start..];
}
""
}
This function returns a slice of the original string without allocating any new memory.
Custom Allocators for Specialized Needs
For complete control over memory management, I implement custom allocators. This approach works well for specialized needs:
struct BumpAllocator {
buffer: [u8; 4096],
next_free: usize,
}
impl BumpAllocator {
fn new() -> Self {
Self {
buffer: [0; 4096],
next_free: 0,
}
}
fn allocate<T>(&mut self, value: T) -> &mut T {
let size = std::mem::size_of::<T>();
let align = std::mem::align_of::<T>();
// Align the next_free pointer
let aligned_next = (self.next_free + align - 1) & !(align - 1);
if aligned_next + size > self.buffer.len() {
panic!("Out of memory in bump allocator");
}
self.next_free = aligned_next + size;
// Write the value to the buffer
let ptr = unsafe {
let p = self.buffer.as_mut_ptr().add(aligned_next) as *mut T;
std::ptr::write(p, value);
p
};
unsafe { &mut *ptr }
}
fn reset(&mut self) {
self.next_free = 0;
}
}
This allocator provides extremely fast allocations from a pre-allocated buffer. I use it for short-lived objects that I can discard all at once, like during parsing operations.
Arena Allocation for Groups of Objects
Arena allocation is a technique where objects with similar lifetimes are allocated together and freed together. This is perfect for parse trees, graph structures, and other hierarchical data:
struct Node {
value: i32,
children: Vec<*mut Node>,
}
struct Arena {
blocks: Vec<Vec<Node>>,
block_size: usize,
}
impl Arena {
fn new(block_size: usize) -> Self {
Self {
blocks: Vec::new(),
block_size,
}
}
fn alloc(&mut self, value: i32) -> *mut Node {
if self.blocks.is_empty() || self.blocks.last().unwrap().len() >= self.block_size {
self.blocks.push(Vec::with_capacity(self.block_size));
}
let block = self.blocks.last_mut().unwrap();
block.push(Node { value, children: Vec::new() });
&mut block[block.len() - 1] as *mut Node
}
}
While this example does involve heap allocations for the blocks, the key efficiency comes from allocating objects in batches rather than individually, reducing allocation overhead dramatically.
For production code, I often use the typed-arena
crate, which provides a safe and well-tested implementation:
use typed_arena::Arena;
fn build_tree(arena: &Arena<Node>) -> &Node {
let root = arena.alloc(Node::new(0));
for i in 1..5 {
let child = arena.alloc(Node::new(i));
root.add_child(child);
}
root
}
In-place Operations to Avoid Temporary Allocations
Modifying data in place rather than creating new copies is a fundamental technique for zero-allocation code. I apply this extensively:
// Allocates a new vector
fn double_values(input: &[i32]) -> Vec<i32> {
input.iter().map(|&x| x * 2).collect()
}
// Zero allocation version
fn double_values_in_place(input: &mut [i32]) {
for value in input.iter_mut() {
*value *= 2;
}
}
This approach is particularly valuable when processing large datasets where allocating new storage would be expensive.
For string processing, I use the same principle:
// Creates a new String
fn remove_spaces_with_alloc(input: &str) -> String {
input.chars().filter(|c| !c.is_whitespace()).collect()
}
// Modifies in place with zero allocation
fn remove_spaces_in_place(buffer: &mut String) {
let chars: Vec<_> = buffer.chars().filter(|c| !c.is_whitespace()).collect();
buffer.clear();
for c in chars {
buffer.push(c);
}
}
While the in-place version still requires temporary storage for the filtered characters, it reuses the existing buffer for the final result, avoiding additional string allocations.
Object Pools for Reusing Allocations
For scenarios where allocations are inevitable but frequent, I implement object pools to reuse previously allocated memory:
struct Connection {
id: usize,
buffer: Vec<u8>,
// Other fields...
}
impl Connection {
fn reset(&mut self) {
self.buffer.clear();
// Reset other fields...
}
}
struct ConnectionPool {
connections: Vec<Option<Connection>>,
next_id: usize,
}
impl ConnectionPool {
fn new(capacity: usize) -> Self {
let mut connections = Vec::with_capacity(capacity);
for _ in 0..capacity {
connections.push(None);
}
Self {
connections,
next_id: 0,
}
}
fn acquire(&mut self) -> Option<(usize, &mut Connection)> {
for (i, conn_slot) in self.connections.iter_mut().enumerate() {
if conn_slot.is_none() {
self.next_id += 1;
let conn = Connection {
id: self.next_id,
buffer: Vec::with_capacity(4096),
// Initialize other fields...
};
*conn_slot = Some(conn);
return Some((i, conn_slot.as_mut().unwrap()));
}
}
None
}
fn release(&mut self, index: usize) {
if let Some(conn) = &mut self.connections[index] {
conn.reset();
}
self.connections[index] = None;
}
}
This technique is particularly useful for network services where maintaining a pool of connections is more efficient than creating new ones for each client.
Practical Applications
I’ve applied these techniques in a variety of real-world scenarios:
In high-performance network servers, I use stack allocation and object pooling to handle thousands of connections without excessive memory churn.
For data processing pipelines, in-place operations allow transforming gigabytes of data with minimal memory overhead.
When building compilers and parsers, arena allocation dramatically simplifies memory management for complex syntax trees.
The key is to choose the right technique for each situation. Sometimes a small heap allocation is acceptable if it simplifies the code significantly. I aim for pragmatic zero-allocation code, not dogmatic zero-allocation at all costs.
Measuring Allocation Performance
To validate these techniques, I regularly benchmark and profile my code. Rust provides excellent tools for this:
#[bench]
fn bench_zero_alloc(b: &mut test::Bencher) {
b.iter(|| {
// Zero allocation implementation
});
}
#[bench]
fn bench_with_alloc(b: &mut test::Bencher) {
b.iter(|| {
// Allocating implementation
});
}
For more detailed analysis, I use tools like heaptrack
or Valgrind’s Massif to visualize memory usage patterns.
Conclusion
Writing zero-allocation Rust code is a skill that develops with practice. Each technique requires understanding the tradeoffs between memory usage, performance, and code complexity.
By strategically applying stack allocation, static lifetimes, borrowing, custom allocators, arena allocation, in-place operations, and object pooling, I’ve been able to create highly efficient Rust code for performance-critical applications.
These techniques form the foundation of systems programming in Rust, enabling performance that rivals C and C++ while maintaining Rust’s safety guarantees. The next time you’re optimizing Rust code, consider whether any of these approaches might help eliminate unnecessary allocations from your critical path.