wasmer_vm

Module 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.