Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Fragmentation-resistant Microcontroller Heap Algorithm

I am looking to implement a heap allocation algorithm in C for a memory-constrained microcontroller. I have narrowed my search down to 2 options I'm aware of, however I am very open to suggestions, and I am looking for advice or comments from anyone with experience in this.

My Requirements:

-Speed definitely counts, but is a secondary concern.

-Timing determinism is not important - any part of the code requiring deterministic worst-case timing has its own allocation method.

-The MAIN requirement is fragmentation immunity. The device is running a lua script engine, which will require a range of allocation sizes (heavy on the 32 byte blocks). The main requirement is for this device to run for a long time without churning its heap into an unusable state.

Also Note:

-For reference, we are talking about a Cortex-M and PIC32 parts, with memory ranging from 128K and 16MB or memory (with a focus on the lower end).

-I don't want to use the compiler's heap because 1) I want consistent performance across all compilers and 2) their implementations are generally very simple and are the same or worse for fragmentation.

-double indirect options are out because of the huge Lua code base that I don't want to fundamtnetally change and revalidate.

My Favored Approaches Thus Far:

1) Have a binary buddy allocator, and sacrifice memory usage efficiency (rounding up to a power of 2 size). -this would (as I understand) require a binary tree for each order/bin to store free nodes sorted by memory address for fast buddy-block lookup for rechaining.

2) Have two binary trees for free blocks, one sorted by size and one sorted by memory address. (all binary tree links are stored in the block itself) -allocation would be best-fit using a lookup on the table by size, and then remove that block from the other tree by address -deallocation would lookup adjacent blocks by address for rechaining

-Both algorithms would also require storing an allocation size before the start of the allocated block, and have blocks go out as a power of 2 minus 4 (or 8 depending on alignment). (Unless they store a binary tree elsewhere to track allocations sorted by memory address, which I don't consider a good option)

-Both algorithms require height-balanced binary tree code.

-Algorithm 2 does not have the requirement of wasting memory by rounding up to a power of two.

-In either case, I will probably have a fixed bank of 32-byte blocks allocated by nested bit fields to off-load blocks this size or smaller, which would be immune to external fragmentation.

My Questions:

-Is there any reason why approach 1 would be more immune to fragmentation than approach 2?

-Are there any alternatives that I am missing that might fit the requirements?

like image 827
Nathan Wiebe Avatar asked May 29 '12 19:05

Nathan Wiebe


1 Answers

If block sizes are not rounded up to powers of two or some equivalent(*), certain sequences of allocation and deallocation will generate an essentially-unbounded amount of fragmentation even if the number of non-permanent small objects that exist at any given time is limited. A binary-buddy allocator will, of course, avoid that particular issue. Otherwise, if one is using a limited number of nicely-related object sizes but not using a "binary buddy" system, one may still have to use some judgment in deciding where to allocate new blocks.

Another approach to consider is having different allocation methods for things that are expected to be permanent, temporary, or semi-persistent. Fragmentation often causes the most trouble when temporary and permanent things get interleaved on the heap. Avoiding such interleaving may minimize fragmentation.

Finally, I know you don't really want to use double-indirect pointers, but allowing object relocation can greatly reduce fragmentation-related issues. Many Microsoft-derived microcomputer BASICs used a garbage-collected string heap; Microsoft's garbage collector was really horrible, but its string-heap approach can be used with a good one.

like image 125
supercat Avatar answered Oct 16 '22 14:10

supercat