// 这个文件包含 系统heap和lua heap的默认实现 #include #include //add for memset #include "bget.h" #include "luat_malloc.h" #define LUAT_LOG_TAG "heap" #include "luat_log.h" #include "FreeRTOS.h" #include "task.h" //------------------------------------------------ // 管理系统内存 void* luat_heap_malloc(size_t len) { return OS_Malloc(len); } void luat_heap_free(void* ptr) { OS_Free(ptr); } void* luat_heap_realloc(void* ptr, size_t len) { void* tmp = luat_heap_malloc(len); if (tmp && ptr) { memcpy(tmp, ptr, len); } return tmp; } void* luat_heap_calloc(size_t count, size_t _size) { void *ptr = luat_heap_malloc(count * _size); if (ptr) { memset(ptr, 0, _size); } return ptr; } //------------------------------------------------ //------------------------------------------------ // ---------- 管理 LuaVM所使用的内存---------------- void* luat_heap_alloc(void *ud, void *ptr, size_t osize, size_t nsize) { // if (0) { // if (ptr) { // if (nsize) { // // 缩放内存块 // LLOGD("realloc %p from %d to %d", ptr, osize, nsize); // } // else { // // 释放内存块 // LLOGD("free %p ", ptr); // OS_Free(ptr); // return NULL; // } // } // else { // // 申请内存块 // ptr = OS_Malloc(nsize); // LLOGD("malloc %p type=%d size=%d", ptr, osize, nsize); // return ptr; // } // } if (nsize) { void* ptmp = pvPortMalloc(nsize); if (ptmp) { if (osize > nsize) { memcpy(ptmp, ptr, nsize); } else { memcpy(ptmp, ptr, osize); } vPortFree(ptr); return ptmp; } else if (osize >= nsize) { return ptr; } } vPortFree(ptr); return NULL; } void luat_meminfo_luavm(size_t *total, size_t *used, size_t *max_used) { *used = configTOTAL_HEAP_SIZE - xPortGetFreeHeapSize(); *max_used = configTOTAL_HEAP_SIZE - xPortGetMinimumEverFreeHeapSize(); *total = configTOTAL_HEAP_SIZE; } void luat_meminfo_sys(size_t *total, size_t *used, size_t *max_used) { long curalloc, totfree, maxfree; unsigned long nget, nrel; bstats(&curalloc, &totfree, &maxfree, &nget, &nrel); *used = curalloc; *max_used = bstatsmaxget(); *total = curalloc + totfree; } //-----------------------------------------------------------------------------