This library implements libc memory allocation functions in WebAssembly. The implementation assumes a single page of memory, that is, a 64 KiB buffer.
malloc
calloc
free
realloc
memset
memcpy
memmove
Initialize memory with cmem_init(start)
, where start
is the 16 bit address of the first byte of the memory region to use. Proceed to use memory allocation functions as usual. Exceeding available memory will trap.
cmem_end()
returns a past-the-end pointer to the last buffer in memory, effectively retrieving the current length of memory. Intended use is backing up memory states at minimal size.
build.sh
runs the source code through the C language preprocessor, then translates it with wat2wasm
from the wabt software package.
The result is an object file that can be linked using wasm-ld
, as well as a WebAssembly module.
The script also produces an optimized module using wasm-opt -O3
from the binaryen package.
EXPORT_ALL
exports the memory and functions other thancmem_init
andcmem_end
, including memory and list management functions.PREFIX_LIBC
prependscmem_
to libc function names.FIRST_FIT
employs a first-fit instead of a best-fit strategy for allocation.BULK_MEMORY
enables use of bulk memory instructions, decreasing embedder compatibility.
Best-fit allocation. Doubly linked list to navigate buffers. 16-bit addresses constrict memory length to 64 KiB.