summaryrefslogtreecommitdiff
path: root/test/help/wast2json.txt
Commit message (Collapse)AuthorAgeFilesLines
* Add support for the custom-page-sizes proposal (#2502)Keith Winstein2024-11-081-0/+1
| | | | This adds support in the binary/text parsers and writers, the validator and interpreter, and objdump (but not wasm2c).
* Implement Relaxed SIMD proposal (#1994)Marcus Better2022-11-301-0/+1
| | | | | | | | 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.
* Add initial support for code metadata (#1840)Yuri Iozzelli2022-02-251-0/+1
| | | | | | | | | | | | | | | | | | | | | See https://github.com/WebAssembly/tool-conventions/blob/main/CodeMetadata.md for the specification. In particular this pr implements the following: - Parsing code metadata sections in BinaryReader, providing appropriate callbacks that a BinaryReaderDelegate can implement: - BinaryReaderObjdump: show the sections in a human-readable form - BinaryReaderIr: add code metadata in the IR as expressions - Parsing code metadata annotations in text format, adding them in the IR like the BinaryReaderIR does - Writing the code metadata present in the IR in the proper sections when converting IR to binary - Support in wasm-decompiler for showing code metadata as comments in the pseudo-code All the features have corresponding tests. Support for code metadata is gated through the --enable-code-metadata feature. For reading/writing in the text format, --enable-annotations is also required. Missing features: Support for function-level code metadata (offset 0) Extensive validation in validator.cc (like making sure that all metadata instances are at the same code offset of an instruction)
* Initial implementation of extended-const proposal. (#1824)Sam Clegg2022-02-151-0/+1
| | | | | | | | | | The primary changes here are to the interpreter and how it handles initializer expressions. With this change we model these are normal function that we run during module initialization. I imagine we could optimize this further by creating one long function and encoding the `global.set`/`memory.init`/`table.init` into the function itself, but this change seems like a good first step to make the current tests pass.
* Add multi-memory feature support (#1751)Yuhan Deng2021-11-301-0/+1
|
* Enable reference types by default (#1729)Sam Clegg2021-10-131-1/+1
| | | | | | | | | This features was finished earlier this year: https://github.com/WebAssembly/proposals/blob/master/finished-proposals.md One thing to note is that the version of the spec tests we currently have in third_party/testsuite doesn't have ref types merged yet so this change disables ref types when running some of those tests. This can be removed in a followup when we update the testsuite.
* Enable bulk memory by default (#1728)Sam Clegg2021-10-131-1/+1
| | | | | | | | | | | This features was finished earlier this year: https://github.com/WebAssembly/proposals/blob/master/finished-proposals.md One thing to note is that the version of the spec tests we currently have in third_party/testsuite doesn't have bulk memory merged yet so this change disables bulk memory when running some of those tests. This will be removed in a followup when we update the testsuite. Fixes: #1717
* SIMD is now phase 5, enable it by default (#1712)Ng Zhi An2021-09-201-1/+1
| | | | | * SIMD is now phase 5, enable it by default * Update test flags, rebase test, and docs
* Begin support for typed function references proposal: added the flag and ↵Dmitry Bezhetskov2021-07-251-0/+1
| | | | supported call_ref (#1691)
* Added initial "memory64" proposal support (#1500)Wouter van Oortmerssen2020-08-071-0/+1
|
* Reference types changes to remove subtyping (#1407)Ben Smith2020-05-281-1/+1
| | | | | | | | Main changes: * Rename `anyref` -> `externref` * Remove `nullref` * Rename `hostref` -> `externref` * `ref.null` and `ref.is_null` now have "ref kind" parameter * Add ref kind keywords: `func`, `extern`, `exn`
* Enabled merged proposals by default (#1405)Alex Crichton2020-05-061-22/+22
| | | | | | | | | | | | | This enables three proposals by default since they've been merged into the upstream specification: * `saturating-float-to-int` - WebAssembly/spec#1143 * `sign-extension` - WebAssembly/spec#1144 * `multi-value` - WebAssembly/spec#1145 Most of the fallout from this is in the test suite with lots of `--enable` flags getting removed and some tests which now unconditionally pass also getting removed. Two spec tests explicitly pass `--disable` until the spec test submodule is updated.
* Add GC feature (#1348)Ben Smith2020-02-281-0/+1
|
* Add default output name for wast2json (#1287)Sam Clegg2020-01-081-1/+1
| | | Without this the default was to write the wasm files but not the json
* Add `--version` to wabt tools (#1175)Amir Bawab2019-10-091-1/+2
| | | | | | | | | | | | | Closes: #1106 Ported versioning system from [Binaryen CMakeLists.txt](https://github.com/WebAssembly/binaryen/blob/dc31b460fef47dfb3415b4ae6276fff4919a03e2/CMakeLists.txt#L10-L23) ``` bin/wasm2c --version 1.0.11-44-g71f883ad ``` Applied to (all) tools in `src/tools/`.
* Add --enable-all option (#1132)Heejin Ahn2019-07-291-0/+1
| | | This adds `--enable-all` option that enables all existing features.
* Initial custom annotation support (#1076)Jacob Gravelle2019-05-071-0/+1
| | | | | | Lex custom annotations, but discard them in the parser. In the future we should be able to parse some of them, but this is simple and spec-compliant for now.
* Add support for the reference types proposal (#938)Alex Crichton2019-02-141-0/+1
| | | | | | | | | | | | | | | | | | | | * Add support for the reference types proposal This commit adds support for the reference types proposal to wabt. Namely it adds new opcodes like `table.{get,set,grow}` as well as adds a new `anyref` type. These are plumbed throughout for various operations in relatively simple fashions, no support was added for a subtyping relationship between `anyref` and `anyfunc` just yet. This also raises the restriction that multiple tables are disallowed, allowing multiple tables to exist when `--enable-reference-types` is passed. * Allow nonzero table indices in `call_indirect` Plumb support throughout for the `call_indirect` instruction (and `return_call_indirect`) to work with multi-table modules according to the reference types proposal.
* Add bulk memory opcode definitions (#927)Alex Crichton2018-10-121-0/+1
| | | | | | | | | | | | This commit starts to add support in wabt's various tools for the upcoming [bulk memory proposal][1]. This is based off the current proposal's overview, although these may get tweaked over time! This is also the first time I've significantly contributed to wabt, and what I thought would be a relatively simple addition ended up being much larger than I imagined! I didn't add many negative tests yet but if more tests are desired please let me know! [1]: https://github.com/webassembly/bulk-memory-operations
* Tailcall (#918)Ben Smith2018-10-011-0/+1
| | | | | | | | | | | | This doesn't do any of the real work yet, it just adds the ReturnCall/ReturnCallIndirect Expr and Opcode types, and the "--enable-tail-call" flag. Still TODO: * Parse the opcodes in binary-reader.cc * Validate the opcodes in validator.cc and type-checker.cc * Implement the opcodes in interp.cc * Write standard wabt tests, and enable the spec proposal tests too
* Update testsuite; enable mut. globals by default (#884)Ben Smith2018-08-031-7/+7
| | | | | | | | The newest testsuite update enables mutable globals by default, which matches the v1 WebAssembly spec. This change changes the default for all wabt tools, and changes the flag to `--disable-mutable-globals` in case you need the previous behavior. This flag will likely be removed in the future.
* Remove short option for --help (#877)Raphael Graf2018-08-021-1/+1
| | | Resolves #872
* Add support for multi-value proposal (#861)Ben Smith2018-06-141-0/+1
| | | | | | | | | | | | | | | Use the `--enable-multi-value` flag to enable. A lot of code already "worked" with multi-value, and just needed to remove the restrictions. Most of the other changes are modifying the callback APIs to be more general, e.g. taking more than 1 result type. * Types are now stored as the negative values; this works nicely with the encoding of inline function types (used for block signatures), which are always positive values. * Remove `BlockSignature` and use `BlockDeclaration` instead, which is just a typedef to `FuncSignature`. This allows for explicit or implicit type specifications on the block signatures. * Allow for >1 "keep" values in the DropKeep interpreter instruction
* Remove wasm-link tool (#793)Sam Clegg2018-03-051-1/+1
| | | | | | This is been superseded by lld and we no longer have the bandwidth to maintain a separate linker.
* Rename run args (#728)Ben Smith2018-01-211-2/+2
| | | | As suggested in https://github.com/WebAssembly/wabt/pull/725#discussion_r162516714.
* Add feature flags for sign-ext., mutable-globals (#722)Ben Smith2018-01-181-1/+3
| | | Also reorder the flags so they are alphabetical order.
* Add SIMD feature flag. (#694)Ben Smith2017-12-151-0/+1
|
* Rename wast2wasm -> wat2wasm, wast2json (#617)Ben Smith2017-09-081-0/+26
* wat2wasm only parses wat files (individual modules) * wast2json parses spec test files and generates json + wasm