diff options
Diffstat (limited to 'wasm2c/examples/fac')
-rw-r--r-- | wasm2c/examples/fac/fac.c | 59 | ||||
-rw-r--r-- | wasm2c/examples/fac/fac.h | 2 | ||||
-rw-r--r-- | wasm2c/examples/fac/main.c | 4 |
3 files changed, 37 insertions, 28 deletions
diff --git a/wasm2c/examples/fac/fac.c b/wasm2c/examples/fac/fac.c index fd2fd3b9..bdc9e63f 100644 --- a/wasm2c/examples/fac/fac.c +++ b/wasm2c/examples/fac/fac.c @@ -1,6 +1,7 @@ /* Automatically generated by wasm2c */ #include <assert.h> #include <math.h> +#include <stdarg.h> #include <stddef.h> #include <string.h> #if defined(_MSC_VER) @@ -29,10 +30,15 @@ #define UNREACHABLE TRAP(UNREACHABLE) -#define CALL_INDIRECT(table, t, ft, x, ...) \ - (LIKELY((x) < table.size && table.data[x].func && \ - table.data[x].func_type == func_types[ft]) || \ - TRAP(CALL_INDIRECT), \ +static inline bool func_types_eq(const wasm_rt_func_type_t a, + const wasm_rt_func_type_t b) { + return (a == b) || LIKELY(a && b && !memcmp(a, b, 32)); +} + +#define CALL_INDIRECT(table, t, ft, x, ...) \ + (LIKELY((x) < table.size && table.data[x].func && \ + func_types_eq(ft, table.data[x].func_type)) || \ + TRAP(CALL_INDIRECT), \ ((t)table.data[x].func)(__VA_ARGS__)) #ifdef SUPPORT_MEMORY64 @@ -494,7 +500,7 @@ static inline void memory_init(wasm_rt_memory_t* dest, } typedef struct { - uint32_t func_type_index; + wasm_rt_func_type_t type; wasm_rt_function_ptr_t func; size_t module_offset; } wasm_elem_segment_expr_t; @@ -505,17 +511,16 @@ static inline void funcref_table_init(wasm_rt_funcref_table_t* dest, u32 dest_addr, u32 src_addr, u32 n, - void* module_instance, - const u32* func_types) { + void* module_instance) { if (UNLIKELY(src_addr + (uint64_t)n > src_size)) TRAP(OOB); if (UNLIKELY(dest_addr + (uint64_t)n > dest->size)) TRAP(OOB); for (u32 i = 0; i < n; i++) { const wasm_elem_segment_expr_t* src_expr = &src[src_addr + i]; - dest->data[dest_addr + i] = (wasm_rt_funcref_t){ - func_types[src_expr->func_type_index], src_expr->func, - (char*)module_instance + src_expr->module_offset}; + dest->data[dest_addr + i] = + (wasm_rt_funcref_t){src_expr->type, src_expr->func, + (char*)module_instance + src_expr->module_offset}; } } @@ -586,13 +591,13 @@ DEFINE_TABLE_SET(externref) DEFINE_TABLE_FILL(funcref) DEFINE_TABLE_FILL(externref) -static bool s_module_initialized = false; - -static u32 func_types[1]; +#if defined(__GNUC__) || defined(__clang__) +#define FUNC_TYPE_T(x) static const char* const x +#else +#define FUNC_TYPE_T(x) static const char x[] +#endif -static void init_func_types(void) { - func_types[0] = wasm_rt_register_func_type(1, 1, WASM_RT_I32, WASM_RT_I32); -} +FUNC_TYPE_T(w2c_t0) = "\x07\x80\x96\x7a\x42\xf7\x3e\xe6\x70\x5c\x2f\xac\x83\xf5\x67\xd2\xa2\xa0\x69\x41\x5f\xf8\xe7\x96\x7f\x23\xab\x00\x03\x5f\x4a\x3c"; static u32 w2c_fac(Z_fac_instance_t*, u32); @@ -621,16 +626,24 @@ u32 Z_facZ_fac(Z_fac_instance_t* instance, u32 w2c_p0) { return w2c_fac(instance, w2c_p0); } -void Z_fac_init_module(void) { - assert(wasm_rt_is_initialized()); - s_module_initialized = true; - init_func_types(); -} - void Z_fac_instantiate(Z_fac_instance_t* instance) { assert(wasm_rt_is_initialized()); - assert(s_module_initialized); } void Z_fac_free(Z_fac_instance_t* instance) { } + +wasm_rt_func_type_t Z_fac_get_func_type(uint32_t param_count, uint32_t result_count, ...) { + va_list args; + + if (param_count == 1 && result_count == 1) { + va_start(args, result_count); + if (true && va_arg(args, wasm_rt_type_t) == WASM_RT_I32 && va_arg(args, wasm_rt_type_t) == WASM_RT_I32) { + va_end(args); + return w2c_t0; + } + va_end(args); + } + + return NULL; +} diff --git a/wasm2c/examples/fac/fac.h b/wasm2c/examples/fac/fac.h index 6e36ada2..7700bc42 100644 --- a/wasm2c/examples/fac/fac.h +++ b/wasm2c/examples/fac/fac.h @@ -29,9 +29,9 @@ typedef struct Z_fac_instance_t { char dummy_member; } Z_fac_instance_t; -void Z_fac_init_module(void); void Z_fac_instantiate(Z_fac_instance_t*); void Z_fac_free(Z_fac_instance_t*); +wasm_rt_func_type_t Z_fac_get_func_type(uint32_t param_count, uint32_t result_count, ...); /* export: 'fac' */ u32 Z_facZ_fac(Z_fac_instance_t*, u32); diff --git a/wasm2c/examples/fac/main.c b/wasm2c/examples/fac/main.c index 30bf5d0a..37593f6e 100644 --- a/wasm2c/examples/fac/main.c +++ b/wasm2c/examples/fac/main.c @@ -17,10 +17,6 @@ int main(int argc, char** argv) { /* Initialize the Wasm runtime. */ wasm_rt_init(); - /* Initialize the `fac` module (this registers the module's function types in - * a global data structure) */ - Z_fac_init_module(); - /* Declare an instance of the `fac` module. */ Z_fac_instance_t instance; |