Module wasmer_vm::sig_registry

source ·
Expand description

Implement a registry of function signatures, for fast indirect call signature checking.

Structs§

  • Inner 🔒
  • WebAssembly requires that the caller and callee signatures in an indirect call must match. To implement this efficiently, keep a registry of all signatures, shared by all instances, so that call sites can just do an index comparison.