aboutsummaryrefslogtreecommitdiff
path: root/private_include/nw/ops.h
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi.dcr@tutanota.com>2024-09-07 00:04:38 +0200
committerXavier Del Campo Romero <xavi92@disroot.org>2025-11-06 14:38:40 +0100
commit6d9d80362f9932bbc87e162b8ef7df06c73e27e1 (patch)
treee3e228c63fe26f07503f226de7fb5086b3dc2286 /private_include/nw/ops.h
First commit
Diffstat (limited to 'private_include/nw/ops.h')
-rw-r--r--private_include/nw/ops.h90
1 files changed, 90 insertions, 0 deletions
diff --git a/private_include/nw/ops.h b/private_include/nw/ops.h
new file mode 100644
index 0000000..dce95a6
--- /dev/null
+++ b/private_include/nw/ops.h
@@ -0,0 +1,90 @@
+/*
+ * 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 OPS_H
+#define OPS_H
+
+#include <nanowasm/nw.h>
+#include <nw/opcodes.h>
+#include <nw/types.h>
+
+void nwp_op_unreachable(struct nw_interp *i);
+void nwp_op_nop(struct nw_interp *i);
+void nwp_op_block(struct nw_interp *i);
+void nwp_op_loop(struct nw_interp *i);
+void nwp_op_if(struct nw_interp *i);
+void nwp_op_else(struct nw_interp *i);
+void nwp_op_end(struct nw_interp *i);
+void nwp_op_br(struct nw_interp *i);
+void nwp_op_br_if(struct nw_interp *i);
+void nwp_op_br_table(struct nw_interp *i);
+void nwp_op_return(struct nw_interp *i);
+void nwp_op_call(struct nw_interp *i);
+void nwp_op_call_indirect(struct nw_interp *i);
+void nwp_op_drop(struct nw_interp *i);
+void nwp_op_get_local(struct nw_interp *i);
+void nwp_op_set_local(struct nw_interp *i);
+void nwp_op_tee_local(struct nw_interp *i);
+void nwp_op_set_global(struct nw_interp *i);
+void nwp_op_get_global(struct nw_interp *i);
+void nwp_op_set_global(struct nw_interp *i);
+void nwp_op_i32_load(struct nw_interp *i);
+void nwp_op_i32_load8_u(struct nw_interp *i);
+void nwp_op_i32_store(struct nw_interp *i);
+void nwp_op_i64_store(struct nw_interp *i);
+void nwp_op_current_memory(struct nw_interp *i);
+void nwp_op_i32_const(struct nw_interp *i);
+void nwp_op_i64_const(struct nw_interp *i);
+void nwp_op_f32_const(struct nw_interp *i);
+void nwp_op_f64_const(struct nw_interp *i);
+void nwp_op_i32_add(struct nw_interp *i);
+void nwp_op_i32_sub(struct nw_interp *i);
+void nwp_op_i32_mul(struct nw_interp *i);
+void nwp_op_i32_and(struct nw_interp *i);
+void nwp_op_i32_or(struct nw_interp *i);
+void nwp_op_i32_eqz(struct nw_interp *i);
+void nwp_op_i32_eq(struct nw_interp *i);
+void nwp_op_i32_ne(struct nw_interp *i);
+void nwp_op_i32_lt_s(struct nw_interp *i);
+void nwp_op_i32_ge_s(struct nw_interp *i);
+void nwp_op_i32_ge_u(struct nw_interp *i);
+
+void nwp_op_check_no_immediate(struct nw_mod *m);
+void nwp_op_check_block(struct nw_mod *m);
+void nwp_op_check_loop(struct nw_mod *m);
+void nwp_op_check_end(struct nw_mod *m);
+void nwp_op_check_relative_depth(struct nw_mod *m);
+void nwp_op_check_br_table(struct nw_mod *m);
+void nwp_op_check_call(struct nw_mod *m);
+void nwp_op_check_call_indirect(struct nw_mod *m);
+void nwp_op_check_local_index(struct nw_mod *m);
+void nwp_op_check_global_index(struct nw_mod *m);
+void nwp_op_check_memory_immediate(struct nw_mod *m);
+void nwp_op_check_varuint1(struct nw_mod *m);
+void nwp_op_check_varint32(struct nw_mod *m);
+void nwp_op_check_varint64(struct nw_mod *m);
+void nwp_op_check_uint32(struct nw_mod *m);
+void nwp_op_check_uint64(struct nw_mod *m);
+void nwp_op_check_misc(struct nw_mod *m);
+
+struct nwp_check_op
+{
+ enum opcode start, end;
+ void (*f)(struct nw_mod *);
+};
+
+struct nwp_check_ops
+{
+ const struct nwp_check_op *ops;
+ size_t n;
+};
+
+extern const struct nwp_check_ops nwp_check_ops;
+
+#endif