Free list

From HandWiki
Short description: Data structure used for memory allocation

A free list (or freelist) is a data structure used in a scheme for dynamic memory allocation. It operates by connecting unallocated regions of memory together in a linked list, using the first word of each unallocated region as a pointer to the next. It is most suitable for allocating from a memory pool, where all objects have the same size.

Free lists make the allocation and deallocation operations very simple. To free a region, one would just link it to the free list. To allocate a region, one would simply remove a single region from the end of the free list and use it. If the regions are variable-sized, one may have to search for a region of large enough size, which can be expensive.

Free lists have the disadvantage, inherited from linked lists, of poor locality of reference and so poor data cache utilization, and they do not automatically consolidate adjacent regions to fulfill allocation requests for large regions, unlike the buddy allocation system. Nevertheless, they are still useful in a variety of simple applications where a full-blown memory allocator is unnecessary or requires too much overhead.

The OCaml runtime uses free lists to satisfy allocation requests,[1] as does RosAlloc on Android Runtime.[2]

See also

References

  1. Minsky, Yaron; Madhavapeddy, Anil (October 2022). "Understanding the Garbage Collector". Real World OCaml (2nd ed.). Cambridge University Press. https://dev.realworldocaml.org/garbage-collector.html. Retrieved 8 November 2022. 
  2. "Debugging ART garbage collection". https://source.android.com/docs/core/runtime/gc-debug. 

Further reading