1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
//! The Wasmi virtual machine definitions.
//!
//! These closely mirror the WebAssembly specification definitions.
//! The overall structure is heavily inspired by the `wasmtime` virtual
//! machine architecture.
//!
//! # Example
//!
//! The following example shows a "Hello, World!"-like example of creating
//! a Wasm module from some initial `.wat` contents, defining a simple host
//! function and calling the exported Wasm function.
//!
//! The example was inspired by
//! [Wasmtime's API example](https://docs.rs/wasmtime/0.39.1/wasmtime/).
//!
//! ```
//! use wasmi::*;
//!
//! // In this simple example we are going to compile the below Wasm source,
//! // instantiate a Wasm module from it and call its exported "hello" function.
//! # #[cfg(not(feature = "wat"))]
//! # fn main() {}
//! # #[cfg(feature = "wat")]
//! fn main() -> Result<(), wasmi::Error> {
//! let wasm = r#"
//! (module
//! (import "host" "hello" (func $host_hello (param i32)))
//! (func (export "hello")
//! (call $host_hello (i32.const 3))
//! )
//! )
//! "#;
//! // First step is to create the Wasm execution engine with some config.
//! //
//! // In this example we are using the default configuration.
//! let engine = Engine::default();
//! // Now we can compile the above Wasm module with the given Wasm source.
//! let module = Module::new(&engine, wasm)?;
//!
//! // Wasm objects operate within the context of a Wasm `Store`.
//! //
//! // Each `Store` has a type parameter to store host specific data.
//! // In this example the host state is a simple `u32` type with value `42`.
//! type HostState = u32;
//! let mut store = Store::new(&engine, 42);
//!
//! // A linker can be used to instantiate Wasm modules.
//! // The job of a linker is to satisfy the Wasm module's imports.
//! let mut linker = <Linker<HostState>>::new(&engine);
//! // We are required to define all imports before instantiating a Wasm module.
//! linker.func_wrap("host", "hello", |caller: Caller<'_, HostState>, param: i32| {
//! println!("Got {param} from WebAssembly and my host state is: {}", caller.data());
//! });
//! let instance = linker.instantiate_and_start(&mut store, &module)?;
//! // Now we can finally query the exported "hello" function and call it.
//! instance
//! .get_typed_func::<(), ()>(&store, "hello")?
//! .call(&mut store, ())?;
//! Ok(())
//! }
//! ```
//!
//! # Crate Features
//!
//! | Feature | Crates | Description |
//! |:-:|:--|:--|
//! | `std` | `wasmi`<br>`wasmi_core`<br>`wasmi_ir`<br>`wasmi_collections` | Enables usage of Rust's standard library. This may have some performance advantages when enabled. Disabling this feature makes Wasmi compile on platforms that do not provide Rust's standard library such as many embedded platforms. <br><br> Enabled by default. |
//! | `wat` | `wasmi`<br>`wasmi_cli` | Enables support to parse Wat encoded Wasm modules. <br><br> Enabled by default. |
//! | `simd` | `wasmi`<br>`wasmi_core`<br>`wasmi_ir`<br>`wasmi_cli` | Enables support for the Wasm `simd` and `relaxed-simd` proposals. <br><br> Disabled by default. |
//! | `hash-collections` | `wasmi`<br>`wasmi_collections` | Enables use of hash-map based collections in Wasmi internals. This might yield performance improvements in some use cases. <br><br> Disabled by default. |
//! | `prefer-btree-collections` | `wasmi`<br>`wasmi_collections` | Enforces use of btree-map based collections in Wasmi internals. This may yield performance improvements and memory consumption decreases in some use cases. Also it enables Wasmi to run on platforms that have no random source. <br><br> Disabled by default. |
//! | `extra-checks` | `wasmi` | Enables extra runtime checks in the Wasmi executor. Expected execution overhead is ~20%. Enable this if your focus is on safety. Disable this for maximum execution performance. <br><br> Disabled by default. |
//! | `validate` | `wasmi`<br>`wasmi_cli` | Enable Wasm validation support. Turning this off allows user with control over their inputs to slim down Wasmi's binary size significantly. <br><br> Enabled by default. |
extern crate alloc;
extern crate std;
/// Definitions from the `wasmi_core` crate.
/// Definitions from the `wasmi_collections` crate.
use wasmi_collections as collections;
/// Definitions from the `wasmi_ir` crate.
use wasmi_ir as ir;
/// Defines some errors that may occur upon interaction with Wasmi.
pub use ;
use ;
pub use ;