Skip to content

Commit

Permalink
refactor(esp-alloc): Feature gate internal memory usage that requires…
Browse files Browse the repository at this point in the history
… extra computation.

- Introduce the `internal-heap-stats` feature for `esp-alloc`.
- Add `esp_alloc::get_info!()` to `psram_quad` example to show usage and
ensure coverage of the feature in tests.
  • Loading branch information
AnthonyGrondin committed Sep 12, 2024
1 parent 8adb6f7 commit 3132b98
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 31 deletions.
8 changes: 8 additions & 0 deletions esp-alloc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,18 @@ default-target = "riscv32imc-unknown-none-elf"
features = ["nightly"]

[dependencies]
cfg-if = "1.0.0"
critical-section = "1.1.3"
enumset = "1.1.5"
linked_list_allocator = { version = "0.10.5", default-features = false, features = ["const_mut_refs"] }

[features]
default = []
nightly = []

# Enable this feature if you want to keep stats about the internal heap usage such as:
# - Max memory usage since initialization of the heap
# - Total allocated memory since initialization of the heap
# - Total freed memory since initialization of the heap
# Note: Enabling this feature will require extra computation every time alloc/dealloc is called.
internal-heap-stats = []
88 changes: 58 additions & 30 deletions esp-alloc/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,12 +186,15 @@ pub struct HeapStats {
current_usage: usize,

/// Estimation of the max used heap in bytes.
#[cfg(feature = "internal-heap-stats")]
max_usage: usize,

/// Estimation of the total allocated bytes since initialization.
#[cfg(feature = "internal-heap-stats")]
total_allocated: usize,

/// Estimation of the total freed bytes since initialization.
#[cfg(feature = "internal-heap-stats")]
total_freed: usize,
}

Expand All @@ -200,9 +203,12 @@ impl core::fmt::Display for HeapStats {
writeln!(f, "HEAP INFO")?;
writeln!(f, "Size: {}", self.size)?;
writeln!(f, "Current usage: {}", self.current_usage)?;
writeln!(f, "Max usage: {}", self.max_usage)?;
writeln!(f, "Total freed: {}", self.total_freed)?;
writeln!(f, "Total allocated: {}", self.total_allocated)?;
#[cfg(feature = "internal-heap-stats")]
{
writeln!(f, "Max usage: {}", self.max_usage)?;
writeln!(f, "Total freed: {}", self.total_freed)?;
writeln!(f, "Total allocated: {}", self.total_allocated)?;
}
writeln!(f, "Memory Layout: ")?;
for region in self.region_stats.iter() {
if let Some(region) = region.as_ref() {
Expand All @@ -222,6 +228,7 @@ impl core::fmt::Display for HeapStats {
}

/// Internal stats to keep track across multiple regions.
#[cfg(feature = "internal-heap-stats")]
struct InternalHeapStats {
max_usage: usize,
total_allocated: usize,
Expand All @@ -234,20 +241,21 @@ struct InternalHeapStats {
/// memory in regions satisfying specific needs.
pub struct EspHeap {
heap: Mutex<RefCell<[Option<HeapRegion>; 3]>>,
stats: Mutex<RefCell<InternalHeapStats>>,
#[cfg(feature = "internal-heap-stats")]
internal_heap_stats: Mutex<RefCell<InternalHeapStats>>,
}

impl EspHeap {
/// Crate a new UNINITIALIZED heap allocator
pub const fn empty() -> Self {
let stats = InternalHeapStats {
max_usage: 0,
total_allocated: 0,
total_freed: 0,
};
EspHeap {
heap: Mutex::new(RefCell::new([NON_REGION; 3])),
stats: Mutex::new(RefCell::new(stats)),
#[cfg(feature = "internal-heap-stats")]
internal_heap_stats: Mutex::new(RefCell::new(InternalHeapStats {
max_usage: 0,
total_allocated: 0,
total_freed: 0,
})),
}
}

Expand Down Expand Up @@ -323,7 +331,6 @@ impl EspHeap {
critical_section::with(|cs| {
let mut used = 0;
let mut free = 0;
let stats = self.stats.borrow_ref(cs);
let regions = self.heap.borrow_ref(cs);
for (id, region) in regions.iter().enumerate() {
if let Some(region) = region.as_ref() {
Expand All @@ -334,13 +341,24 @@ impl EspHeap {
}
}

HeapStats {
region_stats,
size: free + used,
current_usage: used,
max_usage: stats.max_usage,
total_allocated: stats.total_allocated,
total_freed: stats.total_freed,
cfg_if::cfg_if! {
if #[cfg(feature = "internal-heap-stats")] {
let internal_heap_stats = self.internal_heap_stats.borrow_ref(cs);
HeapStats {
region_stats,
size: free + used,
current_usage: used,
max_usage: internal_heap_stats.max_usage,
total_allocated: internal_heap_stats.total_allocated,
total_freed: internal_heap_stats.total_freed,
}
} else {
HeapStats {
region_stats,
size: free + used,
current_usage: used,
}
}
}
})
}
Expand Down Expand Up @@ -388,8 +406,8 @@ impl EspHeap {
layout: Layout,
) -> *mut u8 {
critical_section::with(|cs| {
#[cfg(feature = "internal-heap-stats")]
let before = self.used();
let mut stats = self.stats.borrow_ref_mut(cs);
let mut regions = self.heap.borrow_ref_mut(cs);
let mut iter = (*regions).iter_mut().filter(|region| {
if region.is_some() {
Expand All @@ -415,13 +433,19 @@ impl EspHeap {
};

res.map_or(ptr::null_mut(), |allocation| {
drop(regions);
// We need to call used because [linked_list_allocator::Heap] does internal size
// alignment so we cannot use the size provided by the layout.
let used = self.used();
#[cfg(feature = "internal-heap-stats")]
{
let mut internal_heap_stats = self.internal_heap_stats.borrow_ref_mut(cs);
drop(regions);
// We need to call used because [linked_list_allocator::Heap] does internal size
// alignment so we cannot use the size provided by the layout.
let used = self.used();

internal_heap_stats.total_allocated += used - before;
internal_heap_stats.max_usage =
core::cmp::max(internal_heap_stats.max_usage, used);
}

stats.total_allocated += used - before;
stats.max_usage = core::cmp::max(stats.max_usage, used);
allocation.as_ptr()
})
})
Expand All @@ -439,8 +463,8 @@ unsafe impl GlobalAlloc for EspHeap {
}

critical_section::with(|cs| {
#[cfg(feature = "internal-heap-stats")]
let before = self.used();
let mut stats = self.stats.borrow_ref_mut(cs);
let mut regions = self.heap.borrow_ref_mut(cs);
let mut iter = (*regions).iter_mut();

Expand All @@ -450,10 +474,14 @@ unsafe impl GlobalAlloc for EspHeap {
}
}

drop(regions);
// We need to call used because [linked_list_allocator::Heap] does internal size
// alignment so we cannot use the size provided by the layout.
stats.total_freed += before - self.used();
#[cfg(feature = "internal-heap-stats")]
{
let mut internal_heap_stats = self.internal_heap_stats.borrow_ref_mut(cs);
drop(regions);
// We need to call used because [linked_list_allocator::Heap] does internal size
// alignment so we cannot use the size provided by the layout.
internal_heap_stats.total_freed += before - self.used();
}
})
}
}
Expand Down
4 changes: 3 additions & 1 deletion examples/src/bin/psram_quad.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//! You need an ESP32, ESP32-S2 or ESP32-S3 with at least 2 MB of PSRAM memory.

//% CHIPS: esp32 esp32s2 esp32s3
//% FEATURES: psram-2m
//% FEATURES: psram-2m esp-alloc/internal-heap-stats

#![no_std]
#![no_main]
Expand Down Expand Up @@ -51,6 +51,8 @@ fn main() -> ! {
let string = String::from("A string allocated in PSRAM");
println!("'{}' allocated at {:p}", &string, string.as_ptr());

println!("{}", esp_alloc::get_info!());

println!("done");

loop {}
Expand Down

0 comments on commit 3132b98

Please sign in to comment.