![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This class manages an allocate-only-heap. More...
This class manages an allocate-only-heap.
Memory allocated by this class cannot be freed. All of the memory is aligned to size_t boundaries.
Note: The heap has a 'reset' method that can be used to free all of the memory allocated by the instance - HOWEVER it is the responsibility of the Application to ensure the proper behavior when this method is used (i.e. that is okay to 'free everything')
#include <LeanHeap.h>
Public Member Functions | |
LeanHeap (size_t *heapMemory, size_t sizeInBytes) | |
Constructor. | |
void * | allocate (size_t numbytes) |
See Cpl::Memory::ContiguousAllocator. | |
void | reset () noexcept |
See Cpl::Memory::ContiguousAllocator. | |
uint8_t * | getMemoryStart (size_t &dstAllocatedLenInBytes) noexcept |
See Cpl::Memory::ContiguousAllocator. | |
size_t | wordSize () const noexcept |
See Cpl::Memory::Allocator. | |
![]() | |
size_t | allocatedSizeForNBytes (size_t nbytes) const noexcept |
Convenience method that determines the actual amount of memory that actually allocated for a successful allocate request of N bytes. | |
virtual | ~Allocator () |
Provide a virtual destructor. | |
![]() | |
bool | insert_ (void *newContainerPtr) |
Helper method to trap when inserting an item in multiple containers. | |
bool | isInContainer_ (const void *containerPtr) const noexcept |
Returns 'true' if the instance is in the specified container. | |
Protected Attributes | |
size_t * | m_ptrBase |
Pointer to the base of the original heap memory. | |
size_t | m_staringHeapSize |
Size (in words) of the original heap memory. | |
size_t * | m_ptr |
Pointer to the next available free byte of memory. | |
size_t | m_wordsRemaining |
The amount of remaining free memory in size_t words. | |
Additional Inherited Members | |
![]() | |
static void | remove_ (Item *itemPtr) noexcept |
Helper method to do the proper 'clean-up' for the multiple-containers-error-trap when removing an item from a container. | |
![]() | |
void * | m_nextPtr_ |
The link field. | |
void * | m_inListPtr_ |
Debug field. | |
![]() | |
Item () | |
Constructor. | |
Item (const char *) | |
Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be statically allocated. | |
Cpl::Memory::LeanHeap::LeanHeap | ( | size_t * | heapMemory, |
size_t | sizeInBytes | ||
) |
Constructor.
The memory size of 'heapMemory' MUST be a multiple of sizeof(size_t).
|
virtual |
See Cpl::Memory::ContiguousAllocator.
Implements Cpl::Memory::Allocator.
|
virtualnoexcept |
See Cpl::Memory::ContiguousAllocator.
Implements Cpl::Memory::ContiguousAllocator.
|
virtualnoexcept |
See Cpl::Memory::ContiguousAllocator.
Implements Cpl::Memory::ContiguousAllocator.
|
inlinevirtualnoexcept |
Implements Cpl::Memory::Allocator.
|
protected |
Pointer to the next available free byte of memory.
|
protected |
Pointer to the base of the original heap memory.
|
protected |
Size (in words) of the original heap memory.
|
protected |
The amount of remaining free memory in size_t words.