summaryrefslogtreecommitdiff
path: root/test/spec/bulk-memory64.wast
Commit message (Collapse)AuthorAgeFilesLines
* [Parser] Parse wast scripts (#6581)Thomas Lively2024-05-131-7/+7
| | | | | | | | | | | The spec tests use an extension of the standard text format that includes various commands and assertions used to test WebAssembly implementations. Add a utility to parse this extended WebAssembly script format and use it in wasm-shell to check that it parses our spec tests without error. Fix a few errors the new parser found in our spec tests. A future PR will rewrite wasm-shell to interpret the results of the new parser, but for now to keep the diff smaller, do not do anything with the new parser except check for errors.
* Remove passive keyword from data segment parser (#3757)Abbas Mashayekh2021-03-301-3/+3
| | | | | | | | The passive keyword has been removed from spec's text format, and now any data segment that doesn't have an offset is considered as passive. This PR remove that from both parser and the Print pass, plus all tests that used that syntax. Fixes #2339
* Support 64-bit data segment init-exps in Memory64 (#3593)Wouter van Oortmerssen2021-02-251-2/+2
| | | This as a consequence of https://reviews.llvm.org/D95651
* Fix regression in memory.fill due to Memory64 (#3176)Wouter van Oortmerssen2020-09-281-0/+4
| | | details: https://github.com/WebAssembly/binaryen/issues/3149
* Initial implementation of "Memory64" proposal (#3130)Wouter van Oortmerssen2020-09-181-0/+167
Also includes a lot of new spec tests that eventually need to go into the spec repo