summaryrefslogtreecommitdiff
path: root/src/wast-parser.cc
Commit message (Expand)AuthorAgeFilesLines
* interp: Handle ref.null exn (#2497)Soni L.2024-10-291-1/+5
* Raise parse error on NaN in i32 and i64 literals (#2485)James Ring2024-10-081-2/+4
* Fix parsing of malformed element section in text format (#2439)Changqing Jing2024-07-121-1/+1
* Update testsuite and implement table64 (#2418)Sam Clegg2024-05-151-34/+40
* Update testsuite and corresponding update to comment parser (#2416)Sam Clegg2024-05-131-1/+20
* WastParser: tighten parsing of folded `if` (#2349)Keith Winstein2023-12-051-22/+13
* WastParser: replace CircularArray with internal TokenQueue (NFC) (#2300)Keith Winstein2023-09-181-0/+32
* Implement custom section reading/writing (#2284)Diego Frias2023-09-151-7/+69
* Flip order of memory indexes on memory.copy (#2294)Keith Winstein2023-09-111-3/+3
* memory64: when enabled, check offset range at validation-time (#2253)Keith Winstein2023-06-121-2/+3
* WastParser: allow empty modules/scripts with warning (#2248)Keith Winstein2023-06-071-3/+12
* WastParser::ErrorExpected: ensure there is a token to consume (#2247)Keith Winstein2023-06-071-1/+1
* Update testsuite (#2167)Keith Winstein2023-03-131-14/+25
* Improve lexing and parsing of invalid annotations (again) (#2166)Keith Winstein2023-03-101-4/+6
* Always do a full roundtrip in run-roundtrip.py (#1661)Sam Clegg2023-02-281-3/+8
* Replace MakeUnique with c++14 std::make_unique (#2152)Keith Winstein2023-02-271-74/+73
* wast-parser.cc: disallow exception tag unless exceptions enabled (#2110)Keith Winstein2022-12-231-0/+4
* wast-parser.cc: Accept non abbreviated forms of result for select (#2104)YAMAMOTO Takashi2022-12-191-3/+2
* Implement Relaxed SIMD proposal (#1994)Marcus Better2022-11-301-1/+24
* Switch from `typedef` to using `using` in C++ code. NFC (#2066)Sam Clegg2022-11-151-1/+1
* Add tail-call spec tests and fix related parser issue (#2049)Sam Clegg2022-11-081-1/+1
* WastLexer: log lexing errors directly (#2013)Keith Winstein2022-10-031-3/+3
* Move headers to include/wabt/ (#1998)Alex Reinking2022-09-281-12/+12
* Allow Code Metadata Annotations to have arbitrary hex strings (#1876)Jacob Abraham2022-08-161-3/+3
* Support multi-memory in all memory ops and in apply/resolve-names (#1962)Keith Winstein2022-08-151-31/+11
* Track locations of Vars in BinaryReaderIR and BinaryReaderInterp (#1963)Keith Winstein2022-08-151-3/+3
* wast2json: write binary modules verbatim (#1932)Ben Smith2022-06-031-13/+26
* List funcref as one of the expected value types in WastParser::ParseValueType...Alex Bradbury2022-05-271-1/+2
* Implement \u{hex} escape parsing (#1909)Zoltan Herczeg2022-05-021-0/+44
* Fix an unused variable warning in opt (#1846)walkingeyerobot2022-03-041-0/+1
* Fix function body start/end locations in wasm-validate (#1842)Sam Clegg2022-03-021-0/+1
* Add initial support for code metadata (#1840)Yuri Iozzelli2022-02-251-5/+41
* Use C++17 string_view (#1826)Sam Clegg2022-02-111-39/+26
* Use C++17 pair destructuring for loops (#1827)Sam Clegg2022-02-111-2/+2
* Fix wat parsing of function imports with type name + inline type (#1808)Sam Clegg2022-01-151-10/+5
* Update testsuite (#1795)Sam Clegg2022-01-101-3/+23
* Refactor simd load/store text parsing to use a template. NFC (#1798)Sam Clegg2022-01-071-34/+26
* Clang-format codebase (#1684)Heejin Ahn2021-12-201-15/+14
* Fix type names for function references (#1787)Sam Clegg2021-12-131-8/+9
* Add specification tests for exception handling proposal (#1764)Asumu Takikawa2021-12-061-0/+10
* Add multi-memory feature support (#1751)Yuhan Deng2021-11-301-7/+91
* Support function references in parameters and results of functions and blocks...Dmitry Bezhetskov2021-11-161-29/+121
* Add support for inline export/import of tags (#1747)Asumu Takikawa2021-10-291-5/+23
* Handle invalid func type identifier in parser (#1740)Ng Zhi An2021-10-181-3/+9
* Fix crash when i32/i64 const is followed by a nan expression (#1732)Ng Zhi An2021-10-141-2/+10
* Delay validation of elem init expressions until validation time (#1730)Sam Clegg2021-10-141-28/+23
* Fix crashes in parser when f32.const is given a nan expression (#1726)Ng Zhi An2021-10-121-2/+14
* Begin support for typed function references proposal: added the flag and supp...Dmitry Bezhetskov2021-07-251-0/+7
* Allow plain `try` with no `catch` or `delegate` (#1676)Asumu Takikawa2021-06-291-21/+21
* [EH] Remove `unwind` (#1682)Heejin Ahn2021-06-291-12/+2