【问题标题】:Examples or documentation for custom storage allocator in c?c 中自定义存储分配器的示例或文档?
【发布时间】:2013-12-03 04:50:43
【问题描述】:

我分配了一个很大的内存区域,比如说 x 1000 字节。

// I am using c language and all of this is just pseudo code(function prototypes mostly) so far.
pointer = malloc( size(1000 units) ); // this pointer points to region of memory we created.

现在我们通过一个指针选择这个区域,并将其中的内存分配给更小的块,比如

void *allocate_from_region( size_of_block1(300) );  //1000-300=700 (left free)
void *allocate_from_region( size_of_block2(100) );  //700-100 =600
void *allocate_from_region( size_of_block3(300) );  //600-300 =300 
void *allocate_from_region( size_of_block4(100) );  //300-100 =200
void *allocate_from_region( size_of_block5(150) );  //200-150 =50
// here we almost finished space we have in region (only 50 is left free in region)


boolean free_from_region(pointer_to_block2);        //free 100 more 
//total free = 100+50 but are not contiguous in memory

void *allocate_from_region( size_of_block6(150) );  // this one will fail and gives null as it cant find 150 units memory(contiguous) in region.

boolean free_from_region(pointer_to_block3); // this free 300 more so total free = 100+300+50 but contiguous free is 100+300 (from block 2 and 3)

void *allocate_from_region( size_of_block6(150); // this time it is successful 

有没有这样管理内存的例子?

到目前为止,我只做了一些示例,我可以在内存区域中分配相邻的块,并在该区域内的内存用完时结束它。 但是如何搜索区域内空闲的块,然后检查是否有足够的连续内存可用。 我确信在 c 中应该有一些文档或示例来说明如何做到这一点。

【问题讨论】:

    标签: c memory memory-management dynamic-memory-allocation


    【解决方案1】:

    当然。您所提议的或多或少正是某些malloc 实现所做的。他们维护一个“免费列表”。最初,单个大块在此列表中。当你发出请求时,分配 n 字节的算法是:

    search the free list to find a block at B of size m >= n
    Remove B from the free list.
    Return the block from B+n through B+m-1 (size m-n) to the free list (unless m-n==0) 
    Return a pointer to B
    

    要释放大小为 n 的 B 块,我们必须将其放回空闲列表中。然而,这还不是结束。我们还必须将它与相邻的空闲块“合并”,如果有的话,无论是在上面还是在下面,或者两者都有。这就是算法。

    Let p = B; m = n;  // pointer to base and size of block to be freed
    If there is a block of size x on the free list and at the address B + n, 
      remove it, set m=m+x.  // coalescing block above
    If there is a block of size y on the free list and at address B - y, 
      remove it and set p=B-y; m=m+y;  // coalescing block below
    Return block at p of size m to the free list.
    

    剩下的问题是如何设置空闲列表,以便在分配期间快速找到合适大小的块,并在空闲操作期间找到相邻块以进行合并。最简单的方法是单链表。但是有许多可能的替代方案可以产生更好的速度,通常会以一些额外的数据结构空间为代价。

    此外,当一个以上的块足够大时,可以选择分配哪个块。通常的选择是“最适合”和“最适合”。对于第一次拟合,只需取第一个发现的。通常最好的技术是(而不是每次都从最低地址开始)记住刚刚分配的空闲块之后的空闲块,并将其用作下一次搜索的起点。这称为“旋转首次拟合”。

    为了最佳,适合,遍历尽可能多的块以找到与请求的大小最匹配的块。

    如果分配是随机的,则在内存碎片方面,首次拟合实际上比最佳拟合要好一些。碎片是所有非压缩分配器的祸根。

    【讨论】:

    • 你能否在第二部分解释更多一点,你试图解释“释放大小为 n 的 B 块”我们如何检查它们是否也立即位于彼此上方或下方?
    • @shunya 我添加了更多解释。
    猜你喜欢
    • 2010-10-24
    • 2019-08-11
    • 2012-02-22
    • 2023-03-28
    • 2020-03-14
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2021-04-14
    相关资源
    最近更新 更多