summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Update opcode.def (#2434)ttt2024-06-221-14/+14
| | | The 2nd ret type โ€‹โ€‹โ€‹โ€‹of these opcodes are different from the wasm spec
* Fix typo in token.def (#2433)Michael Bradshaw2024-06-211-1/+1
|
* Correct wasm2c example Makefiles (#2426)David Rubin2024-06-035-9/+14
| | | | | | | | - Passing "-lm" into the prereq isn't the correct way add the flag. This correctly adds it to the command. - The "rot13" example incorrectly assumed that the "rot13.h" file would be generated by the time that "main.c" was being compiled, however there is no rule supporting this and it would fail. I've also added "rot13.h" to the clean rule.
* [wasm-objdump] Fix reporting of imported 64-bit tables (#2425)Sam Clegg2024-05-222-6/+16
|
* wasm2c: Use wabt::StripExtension (#2424)Soni L2024-05-202-13/+6
| | | Fixes #2423
* Update testsuite and implement table64 (#2418)Sam Clegg2024-05-1544-240/+4190
| | | | | See https://github.com/WebAssembly/memory64/issues/51 Includes workaround for #2422
* Version 1.0.35 (#2421)Sam Clegg2024-05-141-1/+1
|
* Fix bug in wasm2c's tail-call optimization code generation (#2420)Christian Nieves2024-05-142-2/+2
|
* Update testsuite and corresponding update to comment parser (#2416)Sam Clegg2024-05-1348-1684/+2522
| | | | | | | The main change here is because `comments.wast` was updated to include a "quoted" module at the top level. Previously quoted modules had only been used as part of invalid or malformed assertion expressions.
* Align release workflow with CI, for Apple Silicon (#2415)Soni L2024-05-081-3/+3
|
* Revert manual changes to src/prebuilt/lexer-keywords.cc. NFC (#2412)Sam Clegg2024-05-032-13/+20
| | | | | | This file is auto-generated but I had manually edited it #2091. Instead, disabled the clang fallthrough warnings when including this file.
* Add macOS arm64 support and CI testing (#2406)Soni L2024-03-263-3/+9
|
* Suppress pass-failed warnings (#2404)Soni L2024-03-251-0/+3
|
* wasm2c: Fix warning on signed/unsigned comparisonShravan Narayan2024-03-201-1/+1
|
* wasm2c: Fix periodic ASLR related crashes in sanitizer buildsShravan Narayan2024-03-181-0/+4
|
* Add support for new WASM_SEGMENT_FLAG_RETAIN segment flag (#2399)Yuta Saito2024-03-113-2/+11
| | | See https://github.com/llvm/llvm-project/pull/81539
* wasm2c: Cleanup examples makefileShravan Narayan2024-02-123-6/+3
|
* wasm2c/README.md: update to reflect new compile command post-#2308 (#2390)Keith Winstein2024-02-121-2/+2
|
* [ci] Add s390x workflow (#2380)Soni L2024-02-122-0/+58
|
* Fix rot13 test on big-endian platforms (#2386)Soni L2024-02-081-0/+11
|
* Don't try to find upstream in detached HEAD (#2387)Soni L2024-02-081-1/+12
| | | HEAD is detached for new branches.
* wasm2c: Implement big-endian SIMD (#2340)Soni L2024-02-066-75/+762
|
* Fallback to pthreads if threads aren't available (#2385)walkingeyerobot2024-02-061-7/+7
|
* Do not use guard pages on big-endian (#2382)Soni L2024-02-021-2/+4
|
* Add missing casts on big-endian (#2381)Soni L2024-02-011-2/+2
|
* Remove unnecessary restriction (#2378)Soni L2024-01-312-45/+37
| | | | Thanks to MEM_ADDR we don't need to think about big-endian vs little-endian for any scalar(!) operations.
* wasm2c: move table ops to an include fileShravan Narayan2024-01-312-37/+87
|
* wasm2c: Cleanup formatting of wasm-rt.hShravan Narayan2024-01-301-58/+63
|
* wasm2c: atomic and shared mem operations using c11Shravan Narayan2024-01-3012-645/+973
|
* Fix emscripten build warning and add missing export (#2367)Changqing Jing2024-01-194-3/+7
|
* Simplify emscripten command line flags. NFC (#2368)Sam Clegg2024-01-171-8/+8
|
* Fix Features of wabt.post.js can't work in strict mode (#2365)Changqing Jing2024-01-161-1/+1
|
* Handle zero local count in disassembly (#2359)Rod Vagg2024-01-032-5/+34
| | | | Previously: local[0..4294967295] Current: local[]
* wasm2c: Add macro and tests to allow disabling stack exhaustion checksShravan Narayan2024-01-022-5/+25
|
* Update wasm2c examples (#2358)Keith Winstein2023-12-152-56/+49
|
* wasm2c: Cleanup/separate code for heap and stack signal handlersShravan Narayan2023-12-1413-77/+103
|
* [wasm-objdump] set function types for correct params+locals indexing (#2353)Rod Vagg2023-12-132-1/+9
|
* Build ubuntu release assets on ubuntu 20.04 (#2352)YAMAMOTO Takashi2023-12-121-2/+2
| | | | | binaries built on 22.04 require glibc 2.34 and thus are incompatible with 20.04, which is still supported.
* Fix some whitespace in opcode.def. NFC (#2350)Sam Clegg2023-12-091-4/+4
|
* wasm2c runtime: fix mis-nesting of def'n of os_has_altstack_installed (#2346)Keith Winstein2023-12-055-17/+99
| | | | | Also adds an RLBox-like CI test where the embedder takes responsibility for signal handling Co-authored-by: wrv <wrv@utexas.edu>
* WastParser: tighten parsing of folded `if` (#2349)Keith Winstein2023-12-054-55/+18
| | | | | This makes the `then` block mandatory per the spec, and parses multiple foldedinstrs in the `if` predicate (exercised by the new if.wast test).
* wasm2c runtime: clean up some error messages (NFC) (#2345)Keith Winstein2023-12-031-7/+3
|
* w2c runtime: add per-thread init/free API (#2332)Keith Winstein2023-12-047-6/+170
|
* [wasm-objdump] Print i64 values as unsigned (#2344)Rod Vagg2023-12-012-5/+5
| | | | | This matches the behaviour of i32 printing. Ref: https://github.com/WebAssembly/wabt/pull/2342
* wasm2c: Test STDIN_FILE error output line numbers (#2341)Soni L2023-11-292-0/+14
|
* Add support for new WASM_SYMBOL_ABS symbol flag (#2305)Sam Clegg2023-11-283-8/+26
| | | See https://github.com/llvm/llvm-project/pull/67493
* wasm2c runtime: refactor handling of alternate stack (NFC) (#2338)Keith Winstein2023-11-281-12/+81
| | | | | The runtime installs an alternate stack to handle SIGSEGV from stack exhaustion. Make this variable thread-local and refactor implementation that touches it.
* Make run-spec-wasm2c platform-consistent (#2335)Soni L2023-11-286-69/+8
|
* Update ID for tag name subsection (#2336)Michael Williamson2023-11-274-7/+5
| | | | | | | The tag name subsection currently has the speculative ID of 10. However, the extended-name-section proposal has now been updated to use an ID of 11 for the tag name section. This updates the NameSectionSubsection enum accordingly, as well as adding a field name section with the ID of 10.
* wasm2c: Fix f64 harness (#2331)Soni L2023-11-203-1/+49
|