Zephyr API Documentation  2.7.0-rc2
A Scalable Open Source RTOS
sys_heap.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2019 Intel Corporation
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6#ifndef ZEPHYR_INCLUDE_SYS_SYS_HEAP_H_
7#define ZEPHYR_INCLUDE_SYS_SYS_HEAP_H_
8
9#include <stddef.h>
10#include <stdbool.h>
11#include <zephyr/types.h>
12
13/* Simple, fast heap implementation.
14 *
15 * A more or less conventional segregated fit allocator with
16 * power-of-two buckets.
17 *
18 * Excellent space efficiency. Chunks can be split arbitrarily in 8
19 * byte units. Overhead is only four bytes per allocated chunk (eight
20 * bytes for heaps >256kb or on 64 bit systems), plus a log2-sized
21 * array of 2-word bucket headers. No coarse alignment restrictions
22 * on blocks, they can be split and merged (in units of 8 bytes)
23 * arbitrarily.
24 *
25 * Simple API. Initialize at runtime with any blob of memory and not
26 * a macro-generated, carefully aligned static array. Allocate and
27 * free by user pointer and not an opaque block handle.
28 *
29 * Good fragmentation resistance. Freed blocks are always immediately
30 * merged with adjacent free blocks. Allocations are attempted from a
31 * sample of the smallest bucket that might fit, falling back rapidly
32 * to the smallest block guaranteed to fit. Split memory remaining in
33 * the chunk is always returned immediately to the heap for other
34 * allocation.
35 *
36 * Excellent performance with firmly bounded runtime. All operations
37 * are constant time (though there is a search of the smallest bucket
38 * that has a compile-time-configurable upper bound, setting this to
39 * extreme values results in an effectively linear search of the
40 * list), objectively fast (~hundred instructions) and and amenable to
41 * locked operation.
42 */
43
44/* Note: the init_mem/bytes fields are for the static initializer to
45 * have somewhere to put the arguments. The actual heap metadata at
46 * runtime lives in the heap memory itself and this struct simply
47 * functions as an opaque pointer. Would be good to clean this up and
48 * put the two values somewhere else, though it would make
49 * SYS_HEAP_DEFINE a little hairy to write.
50 */
51struct sys_heap {
52 struct z_heap *heap;
53 void *init_mem;
54 size_t init_bytes;
55};
56
57struct z_heap_stress_result {
58 uint32_t total_allocs;
59 uint32_t successful_allocs;
60 uint32_t total_frees;
61 uint64_t accumulated_in_use_bytes;
62};
63
64#ifdef CONFIG_SYS_HEAP_RUNTIME_STATS
65
66struct sys_heap_runtime_stats {
67 size_t free_bytes;
68 size_t allocated_bytes;
69};
70
78int sys_heap_runtime_stats_get(struct sys_heap *heap,
79 struct sys_heap_runtime_stats *stats);
80
81#endif
82
91void sys_heap_init(struct sys_heap *heap, void *mem, size_t bytes);
92
110void *sys_heap_alloc(struct sys_heap *heap, size_t bytes);
111
125void *sys_heap_aligned_alloc(struct sys_heap *heap, size_t align, size_t bytes);
126
140void sys_heap_free(struct sys_heap *heap, void *mem);
141
165void *sys_heap_aligned_realloc(struct sys_heap *heap, void *ptr,
166 size_t align, size_t bytes);
167
168#define sys_heap_realloc(heap, ptr, bytes) \
169 sys_heap_aligned_realloc(heap, ptr, 0, bytes)
170
184bool sys_heap_validate(struct sys_heap *heap);
185
215void sys_heap_stress(void *(*alloc_fn)(void *arg, size_t bytes),
216 void (*free_fn)(void *arg, void *p),
217 void *arg, size_t total_bytes,
218 uint32_t op_count,
219 void *scratch_mem, size_t scratch_bytes,
220 int target_percent,
221 struct z_heap_stress_result *result);
222
231void sys_heap_print_info(struct sys_heap *heap, bool dump_chunks);
232
233#endif /* ZEPHYR_INCLUDE_SYS_SYS_HEAP_H_ */
struct k_pipe p
Definition: kobject.c:1311
void * ptr
Definition: printk.c:79
__UINT32_TYPE__ uint32_t
Definition: stdint.h:60
__UINT64_TYPE__ uint64_t
Definition: stdint.h:61
Definition: errno.c:36
Definition: sys_heap.h:51
size_t init_bytes
Definition: sys_heap.h:54
struct z_heap * heap
Definition: sys_heap.h:52
void * init_mem
Definition: sys_heap.h:53
void * sys_heap_aligned_realloc(struct sys_heap *heap, void *ptr, size_t align, size_t bytes)
Expand the size of an existing allocation.
void sys_heap_init(struct sys_heap *heap, void *mem, size_t bytes)
Initialize sys_heap.
void * sys_heap_alloc(struct sys_heap *heap, size_t bytes)
Allocate memory from a sys_heap.
void * sys_heap_aligned_alloc(struct sys_heap *heap, size_t align, size_t bytes)
Allocate aligned memory from a sys_heap.
bool sys_heap_validate(struct sys_heap *heap)
Validate heap integrity.
void sys_heap_free(struct sys_heap *heap, void *mem)
Free memory into a sys_heap.
void sys_heap_stress(void *(*alloc_fn)(void *arg, size_t bytes), void(*free_fn)(void *arg, void *p), void *arg, size_t total_bytes, uint32_t op_count, void *scratch_mem, size_t scratch_bytes, int target_percent, struct z_heap_stress_result *result)
sys_heap stress test rig
void sys_heap_print_info(struct sys_heap *heap, bool dump_chunks)
Print heap internal structure information to the console.