RTEMS
|
The Heap Handler provides a heap. More...
Modules | |
Protected Heap Handler | |
Provides protected heap services. | |
Files | |
file | heap.h |
Heap Handler API. | |
file | heapimpl.h |
Heap Handler Implementation. | |
file | heapinfo.h |
Heap Handler Information API. | |
file | heap.c |
Heap Handler implementation. | |
file | heapallocate.c |
Heap Handler implementation. | |
Classes | |
struct | Heap_Error_context |
Context of a heap error. More... | |
struct | Heap_Block |
Description for free or used blocks. More... | |
struct | Heap_Control |
Control block used to manage a heap. More... | |
struct | Heap_Area |
Heap area structure for table based heap initialization and extension. More... | |
struct | Heap_Statistics |
Run-time heap statistics. More... | |
struct | Heap_Information |
Information about blocks. More... | |
struct | Heap_Information_block |
Information block returned by _Heap_Get_information(). More... | |
Macros | |
#define | HEAP_PROTECTION_HEADER_SIZE 0 |
#define | HEAP_BLOCK_HEADER_SIZE (2 * sizeof(uintptr_t) + HEAP_PROTECTION_HEADER_SIZE) |
The block header consists of the two size fields (Heap_Block::prev_size and Heap_Block::size_and_flag). | |
#define | HEAP_PREV_BLOCK_USED ((uintptr_t) 1) |
See also Heap_Block::size_and_flag. | |
#define | HEAP_ALLOC_BONUS sizeof(uintptr_t) |
Size of the part at the block begin which may be used for allocation in charge of the previous block. | |
#define | _Heap_Protection_block_initialize(heap, block) ((void) 0) |
#define | _Heap_Protection_block_check(heap, block) ((void) 0) |
#define | _Heap_Protection_block_error(heap, block, reason) ((void) 0) |
#define | _Heap_Protection_free_all_delayed_blocks(heap) ((void) 0) |
#define | _HAssert(cond) ((void) 0) |
Typedefs | |
typedef struct Heap_Control | Heap_Control |
typedef struct Heap_Block | Heap_Block |
typedef uintptr_t(* | Heap_Initialization_or_extend_handler) (Heap_Control *heap, void *area_begin, uintptr_t area_size, uintptr_t page_size_or_unused) |
Heap initialization and extend handler type. More... | |
typedef bool(* | Heap_Block_visitor) (const Heap_Block *block, uintptr_t block_size, bool block_is_used, void *visitor_arg) |
Heap block visitor. More... | |
Enumerations | |
enum | Heap_Error_reason { HEAP_ERROR_BROKEN_PROTECTOR, HEAP_ERROR_FREE_PATTERN, HEAP_ERROR_DOUBLE_FREE, HEAP_ERROR_BAD_USED_BLOCK, HEAP_ERROR_BAD_FREE_BLOCK } |
The heap error reason. More... | |
enum | Heap_Resize_status { HEAP_RESIZE_SUCCESSFUL, HEAP_RESIZE_UNSATISFIED, HEAP_RESIZE_FATAL_ERROR } |
See _Heap_Resize_block(). | |
Functions | |
uintptr_t | _Heap_Extend (Heap_Control *heap, void *area_begin, uintptr_t area_size, uintptr_t unused) |
Extends the memory available for the heap. More... | |
uintptr_t | _Heap_No_extend (Heap_Control *unused_0, void *unused_1, uintptr_t unused_2, uintptr_t unused_3) |
This function returns always zero. More... | |
RTEMS_INLINE_ROUTINE uintptr_t | _Heap_Align_up (uintptr_t value, uintptr_t alignment) |
Aligns the value to a given alignment, rounding up. More... | |
RTEMS_INLINE_ROUTINE uintptr_t | _Heap_Min_block_size (uintptr_t page_size) |
Returns the minimal Heap Block size for the given page_size. More... | |
RTEMS_INLINE_ROUTINE uintptr_t | _Heap_Area_overhead (uintptr_t page_size) |
Returns the worst case overhead to manage a memory area. More... | |
RTEMS_INLINE_ROUTINE uintptr_t | _Heap_Size_with_overhead (uintptr_t page_size, uintptr_t size, uintptr_t alignment) |
Returns the size with administration and alignment overhead for one allocation. More... | |
bool | _Heap_Get_first_and_last_block (uintptr_t heap_area_begin, uintptr_t heap_area_size, uintptr_t page_size, uintptr_t min_block_size, Heap_Block **first_block_ptr, Heap_Block **last_block_ptr) |
Gets the first and last block for the heap area. More... | |
uintptr_t | _Heap_Initialize (Heap_Control *heap, void *area_begin, uintptr_t area_size, uintptr_t page_size) |
Initializes the heap control block. More... | |
void * | _Heap_Allocate_aligned_with_boundary (Heap_Control *heap, uintptr_t size, uintptr_t alignment, uintptr_t boundary) |
Allocates an aligned memory area with boundary constraint. More... | |
RTEMS_INLINE_ROUTINE void * | _Heap_Allocate_aligned (Heap_Control *heap, uintptr_t size, uintptr_t alignment) |
Allocates an aligned memory area. More... | |
RTEMS_INLINE_ROUTINE void * | _Heap_Allocate (Heap_Control *heap, uintptr_t size) |
Allocates a memory area. More... | |
bool | _Heap_Free (Heap_Control *heap, void *addr) |
Frees the allocated memory area. More... | |
bool | _Heap_Walk (Heap_Control *heap, int source, bool dump) |
Verifies the integrity of the heap. More... | |
void | _Heap_Iterate (Heap_Control *heap, Heap_Block_visitor visitor, void *visitor_arg) |
Iterates over all blocks of the heap. More... | |
Heap_Block * | _Heap_Greedy_allocate (Heap_Control *heap, const uintptr_t *block_sizes, size_t block_count) |
Greedily allocates and empties the heap. More... | |
Heap_Block * | _Heap_Greedy_allocate_all_except_largest (Heap_Control *heap, uintptr_t *allocatable_size) |
Greedily allocates all blocks except the largest free block. More... | |
void | _Heap_Greedy_free (Heap_Control *heap, Heap_Block *blocks) |
Frees blocks of a greedy allocation. More... | |
void | _Heap_Get_information (Heap_Control *heap, Heap_Information_block *info) |
Returns information about used and free blocks for the heap. More... | |
void | _Heap_Get_free_information (Heap_Control *heap, Heap_Information *info) |
Returns information about free blocks for the heap. More... | |
bool | _Heap_Size_of_alloc_area (Heap_Control *heap, void *addr, uintptr_t *size) |
Returns the size of the allocatable memory area. More... | |
Heap_Resize_status | _Heap_Resize_block (Heap_Control *heap, void *addr, uintptr_t size, uintptr_t *old_size, uintptr_t *new_size) |
Resizes the block of the allocated memory area. More... | |
Heap_Block * | _Heap_Block_allocate (Heap_Control *heap, Heap_Block *block, uintptr_t alloc_begin, uintptr_t alloc_size) |
Allocates the memory area. starting at alloc_begin of size alloc_size bytes in the block block. More... | |
RTEMS_INLINE_ROUTINE void | _Heap_Protection_set_delayed_free_fraction (Heap_Control *heap, uintptr_t fraction) |
Sets the fraction of delayed free blocks that is actually freed during memory shortage. More... | |
RTEMS_INLINE_ROUTINE Heap_Block * | _Heap_Free_list_head (Heap_Control *heap) |
Returns the head of the free list of the heap. More... | |
RTEMS_INLINE_ROUTINE Heap_Block * | _Heap_Free_list_tail (Heap_Control *heap) |
Returns the tail of the free list of the heap. More... | |
RTEMS_INLINE_ROUTINE Heap_Block * | _Heap_Free_list_first (Heap_Control *heap) |
Returns the first block of the free list of the heap. More... | |
RTEMS_INLINE_ROUTINE Heap_Block * | _Heap_Free_list_last (Heap_Control *heap) |
Returns the last block of the free list of the heap. More... | |
RTEMS_INLINE_ROUTINE void | _Heap_Free_list_remove (Heap_Block *block) |
Removes the block from the free list. More... | |
RTEMS_INLINE_ROUTINE void | _Heap_Free_list_replace (Heap_Block *old_block, Heap_Block *new_block) |
Replaces one block in the free list by another. More... | |
RTEMS_INLINE_ROUTINE void | _Heap_Free_list_insert_after (Heap_Block *block_before, Heap_Block *new_block) |
Inserts a block after an existing block in the free list. More... | |
RTEMS_INLINE_ROUTINE void | _Heap_Free_list_insert_before (Heap_Block *block_next, Heap_Block *new_block) |
Inserts a block before an existing block in the free list. More... | |
RTEMS_INLINE_ROUTINE bool | _Heap_Is_aligned (uintptr_t value, uintptr_t alignment) |
Checks if the value is aligned to the given alignment. More... | |
RTEMS_INLINE_ROUTINE uintptr_t | _Heap_Align_down (uintptr_t value, uintptr_t alignment) |
Returns the aligned value, truncating. More... | |
RTEMS_INLINE_ROUTINE Heap_Block * | _Heap_Block_at (const Heap_Block *block, uintptr_t offset) |
Returns the block which is offset away from block. More... | |
RTEMS_INLINE_ROUTINE Heap_Block * | _Heap_Prev_block (const Heap_Block *block) |
Returns the address of the previous block. More... | |
RTEMS_INLINE_ROUTINE uintptr_t | _Heap_Alloc_area_of_block (const Heap_Block *block) |
Returns the first address in the block without the heap header. More... | |
RTEMS_INLINE_ROUTINE Heap_Block * | _Heap_Block_of_alloc_area (uintptr_t alloc_begin, uintptr_t page_size) |
Returns the starting address of the block corresponding to the allocatable area. More... | |
RTEMS_INLINE_ROUTINE uintptr_t | _Heap_Block_size (const Heap_Block *block) |
Returns the block size. More... | |
RTEMS_INLINE_ROUTINE void | _Heap_Block_set_size (Heap_Block *block, uintptr_t size) |
Sets the block size. More... | |
RTEMS_INLINE_ROUTINE bool | _Heap_Is_prev_used (const Heap_Block *block) |
Returns if the previous heap block is used. More... | |
RTEMS_INLINE_ROUTINE bool | _Heap_Is_used (const Heap_Block *block) |
Returns if the heap block is used. More... | |
RTEMS_INLINE_ROUTINE bool | _Heap_Is_free (const Heap_Block *block) |
Returns if the heap block is free. More... | |
RTEMS_INLINE_ROUTINE bool | _Heap_Is_block_in_heap (const Heap_Control *heap, const Heap_Block *block) |
Returns if the block is part of the heap. More... | |
RTEMS_INLINE_ROUTINE void | _Heap_Set_last_block_size (Heap_Control *heap) |
Sets the size of the last block for the heap. More... | |
RTEMS_INLINE_ROUTINE uintptr_t | _Heap_Get_size (const Heap_Control *heap) |
Returns the size of the allocatable area in bytes. More... | |
RTEMS_INLINE_ROUTINE uintptr_t | _Heap_Max (uintptr_t a, uintptr_t b) |
Returns the bigger one of the two arguments. More... | |
RTEMS_INLINE_ROUTINE uintptr_t | _Heap_Min (uintptr_t a, uintptr_t b) |
Returns the smaller one of the two arguments. More... | |
The Heap Handler provides a heap.
A heap is a doubly linked list of variable size blocks which are allocated using the first fit method. Garbage collection is performed each time a block is returned to the heap by coalescing neighbor blocks. Control information for both allocated and free blocks is contained in the heap area. A heap control structure contains control information for the heap.
The alignment routines could be made faster should we require only powers of two to be supported for page size, alignment and boundary arguments. The minimum alignment requirement for pages is currently CPU_ALIGNMENT and this value is only required to be multiple of two and explicitly not required to be a power of two.
There are two kinds of blocks. One sort describes a free block from which we can allocate memory. The other blocks are used and provide an allocated memory area. The free blocks are accessible via a list of free blocks.
Blocks or areas cover a continuous set of memory addresses. They have a begin and end address. The end address is not part of the set. The size of a block or area equals the distance between the begin and end address in units of bytes.
Free blocks look like:
Heap_Block | previous block size in case the previous block is free, otherwise it may contain data used by the previous block |
block size and a flag which indicates if the previous block is free or used, this field contains always valid data regardless of the block usage | |
pointer to next block (this field is page size aligned) | |
pointer to previous block | |
free space |
Used blocks look like:
Heap_Block | previous block size in case the previous block is free, otherwise it may contain data used by the previous block |
block size and a flag which indicates if the previous block is free or used, this field contains always valid data regardless of the block usage | |
begin of allocated area (this field is page size aligned) | |
allocated space | |
allocated space |
The heap area after initialization contains two blocks and looks like:
Label | Content | |
---|---|---|
heap->area_begin | heap area begin address | |
first_block->prev_size | subordinate heap area end address (this will be used to maintain a linked list of scattered heap areas) | |
first_block->size | size available for allocation | HEAP_PREV_BLOCK_USED | |
first_block->next | _Heap_Free_list_tail(heap) | memory area available for allocation |
first_block->prev | _Heap_Free_list_head(heap) | |
... | ||
last_block->prev_size | size of first block | |
last_block->size | first block begin address - last block begin address | |
heap->area_end | heap area end address |
The next block of the last block is the first block. Since the first block indicates that the previous block is used, this ensures that the last block appears as used for the _Heap_Is_used() and _Heap_Is_free() functions.
typedef bool(* Heap_Block_visitor) (const Heap_Block *block, uintptr_t block_size, bool block_is_used, void *visitor_arg) |
Heap block visitor.
true | Stop the iteration. |
false | Continue the iteration. |
Definition at line 204 of file heapimpl.h.
typedef uintptr_t(* Heap_Initialization_or_extend_handler) (Heap_Control *heap, void *area_begin, uintptr_t area_size, uintptr_t page_size_or_unused) |
Heap initialization and extend handler type.
This helps to do a table based heap initialization and extension. Create a table of Heap_Area elements and iterate through it. Set the handler to _Heap_Initialize() in the first iteration and then to _Heap_Extend().
enum Heap_Error_reason |
The heap error reason.
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Align_down | ( | uintptr_t | value, |
uintptr_t | alignment | ||
) |
Returns the aligned value, truncating.
value | The value to be aligned |
alignment | The alignment for the operation. |
Definition at line 590 of file heapimpl.h.
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Align_up | ( | uintptr_t | value, |
uintptr_t | alignment | ||
) |
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Alloc_area_of_block | ( | const Heap_Block * | block | ) |
Returns the first address in the block without the heap header.
block | The block for the operation. |
Definition at line 635 of file heapimpl.h.
RTEMS_INLINE_ROUTINE void* _Heap_Allocate | ( | Heap_Control * | heap, |
uintptr_t | size | ||
) |
Allocates a memory area.
A size value of zero will return a unique address which may be freed with _Heap_Free().
[in,out] | heap | The heap to allocate a memory are from. |
size | The size of the desired memory are in bytes. |
pointer | The starting address of the allocated memory area. |
NULL | No memory is available of the parameters are inconsistent. |
Definition at line 160 of file heapimpl.h.
RTEMS_INLINE_ROUTINE void* _Heap_Allocate_aligned | ( | Heap_Control * | heap, |
uintptr_t | size, | ||
uintptr_t | alignment | ||
) |
Allocates an aligned memory area.
A size value of zero will return a unique address which may be freed with _Heap_Free().
[in,out] | heap | The heap to allocate a memory are from. |
size | The size of the desired memory are in bytes. | |
alignment | The allocated memory area will begin at an address aligned by this value. |
pointer | The starting address of the allocated memory area. |
NULL | No memory is available of the parameters are inconsistent. |
Definition at line 139 of file heapimpl.h.
void* _Heap_Allocate_aligned_with_boundary | ( | Heap_Control * | heap, |
uintptr_t | size, | ||
uintptr_t | alignment, | ||
uintptr_t | boundary | ||
) |
Allocates an aligned memory area with boundary constraint.
A size value of zero will return a unique address which may be freed with _Heap_Free().
[in,out] | heap | The heap to allocate a memory are from. |
size | The size of the desired memory are in bytes. | |
alignment | The allocated memory area will begin at an address aligned by this value. | |
boundary | The allocated memory area will fulfill a boundary constraint, if this value is not equal to zero. The boundary value specifies the set of addresses which are aligned by the boundary value. The interior of the allocated memory area will not contain an element of this set. The begin or end address of the area may be a member of the set. |
pointer | The starting address of the allocated memory area. |
NULL | No memory is available of the parameters are inconsistent. |
Definition at line 192 of file heapallocate.c.
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Area_overhead | ( | uintptr_t | page_size | ) |
Heap_Block* _Heap_Block_allocate | ( | Heap_Control * | heap, |
Heap_Block * | block, | ||
uintptr_t | alloc_begin, | ||
uintptr_t | alloc_size | ||
) |
Allocates the memory area. starting at alloc_begin of size alloc_size bytes in the block block.
The block may be split up into multiple blocks. The previous and next block may be used or free. Free block parts which form a vaild new block will be inserted into the free list or merged with an adjacent free block. If the block is used, they will be inserted after the free list head. If the block is free, they will be inserted after the previous block in the free list.
Inappropriate values for alloc_begin or alloc_size may corrupt the heap.
[in,out] | heap | The heap to operate upon. |
block | The block in which the memory area should be allocated | |
alloc_begin | The starting address of the memory area that shall be allocated. | |
alloc_size | The size of the desired allocated area in bytes. |
RTEMS_INLINE_ROUTINE Heap_Block* _Heap_Block_at | ( | const Heap_Block * | block, |
uintptr_t | offset | ||
) |
Returns the block which is offset away from block.
block | The block for the relative calculation. |
offset | The offset for the calculation. |
Definition at line 606 of file heapimpl.h.
RTEMS_INLINE_ROUTINE Heap_Block* _Heap_Block_of_alloc_area | ( | uintptr_t | alloc_begin, |
uintptr_t | page_size | ||
) |
Returns the starting address of the block corresponding to the allocatable area.
alloc_begin | The starting address of the allocatable area. |
page_size | The page size for the calculation. |
Definition at line 650 of file heapimpl.h.
RTEMS_INLINE_ROUTINE void _Heap_Block_set_size | ( | Heap_Block * | block, |
uintptr_t | size | ||
) |
Sets the block size.
[in,out] | block | The block of which the size shall be set. |
size | The new size of the block. |
Definition at line 677 of file heapimpl.h.
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Block_size | ( | const Heap_Block * | block | ) |
Returns the block size.
block | The block of which the size is requested. |
Definition at line 666 of file heapimpl.h.
uintptr_t _Heap_Extend | ( | Heap_Control * | heap, |
void * | area_begin, | ||
uintptr_t | area_size, | ||
uintptr_t | unused | ||
) |
Extends the memory available for the heap.
There are no alignment requirements for the memory area. The memory area must be big enough to contain some maintenance blocks. It must not overlap parts of the current heap memory areas. Disconnected memory areas added to the heap will lead to used blocks which cover the gaps. Extending with an inappropriate memory area will corrupt the heap resulting in undefined behaviour.
[in,out] | heap | The heap to extend. |
[out] | area_begin | The start address of the area to extend the heap with. |
area_size | The size of the area in bytes. | |
unused | Is not used, only provided to have the same signature as _Heap_Initialize(). |
some_value | The extended space available for allocation after successful extension. |
0 | The heap extension failed. |
bool _Heap_Free | ( | Heap_Control * | heap, |
void * | addr | ||
) |
Frees the allocated memory area.
Inappropriate values for addr may corrupt the heap.
[in,out] | heap | The heap of the allocated memory area. |
addr | The starting address of the memory area to be freed. |
true | The allocated memory area was successfully freed. |
false | The method failed. |
RTEMS_INLINE_ROUTINE Heap_Block* _Heap_Free_list_first | ( | Heap_Control * | heap | ) |
Returns the first block of the free list of the heap.
heap | The heap to operate upon. |
Definition at line 475 of file heapimpl.h.
RTEMS_INLINE_ROUTINE Heap_Block* _Heap_Free_list_head | ( | Heap_Control * | heap | ) |
Returns the head of the free list of the heap.
heap | The heap to operate upon. |
Definition at line 451 of file heapimpl.h.
RTEMS_INLINE_ROUTINE void _Heap_Free_list_insert_after | ( | Heap_Block * | block_before, |
Heap_Block * | new_block | ||
) |
Inserts a block after an existing block in the free list.
block_before | The block that is already in the free list. |
new_block | The block to be inserted after block_before. |
Definition at line 533 of file heapimpl.h.
RTEMS_INLINE_ROUTINE void _Heap_Free_list_insert_before | ( | Heap_Block * | block_next, |
Heap_Block * | new_block | ||
) |
Inserts a block before an existing block in the free list.
block_before | The block that is already in the free list. |
new_block | The block to be inserted before block_before. |
Definition at line 552 of file heapimpl.h.
RTEMS_INLINE_ROUTINE Heap_Block* _Heap_Free_list_last | ( | Heap_Control * | heap | ) |
Returns the last block of the free list of the heap.
heap | The heap to operate upon. |
Definition at line 487 of file heapimpl.h.
RTEMS_INLINE_ROUTINE void _Heap_Free_list_remove | ( | Heap_Block * | block | ) |
Removes the block from the free list.
block | The block to be removed. |
Definition at line 497 of file heapimpl.h.
RTEMS_INLINE_ROUTINE void _Heap_Free_list_replace | ( | Heap_Block * | old_block, |
Heap_Block * | new_block | ||
) |
Replaces one block in the free list by another.
old_block | The block in the free list to replace. |
new_block | The block that should replace old_block. |
Definition at line 512 of file heapimpl.h.
RTEMS_INLINE_ROUTINE Heap_Block* _Heap_Free_list_tail | ( | Heap_Control * | heap | ) |
Returns the tail of the free list of the heap.
heap | The heap to operate upon. |
Definition at line 463 of file heapimpl.h.
bool _Heap_Get_first_and_last_block | ( | uintptr_t | heap_area_begin, |
uintptr_t | heap_area_size, | ||
uintptr_t | page_size, | ||
uintptr_t | min_block_size, | ||
Heap_Block ** | first_block_ptr, | ||
Heap_Block ** | last_block_ptr | ||
) |
Gets the first and last block for the heap area.
Nothing will be written to this area.
heap_area_begin | The starting address of the heap area. | |
heap_area_size | The size of the heap area. | |
page_size | The page size for the calculation. | |
min_block_size | The minimal block size for the calculation. | |
[out] | first_block_ptr | The pointer to the first block in the case of success |
[out] | last_block_ptr | The pointer to the last block in the case of success |
true | The area is big enough. |
false | The area is not big enough. |
void _Heap_Get_free_information | ( | Heap_Control * | heap, |
Heap_Information * | info | ||
) |
Returns information about free blocks for the heap.
heap | The heap to get the information from. | |
[out] | info | Stores the information about free blocks of heap after the method call. |
void _Heap_Get_information | ( | Heap_Control * | heap, |
Heap_Information_block * | info | ||
) |
Returns information about used and free blocks for the heap.
heap | The heap to get the information from. | |
[out] | info | Stores the information of the heap after the method call. |
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Get_size | ( | const Heap_Control * | heap | ) |
Returns the size of the allocatable area in bytes.
This value is an integral multiple of the page size.
heap | The heap to get the allocatable area from. |
Definition at line 782 of file heapimpl.h.
Heap_Block* _Heap_Greedy_allocate | ( | Heap_Control * | heap, |
const uintptr_t * | block_sizes, | ||
size_t | block_count | ||
) |
Greedily allocates and empties the heap.
Afterwards, the heap has at most block_count allocatable blocks of sizes specified by block_sizes. All other blocks are used.
[in,out] | heap | The heap to operate upon |
block_sizes | The sizes of the allocatable blocks. Must point to an array with block_count members. | |
block_count | The maximum number of allocatable blocks of sizes specified by . |
Heap_Block* _Heap_Greedy_allocate_all_except_largest | ( | Heap_Control * | heap, |
uintptr_t * | allocatable_size | ||
) |
Greedily allocates all blocks except the largest free block.
Afterwards the heap has at most one allocatable block. This block is the largest free block if it exists. All other blocks are used.
[in,out] | heap | The heap to operate upon. |
[out] | allocatable_size | Stores the size of the largest free block of the heap after the method call. |
void _Heap_Greedy_free | ( | Heap_Control * | heap, |
Heap_Block * | blocks | ||
) |
Frees blocks of a greedy allocation.
[in,out] | heap | The heap to operate upon. |
blocks | Must be the return value of _Heap_Greedy_allocate(). |
uintptr_t _Heap_Initialize | ( | Heap_Control * | heap, |
void * | area_begin, | ||
uintptr_t | area_size, | ||
uintptr_t | page_size | ||
) |
Initializes the heap control block.
Blocks of memory are allocated from the heap in multiples of page_size byte units. If the page_size is equal to zero or is not multiple of CPU_ALIGNMENT
, it is aligned up to the nearest CPU_ALIGNMENT
boundary.
[out] | heap | The heap control block to manage the area. |
area_begin | The starting address of the area. | |
area_size | The size of the area in bytes. | |
page_size | The page size for the calculation |
some_value | The maximum memory available. |
0 | The initialization failed. |
RTEMS_INLINE_ROUTINE bool _Heap_Is_aligned | ( | uintptr_t | value, |
uintptr_t | alignment | ||
) |
Checks if the value is aligned to the given alignment.
value | The value to check the alignment of. |
alignment | The alignment for the operation. |
true | The value is aligned to the given alignment. |
false | The value is not aligned to the given alignment. |
Definition at line 574 of file heapimpl.h.
RTEMS_INLINE_ROUTINE bool _Heap_Is_block_in_heap | ( | const Heap_Control * | heap, |
const Heap_Block * | block | ||
) |
Returns if the block is part of the heap.
heap | The heap to test if the block is part of it. |
block | The block of which the information is requested. |
true | The block is part of the heap. |
false | The block is not part of the heap. |
Definition at line 743 of file heapimpl.h.
RTEMS_INLINE_ROUTINE bool _Heap_Is_free | ( | const Heap_Block * | block | ) |
Returns if the heap block is free.
block | The block of which the information is requested. |
true | The block is free. |
false | The block is not free. |
Definition at line 727 of file heapimpl.h.
RTEMS_INLINE_ROUTINE bool _Heap_Is_prev_used | ( | const Heap_Block * | block | ) |
Returns if the previous heap block is used.
block | The block of which the information about the previous block is requested. |
true | The previous block is used. |
false | The previous block is not used. |
Definition at line 696 of file heapimpl.h.
RTEMS_INLINE_ROUTINE bool _Heap_Is_used | ( | const Heap_Block * | block | ) |
Returns if the heap block is used.
block | The block of which the information is requested. |
true | The block is used. |
false | The block is not used. |
Definition at line 709 of file heapimpl.h.
void _Heap_Iterate | ( | Heap_Control * | heap, |
Heap_Block_visitor | visitor, | ||
void * | visitor_arg | ||
) |
Iterates over all blocks of the heap.
[in,out] | heap | The heap to iterate over. |
visitor | This will be called for each heap block with the argument visitor_arg. | |
[in,out] | visitor_arg | The argument for all calls of visitor. |
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Max | ( | uintptr_t | a, |
uintptr_t | b | ||
) |
Returns the bigger one of the two arguments.
a | The parameter on the left hand side of the comparison. |
b | The parameter on the right hand side of the comparison. |
a | If a > b. |
b | If b >= a |
Definition at line 796 of file heapimpl.h.
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Min | ( | uintptr_t | a, |
uintptr_t | b | ||
) |
Returns the smaller one of the two arguments.
a | The parameter on the left hand side of the comparison. |
b | The parameter on the right hand side of the comparison. |
a | If a < b. |
b | If b <= a |
Definition at line 810 of file heapimpl.h.
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Min_block_size | ( | uintptr_t | page_size | ) |
uintptr_t _Heap_No_extend | ( | Heap_Control * | unused_0, |
void * | unused_1, | ||
uintptr_t | unused_2, | ||
uintptr_t | unused_3 | ||
) |
This function returns always zero.
This function only returns zero and does nothing else.
unused_0 | This parameter does nothing. |
unused_1 | This parameter does nothing. |
unused_2 | This parameter does nothing. |
unused_3 | This parameter does nothing. |
RTEMS_INLINE_ROUTINE Heap_Block* _Heap_Prev_block | ( | const Heap_Block * | block | ) |
Returns the address of the previous block.
block | The block of which the address of the previous block is requested. |
Definition at line 621 of file heapimpl.h.
RTEMS_INLINE_ROUTINE void _Heap_Protection_set_delayed_free_fraction | ( | Heap_Control * | heap, |
uintptr_t | fraction | ||
) |
Sets the fraction of delayed free blocks that is actually freed during memory shortage.
The default is to free half the delayed free blocks. This is equal to a fraction value of two.
[in,out] | heap | The heap control. |
fraction | The fraction is one divided by this fraction value. |
Definition at line 431 of file heapimpl.h.
Heap_Resize_status _Heap_Resize_block | ( | Heap_Control * | heap, |
void * | addr, | ||
uintptr_t | size, | ||
uintptr_t * | old_size, | ||
uintptr_t * | new_size | ||
) |
Resizes the block of the allocated memory area.
Inappropriate values for addr may corrupt the heap.
[in,out] | heap | The heap to operate upon. |
addr | The starting address of the allocated memory area to be resized. | |
size | The least possible size for the new memory area. Resize may be impossible and depends on the current heap usage. | |
[out] | old_size | Stores the size available for allocation in the current block before the resize after the method call. |
[out] | new_size | Stores the size available for allocation in the resized block after the method call. In the case of an unsuccessful resize, zero is returned in this parameter |
HEAP_RESIZE_SUCCESSFUL | The resize was successful. |
HEAP_RESIZE_UNSATISFIED | The least possible size size was too big. Resize not possible. |
HEAP_RESIZE_FATAL_ERROR | The block starting at addr is not part of the heap. |
RTEMS_INLINE_ROUTINE void _Heap_Set_last_block_size | ( | Heap_Control * | heap | ) |
Sets the size of the last block for the heap.
The next block of the last block will be the first block. Since the first block indicates that the previous block is used, this ensures that the last block appears as used for the _Heap_Is_used() and _Heap_Is_free() functions.
This feature will be used to terminate the scattered heap area list. See also _Heap_Extend().
[in,out] | heap | The heap to set the last block size of. |
Definition at line 765 of file heapimpl.h.
bool _Heap_Size_of_alloc_area | ( | Heap_Control * | heap, |
void * | addr, | ||
uintptr_t * | size | ||
) |
Returns the size of the allocatable memory area.
The size value may be greater than the initially requested size in _Heap_Allocate_aligned_with_boundary().
Inappropriate values for addr will not corrupt the heap, but may yield invalid size values.
heap | The heap to operate upon. | |
addr | The starting address of the allocatable memory area. | |
[out] | size | Stores the size of the allocatable memory area after the method call. |
true | The operation was successful. |
false | The operation was not successful. |
RTEMS_INLINE_ROUTINE uintptr_t _Heap_Size_with_overhead | ( | uintptr_t | page_size, |
uintptr_t | size, | ||
uintptr_t | alignment | ||
) |
Returns the size with administration and alignment overhead for one allocation.
page_size | The page size for the allocation. |
size | The size to allocate. |
alignment | The alignment that needs to be considered. |
bool _Heap_Walk | ( | Heap_Control * | heap, |
int | source, | ||
bool | dump | ||
) |
Verifies the integrity of the heap.
Walks the heap to verify its integrity.
heap | The heap whose integrity is to be verified. |
source | If dump is true , this is used to mark the output lines. |
dump | Indicates whether diagnostic messages will be printed to standard output. |
true | No errors occured, the heapĀ“s integrity is not violated. |
false | The heap is corrupt. |