summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShravan Narayan <shravanrn@gmail.com>2024-01-31 15:40:01 -0600
committerShravan Narayan <shravanrn@gmail.com>2024-01-31 17:49:08 -0600
commit49950cbcb8e3729cd056f1f76ee4000dbcbe309f (patch)
treec6a1e2c10ebe527cc18a90c4d520867f2227bd2b
parentcfe0f5e7690c940c0c6ee27fa1e44791e5afee43 (diff)
downloadwabt-49950cbcb8e3729cd056f1f76ee4000dbcbe309f.tar.gz
wabt-49950cbcb8e3729cd056f1f76ee4000dbcbe309f.tar.bz2
wabt-49950cbcb8e3729cd056f1f76ee4000dbcbe309f.zip
wasm2c: move table ops to an include file
-rw-r--r--wasm2c/wasm-rt-impl-tableops.inc78
-rw-r--r--wasm2c/wasm-rt-impl.c46
2 files changed, 87 insertions, 37 deletions
diff --git a/wasm2c/wasm-rt-impl-tableops.inc b/wasm2c/wasm-rt-impl-tableops.inc
new file mode 100644
index 00000000..e53cfa6f
--- /dev/null
+++ b/wasm2c/wasm-rt-impl-tableops.inc
@@ -0,0 +1,78 @@
+/*
+ * Copyright 2018 WebAssembly Community Group participants
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+// This file is used as a template to generate code for table operations for
+// funcref or externref. For this, the file must be included after defining
+// either WASM_RT_TABLE_OPS_FUNCREF or WASM_RT_TABLE_OPS_EXTERNREF
+
+#if defined(WASM_RT_TABLE_OPS_FUNCREF) && defined(WASM_RT_TABLE_OPS_EXTERNREF)
+#error \
+ "Expected only one of { WASM_RT_TABLE_OPS_FUNCREF, WASM_RT_TABLE_OPS_EXTERNREF } to be defined"
+#elif !defined(WASM_RT_TABLE_OPS_FUNCREF) && \
+ !defined(WASM_RT_TABLE_OPS_EXTERNREF)
+#error \
+ "Expected one of { WASM_RT_TABLE_OPS_FUNCREF, WASM_RT_TABLE_OPS_EXTERNREF } to be defined"
+#endif
+
+#ifdef WASM_RT_TABLE_OPS_FUNCREF
+#define WASM_RT_TABLE_TYPE wasm_rt_funcref_table_t
+#define WASM_RT_TABLE_ELEMENT_TYPE wasm_rt_funcref_t
+#define WASM_RT_TABLE_APINAME(name) name##_funcref_table
+#else
+#define WASM_RT_TABLE_TYPE wasm_rt_externref_table_t
+#define WASM_RT_TABLE_ELEMENT_TYPE wasm_rt_externref_t
+#define WASM_RT_TABLE_APINAME(name) name##_externref_table
+#endif
+
+void WASM_RT_TABLE_APINAME(wasm_rt_allocate)(WASM_RT_TABLE_TYPE* table,
+ uint32_t elements,
+ uint32_t max_elements) {
+ table->size = elements;
+ table->max_size = max_elements;
+ table->data = calloc(table->size, sizeof(WASM_RT_TABLE_ELEMENT_TYPE));
+}
+
+void WASM_RT_TABLE_APINAME(wasm_rt_free)(WASM_RT_TABLE_TYPE* table) {
+ free(table->data);
+}
+
+uint32_t WASM_RT_TABLE_APINAME(wasm_rt_grow)(WASM_RT_TABLE_TYPE* table,
+ uint32_t delta,
+ WASM_RT_TABLE_ELEMENT_TYPE init) {
+ uint32_t old_elems = table->size;
+ uint64_t new_elems = (uint64_t)table->size + delta;
+ if (new_elems == 0) {
+ return 0;
+ }
+ if ((new_elems < old_elems) || (new_elems > table->max_size)) {
+ return (uint32_t)-1;
+ }
+ void* new_data =
+ realloc(table->data, new_elems * sizeof(WASM_RT_TABLE_ELEMENT_TYPE));
+ if (!new_data) {
+ return (uint32_t)-1;
+ }
+ table->data = new_data;
+ table->size = new_elems;
+ for (uint32_t i = old_elems; i < new_elems; i++) {
+ table->data[i] = init;
+ }
+ return old_elems;
+}
+
+#undef WASM_RT_TABLE_APINAME
+#undef WASM_RT_TABLE_ELEMENT_TYPE
+#undef WASM_RT_TABLE_TYPE
diff --git a/wasm2c/wasm-rt-impl.c b/wasm2c/wasm-rt-impl.c
index 7c88499d..52a42e85 100644
--- a/wasm2c/wasm-rt-impl.c
+++ b/wasm2c/wasm-rt-impl.c
@@ -257,43 +257,15 @@ void wasm_rt_free_thread(void) {
#endif
}
-#define DEFINE_TABLE_OPS(type) \
- void wasm_rt_allocate_##type##_table(wasm_rt_##type##_table_t* table, \
- uint32_t elements, \
- uint32_t max_elements) { \
- table->size = elements; \
- table->max_size = max_elements; \
- table->data = calloc(table->size, sizeof(wasm_rt_##type##_t)); \
- } \
- void wasm_rt_free_##type##_table(wasm_rt_##type##_table_t* table) { \
- free(table->data); \
- } \
- uint32_t wasm_rt_grow_##type##_table(wasm_rt_##type##_table_t* table, \
- uint32_t delta, \
- wasm_rt_##type##_t init) { \
- uint32_t old_elems = table->size; \
- uint64_t new_elems = (uint64_t)table->size + delta; \
- if (new_elems == 0) { \
- return 0; \
- } \
- if ((new_elems < old_elems) || (new_elems > table->max_size)) { \
- return (uint32_t)-1; \
- } \
- void* new_data = \
- realloc(table->data, new_elems * sizeof(wasm_rt_##type##_t)); \
- if (!new_data) { \
- return (uint32_t)-1; \
- } \
- table->data = new_data; \
- table->size = new_elems; \
- for (uint32_t i = old_elems; i < new_elems; i++) { \
- table->data[i] = init; \
- } \
- return old_elems; \
- }
-
-DEFINE_TABLE_OPS(funcref)
-DEFINE_TABLE_OPS(externref)
+// Include table operations for funcref
+#define WASM_RT_TABLE_OPS_FUNCREF
+#include "wasm-rt-impl-tableops.inc"
+#undef WASM_RT_TABLE_OPS_FUNCREF
+
+// Include table operations for externref
+#define WASM_RT_TABLE_OPS_EXTERNREF
+#include "wasm-rt-impl-tableops.inc"
+#undef WASM_RT_TABLE_OPS_EXTERNREF
const char* wasm_rt_strerror(wasm_rt_trap_t trap) {
switch (trap) {