Wasmtime
linker.h
Go to the documentation of this file.
1
7#ifndef WASMTIME_LINKER_H
8#define WASMTIME_LINKER_H
9
10#include <wasm.h>
11#include <wasmtime/error.h>
12#include <wasmtime/store.h>
13#include <wasmtime/extern.h>
14
15#ifdef __cplusplus
16extern "C" {
17#endif
18
36
44
48WASM_API_EXTERN void wasmtime_linker_delete(wasmtime_linker_t* linker);
49
56WASM_API_EXTERN void wasmtime_linker_allow_shadowing(wasmtime_linker_t* linker, bool allow_shadowing);
57
76 wasmtime_linker_t *linker,
77 wasmtime_context_t *store,
78 const char *module,
79 size_t module_len,
80 const char *name,
81 size_t name_len,
82 const wasmtime_extern_t *item
83);
84
111 wasmtime_linker_t *linker,
112 const char *module,
113 size_t module_len,
114 const char *name,
115 size_t name_len,
116 const wasm_functype_t *ty,
118 void *data,
119 void (*finalizer)(void*)
120);
121
132 wasmtime_linker_t *linker,
133 const char *module,
134 size_t module_len,
135 const char *name,
136 size_t name_len,
137 const wasm_functype_t *ty,
139 void *data,
140 void (*finalizer)(void*)
141);
142
161 wasmtime_linker_t *linker
162);
163
184 wasmtime_linker_t *linker,
185 wasmtime_context_t *store,
186 const char *name,
187 size_t name_len,
188 const wasmtime_instance_t *instance
189);
190
214 const wasmtime_linker_t *linker,
215 wasmtime_context_t *store,
216 const wasmtime_module_t *module,
217 wasmtime_instance_t *instance,
218 wasm_trap_t **trap
219);
220
241 wasmtime_linker_t *linker,
242 wasmtime_context_t *store,
243 const char *name,
244 size_t name_len,
245 const wasmtime_module_t *module
246);
247
264 const wasmtime_linker_t *linker,
265 wasmtime_context_t *store,
266 const char *name,
267 size_t name_len,
268 wasmtime_func_t *func
269);
270
285WASM_API_EXTERN bool wasmtime_linker_get(
286 const wasmtime_linker_t *linker,
287 wasmtime_context_t *store,
288 const char *module,
289 size_t module_len,
290 const char *name,
291 size_t name_len,
293);
294
295#ifdef __cplusplus
296} // extern "C"
297#endif
298
299#endif // WASMTIME_LINKER_H
Definition and accessors of wasmtime_error_t.
Definition of wasmtime_extern_t and external items.
wasm_trap_t *(* wasmtime_func_unchecked_callback_t)(void *env, wasmtime_caller_t *caller, wasmtime_val_raw_t *args_and_results, size_t num_args_and_results)
Callback signature for wasmtime_func_new_unchecked.
Definition: func.h:123
wasm_trap_t *(* wasmtime_func_callback_t)(void *env, wasmtime_caller_t *caller, const wasmtime_val_t *args, size_t nargs, wasmtime_val_t *results, size_t nresults)
Callback signature for wasmtime_func_new.
Definition: func.h:57
wasmtime_linker_t * wasmtime_linker_new(wasm_engine_t *engine)
Creates a new linker for the specified engine.
bool wasmtime_linker_get(const wasmtime_linker_t *linker, wasmtime_context_t *store, const char *module, size_t module_len, const char *name, size_t name_len, wasmtime_extern_t *item)
Loads an item by name from this linker.
wasmtime_error_t * wasmtime_linker_define_func_unchecked(wasmtime_linker_t *linker, const char *module, size_t module_len, const char *name, size_t name_len, const wasm_functype_t *ty, wasmtime_func_unchecked_callback_t cb, void *data, void(*finalizer)(void *))
Defines a new function in this linker.
wasmtime_error_t * wasmtime_linker_get_default(const wasmtime_linker_t *linker, wasmtime_context_t *store, const char *name, size_t name_len, wasmtime_func_t *func)
Acquires the "default export" of the named module in this linker.
wasmtime_error_t * wasmtime_linker_define_wasi(wasmtime_linker_t *linker)
Defines WASI functions in this linker.
wasmtime_error_t * wasmtime_linker_define(wasmtime_linker_t *linker, wasmtime_context_t *store, const char *module, size_t module_len, const char *name, size_t name_len, const wasmtime_extern_t *item)
Defines a new item in this linker.
void wasmtime_linker_allow_shadowing(wasmtime_linker_t *linker, bool allow_shadowing)
Configures whether this linker allows later definitions to shadow previous definitions.
wasmtime_error_t * wasmtime_linker_module(wasmtime_linker_t *linker, wasmtime_context_t *store, const char *name, size_t name_len, const wasmtime_module_t *module)
Defines automatic instantiations of a wasm_module_t in this linker.
wasmtime_error_t * wasmtime_linker_define_instance(wasmtime_linker_t *linker, wasmtime_context_t *store, const char *name, size_t name_len, const wasmtime_instance_t *instance)
Defines an instance under the specified name in this linker.
void wasmtime_linker_delete(wasmtime_linker_t *linker)
Deletes a linker.
wasmtime_error_t * wasmtime_linker_define_func(wasmtime_linker_t *linker, const char *module, size_t module_len, const char *name, size_t name_len, const wasm_functype_t *ty, wasmtime_func_callback_t cb, void *data, void(*finalizer)(void *))
Defines a new function in this linker.
wasmtime_error_t * wasmtime_linker_instantiate(const wasmtime_linker_t *linker, wasmtime_context_t *store, const wasmtime_module_t *module, wasmtime_instance_t *instance, wasm_trap_t **trap)
Instantiates a wasm_module_t with the items defined in this linker.
Compilation environment and configuration.
An opaque object representing the type of a function.
Opaque struct representing a wasm trap.
An interior pointer into a wasmtime_store_t which is used as "context" for many functions.
Errors generated by Wasmtime.
Container for different kinds of extern items.
Definition: extern.h:123
Representation of a function in Wasmtime.
Definition: extern.h:24
Representation of a instance in Wasmtime.
Definition: instance.h:26
Object used to conveniently link together and instantiate wasm modules.
A compiled Wasmtime module.