A Detailed Examination of Zig's Memory Pool
In a bid to understand how the memory pool works, I dug into the Zig memory pool source code. I plan to read the code for the allocator in the heap folder of the std library.
Let’s look at what it does and how it does—starting from the first error message definition.
Out Of Memory Error
Error is not complicated in Zig. Obviously in this case, since we are dealing with memory there is a limit to how much memory the operating system can give out when resources are scarce. We define an error message like so:
The Memory Pool
Next, we define our memory pool as a generic constructor, from which we get back a type. The expectation is that we pass in a type in which we want the OS to create a pool of memory except in this place we need to understand the importance of memory alignment. An explanation of this can be found in Andrew Kelly’s lecture.
Since there is a need to accommodate different alignments. For example, we have a struct like below:
This code snippet defines a struct ll
with two fields: width
of type u8
(8-bit unsigned integer) and height
of type u9
(9-bit unsigned integer). It then prints the size of u8
, the size of u9
, and the alignment of the ll
struct.
This program outputs:
@sizeOf(u8) = 1
: This is straightforward. Au8
is an 8-bit integer, which occupies exactly 1 byte.@sizeOf(u9) = 2
: This is where things get interesting. Althoughu9
only needs 9 bits, Zig allocates 2 bytes (16 bits) for it. This is because most hardware architectures are optimized for byte-aligned access, and the smallest unit larger than 9 bits that satisfies this is 2 bytes.@alignOf(ll) = 2
: The alignment of a struct is determined by its largest field's alignment. In this case, it's theu9
field, which has an alignment of 2 bytes.
What's fascinating about alignment, is the efficient use of what could have been wasted space.
To accommodate for growth and also specify alignment for the type we are constructing a memory pool for, zig allows programmers to specify options
since the memory pool increases in the amount of memory allocated, we can specify whether or not the memory pool is allowed to do that.
Since the memory pool calls for the construction of an aligned pool for the stored data of the same type. Options can be passed in also.
If you look closely , I asked why 29- bit alignment ? But, I haven’t figured out why yet .
Therefore by default, the memory pool supports 29-bit alignment.
The Pool
Starting from the Pool constant which refers to the inner struct with the @This()
There is a maximal comparison between the item that should be stored in the loop and the node that will be abstracting the stored item which is the alignment of a *anyopaque
which is synonymous with a *void
.
Regarding node alignment, the memory pool keeps a free list of pointers to another pool, represented as a chain of aligned nodes. This alignment is based on the specified alignment or the alignment of the items we need to store in the pool. This is stored in the item_alignment
.
However, there is a backing arena allocator that takes an existing allocator, wraps it, and provides an interface where one can allocate without freeing, and then free it all together. This allocator creates all our items for the pool. So the pool is initialized to bypass that backing memory allocator like so :
As usual, for every allocation, there must be equal and opposite deallocation. Therefore the memory pool has a deinit
method that performs that, cleaning up the backing allocator.
Creation & Destruction Of Memory Pool Items
To destroy is simple to create is hard lol. So let's destroy ...
To destroy an allocated item, the user of the memory pool only needs to specify the memory location of the item via a pointer and the pointer is set to undefined, thereby deallocating the memory and returning the pointer to the free list as a node pointer.
Up next, is the create functionality.
To create a new item in a memory pool, you call the create function and it will either fail or return an aligned pointer to the item requested but first it will create a node pointer for an item if a free list does not exist provided the pool is growable. If the free list of nodes exists, it will return the head of the free list and advance to the next node of the list essentially giving out the head of a linked list. If any issue occurs during allocation, an error is returned as shown below.
Looking closely at pool.allocNew()
, it does only one simple thing. It calls the underlying allocator for a block of memory and aligns it to the item the pool stores. Think of it like it gave out blocks of cells for usage by the user.
Resetting The Pool
Resetting the pool can be useful for clean up and it is done based on the reset mode configuration which determines how the underlying allocator will free all previously stored items in the pool. Depending on the setting, it can be done in batches without invalidating the actual pool.
Pre-Heating The Memory Pool
Provide a size and you will get all the number of allocated items you want in a pool at once so when you call for an item it is available instead of the program requesting for allocation from the heap.
Although a while loop, the memory pool is bootstrapped for usage via a create
call.
And that, lovely reader is how the whole memory pool works.
Benefits of Memory Pools
Memory pools offer several advantages, such as improved performance and efficient memory management. Examples of such benefits are:
Improved Performance: Memory pools significantly reduce the overhead associated with frequent allocations and deallocations.
Predictable Allocation Time: Allocations from a memory pool typically have constant time complexity (O(1)), unlike system allocators which may have variable allocation times.
Simplified Memory Management: Memory pools can simplify error handling and resource management. Instead of tracking and freeing individual allocations, entire pools can be deallocated at once, reducing the risk of memory leaks.
Bounded Memory Usage: Memory pools can help in creating systems with bounded memory usage, which is crucial in embedded systems or other memory-constrained environments.
Anyway be sure to use the memory pool in the right place, especially in areas where there is the likelihood of a lot of reallocation.
A basic usage of the memory pool can be as simple as this test from the std library:
Anyway, that is all there is to the Memory pool.
I am Caleb and you can reach me on Linkedin or follow me on Twitter - @Soundboax .
Subscribe to my newsletter
Read articles from Adewole Caleb Erioluwa directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by
Adewole Caleb Erioluwa
Adewole Caleb Erioluwa
I'm all about building scalable and robust applications, bringing over 5+ years of experience. As a Backend Software Engineer, I've driven efficiency improvements of up to 60%, thanks to my expertise in Go and JavaScript. In my current role at Cudium, as a Senior Software Engineer, I've integrated backend systems with third-party applications, boosting our understanding of user engagement by 85%. Beyond coding, I enjoy mentoring, documentation, and spearheading security features for a safer application. During my internship at Nomba, I honed skills in Node JS, MongoDB, and Java, improving data persistence for vendor services and reducing fraudulent transactions by over 60%. At Kudi.ai, I implemented transactional features, optimized legacy code, and crafted an account balance slack notification service, boosting stakeholder efficiency by 75%. At Airgateway, I was focused on enhancing support for agencies in their airline bookings. When not in the tech world, you'll find me strumming a guitar, hitting the dance floor, or belting out a tune. Let's connect over coffee and chat about tech, career journeys, or the latest music trends! I'm always looking to expand my network. Feel free to reach out at caleberioluwa@gmail.com