30

GitHub - thi-ng/tinyalloc: malloc / free replacement for unmanaged, linear memor...

 5 years ago
source link: https://github.com/thi-ng/tinyalloc
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

README.md

thi.ng/tinyalloc

Tiny replacement for malloc / free in unmanaged, linear memory situations, e.g. WASM and embedded devices.

Features

  • written in standalone C11, no dependencies, C runtime or syscalls used
  • configurable address region (and max. block count) for heap space
  • configurable pointer alignment in heap space
  • optional compaction of consecutive free blocks
  • optional block splitting during alloc (if re-using larger free'd blocks)
  • tiny, the WASM binary is 1.5KB (1.1KB w/ compaction disabled)

Details

tinyalloc maintains 3 linked lists: fresh blocks, used blocks, free blocks. All lists are stored in the same fixed sized array so the memory overhead can be controlled at compile time via the configuration vars listed below. During initialization all blocks are added to the list of fresh blocks.

The difference between free & fresh blocks is the former already have an associated heap address and size from previous usage. OTOH fresh blocks are uninitialized and are only used if no existing free blocks satisfy an allocation request.

The diagram illustrates the state of having 1 freed block (green), 2 used blocks (red) and the beginning of the fresh (unused) block list:

memory layout

Allocation

When a new chunk of memory is requested, all previously freed blocks are checked for potential re-use. If a block is found, is larger than the requested size and the size difference is greater than the configured threshold (TA_SPLIT_THRESH), then the block is first split, the chunks added to the used & free lists respectively and the pointer to the first chunk returned to the user. If no blocks in the free list qualify, a new block is allocated at the current heap top address, moved from the "fresh" to the "used" block list and the pointer returned to the caller.

Note: All returned pointers are aligned to TA_ALIGN word boundaries. Same goes for allocated block sizes. Also, allocation will fail when all blocks in the fixed size block array are used, even though there might still be ample space in the heap memory region...

Freeing & compaction

The list of freed blocks is sorted by block start address. When a block is being freed, tinyalloc uses insertion sort to add the block at the right list position and then runs a compaction procedure, merging blocks as long as they form consecutive chunks of memory (with no gaps in between them). The resulting obsolete blocks are re-added to the list of available blocks.

API

ta_init()

Initializes the control datastructure. MUST be called prior to any other tinyalloc function.

void* ta_alloc(size_t num)

Like standard malloc, returns aligned pointer to address in heap space, or NULL if allocation failed.

void* ta_calloc(size_t num, size_t t)

Like standard calloc, returns aligned pointer to zeroed memory in heap space, or NULL if allocation failed.

bool ta_free(void *ptr)

Like free, but returns boolean result (true, if freeing succeeded). By default, any consecutive memory blocks are being merged during the freeing operation.

bool ta_check()

Structural validation. Returns true if internal heap structure is ok.

Building

Configuration

Define Default Comment TA_ALIGN 8 Word size for pointer alignment TA_BASE 0x400 Address of tinyalloc control data structure TA_DEBUG undefined Trace debug information TA_DISABLE_COMPACT undefined Disable free block compaction TA_DISABLE_SPLIT undefined Disable free block splitting during re-alloc TA_HEAP_START 0x1010 Heap space start address TA_HEAP_LIMIT 0xffffff Heap space end address TA_HEAP_BLOCKS 256 Max. number of memory chunks TA_SPLIT_THRESH 16 Size threshold for splitting chunks

On a 32bit system, the default configuration causes an overhead of 3088 bytes in RAM, but can be reduced if fewer memory blocks are needed.

Notes:

  • TA_ALIGN is assumed to be >= native word size
  • TA_BASE must be an address in RAM (on embedded devices)
  • TA_HEAP_START is assumed to be properly aligned

If building in debug mode (if TA_DEBUG symbol is defined), two externally defined functions are required:

  • print_s(char *) - to print a single string
  • print_i(size_t) - to print a single unsigned int

Building for WASM

(Requires emscripten)

emcc -Oz -s WASM=1 -s SIDE_MODULE=1 -o tinyalloc.wasm tinyalloc.c

Disassemble to WAST

(Requires WABT)

wasm2wast --generate-names tinyalloc.wasm > tinyalloc.wast

License

© 2016 - 2017 Karsten Schmidt - Apache Software License 2.0 (see LICENSE)


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK