All Projects → userpro → Memorypool

userpro / Memorypool

Licence: mit
一个极简内存池实现

Programming Languages

c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to Memorypool

Jemalloc.net
A native memory manager for .NET
Stars: ✭ 308 (+135.11%)
Mutual labels:  memory-management
Sralloc
Memory allocators
Stars: ✭ 25 (-80.92%)
Mutual labels:  memory-management
Vulkanmemoryallocator
Easy to integrate Vulkan memory allocation library
Stars: ✭ 1,136 (+767.18%)
Mutual labels:  memory-management
Mps
The Memory Pool System
Stars: ✭ 351 (+167.94%)
Mutual labels:  memory-management
Redis Memory Analyzer
Redis memory profiler to find the RAM bottlenecks throw scaning key space in real time and aggregate RAM usage statistic by patterns.
Stars: ✭ 591 (+351.15%)
Mutual labels:  memory-management
Errand Boy
A memory-conscious alternative to os.fork() and subprocess.Popen().
Stars: ✭ 34 (-74.05%)
Mutual labels:  memory-management
Heap Layers
Heap Layers: An Extensible Memory Allocation Infrastructure
Stars: ✭ 260 (+98.47%)
Mutual labels:  memory-management
Ipyexperiments
jupyter/ipython experiment containers for GPU and general RAM re-use
Stars: ✭ 128 (-2.29%)
Mutual labels:  memory-management
Articles Translator
📚Translate the distinct technical blogs. Please star or watch. Welcome to join me.
Stars: ✭ 606 (+362.6%)
Mutual labels:  memory-management
Weakable Self
A Swift micro-framework to easily deal with weak references to self inside closures
Stars: ✭ 64 (-51.15%)
Mutual labels:  memory-management
Scalene
Scalene: a high-performance, high-precision CPU, GPU, and memory profiler for Python
Stars: ✭ 4,819 (+3578.63%)
Mutual labels:  memory-management
The holy book of x86
A simple guide to x86 architecture, assembly, memory management, paging, segmentation, SMM, BIOS....
Stars: ✭ 577 (+340.46%)
Mutual labels:  memory-management
Go Pmem
Native persistent memory support for Go
Stars: ✭ 57 (-56.49%)
Mutual labels:  memory-management
Sinsofmemoryleaks
Some common patterns of memory leaks in Android development and how to fix/avoid them
Stars: ✭ 343 (+161.83%)
Mutual labels:  memory-management
Automem
C++-style automatic memory management smart pointers for D
Stars: ✭ 71 (-45.8%)
Mutual labels:  memory-management
Structlayout
Visual Studio Extension for C++ struct memory layout visualization
Stars: ✭ 270 (+106.11%)
Mutual labels:  memory-management
Gc
Simple, zero-dependency garbage collection for C
Stars: ✭ 851 (+549.62%)
Mutual labels:  memory-management
Isoalloc
A general purpose memory allocator that implements an isolation security strategy to mitigate memory safety issues while maintaining good performance
Stars: ✭ 130 (-0.76%)
Mutual labels:  memory-management
Mesh
A memory allocator that automatically reduces the memory footprint of C/C++ applications.
Stars: ✭ 1,243 (+848.85%)
Mutual labels:  memory-management
Memreduct
Lightweight real-time memory management application to monitor and clean system memory on your computer.
Stars: ✭ 1,101 (+740.46%)
Mutual labels:  memory-management

MemoryPool

一个极简内存池实现(基于First Fit算法, 可扩展)

要一口气预分配大内存来管理

Log

  • 18-1-7 12.53 增加了自动扩展 (内存池耗尽时自动新扩展一个mempoolsize大小的内存)
  • 18-5-27 1.10 改进输出信息 增强测试程序(详见main.cpp)
  • 19-3-18 11.05 改进格式, 修复潜在bug
  • 19-4-1 20:46 增加线程安全选项, 修改了自动扩展逻辑.
  • 19-10-14 21:44 reformat 修改多线程启用模式(详见下面Tips), 移除Calloc

Next

  • 伙伴内存管理
  • 读写锁

Makefile

  • run_single_test 运行单线程测试
  • run_multi_test 运行多线程测试
  • run_example 运行example.c

Example

#include "memorypool.h"
#include <stdio.h>

struct TAT
{
    int T_T;
};

mem_size_t max_mem = 2*GB + 1000*MB + 1000*KB;
mem_size_t mem_pool_size = 1*GB + 500*MB + 500*KB;

int main()
{
    MemoryPool *mp = MemoryPoolInit(max_mem, mem_pool_size);
    struct TAT *tat = (struct TAT *)MemoryPoolAlloc(mp, sizeof(struct TAT));
    tat->T_T = 2333;
    printf("%d\n", tat->T_T);
    MemoryPoolFree(mp, tat);
    MemoryPoolClear(mp);
    MemoryPoolDestroy(mp);
    return 0;
}

API

  • 预定义宏

KB MB GB

  • 内存池

mem_size_t => unsigned long long

MemoryPoolInit 参数(mem_size_t maxmempoolsize, mem_size_t mempoolsize)

maxmempoolsize: 内存池字节数上限

mempoolsize: 内存池字节数 (maxmempoolsize与mempoolsize不相等时会自动扩展, 直到上限)

MemoryPoolAlloc 行为与系统malloc一致(参数多了一个)

MemoryPoolFree 行为与系统free一致(返回值0为正常)

MemoryPool* MemoryPoolInit   (mem_size_t maxmempoolsize, mem_size_t mempoolsize);
void*       MemoryPoolAlloc  (MemoryPool *mp, mem_size_t wantsize);
int         MemoryPoolFree   (MemoryPool *mp, void *p);
MemoryPool* MemoryPoolClear  (MemoryPool *mp);
int         MemoryPoolDestroy(MemoryPool *mp);
  • 获取内存池信息

MemoryPoolGetUsage 获取当前内存池已使用内存比例

MemoryPoolGetProgUsage 获取内存池中真实分配内存比例(除去了内存池管理结构占用的内存)

// 总空间
mem_size_t GetTotalMemory(MemoryPool* mp);
// 实际分配空间
mem_size_t GetUsedMemory     (MemoryPool *mp);
float      MemoryPoolGetUsage(MemoryPool *mp);
// 数据占用空间
mem_size_t GetProgMemory     (MemoryPool *mp);
float      MemoryPoolGetProgUsage(MemoryPool *mp);

Tips

  • 可通过注释test.c里的#include "memorypool.h"来切换对比系统malloc free和内存池
  • 线程安全(需通过提供编译选项-D _Z_MEMORYPOOL_THREAD_或者memorypool.h文件增加#define _Z_MEMORYPOOL_THREAD_)
  • 多食用MemoryPoolClear (多线程情况下慎用)
  • 2GB 数据量 顺序分配释放 的情况下比系统malloc free平均快 30%-50% (食用MemoryPoolClear效果更明显)
  • mem_size_t使用unsigned long long以支持4GB以上内存管理
  • 大量小块内存分配会有 20%-30% 内存空间损失(用于存储管理结构体)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].