summaryrefslogtreecommitdiff
path: root/src/wasm/wasm-s-parser.cpp
Commit message (Expand)AuthorAgeFilesLines
* Typed Continuations: Add cont type (#5998)Frank Emrich2023-10-241-10/+38
* Reuse existing function types for blocks (#6022)Thomas Lively2023-10-181-10/+34
* wasm-s-parser: Add context in validation errors (#5981)Alon Zakai2023-09-281-201/+188
* Implement table.fill (#5949)Thomas Lively2023-09-181-0/+12
* Remove legacy type defintion text syntax (#5948)Thomas Lively2023-09-181-40/+4
* Replace I31New with RefI31 everywhere (#5930)Thomas Lively2023-09-131-2/+2
* Remove legacy GC text syntax (#5929)Thomas Lively2023-09-121-34/+4
* Make final types the default (#5918)Thomas Lively2023-09-091-1/+6
* Update stringref text format (#5891)Jérôme Vouillon2023-08-221-26/+38
* Make the legacy parser follow more closely the standard GC text format (#5889)Jérôme Vouillon2023-08-221-13/+37
* Fix finalization of call_ref to handle refined target types (#5883)Thomas Lively2023-08-211-0/+7
* Ensure br_on_cast* target type is subtype of input type (#5881)Thomas Lively2023-08-171-0/+6
* Remove legacy WasmGC instructions (#5861)Thomas Lively2023-08-091-47/+21
* Initial support for `final` types (#5803)Thomas Lively2023-07-061-4/+13
* Rename WasmBinaryBuilder to WasmBinaryReader (NFC) (#5767)Heejin Ahn2023-06-131-1/+1
* Update br_on_cast binary and text format (#5762)Thomas Lively2023-06-121-7/+7
* Revert "Update br_on_cast binary and text format (#5734)" (#5740)Alon Zakai2023-05-231-7/+7
* Update br_on_cast binary and text format (#5734)Thomas Lively2023-05-191-7/+7
* [Strings] Adopt new instruction binary encoding (#5714)Jérôme Vouillon2023-05-121-2/+6
* [NFC] Refactor each of ArrayNewSeg and ArrayInit into subclasses for Data/Ele...Alon Zakai2023-05-041-9/+25
* Implement array.fill, array.init_data, and array.init_elem (#5637)Thomas Lively2023-04-061-0/+22
* Use Names instead of indices to identify segments (#5618)Thomas Lively2023-04-041-5/+37
* [Wasm GC] Parse (sub $super _) for array, func, and struct (#5515)Andy Wingo2023-04-031-23/+55
* [NFC] Remove our bespoke `make_unique` implementation (#5613)Thomas Lively2023-03-311-16/+16
* Add bulk-array.wast spec test outline (#5568)Thomas Lively2023-03-161-11/+1
* Parse and print `array.new_fixed` (#5527)Thomas Lively2023-02-281-1/+1
* [NFC] Internally rename `ArrayInit` to `ArrayNewFixed` (#5526)Thomas Lively2023-02-281-2/+2
* [Strings] Add experimental StringNew variants (#5459)Alon Zakai2023-01-261-25/+35
* [Strings] Add string.compare (#5453)Alon Zakai2023-01-251-3/+3
* Fix segment fault in API BinaryenModuleParse (#5440) (#5441)Changqing Jing2023-01-201-10/+12
* [Wasm GC] Replace `HeapType::data` with `HeapType::struct_` (#5416)Thomas Lively2023-01-101-6/+4
* Represent ref.as_{func,data,i31} with RefCast (#5413)Thomas Lively2023-01-101-11/+11
* Replace `RefIs` with `RefIsNull` (#5401)Thomas Lively2023-01-091-10/+13
* Consolidate br_on* operations (#5399)Thomas Lively2023-01-061-4/+14
* Support br_on_cast null (#5397)Thomas Lively2023-01-051-3/+9
* Allow non-nullable ref.cast of nullable references (#5386)Thomas Lively2023-01-041-9/+0
* Support `ref.test null` (#5368)Thomas Lively2022-12-211-3/+9
* Update RefCast representation to drop extra HeapType (#5350)Thomas Lively2022-12-201-7/+17
* Use non-nullable ref.cast for non-nullable input (#5335)Thomas Lively2022-12-091-2/+14
* Validate ref.as_* argument is a reference (#5330)Alon Zakai2022-12-081-1/+5
* Add standard versions of WasmGC casts (#5331)Thomas Lively2022-12-071-19/+20
* [NFC] Do not read past the end of a string_view (#5317)Thomas Lively2022-12-021-5/+5
* Revert "Revert "Make `call_ref` type annotations mandatory (#5246)" (#5265)" ...Thomas Lively2022-11-161-25/+10
* Revert "Make `call_ref` type annotations mandatory (#5246)" (#5265)Thomas Lively2022-11-161-10/+25
* Make `call_ref` type annotations mandatory (#5246)Thomas Lively2022-11-151-25/+10
* Implement `array.new_data` and `array.new_elem` (#5214)Thomas Lively2022-11-071-3/+9
* [Parser] Parse loads and stores (#5174)Thomas Lively2022-10-211-30/+6
* [NFC] Avoid re-parsing instruction names (#5171)Thomas Lively2022-10-201-124/+45
* Parse and emit `array.len` without a type annotation (#5151)Thomas Lively2022-10-181-3/+8
* Implement `array` basic heap type (#5148)Thomas Lively2022-10-181-2/+8