summaryrefslogtreecommitdiff
path: root/wasm2c/.gitignore
Commit message (Collapse)AuthorAgeFilesLines
* wasm2c: Cleanup examples makefileShravan Narayan2024-02-121-0/+1
|
* w2c runtime: add per-thread init/free API (#2332)Keith Winstein2023-12-041-0/+5
|
* wasm2c: serialize types at wasm2c-time (#2120)Keith Winstein2023-01-251-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | This makes wasm2c serialize each function type, rather than registering function types at module-initialization time. The serialized function type is the SHA-256 of the mangled param and result types (with a space between params and results). At runtime in call_indirect, a known (immediate) function type is compared against the function type stored in a funcref structure. For call_indirects to functions local to the module, or for any call_indirect when the toolchain merges string constants across compilation units (generally, GCC and clang), this can be done by comparing the pointers to each function type. Otherwise, the actual 32-byte values are compared. The function type IDs can be looked up at runtime with `Z_[modname]_get_func_type`, which matches the API from `wasm_rt_register_func_type`. A new `callback` example demos this. wasm2c does the SHA-256 either by linking against libcrypto or, if not available or if requested via `cmake -DUSE_INTERNAL_SHA256=ON`, by using a vendored (header-only) PicoSHA2. There is no runtime dependency on SHA-256 in the wasm2c runtime or generated modules. This eliminates the last of the per-module state, so this commit also removes the [modname]_init_module() function and the s_module_initialized bool.
* Update wasm2c example output. NFC (#1851)Sam Clegg2022-03-071-4/+1
| | | | | Do we really want to have this output checked in like this? If so, we should probably automate its update ot at least add a check to avoid it getting out-of-date.
* [wasm2c] Add rot13 example (#1384)Ben Smith2020-04-141-0/+10
This example demonstrates how to use imported functions. The `rot13` program takes each command line argument, and rot13-encodes it. The exported `rot13` function has no arguments, and instead calls back into the program (via `fill_buf`) with a buffer to fill in. When the function finishes it calls `buf_done`. (rot13.wat is the same as in src/test-interp.cc.)