summaryrefslogtreecommitdiff
path: root/src/tools
Commit message (Collapse)AuthorAgeFilesLines
* Add support for the custom-page-sizes proposal (#2502)Keith Winstein2024-11-081-1/+2
| | | | This adds support in the binary/text parsers and writers, the validator and interpreter, and objdump (but not wasm2c).
* interp: Handle ref.null exn (#2497)Soni L.2024-10-291-0/+17
|
* [wasm-interp] Fix memory corruption with recursive call_indirect (#2464)Soni L.2024-09-181-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The interpreter could overflow the stack without trapping properly in `call_indirect` situations. While it would set the `out_trap` to the trap reason, it would return `RunResult::Ok` and the interpreter code would only check `RunResult::Ok` to decide whether or not to keep running. In other words, while the stack overflow meant the interpreter wouldn't push a frame onto the call stack, the interpreter loop would continue advancing instructions, resulting in instructions after the runaway `call_indirect` running. If the offending `call_indirect` didn't have return values, it would be as if the call returned normally. If it did have return values, nothing would be pushed onto the value stack, yet the return types would be pushed onto the type stack. With careful manipulation of the following instructions, this could be used to cause all sorts of memory corruption. As it turns out, the function exit code, as well as a handful of other instructions, do check the state of the value and type stacks and can safely reproduce the bug without the memory corruption, so that's what we made the test do. The obvious fix was to make `call_indirect` propagate `RunResult::Trap` properly. Additionally, we made it so `assert_exhaustion` checks both the `RunResult` *and* the `out_trap`, and asserts if they don't match. This should help catch similar bugs in the future. Closes #2462 Fixes #2398
* wasm2c: Use wabt::StripExtension (#2424)Soni L2024-05-201-13/+3
| | | Fixes #2423
* Update testsuite and implement table64 (#2418)Sam Clegg2024-05-151-0/+3
| | | | | See https://github.com/WebAssembly/memory64/issues/51 Includes workaround for #2422
* Update testsuite and corresponding update to comment parser (#2416)Sam Clegg2024-05-131-2/+2
| | | | | | | 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.
* wasm2c: implement the tail-call proposal (#2272)Keith Winstein2023-10-241-10/+11
|
* Rename wasm-opcodecnt to wasm-stats (#2298)Soni L2023-09-191-7/+6
|
* wasm-strip: add `-R/--remove-section` option (#2282)Diego Frias2023-08-181-2/+16
|
* spectest-interp: assert_malformed must error in reader alone (#2252)Keith Winstein2023-06-121-11/+92
| | | | | | Previously assert_malformed was treated the same as assert_invalid Also fixes a bug where spectest-interp wasn't trying to validate text modules (e.g. `(assert_invalid (module quote "...") "")`).
* Add error when parameter size does not match on wasm-interp run-export (#2250)Raphael Amorim2023-06-091-0/+7
|
* wasm2c: partial support for atomic memory opsShravan Narayan2023-05-171-1/+2
|
* Track use of SIMD and exceptions in IR, and CWriter includes support only if ↵Keith Winstein2023-05-081-1/+0
| | | | used (#2226)
* wasm2c: Enable exceptions and simd according to command line flagsShravan Narayan2023-05-021-2/+3
|
* Make sure (IR) Validator and BinaryReaderInterp agree re: validity (#2219)Keith Winstein2023-04-271-0/+55
| | | | Fixes one issue where Validator was incorrectly accepting some malformed modules from the spec tests.
* wasm2c: multiple .c outputs (#2146)Yuhan Deng2023-04-051-5/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * wasm2c: multiple .c outputs This enables wasm2c to have multiple .c outputs, which allows parallel compilation of the wasm2c outputs. This is useful when the input WASM module is big. wasm2c takes the number of .c outputs as an argument to `--num-outputs` (defaulting to 1). If the number is equal to 1, the .c output does not change except for two new macro declarations and the ordering of declarations and definitions. If greater than 1, wasm2c outputs change in the following ways: 1) wasm2c outputs a [module-name]-impl.h that includes any module-wide declarations, including: * content of `WriteSourceTop()` * function type declarations * tag types * tag declarations * function declarations * data segments and elem segments declarations Any static declaration become extern in this header. 2) wasm2c outputs [module-name]_i.c for i = [0, ..., number of .c outputs - 1). Any module-wide material is written to [module-name]_0.c, including: * function types, tags, data segments, elem segments * imports and exports * module initialization, instantiation and free 3) For each function implementation, wasm2c assigns it to one output .c file by sorting the function names and partitioning into roughly equal buckets. Alternately, the caller can supply its own assignment function (helpful if it wants the assignments to be more stable in the face of function insertion or deletion).
* wasm2c: use CHECK_RESULT throughout workhorse function (NFC) (#2183)Keith Winstein2023-03-301-53/+44
| | | | | | | * wasm2c: use CHECK_RESULT throughout workhorse function Make sure to validate module before generating names. * Respond to review
* Silence warnings on GCC 12 (#2177)Keith Winstein2023-03-221-4/+2
| | | Fixes #2020
* wasm-interp: Add --run-export and --argument (#2176)Raphael Amorim2023-03-191-0/+114
|
* wasm2c: implement the extended const expressions proposal (#2162)Keith Winstein2023-03-081-1/+1
|
* Fix longstanding typo (#2160)Soni L2023-03-051-1/+1
| | | Makes it possible to wasm2c --disable-sign-extension
* Always do a full roundtrip in run-roundtrip.py (#1661)Sam Clegg2023-02-282-12/+24
| | | | | | | | | | | | | | | | Even when the result is to be printed rather than compared byte for byte with the first version its still good to process the resulting wat output file so that we know we can parse what we generate. Case in point, this changed caused me to fix two latent bugs: 1. We were not correctly parsing events with inline import/export. 2. We were output element segment names even when bulk memory was not enabled (See #1651) The fix for (2) is a little more involved that we might like since for the first time the wat writer needs to know what features are enabled. Fixes: #1651
* Replace MakeUnique with c++14 std::make_unique (#2152)Keith Winstein2023-02-271-11/+11
|
* wasm-strip: Add `-k/--keep-section` flag to prevent sections with specific ↵Surma2023-02-091-2/+27
| | | | names from getting stripped (#2143)
* wasm2c: Initial implementation of memory64 (#2086)Sam Clegg2023-01-121-1/+1
| | | | | | | Note, there are still some issues here that needs to be resolved, mostly about memory sandboxing (bounds checking). Since this is still experimental I've also added a `--experimental` flag to wasm2c that is required in addition to passing `--enable-memory64`.
* Implement Relaxed SIMD proposal (#1994)Marcus Better2022-11-301-18/+50
| | | | | | | | This adds support for the new opcodes from the Relaxed SIMD proposal (https://github.com/WebAssembly/relaxed-simd) behind the "--enable-relaxed-simd" flag. The exception is the f32x4.relaxed_dot_bf16x8_add_f32x4 instruction which is not yet implemented.
* Switch from `typedef` to using `using` in C++ code. NFC (#2066)Sam Clegg2022-11-152-17/+17
| | | | This is more modern and (IMHO) easier to read than that old C typedef syntax.
* Update testsuite (#2054)Sam Clegg2022-11-131-0/+1
| | | | | | | | | | | | | | | As well as the testsuite update there are two notable changes that come with it here. These can both be split out an landed first if it makes sense. 1. wasm2c now supports element sections containing externref. Currently only the null reference is supported. 2. element segments no longer use funcref as the default element type but instead, unless explicitly included in the binary, the element type defaults to the type of the table in which the segment is active. Fixes: #1612 #2022
* WastLexer: log lexing errors directly (#2013)Keith Winstein2022-10-034-8/+8
| | | | | * Log all lexing errors in WastLexer (rather than via parser) * Update docs/demo/libwabt.js
* Move headers to include/wabt/ (#1998)Alex Reinking2022-09-2813-130/+130
| | | This makes things easier for users and packagers of libwabt.
* wasm2c: implement the bulk memory operations proposal (#1877)Keith Winstein2022-09-211-1/+0
| | | Co-authored-by: Yuhan Deng <yhdeng@stanford.edu>
* [spectest-interp] Fix SIMD lane extraction bug (#1993)Marcus Better2022-09-171-52/+48
| | | | | | | The GetLane methods were looping over a "lane" variable, masking the parameter of the same name. This led to the last lane being returned in all cases, so tests would ignore the other lanes. Signed-off-by: Marcus Better <marcus@better.se>
* wasm2c: implement the exception-handling proposal (#1930)Keith Winstein2022-07-141-2/+3
| | | | | (The imports.txt and exports.txt tests require multi-table and are disabled until reference types is supported.)
* Change description of calling wat2wasm without -o flag (#1943)Mark Irish2022-07-081-1/+1
|
* wast2json: write binary modules verbatim (#1932)Ben Smith2022-06-031-0/+1
| | | | | | | | | | | | | | Previously any top-level module defined in a .wast file would be parsed and converted to a `Module` and stored in a `ModuleCommand`, since it may be used later by the script (e.g. via an `invoke` command). This means that when it was written out later it may have been changed, which is undesirable for binary and quoted modules. This change adds a new `ScriptModuleCommand`, which stores both a `Module` and a `ScriptModule`. The `Module` contains the parsed information, and the `ScriptModule` contains the original contents of the binary or quoted data. This fixes issue #1927.
* wat2wasm: support "-" for outputting to stdout (#1692) (#1902)Remko Tronçon2022-04-201-2/+7
|
* wasm2c: Always use a module prefix and set one by default (#1897)Sam Clegg2022-04-142-3/+18
| | | | | | | | | | | | The module prefix is no longer optional and is now set by default to the name of the module as given in the name section, or taken from the name of the input file. A new `-n/--module-name` command line flag can also be used to override. The prefix used by the generated code is now fixed at wasm2c time which makes the output code easier to read and also avoid the symbol pasting in the C pre-processor which makes the source hard to understand. For example, it makes symbols hard to `grep` for.
* update br_table validation rule + enforce module validity in spectest-interp ↵Keith Winstein2022-04-131-2/+5
| | | | (#1895)
* wasm-strip: Add support for -o argument (#1862)Sam Clegg2022-03-101-18/+26
|
* Add missing wasm2c feature flags (#1836)Soni L2022-02-221-1/+2
| | | | See #1679 #1680 #1686
* wasm2c: run multi-memory tests (#1834)Keith Winstein2022-02-171-6/+13
| | | | | | | | | | | This runs and passes 5 of the 9 multi-memory tests (although one of them, binary.wast, is a nop for wasm2c itself). The other 4 tests would require reference types or bulk memory: imports.wast load.wast memory-multi.wast store.wast
* Use C++17 string_view (#1826)Sam Clegg2022-02-116-55/+54
| | | | | Now that we have C++17 we don't need our own string_view class anymore. Depends on #1825
* Use C++17 pair destructuring for loops (#1827)Sam Clegg2022-02-111-11/+6
|
* Clang-format codebase (#1684)Heejin Ahn2021-12-2012-84/+82
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This applies clang-format to the whole codebase. I noticed we have .clang-format in wabt but the codebase is not very well formatted. This kind of mass-formatting PR has fans and skeptics because it can mess with `git blame`, but we did a similar thing in Binaryen a few years ago (WebAssembly/binaryen#2048, which was merged in WebAssembly/binaryen#2059) and it was not very confusing after all. If we are ever going to format the codebase, I think it is easier to do it in a single big PR than dozens of smaller PRs. This is using the existing .clang-format file in this repo, which follows the style of Chromium. If we think this does not suit the current formatting style, we can potentially tweak .clang-format too. For example, I noticed the current codebase puts many `case` statements within a single line when they are short, but the current .clang-format does not allow that. This does not include files in src/prebuilt, because they are generated. This also manually fixes some comment lines, because mechanically applying clang-format to long inline comments can look weird. I also added a clang-format check hook in the Github CI in #1683, which I think can be less controversial, given that it only checks the diff. --- After discussions, we ended up reverting many changes, especially one-liner functions and switch-cases, which are too many to wrap in `// clang-format off` and `// clang-format on`. I also considered fixing `.clang-format` to allow those one-liners but it caused a larger churn in other parts. So currently the codebase does not conform to `.clang-format` 100%, but we decided it's fine.
* Remove redundant `BindImports` call (NFC) (#1791)Heejin Ahn2021-12-201-1/+0
|
* Fix type names for function references (#1787)Sam Clegg2021-12-131-4/+6
| | | | | | | | This requires `Type::GetName` to return to be dynamicllay created and return `std::string` rather then a `const char*` As this diff shows this type name is only used in textual output and error messages so should this change should not have a effect of binary parse time or the interpreter.
* Add error locations to BinaryReaderInterp (#1780)Sam Clegg2021-12-092-4/+6
| | | | I think it was always intended to work this way but was left as a TODO.
* Add specification tests for exception handling proposal (#1764)Asumu Takikawa2021-12-061-2/+43
| | | | | | | | This PR imports the spec tests from the Wasm testsuite repo and adds infrastructure to run them correctly. * Adds test expectations for exception handling proposal spec tests. * Adds missing tag signature matching code for import tests. * Adds support for the `assert_exception` command used in new tests. * Fix filename normalization for the spec test runner.
* wasm-strip: enable all features during wasm-strip (#1758)Sam Clegg2021-11-081-0/+1
| | | Fixes: #1757
* Avoid changing directory in run-spec-wasm2c.py and honor --print-cmd. NFC ↵Sam Clegg2021-10-141-5/+7
| | | | | | | (#1731) With this change once can run `test/run-spec-wasm2c.py -p` and any failing commands can be re-run directly from the root without needing to figure out in which directory to run the command.