summaryrefslogtreecommitdiff
path: root/wasm2c
Commit message (Collapse)AuthorAgeFilesLines
* Improve wasm2c example update process. NFC (#1857)Sam Clegg2022-03-082-5/+21
| | | Followup to #1851.
* Update wasm2c example output. NFC (#1851)Sam Clegg2022-03-073-77/+141
| | | | | 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 wasm_rt_strerror to covert trap code to string (#1848)Sam Clegg2022-03-032-0/+27
|
* Fix compiler warnings in wasm2c output (#1844)Sam Clegg2022-03-021-1/+1
| | | | | Use stricter compiler settings and fix the resulting warnings. This is precursor to landing windows compiler support for wasm2c. See #1843.
* Finish instruction renaming (#1792)Heejin Ahn2021-12-204-30/+30
| | | | | | | | | | | | | This finishes #985. This - replaces the old names in the tests with the new names - drops support for the deprecated names - renames test files to match new instruction names I don't think dropping support for the old names will be a problem at this point. #985 says the old names are supported for convenience but we should remove those too at some point; that "some point" may have well arrived given that three years have passed. The lists of names updated are in #933, #1564, WebAssembly/spec#720.
* Fix typo (#1705)inokawa2021-08-301-1/+1
|
* Port to big-endian platforms (s390x but others can be trivially added) (#1557)Soni L2020-12-071-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Initial attempt at s390x port * Second attempt at s390x port * Fix big-endian memory fill * Fix more memory location calculations * Improve SIMD * Implement big-endian memory grow * Fill relocation with 0x00, as per spec * Make wasm2c endianness work * Fix shuffle * Fix load endianness in wasm2c * Refactor into shared code * Clean up SwapBytesSized * Clean up MemcpyEndianAware * Clean up * "Fix" opcodecnt basic test
* Fix warning. NFC. (#1580)Sam Clegg2020-12-031-1/+1
| | | We really should enable Werror on CI..
* Completely disable signal handler on 32-bit (#1488)Ben Smith2020-07-211-8/+17
| | | | | The previous change prevented `WASM_RT_MEMCHECK_SIGNAL_HANDLER_POSIX` from being defined, but `WASM_RT_MEMCHECK_SIGNAL_HANDLER` was still defined, which would prevent the memory bounds check.
* Use #warning instead of #warn (#1487)Ben Smith2020-07-161-1/+1
|
* [wasm2c] Disable signal handling on 32-bit archs (#1483)Ben Smith2020-07-151-0/+4
|
* Fix warning on comparison of void* to integer. fixes #1472 (#1473)Alon Zakai2020-06-221-1/+1
|
* [wasm2c] Implement trap handler for linux/macos (#1442)Ben Smith2020-06-043-6/+87
| | | | | | | * Test whether this works for macOS * Use __builtin_memcpy (fixes bug on macOS) * Use #if instead of #ifdef (so 0 and 1 values work properly) * Add `WASM_RT_SETJMP` and `WASM_RT_LONGJMP` macros
* [wasm2c] Add rot13 example (#1384)Ben Smith2020-04-147-54/+180
| | | | | | | | | | 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.)
* [wasm2c] Fix realloc check in wasm_rt_grow_memory (#1171)Ben Smith2019-09-251-1/+1
| | | See issue #1159.
* [wasm2c] Return -1 if wasm_rt_grow_memory fails (#1148)Ben Smith2019-08-291-2/+10
|
* Add missing string.h include to wasm-rt-impl.c (#1010)Matt McCormick2019-02-101-0/+1
| | | | | | | | | | | | | | | Addresses: gcc -I/tmp/wabt/wasm2c -O3 /tmp/wabt/wasm2c/wasm-rt-impl.c -o wasm-rt-impl.o /tmp/wabt/wasm2c/wasm-rt-impl.c: In function ‘wasm_rt_grow_memory’: /tmp/wabt/wasm2c/wasm-rt-impl.c:111:3: warning: implicit declaration of function ‘memset’ [-Wimplicit-function-declaration] memset(memory->data + old_pages * PAGE_SIZE, 0, delta * PAGE_SIZE); ^~~~~~ /tmp/wabt/wasm2c/wasm-rt-impl.c:111:3: warning: incompatible implicit declaration of built-in function ‘memset’ /tmp/wabt/wasm2c/wasm-rt-impl.c:111:3: note: include ‘<string.h>’ or provide a declaration of ‘memset’ /usr/lib/gcc/x86_64-linux-gnu/6/../../../x86_64-linux-gnu/Scrt1.o: In function `_start': (.text+0x20): undefined reference to `main' with gcc (Debian 6.3.0-18+deb9u1).
* Update testsuite (#942)Ben Smith2018-11-052-1/+7
| | | | Also fix bug when parsing elem/data segment; the table/memory index is stored as an LEB128, not a U8.
* [wasm2c] Add spec tests; fix update-spec-tests.py (#891)Ben Smith2018-08-141-0/+1
| | | | `update-spec-tests.py` now will update the tests in the `test/wasm2c/spec` directory.
* [wasm2c] Fix bad realloc in wasm-rt-impl (#869)Ben Smith2018-06-251-1/+1
| | | Fixes issue #868.
* More work on the wasm2c documentation (#835)Ben Smith2018-05-226-0/+767
| | | | | * Described how to use it, and put it near the top of the doc * Added the sources and generated files
* Separate out wasm-rt.h and wasm-rt-impl.{c,h} (#813)Ben Smith2018-03-203-0/+338
This makes it easier to use outside of running wasm2c spec tests.