Expand description
§Wasmtime’s embedding API
Wasmtime is a WebAssembly engine for JIT-compiled or ahead-of-time compiled
WebAssembly modules and components. More information about the Wasmtime
project as a whole can be found in the documentation
book whereas this documentation mostly focuses
on the API reference of the wasmtime crate itself.
This crate contains an API used to interact with WebAssembly modules or WebAssembly components. For example you can compile WebAssembly, create instances, call functions, etc. As an embedder of WebAssembly you can also provide guests functionality from the host by creating host-defined functions, memories, globals, etc, which can do things that WebAssembly cannot (such as print to the screen).
The wasmtime crate is designed to be safe, efficient, and ergonomic.
This enables executing WebAssembly without the embedder needing to use
unsafe code, meaning that you’re guaranteed there is no undefined behavior
or segfaults in either the WebAssembly guest or the host itself.
The wasmtime crate can roughly be thought of as being split into two
halves:
-
One half of the crate is similar to the JS WebAssembly API as well as the proposed C API and is intended for working with WebAssembly modules. This API resides in the root of the
wasmtimecrate’s namespace, for examplewasmtime::Module. -
The second half of the crate is for use with the WebAssembly Component Model. The implementation of the component model is present in
wasmtime::componentand roughly mirrors the structure for core WebAssembly, for examplecomponent::FuncmirrorsFunc.
An example of using Wasmtime to run a core WebAssembly module looks like:
use wasmtime::*;
fn main() -> wasmtime::Result<()> {
let engine = Engine::default();
// Modules can be compiled through either the text or binary format
let wat = r#"
(module
(import "host" "host_func" (func $host_hello (param i32)))
(func (export "hello")
i32.const 3
call $host_hello)
)
"#;
let module = Module::new(&engine, wat)?;
// Host functionality can be arbitrary Rust functions and is provided
// to guests through a `Linker`.
let mut linker = Linker::new(&engine);
linker.func_wrap("host", "host_func", |caller: Caller<'_, u32>, param: i32| {
println!("Got {} from WebAssembly", param);
println!("my host state is: {}", caller.data());
})?;
// All wasm objects operate within the context of a "store". Each
// `Store` has a type parameter to store host-specific data, which in
// this case we're using `4` for.
let mut store: Store<u32> = Store::new(&engine, 4);
// Instantiation of a module requires specifying its imports and then
// afterwards we can fetch exports by name, as well as asserting the
// type signature of the function with `get_typed_func`.
let instance = linker.instantiate(&mut store, &module)?;
let hello = instance.get_typed_func::<(), ()>(&mut store, "hello")?;
// And finally we can call the wasm!
hello.call(&mut store, ())?;
Ok(())
}§Core Concepts
There are a number of core types and concepts that are important to be aware
of when using the wasmtime crate:
-
Engine- a global compilation and runtime environment for WebAssembly. AnEngineis an object that can be shared concurrently across threads and is created with aConfigwith many knobs for configuring behavior. Compiling or executing any WebAssembly requires first configuring and creating anEngine. AllModules andComponents belong to anEngine, and typically there’s oneEngineper process. -
Store- container for all information related to WebAssembly objects such as functions, instances, memories, etc. AStore<T>allows customization of theTto store arbitrary host data within aStore. This host data can be accessed through host functions via theCallerfunction parameter in host-defined functions. AStoreis required for all WebAssembly operations, such as calling a wasm function. TheStoreis passed in as a “context” to methods likeFunc::call. Dropping aStorewill deallocate all memory associated with WebAssembly objects within theStore. AStoreis cheap to create and destroy and does not GC objects such as unused instances internally, so it’s intended to be short-lived (or no longer than the instances it contains). -
Linker(orcomponent::Linker) - host functions are defined within a linker to provide them a string-based name which can be looked up when instantiating a WebAssembly module or component. Linkers are traditionally populated at startup and then reused for all future instantiations of all instances, assuming the set of host functions does not change over time. Host functions areFn(..) + Send + Syncand typically do not close over mutable state. Instead it’s recommended to store mutable state in theTofStore<T>which is accessed throughCaller<'_, T>provided to host functions. -
Module(orComponent) - a compiled WebAssembly module or component. These structures contain compiled executable code from a WebAssembly binary which is ready to execute after being instantiated. These are expensive to create as they require compilation of the input WebAssembly. Modules and components are safe to share across threads, however. Modules and components can additionally be serialized into a list of bytes to later be deserialized quickly. This enables JIT-style compilation through constructors such asModule::newand AOT-style compilation by having the compilation process useModule::serializeand the execution process useModule::deserialize. -
Instance(orcomponent::Instance) - an instantiated WebAssembly module or component. An instance is where you can actually acquire aFunc(orcomponent::Func) from, for example, to call. -
Func(orcomponent::Func) - a WebAssembly function. This can be acquired as the export of anInstanceto call WebAssembly functions, or it can be created via functions likeFunc::wrapto wrap host-defined functionality and give it to WebAssembly. Functions also have typed views asTypedFuncorcomponent::TypedFuncfor a more efficient calling convention. -
Table,Global,Memory,component::Resource- other WebAssembly objects which can either be defined on the host or in wasm itself (via instances). These all have various ways of being interacted with likeFunc.
All “store-connected” types such as Func, Memory, etc, require the
store to be passed in as a context to each method. Methods in wasmtime
frequently have their first parameter as either impl AsContext or impl AsContextMut. These
traits are implemented for a variety of types, allowing you to, for example,
pass the following types into methods:
&Store<T>&mut Store<T>&Caller<'_, T>&mut Caller<'_, T>StoreContext<'_, T>StoreContextMut<'_, T>
A Store is the sole owner of all WebAssembly internals. Types like
Func point within the Store and require the Store to be provided
to actually access the internals of the WebAssembly function, for instance.
§WASI
The wasmtime crate does not natively provide support for WASI, but you can
use the wasmtime-wasi crate for that purpose. With wasmtime-wasi all
WASI functions can be added to a Linker and then used to instantiate
WASI-using modules. For more information see the WASI example in the
documentation.
§Crate Features
The wasmtime crate comes with a number of compile-time features that can
be used to customize what features it supports. Some of these features are
just internal details, but some affect the public API of the wasmtime
crate. Wasmtime APIs gated behind a Cargo feature should be indicated as
such in the documentation.
-
runtime- Enabled by default, this feature enables executing WebAssembly modules and components. If a compiler is not available (such ascranelift) thenModule::deserializemust be used, for example, to provide an ahead-of-time compiled artifact to execute WebAssembly. -
cranelift- Enabled by default, this features enables using Cranelift at runtime to compile a WebAssembly module to native code. This feature is required to process and compile new WebAssembly modules and components. -
cache- Enabled by default, this feature adds support for wasmtime to perform internal caching of modules in a global location. This must still be enabled explicitly throughConfig::cache_config_loadorConfig::cache_config_load_default. -
wat- Enabled by default, this feature adds support for accepting the text format of WebAssembly inModule::newandComponent::new. The text format will be automatically recognized and translated to binary when compiling a module. -
parallel-compilation- Enabled by default, this feature enables support for compiling functions in parallel withrayon. -
async- Enabled by default, this feature enables APIs and runtime support for defining asynchronous host functions and calling WebAssembly asynchronously. For more information seeConfig::async_support. -
profiling- Enabled by default, this feature compiles in support for profiling guest code via a number of possible strategies. SeeConfig::profilerfor more information. -
all-arch- Not enabled by default. This feature compiles in support for all architectures for both the JIT compiler and thewasmtime compileCLI command. This can be combined withConfig::targetto precompile modules for a different platform than the host. -
pooling-allocator- Enabled by default, this feature adds support forPoolingAllocationConfigto pass toConfig::allocation_strategy. The pooling allocator can enable efficient reuse of resources for high-concurrency and high-instantiation-count scenarios. -
demangle- Enabled by default, this will affect how backtraces are printed and whether symbol names from WebAssembly are attempted to be demangled. Rust and C++ demanglings are currently supported. -
coredump- Enabled by default, this will provide support for generating a core dump when a trap happens. This can be configured viaConfig::coredump_on_trap. -
addr2line- Enabled by default, this feature configures whether traps will attempt to parse DWARF debug information and convert WebAssembly addresses to source filenames and line numbers. -
debug-builtins- Enabled by default, this feature includes some built-in debugging utilities and symbols for native debuggers such as GDB and LLDB to attach to the process Wasmtime is used within. The intrinsics provided will enable debugging guest code compiled to WebAssembly. This must also be enabled viaConfig::debug_infoas well for guests. -
component-model- Enabled by default, this enables support for thewasmtime::componentAPI for working with components. -
gc- Enabled by default, this enables support for a number of WebAssembly proposals such asreference-types,function-references, andgc. Note that the implementation of thegcproposal itself is not yet complete at this time. -
threads- Enabled by default, this enables compile-time support for the WebAssemblythreadsproposal, notably shared memories. -
call-hook- Disabled by default, this enables support for theStore::call_hookAPI. This incurs a small overhead on all entries/exits from WebAssembly and may want to be disabled by some embedders. -
memory-protection-keys- Disabled by default, this enables support for thePoolingAllocationConfig::memory_protection_keysAPI. This feature currently only works on x64 Linux and can enable compacting the virtual memory allocation for linear memories in the pooling allocator. This comes with the same overhead as thecall-hookfeature where entries/exits into WebAssembly will have more overhead than before.
More crate features can be found in the manifest of Wasmtime itself for seeing what can be enabled and disabled.
Re-exports§
Modules§
- component
runtimeandcomponent-modelEmbedding API for the Component Model - unix
runtimeUnix-specific extension for thewasmtimecrate.
Structs§
- AnyRef
gcandruntimeAnanyrefGC reference. - Array
Ref gcandruntimeA reference to a GC-managedarrayinstance. - Array
RefPre gcandruntimeAn allocator for a particular Wasm GC array type. - Array
Type runtimeThe type of a WebAssembly array. - Caller
runtimeA structure representing the caller’s context when creating a function viaFunc::wrap. - Code
Builder craneliftorwinchBuilder-style structure used to create aModuleor pre-compile a module to a serialized list of bytes. - Code
Memory runtimeManagement of executable memory within aMmapVec - Compiled
Module runtimeA compiled wasm module, ready to be instantiated. - Global configuration options used to create an
Engineand customize its behavior. - An
Enginewhich is a global context for compilation and management of wasm modules. - A weak reference to an
Engine. - Export
runtimeAn exported WebAssembly value. - Export
Type runtimeA descriptor for an exported WebAssembly value. - Extern
Ref gcandruntimeAn opaque, GC-managed reference to some host data that can be passed to WebAssembly. - Field
Type runtimeThe type of astructfield or anarray’s elements. - Frame
Info runtimeDescription of a frame in a backtrace for aWasmBacktrace. - Frame
Symbol runtimeDebug information for a symbol that is attached to aFrameInfo. - Func
runtimeA WebAssembly function which can be called. - Func
Type runtimeThe type of a WebAssembly function. - GcHeap
OutOf Memory runtimeAn error returned when attempting to allocate a GC-managed object, but the GC heap is out of memory. - Global
runtimeA WebAssemblyglobalvalue which can be read and written to. - Global
Type runtimeA WebAssembly global descriptor. - Guest
Profiler profilingandruntimeCollects basic profiling data for a single WebAssembly guest. - I31
gcandruntimeA 31-bit integer. - Import
Type runtimeA descriptor for an imported value into a wasm module. - Instance
runtimeAn instantiated WebAssembly module. - Instance
Pre runtimeAn instance, pre-instantiation, that is ready to be instantiated. - Linker
runtimeStructure used to link wasm modules/instances together. - Manually
Rooted gcandruntimeA rooted reference to a garbage-collectedTwith arbitrary lifetime. - Memory
runtimeA WebAssembly linear memory. - Memory
Access Error runtimeError for out of boundsMemoryaccess. - Memory
Type runtimeA descriptor for a WebAssembly memory type. - Memory
Type Builder runtimeA builder forMemoryTypes. - Module
runtimeA compiled WebAssembly module, ready to be instantiated. - Module
Export runtimeDescribes the location of an export in a module. - NoExtern
runtimeA reference to the abstractnoexternheap value. - NoFunc
runtimeA reference to the abstractnofuncheap value. - Pool
Concurrency Limit Error pooling-allocatorandruntimeAn error returned when the pooling allocator cannot allocate a table, memory, etc… because the maximum number of concurrent allocations for that entity has been reached. - Pooling
Allocation Config pooling-allocatorConfiguration options used withInstanceAllocationStrategy::Poolingto change the behavior of the pooling instance allocator. - RefType
runtimeOpaque references to data in the Wasm heap or to host data. - Resources
Required runtime - Root
Scope gcandruntimeNested rooting scopes. - Rooted
gcandruntimeA scoped, rooted reference to a garbage-collectedT. - Shared
Memory runtimeA constructor for externally-created shared memory. - Store
runtimeAStoreis a collection of WebAssembly instances and host-defined state. - Store
Context runtimeA temporary handle to a&Store<T>. - Store
Context Mut runtimeA temporary handle to a&mut Store<T>. - Store
Limits runtimeProvides limits for aStore. - Store
Limits Builder runtimeUsed to buildStoreLimits. - Struct
Ref gcandruntimeA reference to a GC-managedstructinstance. - Struct
RefPre gcandruntimeAn allocator for a particular Wasm GC struct type. - Struct
Type runtimeThe type of a WebAssembly struct. - Table
runtimeA WebAssemblytable, or an array of values. - Table
Type runtimeA descriptor for a table in a WebAssembly module. - Typed
Func runtimeA statically typed WebAssembly function. - Unknown
Import Error runtimeError for an unresolvable import. - V128
runtimeRepresentation of a 128-bit vector type,v128, for WebAssembly. - Wasm
Backtrace runtimeRepresentation of a backtrace of function frames in a WebAssembly module for where an error happened. - Wasm
Core Dump coredumpandruntimeRepresentation of a core dump of a WebAssembly module
Enums§
- Call
Hook runtimePassed to the argument ofStore::call_hookto indicate a state transition in the WebAssembly VM. - Code
Hint craneliftorwinchReturn value ofCodeBuilder::hint - Extern
runtimeAn external item to a WebAssembly module, or a list of what can possibly be exported from a wasm module. - Extern
Type runtimeA list of all possible types which can be externally referenced from a WebAssembly module. - Finality
runtimeIndicator of whether a type is final or not. - Heap
Type runtimeThe heap types that can Wasm can have references to. - Represents the module instance allocation strategy to use.
- Configure the strategy used for versioning in serializing and deserializing
crate::Module. - MpkEnabled
runtimeandpooling-allocatorDescribe the tri-state configuration of memory protection keys (MPK). - Mutability
runtimeIndicator of whether a global value, struct’s field, or array type’s elements are mutable or not. - Possible optimization levels for the Cranelift codegen backend.
- Return value from the
Engine::detect_precompiledAPI. - Select which profiling technique to support.
- Ref
runtimeA reference. - Storage
Type runtimeThe storage type of astructfield orarrayelement. - Possible Compilation strategies for a wasm module.
- Representation of a WebAssembly trap and what caused it to occur.
- Update
Deadline runtimeWhat to do after returning from a callback when the engine epoch reaches the deadline for a Store during execution of a function using that store. - Val
runtimePossible runtime values that a WebAssembly module can either consume or produce. - ValType
runtimeA list of all possible value types in WebAssembly. - Wait
Result runtimeResult ofMemory::atomic_wait32andMemory::atomic_wait64 - Select how wasm backtrace detailed information is handled.
Constants§
- DEFAUL
T_ INSTANC E_ LIMIT runtimeValue returned byResourceLimiter::instancesdefault method - DEFAUL
T_ MEMOR Y_ LIMIT runtimeValue returned byResourceLimiter::memoriesdefault method - DEFAUL
T_ TABL E_ LIMIT runtimeValue returned byResourceLimiter::tablesdefault method
Traits§
- AsContext
runtimeA trait used to get shared access to aStorein Wasmtime. - AsContext
Mut runtimeA trait used to get exclusive mutable access to aStorein Wasmtime. - Cache
Store incremental-cacheandcraneliftImplementation of an incremental compilation’s key/value cache store. - Call
Hook Handler asyncandcall-hookandruntimeAn object that can take callbacks when the runtime enters or exits hostcalls. - GcRef
runtimeA common trait implemented by all garbage-collected reference types. - Into
Func runtimeInternal trait implemented for all arguments that can be passed toFunc::wrapandLinker::func_wrap. - Linear
Memory runtimeA linear memory. This trait provides an interface for raw memory buffers which are used by wasmtime, e.g. inside [‘Memory’]. Such buffers are in principle not thread safe. By implementing this trait together with MemoryCreator, one can supply wasmtime with custom allocated host managed memory. - Memory
Creator runtimeA memory creator. Can be used to provide a memory creator to wasmtime which supplies host managed memory. - Resource
Limiter runtimeUsed by hosts to limit resource consumption of instances. - Resource
Limiter Async runtimeandasyncUsed by hosts to limit resource consumption of instances, blocking asynchronously if necessary. - Rooted
GcRef runtimeA trait implemented for GC references that are guaranteed to be rooted: - Stack
Creator asyncandruntimeA stack creator. Can be used to provide a stack creator to wasmtime which supplies stacks for async support. - Stack
Memory asyncandruntimeA stack memory. This trait provides an interface for raw memory buffers which are used by wasmtime inside of stacks which wasmtime executes WebAssembly in for async support. By implementing this trait together with StackCreator, one can supply wasmtime with custom allocated host managed stacks. - Wasm
Params runtimeA trait used forFunc::typedand withTypedFuncto represent the set of parameters for wasm functions. - Wasm
Results runtimeA trait used forFunc::typedand withTypedFuncto represent the set of results for wasm functions. - WasmRet
runtimeA trait implemented for types which can be returned from closures passed toFunc::wrapand friends. - WasmTy
runtimeA trait implemented for types which can be arguments and results for closures passed toFunc::wrapas well as parameters toFunc::typed. - Wasm
TyList runtimeTrait implemented for various tuples made up of types which implementWasmTythat can be passed toFunc::wrap_innerand [HostContext::from_closure].
Unions§
- ValRaw
runtimeA “raw” and unsafe representation of a WebAssembly value.