Advertisement

Creating a custom stack allocator for game engine

Started by August 15, 2022 08:11 PM
20 comments, last by JoshuaManton 2 years ago

The creator of the Odin programming language has a fantastic series on custom memory allocators here: https://www.gingerbill.org/series/memory-allocation-strategies/

Part 3 covers stack allocators, which are basically an arena with the ability to free the most recent allocation. This complicates things quite a bit relative to an arena because you will now need headers before each allocation to track how large it was and such.

This topic is closed to new replies.

Advertisement