/* source/mm/lwmem/sgl_mm.c * * MIT License * * Copyright(c) 2023-present All contributors of SGL * Document reference link: https://sgl-docs.readthedocs.io * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #include #include #include "lwmem.h" #include #include static sgl_mm_monitor_t mem = { .total_size = 0, .free_size = 0, .used_size = 0, }; /** * @brief initialize memory pool * @param mem_start start address of memory pool * @param len length of memory pool */ void sgl_mm_init(void *mem_start, size_t len) { lwmem_region_t lwmem[] = { {.start_addr = mem_start, .size = len,}, { NULL, 0 }, }; lwmem_assignmem(lwmem); mem.total_size += len; } /** * @brief add memory pool * @param mem_start start address of memory pool * @param len length of memory pool */ void sgl_mm_add_pool(void *mem_start, size_t len) { lwmem_region_t lwmem[] = { {.start_addr = mem_start, .size = len,}, { NULL, 0 }, }; lwmem_assignmem(lwmem); mem.total_size += len; } /** * @brief memory alloc, the function is unsafe, you should ensure that * the requested size is smaller than the free size of memory * * @param size request size of memory * * @return point to request memory address */ void* sgl_malloc(size_t size) { void *ret = lwmem_malloc(size); if(ret == NULL) { SGL_LOG_ERROR("out of memory"); return NULL; } mem.used_size += lwmem_get_size(ret); return ret; } /** * @brief memory realloc, the function is unsafe, you should ensure that * the requested size is smaller than the free size of memory * @param p the pointer of request size of memory * @param size request size of memory */ void* sgl_realloc(void *p, size_t size) { void *ret = lwmem_realloc(p, size); if(ret == NULL) { SGL_LOG_ERROR("out of memory"); return NULL; } mem.used_size += size; return ret; } /** * @brief memory free * * @param p the pointer of request size of memory * * @return none */ void sgl_free(void *p) { mem.used_size -= lwmem_get_size(p); lwmem_free(p); } sgl_mm_monitor_t sgl_mm_get_monitor(void) { int integer = (mem.used_size * 100) / mem.total_size; int decimal = (mem.used_size * 10000) / mem.total_size - (integer * 100); mem.used_rate = integer << 8 | decimal; mem.free_size = mem.total_size - mem.used_size; return mem; }