ChibiOS/RT
6.0.3
|
Heap Allocator related APIs.
The heap allocator implements a first-fit strategy and its APIs are functionally equivalent to the usual malloc()
and free()
library functions. The main difference is that the OS heap APIs are guaranteed to be thread safe and there is the ability to return memory blocks aligned to arbitrary powers of two.
CH_CFG_USE_HEAP
option must be enabled in chconf.h
. Macros | |
#define | CH_HEAP_ALIGNMENT 8U |
Minimum alignment used for heap. More... | |
#define | CH_HEAP_AREA(name, size) |
Allocation of an aligned static heap buffer. More... | |
Typedefs | |
typedef struct memory_heap | memory_heap_t |
Type of a memory heap. More... | |
typedef union heap_header | heap_header_t |
Type of a memory heap header. More... | |
Data Structures | |
union | heap_header |
Memory heap block header. More... | |
struct | memory_heap |
Structure describing a memory heap. More... | |
Functions | |
void | _heap_init (void) |
Initializes the default heap. More... | |
void | chHeapObjectInit (memory_heap_t *heapp, void *buf, size_t size) |
Initializes a memory heap from a static memory area. More... | |
void * | chHeapAllocAligned (memory_heap_t *heapp, size_t size, unsigned align) |
Allocates a block of memory from the heap by using the first-fit algorithm. More... | |
void | chHeapFree (void *p) |
Frees a previously allocated memory block. More... | |
size_t | chHeapStatus (memory_heap_t *heapp, size_t *totalp, size_t *largestp) |
Reports the heap status. More... | |
static void * | chHeapAlloc (memory_heap_t *heapp, size_t size) |
Allocates a block of memory from the heap by using the first-fit algorithm. More... | |
static size_t | chHeapGetSize (const void *p) |
Returns the size of an allocated block. More... | |
Variables | |
static memory_heap_t | default_heap |
Default heap descriptor. More... | |
#define CH_HEAP_ALIGNMENT 8U |
Minimum alignment used for heap.
Definition at line 42 of file chmemheaps.h.
Referenced by chHeapAlloc(), chHeapAllocAligned(), chHeapFree(), chHeapObjectInit(), and chHeapStatus().
#define CH_HEAP_AREA | ( | name, | |
size | |||
) |
Allocation of an aligned static heap buffer.
Definition at line 114 of file chmemheaps.h.
typedef struct memory_heap memory_heap_t |
Type of a memory heap.
Definition at line 72 of file chmemheaps.h.
typedef union heap_header heap_header_t |
Type of a memory heap header.
Definition at line 77 of file chmemheaps.h.
void _heap_init | ( | void | ) |
Initializes the default heap.
Definition at line 107 of file chmemheaps.c.
References chCoreAllocAlignedWithOffset(), chMtxObjectInit(), chSemObjectInit(), memory_heap::header, memory_heap::mtx, and memory_heap::provider.
Referenced by chSysInit().
void chHeapObjectInit | ( | memory_heap_t * | heapp, |
void * | buf, | ||
size_t | size | ||
) |
Initializes a memory heap from a static memory area.
CH_HEAP_ALIGNMENT
. This mean that the effective heap size can be less than size
.[out] | heapp | pointer to the memory heap descriptor to be initialized |
[in] | buf | heap buffer base |
[in] | size | heap size |
Definition at line 131 of file chmemheaps.c.
References CH_HEAP_ALIGNMENT, chDbgCheck, chMtxObjectInit(), chSemObjectInit(), memory_heap::header, MEM_ALIGN_NEXT, memory_heap::mtx, and memory_heap::provider.
void * chHeapAllocAligned | ( | memory_heap_t * | heapp, |
size_t | size, | ||
unsigned | align | ||
) |
Allocates a block of memory from the heap by using the first-fit algorithm.
The allocated block is guaranteed to be properly aligned to the specified alignment.
[in] | heapp | pointer to a heap descriptor or NULL in order to access the default heap. |
[in] | size | the size of the block to be allocated. Note that the allocated block may be a bit bigger than the requested size for alignment and fragmentation reasons. |
[in] | align | desired memory alignment |
NULL | if the block cannot be allocated. |
Definition at line 172 of file chmemheaps.c.
References CH_HEAP_ALIGNMENT, chDbgCheck, default_heap, memory_heap::header, MEM_ALIGN_NEXT, MEM_IS_VALID_ALIGNMENT, and memory_heap::provider.
Referenced by chHeapAlloc(), and chThdCreateFromHeap().
void chHeapFree | ( | void * | p | ) |
Frees a previously allocated memory block.
[in] | p | pointer to the memory block to be freed |
Definition at line 293 of file chmemheaps.c.
References CH_HEAP_ALIGNMENT, chDbgAssert, chDbgCheck, memory_heap::header, MEM_ALIGN_NEXT, and MEM_IS_ALIGNED.
Referenced by chThdRelease().
size_t chHeapStatus | ( | memory_heap_t * | heapp, |
size_t * | totalp, | ||
size_t * | largestp | ||
) |
Reports the heap status.
[in] | heapp | pointer to a heap descriptor or NULL in order to access the default heap. |
[in] | totalp | pointer to a variable that will receive the total fragmented free space or NULL |
[in] | largestp | pointer to a variable that will receive the largest free free block found space or NULL |
Definition at line 357 of file chmemheaps.c.
References CH_HEAP_ALIGNMENT, default_heap, and memory_heap::header.
|
inlinestatic |
Allocates a block of memory from the heap by using the first-fit algorithm.
The allocated block is guaranteed to be properly aligned for a pointer data type.
[in] | heapp | pointer to a heap descriptor or NULL in order to access the default heap. |
[in] | size | the size of the block to be allocated. Note that the allocated block may be a bit bigger than the requested size for alignment and fragmentation reasons. |
NULL | if the block cannot be allocated. |
Definition at line 154 of file chmemheaps.h.
References CH_HEAP_ALIGNMENT, and chHeapAllocAligned().
|
inlinestatic |
Returns the size of an allocated block.
CH_HEAP_ALIGNMENT
multiple.[in] | p | pointer to the memory block |
Definition at line 169 of file chmemheaps.h.
Referenced by chFactoryGetBufferSize().
|
static |
Default heap descriptor.
Definition at line 92 of file chmemheaps.c.
Referenced by chHeapAllocAligned(), and chHeapStatus().