|
Wasmtime
|
Go to the source code of this file.
Data Structures | |
| union | wasmtime_valunion |
| Container for different kinds of wasm values. More... | |
| union | wasmtime_val_raw |
| Container for possible wasm values. More... | |
| union | wasmtime_val |
| Container for different kinds of wasm values. More... | |
Macros | |
| #define | WASMTIME_I32 0 |
| Value of wasmtime_valkind_t meaning that wasmtime_val_t is an i32. | |
| #define | WASMTIME_I64 1 |
| Value of wasmtime_valkind_t meaning that wasmtime_val_t is an i64. | |
| #define | WASMTIME_F32 2 |
| Value of wasmtime_valkind_t meaning that wasmtime_val_t is a f32. | |
| #define | WASMTIME_F64 3 |
| Value of wasmtime_valkind_t meaning that wasmtime_val_t is a f64. | |
| #define | WASMTIME_V128 4 |
| Value of wasmtime_valkind_t meaning that wasmtime_val_t is a v128. | |
| #define | WASMTIME_FUNCREF 5 |
| Value of wasmtime_valkind_t meaning that wasmtime_val_t is a funcref. | |
| #define | WASMTIME_EXTERNREF 6 |
| Value of wasmtime_valkind_t meaning that wasmtime_val_t is an externref. | |
| #define | WASMTIME_ANYREF 7 |
| Value of wasmtime_valkind_t meaning that wasmtime_val_t is an anyref. | |
| #define | WASMTIME_EXNREF 8 |
| Value of wasmtime_valkind_t meaning that wasmtime_val_t is an exnref. | |
Typedefs | |
| typedef uint8_t | wasmtime_valkind_t |
| Discriminant stored in wasmtime_val::kind. | |
| typedef uint8_t | wasmtime_v128[16] |
A 128-bit value representing the WebAssembly v128 type. Bytes are stored in little-endian order. | |
| typedef union wasmtime_valunion | wasmtime_valunion_t |
| Convenience alias for wasmtime_valunion. | |
| typedef union wasmtime_val_raw | wasmtime_val_raw_t |
| Convenience alias for wasmtime_val_raw. | |
| typedef struct wasmtime_val | wasmtime_val_t |
| Convenience alias for wasmtime_val_t. | |
Functions | |
| WASM_API_EXTERN void | wasmtime_val_unroot (wasmtime_val_t *val) |
Unroot the value contained by val. More... | |
| WASM_API_EXTERN void | wasmtime_val_clone (const wasmtime_val_t *src, wasmtime_val_t *dst) |
Clones the value pointed to by src into the dst provided. More... | |
APIs for interacting with WebAssembly values in Wasmtime.
| WASM_API_EXTERN void wasmtime_val_clone | ( | const wasmtime_val_t * | src, |
| wasmtime_val_t * | dst | ||
| ) |
Clones the value pointed to by src into the dst provided.
This function will clone any rooted GC values in src and have them newly rooted inside of dst. When using this API the dst should be later unrooted with wasmtime_val_unroot if it contains GC values.
| WASM_API_EXTERN void wasmtime_val_unroot | ( | wasmtime_val_t * | val | ) |
Unroot the value contained by val.
This function will unroot any GC references that val points to, for example if it has the WASMTIME_EXTERNREF, WASMTIME_ANYREF, or WASMTIME_EXNREF kinds. This function leaves val in an undefined state and it should not be used again without re-initializing.
This method does not need to be called for integers, floats, v128, or funcref values.