Memory Allocators Galore
Allocators are strange creatures in the C++ bestiary, but they are key to understanding the language internals. Are you fascinated by memory allocation in the lower level? Well you've come to the right place!
This projects encompasses my efforts around creating some of the most popular memory allocators and it will serve as a reference point henceforth:
- Pre-C++11 default allocator (
DefaultAllocator
&TrackingAllocator
projects) - C++11 compatible allocator replacements (
Allocators
&AlignedAllocator
projects) - Linear (aka Arena) allocator (
LinearAllocator
project) - Stack Allocator (
StackAllocator
&...