Name Date Size #Lines LOC

..15-May-2026-

src/H15-May-2026-1,337711

Cargo.tomlH A D15-May-2026802 3025

LICENSEH A D15-May-202612 KiB221182

README.mdH A D15-May-2026552 1411

build.rsH A D15-May-2026466 1915

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