diff options
Diffstat (limited to 'private_include/nw/routines.h')
| -rw-r--r-- | private_include/nw/routines.h | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/private_include/nw/routines.h b/private_include/nw/routines.h new file mode 100644 index 0000000..974f6da --- /dev/null +++ b/private_include/nw/routines.h @@ -0,0 +1,71 @@ +/* + * nanowasm, a tiny WebAssembly/Wasm interpreter + * Copyright (C) 2023-2025 Xavier Del Campo Romero + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + */ + +#ifndef ROUTINES_H +#define ROUTINES_H + +#include <nanowasm/nw.h> + +void nwp_check_magic(struct nw_mod *m); +void nwp_check_version(struct nw_mod *m); +void nwp_section(struct nw_mod *m); +void nwp_section_custom(struct nw_mod *m); +void nwp_section_type(struct nw_mod *m); +void nwp_section_import(struct nw_mod *m); +void nwp_section_function(struct nw_mod *m); +void nwp_section_table(struct nw_mod *m); +void nwp_section_memory(struct nw_mod *m); +void nwp_section_global(struct nw_mod *m); +void nwp_section_export(struct nw_mod *m); +void nwp_section_start(struct nw_mod *m); +void nwp_section_element(struct nw_mod *m); +void nwp_section_code(struct nw_mod *m); +void nwp_section_data(struct nw_mod *m); +void nwp_section_data_count(struct nw_mod *m); +void nwp_section_to(struct nw_mod *m); +void nwp_section_fti(struct nw_mod *m); +void nwp_section_fbo(struct nw_mod *m); +void nwp_section_lo(struct nw_mod *m); +void nwp_section_iti(struct nw_mod *m); +void nwp_section_skip(struct nw_mod *m); +enum nw_state nwp_section_exit(struct nw_mod *m); + +void nwp_init_globals(struct nw_inst *i, + enum nw_state (*next)(struct nw_inst *)); +void nwp_init_data(struct nw_inst *i, + enum nw_state (*next)(struct nw_inst *)); + +enum nw_state nwp_execute(struct nw_interp *i); +void nwp_find_export(struct nw_interp *i, const char *sym, + enum nw_state (*next)(struct nw_interp *)); +void nwp_call(struct nw_interp *i, nw_varuint32 index); +void nwp_call_function(struct nw_interp *i, nw_varuint32 index); +void nwp_call_import(struct nw_interp *i, nw_varuint32 index); +void nwp_find_function(struct nw_interp *i, const struct nw_fn *fn, + void (*next)(struct nw_interp *)); +void nwp_get_function_type(struct nw_interp *i, nw_varuint32 index, + enum nw_state (*next)(struct nw_interp *)); +void nwp_get_import_type(struct nw_interp *i, struct nw_get_import_type *t, + nw_varuint32 index, enum nw_state (*next)(struct nw_interp *)); +void nwp_mem_imm(struct nw_interp *i, void (*next)(struct nw_interp *)); +void nwp_unwind(struct nw_interp *i); +void nwp_break(struct nw_interp *i, nw_varuint32 relative_depth); +void nwp_find_param(struct nw_interp *i, struct nw_find_param *f, + nw_varuint32 index, enum nw_state (*next)(struct nw_interp *), void *args); +void nwp_find_local(struct nw_interp *i, struct nw_find_local *f, + nw_varuint32 index, enum nw_state (*next)(struct nw_interp *), void *args); +void nwp_set_local(struct nw_interp *i, + enum nw_state (*next)(struct nw_interp *)); +void nwp_arithm(struct nw_interp *i, enum nw_type t, + int (*op)(const struct nw_i_sm_arithm_out *, union nw_value *)); +void nwp_unary(struct nw_interp *i, enum nw_type t, + int (*op)(const union nw_value *, union nw_value *)); +void nwp_start_block(struct nw_interp *i); + +#endif |
