Crate wasmer_compiler_singlepass
source ·Expand description
A WebAssembly Compiler
implementation using Singlepass.
Singlepass is a super-fast assembly generator that generates assembly code in just one pass. This is useful for different applications including Blockchains and Edge computing where quick compilation times are a must, and JIT bombs should never happen.
Compared to Cranelift and LLVM, Singlepass compiles much faster but has worse runtime performance.
Macros§
Structs§
- A compiler that compiles a WebAssembly module with Singlepass. It does the compilation in one pass