129 lines
3.3 KiB
C
129 lines
3.3 KiB
C
/* source/mm/tlsf/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 "tlsf.h"
|
|
#include <stdint.h>
|
|
#include <sgl_mm.h>
|
|
#include <sgl_log.h>
|
|
#include <sgl_cfgfix.h>
|
|
|
|
|
|
static tlsf_t mem_tlsf;
|
|
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)
|
|
{
|
|
mem_tlsf = tlsf_create_with_pool(mem_start, len);
|
|
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)
|
|
{
|
|
tlsf_add_pool(mem_tlsf, mem_start, len);
|
|
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 = tlsf_malloc(mem_tlsf, size);
|
|
if(ret == NULL) {
|
|
SGL_LOG_ERROR("out of memory");
|
|
return NULL;
|
|
}
|
|
|
|
mem.used_size += size;
|
|
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 = tlsf_realloc(mem_tlsf, 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 -= tlsf_block_size(p);
|
|
|
|
tlsf_free(mem_tlsf, 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;
|
|
}
|