Updating the changelog

This commit is contained in:
2026-03-07 19:51:17 +01:00
parent 8e8e6fe2b1
commit ee02b83094
3 changed files with 4 additions and 6 deletions

View File

@@ -77,7 +77,8 @@ Each block contains:
- prev/next: Links to neighboring blocks - prev/next: Links to neighboring blocks
- the arena pointer points to the current block - the arena pointer points to the current block
The arena allocates from the current block where the global position is or from the free list. The arena allocates from the current block where the global position is or from
the free list.
Blocks form a single logical address space: Blocks form a single logical address space:
global_offset = pos global_offset = pos
@@ -335,10 +336,6 @@ typedef struct mem_arena {
// configuration // configuration
u64 align; u64 align;
// Element size:
// - stack mode : fixed > 0
// - pointer fixed : fixed > 0
// - pointer variable : 0
u64 push_size; u64 push_size;
// Pointer mode only // Pointer mode only

View File

@@ -1,7 +1,8 @@
V1.0: Recursive scan V1.0: Recursive scan
v1.1: Collects more metadata
v2.0: Multi threaded scan v2.0: Multi threaded scan
Collects more metadata
v2.1: Uses AVX2 instead of SSE2 v2.1: Uses AVX2 instead of SSE2

Binary file not shown.