README.md
1# `wasmtime-unwinder`
2
3This crate implements an unwind info format, stack walking, and
4unwinding for Wasmtime. It includes logic that:
5
6- Can walk the Wasmstack and visit each frame;
7- Can find exception handlers using an efficient format serialized
8 from Cranelift compilation metadata that can be mapped and used
9 in-place from disk;
10- Provides a "throw" helper that, when called from host code that has
11 been invoked from Wasmcode, can find a handler; and a "resume" stub
12 that can be invoked to transfer control to the corresponding
13 handler.
14