mirror of
https://github.com/flipperdevices/flipperzero-firmware.git
synced 2025-12-12 04:41:26 +04:00
* add tlsf as submodule * libs: tlsf * Furi: tlsf as allocator * Furi: heap walker * shmal fixshesh * f18: tlsf * PVS: ignore tlsf * I like to moving * merge upcoming changes * memmgr: alloc aligned, realloc * Furi: distinct name for auxiliary memory pool * Furi: put idle and timer thread to mem2 * Furi: fix smal things in allocator * Furi: remove aligned_free. Use free instead. * aligned_malloc -> aligned_alloc * aligned_alloc, parameters order * aligned_alloc: check that alignment is correct * unit test: malloc * unit tests: realloc and test with memory fragmentation * unit tests: aligned_alloc * update api * updater: properly read large update file Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
348 lines
9.1 KiB
C
348 lines
9.1 KiB
C
#include <furi.h>
|
|
#include <tlsf.h>
|
|
#include <tlsf_block_functions.h>
|
|
#include <FreeRTOS.h>
|
|
#include <task.h>
|
|
#include <m-dict.h>
|
|
|
|
extern const void __heap_start__;
|
|
extern const void __heap_end__;
|
|
|
|
static tlsf_t tlsf = NULL;
|
|
static size_t heap_used = 0;
|
|
static size_t heap_max_used = 0;
|
|
|
|
// Allocation tracking types
|
|
DICT_DEF2(MemmgrHeapAllocDict, uint32_t, uint32_t) //-V1048
|
|
|
|
DICT_DEF2( //-V1048
|
|
MemmgrHeapThreadDict,
|
|
uint32_t,
|
|
M_DEFAULT_OPLIST,
|
|
MemmgrHeapAllocDict_t,
|
|
DICT_OPLIST(MemmgrHeapAllocDict))
|
|
|
|
// Thread allocation tracing storage
|
|
static MemmgrHeapThreadDict_t memmgr_heap_thread_dict = {0};
|
|
static volatile uint32_t memmgr_heap_thread_trace_depth = 0;
|
|
|
|
static inline void memmgr_lock(void) {
|
|
vTaskSuspendAll();
|
|
}
|
|
|
|
static inline void memmgr_unlock(void) {
|
|
xTaskResumeAll();
|
|
}
|
|
|
|
static inline size_t memmgr_get_heap_size(void) {
|
|
return (size_t)&__heap_end__ - (size_t)&__heap_start__;
|
|
}
|
|
|
|
// Initialize tracing storage
|
|
static void memmgr_heap_init(void) {
|
|
MemmgrHeapThreadDict_init(memmgr_heap_thread_dict);
|
|
}
|
|
|
|
__attribute__((constructor)) static void memmgr_init(void) {
|
|
size_t pool_size = (size_t)&__heap_end__ - (size_t)&__heap_start__;
|
|
tlsf = tlsf_create_with_pool((void*)&__heap_start__, pool_size, pool_size);
|
|
memmgr_heap_init();
|
|
}
|
|
|
|
void memmgr_heap_enable_thread_trace(FuriThreadId thread_id) {
|
|
memmgr_lock();
|
|
{
|
|
memmgr_heap_thread_trace_depth++;
|
|
furi_check(MemmgrHeapThreadDict_get(memmgr_heap_thread_dict, (uint32_t)thread_id) == NULL);
|
|
MemmgrHeapAllocDict_t alloc_dict;
|
|
MemmgrHeapAllocDict_init(alloc_dict);
|
|
MemmgrHeapThreadDict_set_at(memmgr_heap_thread_dict, (uint32_t)thread_id, alloc_dict);
|
|
MemmgrHeapAllocDict_clear(alloc_dict);
|
|
memmgr_heap_thread_trace_depth--;
|
|
}
|
|
memmgr_unlock();
|
|
}
|
|
|
|
void memmgr_heap_disable_thread_trace(FuriThreadId thread_id) {
|
|
memmgr_lock();
|
|
{
|
|
memmgr_heap_thread_trace_depth++;
|
|
furi_check(MemmgrHeapThreadDict_erase(memmgr_heap_thread_dict, (uint32_t)thread_id));
|
|
memmgr_heap_thread_trace_depth--;
|
|
}
|
|
memmgr_unlock();
|
|
}
|
|
|
|
static inline void memmgr_heap_trace_malloc(void* pointer, size_t size) {
|
|
FuriThreadId thread_id = furi_thread_get_current_id();
|
|
if(thread_id && memmgr_heap_thread_trace_depth == 0) {
|
|
memmgr_heap_thread_trace_depth++;
|
|
MemmgrHeapAllocDict_t* alloc_dict =
|
|
MemmgrHeapThreadDict_get(memmgr_heap_thread_dict, (uint32_t)thread_id);
|
|
if(alloc_dict) {
|
|
MemmgrHeapAllocDict_set_at(*alloc_dict, (uint32_t)pointer, (uint32_t)size);
|
|
}
|
|
memmgr_heap_thread_trace_depth--;
|
|
}
|
|
}
|
|
|
|
static inline void memmgr_heap_trace_free(void* pointer) {
|
|
FuriThreadId thread_id = furi_thread_get_current_id();
|
|
if(thread_id && memmgr_heap_thread_trace_depth == 0) {
|
|
memmgr_heap_thread_trace_depth++;
|
|
MemmgrHeapAllocDict_t* alloc_dict =
|
|
MemmgrHeapThreadDict_get(memmgr_heap_thread_dict, (uint32_t)thread_id);
|
|
if(alloc_dict) {
|
|
// In some cases thread may want to release memory that was not allocated by it
|
|
const bool res = MemmgrHeapAllocDict_erase(*alloc_dict, (uint32_t)pointer);
|
|
UNUSED(res);
|
|
}
|
|
memmgr_heap_thread_trace_depth--;
|
|
}
|
|
}
|
|
|
|
size_t memmgr_heap_get_thread_memory(FuriThreadId thread_id) {
|
|
size_t leftovers = MEMMGR_HEAP_UNKNOWN;
|
|
memmgr_lock();
|
|
{
|
|
memmgr_heap_thread_trace_depth++;
|
|
MemmgrHeapAllocDict_t* alloc_dict =
|
|
MemmgrHeapThreadDict_get(memmgr_heap_thread_dict, (uint32_t)thread_id);
|
|
if(alloc_dict) {
|
|
leftovers = 0;
|
|
MemmgrHeapAllocDict_it_t alloc_dict_it;
|
|
for(MemmgrHeapAllocDict_it(alloc_dict_it, *alloc_dict);
|
|
!MemmgrHeapAllocDict_end_p(alloc_dict_it);
|
|
MemmgrHeapAllocDict_next(alloc_dict_it)) {
|
|
MemmgrHeapAllocDict_itref_t* data = MemmgrHeapAllocDict_ref(alloc_dict_it);
|
|
if(data->key != 0) {
|
|
block_header_t* block = block_from_ptr((uint8_t*)data->key);
|
|
if(!block_is_free(block)) {
|
|
leftovers += data->value;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
memmgr_heap_thread_trace_depth--;
|
|
}
|
|
memmgr_unlock();
|
|
return leftovers;
|
|
}
|
|
|
|
static bool tlsf_walker_max_free(void* ptr, size_t size, int used, void* user) {
|
|
UNUSED(ptr);
|
|
|
|
bool free = !used;
|
|
size_t* max_free_block_size = (size_t*)user;
|
|
if(free && size > *max_free_block_size) {
|
|
*max_free_block_size = size;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
size_t memmgr_heap_get_max_free_block(void) {
|
|
size_t max_free_block_size = 0;
|
|
|
|
memmgr_lock();
|
|
|
|
pool_t pool = tlsf_get_pool(tlsf);
|
|
tlsf_walk_pool(pool, tlsf_walker_max_free, &max_free_block_size);
|
|
|
|
memmgr_unlock();
|
|
|
|
return max_free_block_size;
|
|
}
|
|
|
|
typedef struct {
|
|
BlockWalker walker;
|
|
void* context;
|
|
} BlockWalkerWrapper;
|
|
|
|
static bool tlsf_walker_wrapper(void* ptr, size_t size, int used, void* user) {
|
|
BlockWalkerWrapper* wrapper = (BlockWalkerWrapper*)user;
|
|
return wrapper->walker(ptr, size, used, wrapper->context);
|
|
}
|
|
|
|
void memmgr_heap_walk_blocks(BlockWalker walker, void* context) {
|
|
memmgr_lock();
|
|
|
|
BlockWalkerWrapper wrapper = {walker, context};
|
|
pool_t pool = tlsf_get_pool(tlsf);
|
|
tlsf_walk_pool(pool, tlsf_walker_wrapper, &wrapper);
|
|
|
|
memmgr_unlock();
|
|
}
|
|
|
|
void* pvPortMalloc(size_t xSize) {
|
|
// memory management in ISR is not allowed
|
|
if(FURI_IS_IRQ_MODE()) {
|
|
furi_crash("memmgt in ISR");
|
|
}
|
|
|
|
memmgr_lock();
|
|
|
|
// allocate block
|
|
void* data = tlsf_malloc(tlsf, xSize);
|
|
if(data == NULL) {
|
|
if(xSize == 0) {
|
|
furi_crash("malloc(0)");
|
|
} else {
|
|
furi_crash("out of memory");
|
|
}
|
|
}
|
|
|
|
// update heap usage
|
|
heap_used += tlsf_block_size(data);
|
|
heap_used += tlsf_alloc_overhead();
|
|
if(heap_used > heap_max_used) {
|
|
heap_max_used = heap_used;
|
|
}
|
|
|
|
// trace allocation
|
|
memmgr_heap_trace_malloc(data, xSize);
|
|
|
|
memmgr_unlock();
|
|
|
|
// clear block content
|
|
memset(data, 0, xSize);
|
|
|
|
return data;
|
|
}
|
|
|
|
void vPortFree(void* pv) {
|
|
// memory management in ISR is not allowed
|
|
if(FURI_IS_IRQ_MODE()) {
|
|
furi_crash("memmgt in ISR");
|
|
}
|
|
|
|
// ignore NULL pointer
|
|
if(pv != NULL) {
|
|
memmgr_lock();
|
|
|
|
// get block size
|
|
size_t block_size = tlsf_block_size(pv);
|
|
|
|
// clear block content
|
|
memset(pv, 0, block_size);
|
|
|
|
// update heap usage
|
|
heap_used -= block_size;
|
|
heap_used -= tlsf_alloc_overhead();
|
|
|
|
// free
|
|
tlsf_free(tlsf, pv);
|
|
|
|
// trace free
|
|
memmgr_heap_trace_free(pv);
|
|
|
|
memmgr_unlock();
|
|
}
|
|
}
|
|
|
|
extern void* pvPortAllocAligned(size_t xSize, size_t xAlignment) {
|
|
// memory management in ISR is not allowed
|
|
if(FURI_IS_IRQ_MODE()) {
|
|
furi_crash("memmgt in ISR");
|
|
}
|
|
|
|
// alignment must be power of 2
|
|
if((xAlignment & (xAlignment - 1)) != 0) {
|
|
furi_crash("invalid alignment");
|
|
}
|
|
|
|
memmgr_lock();
|
|
|
|
// allocate block
|
|
void* data = tlsf_memalign(tlsf, xAlignment, xSize);
|
|
if(data == NULL) {
|
|
if(xSize == 0) {
|
|
furi_crash("malloc_aligned(0)");
|
|
} else {
|
|
furi_crash("out of memory");
|
|
}
|
|
}
|
|
|
|
// update heap usage
|
|
heap_used += tlsf_block_size(data);
|
|
heap_used += tlsf_alloc_overhead();
|
|
if(heap_used > heap_max_used) {
|
|
heap_max_used = heap_used;
|
|
}
|
|
|
|
// trace allocation
|
|
memmgr_heap_trace_malloc(data, xSize);
|
|
|
|
memmgr_unlock();
|
|
|
|
// clear block content
|
|
memset(data, 0, xSize);
|
|
|
|
return data;
|
|
}
|
|
|
|
extern void* pvPortRealloc(void* pv, size_t xSize) {
|
|
// realloc(ptr, 0) is equivalent to free(ptr)
|
|
if(xSize == 0) {
|
|
vPortFree(pv);
|
|
return NULL;
|
|
}
|
|
|
|
// realloc(NULL, size) is equivalent to malloc(size)
|
|
if(pv == NULL) {
|
|
return pvPortMalloc(xSize);
|
|
}
|
|
|
|
/* realloc things */
|
|
|
|
// memory management in ISR is not allowed
|
|
if(FURI_IS_IRQ_MODE()) {
|
|
furi_crash("memmgt in ISR");
|
|
}
|
|
|
|
memmgr_lock();
|
|
|
|
// trace old block as free
|
|
size_t old_size = tlsf_block_size(pv);
|
|
|
|
// trace free
|
|
memmgr_heap_trace_free(pv);
|
|
|
|
// reallocate block
|
|
void* data = tlsf_realloc(tlsf, pv, xSize);
|
|
if(data == NULL) {
|
|
furi_crash("out of memory");
|
|
}
|
|
|
|
// update heap usage
|
|
heap_used -= old_size;
|
|
heap_used += tlsf_block_size(data);
|
|
if(heap_used > heap_max_used) {
|
|
heap_max_used = heap_used;
|
|
}
|
|
|
|
// trace allocation
|
|
memmgr_heap_trace_malloc(data, xSize);
|
|
|
|
memmgr_unlock();
|
|
|
|
// clear remain block content, if the new size is bigger
|
|
// can't guarantee that all data will be zeroed, cos tlsf_block_size is not always the same as xSize
|
|
if(xSize > old_size) {
|
|
memset((uint8_t*)data + old_size, 0, xSize - old_size);
|
|
}
|
|
|
|
return data;
|
|
}
|
|
|
|
size_t xPortGetFreeHeapSize(void) {
|
|
return memmgr_get_heap_size() - heap_used - tlsf_size(tlsf);
|
|
}
|
|
|
|
size_t xPortGetTotalHeapSize(void) {
|
|
return memmgr_get_heap_size();
|
|
}
|
|
|
|
size_t xPortGetMinimumEverFreeHeapSize(void) {
|
|
return memmgr_get_heap_size() - heap_max_used - tlsf_size(tlsf);
|
|
} |