Wirm is a WebAssembly IR Manipulation Library for the Component Model.
NOTE: This project used to be known as Orca, see discussion on refactor here.
It is based on Dfinity's IC codebase and Walrus.
Wirm is a light-weight, easy-to-use, Rust Library for performing WebAssembly transformations.
It uses wasmparser and wasm_encoder to parse and encode Wasm components/modules and maintains its own Intermediate Representation.
Wirm also includes some handy visitors for walking Wasm components:
walk_structural: to walk a Component using its structural (in-file) order.walk_topological: to walk a Component in topological (dependency) order (useful when traversing a component post-instrumentation).
Several projects already leverage these visitors!
Wirm(that's right, we eat our own dogfood here): at encode time,wirmuseswalk_topologicalto ensure that instrumented components get encoded without introducing forward references.cviz: Useswalk_structuralto discover the internal composition of a component.splicer: Useswalk_structuralto split out subcomponents from their root.
Wirm supports parallel processing during module parsing and encoding to improve performance for modules with many functions. This feature uses rayon to process function bodies concurrently.
Enable the feature by adding the parallel feature to your Cargo.toml:
[dependencies]
wirm = { version = "1.1.0", features = ["parallel"] }To install wasm-tools:
$ cargo install wasm-tools