summaryrefslogtreecommitdiff
path: root/src/interp
Commit message (Expand)AuthorAgeFilesLines
* Flip order of memory indexes on memory.copy (#2294)Keith Winstein2023-09-111-5/+5
* Share reading/validation code between elem exprs & other const exprs (#2288)Keith Winstein2023-09-062-25/+20
* memory64: when enabled, check offset range at validation-time (#2253)Keith Winstein2023-06-121-16/+16
* Update wasm-c-api support to current API (#2172)Keith Winstein2023-03-141-30/+32
* Replace MakeUnique with c++14 std::make_unique (#2152)Keith Winstein2023-02-272-22/+23
* Implement Relaxed SIMD proposal (#1994)Marcus Better2022-11-302-11/+121
* Switch from `typedef` to using `using` in C++ code. NFC (#2066)Sam Clegg2022-11-151-26/+26
* Update testsuite (#2054)Sam Clegg2022-11-131-2/+1
* Convert type checks to assertions in the interpreter. NFC (#2055)Sam Clegg2022-11-111-10/+11
* Fix WITH_WASI build (#2017)Sam Clegg2022-10-061-0/+28
* Move headers to include/wabt/ (#1998)Alex Reinking2022-09-2814-3036/+20
* Fix several issues found by fuzzing (#1931)20192022-09-171-0/+7
* Support multi-memory in all memory ops and in apply/resolve-names (#1962)Keith Winstein2022-08-151-19/+44
* Track locations of Vars in BinaryReaderIR and BinaryReaderInterp (#1963)Keith Winstein2022-08-151-52/+86
* Fix Store object assignment. (#1854)Zoltan Herczeg2022-03-081-0/+4
* Improve the maintenace of ObjectKind types. (#1852)Zoltan Herczeg2022-03-082-2/+10
* Rework free list to use less memory. (#1841)Zoltan Herczeg2022-03-023-92/+78
* Implement a separate free list for Refs (#1835)Zoltan Herczeg2022-02-252-4/+66
* Improve Garbage Collection algorithm (#1830)Zoltan Herczeg2022-02-182-19/+43
* Initial implementation of extended-const proposal. (#1824)Sam Clegg2022-02-153-139/+67
* Use C++17 string_view (#1826)Sam Clegg2022-02-115-37/+37
* Fix size of segment in initialization error reporting (#1823)Sam Clegg2022-02-091-2/+10
* Change Thread in interpreter to a normal object (#1809)Zoltan Herczeg2022-02-043-35/+33
* Update testsuite (#1795)Sam Clegg2022-01-101-2/+6
* Clang-format codebase (#1684)Heejin Ahn2021-12-2010-116/+131
* interpreter: Fix infinite looping on `return_call` (#1762)Asumu Takikawa2021-12-151-2/+5
* Fix type names for function references (#1787)Sam Clegg2021-12-133-10/+10
* Remove check from binary-reader-interp.cc that the validator already catches....Sam Clegg2021-12-131-18/+0
* Share validation code between constant expressions and function bodies. NFC (...Sam Clegg2021-12-101-107/+12
* Add error locations to BinaryReaderInterp (#1780)Sam Clegg2021-12-093-130/+159
* Add specification tests for exception handling proposal (#1764)Asumu Takikawa2021-12-061-1/+6
* Remove unused checks from #1770. NFC (#1772)Sam Clegg2021-12-042-11/+0
* Perform init expression validation outside of the binary reader. NFC (#1770)Sam Clegg2021-12-022-62/+121
* OnRefFuncExpr takes a func index. NFC (#1768)Sam Clegg2021-12-021-3/+3
* Add multi-memory feature support (#1751)Yuhan Deng2021-11-301-25/+31
* Add interpreter support for the exception handling proposal (#1749)Asumu Takikawa2021-11-176-35/+491
* Support function references in parameters and results of functions and blocks...Dmitry Bezhetskov2021-11-162-5/+6
* Remove separate OnEndFunc vs OnEndExpr. (#1756)Sam Clegg2021-11-051-0/+3
* Update testsuite (#1738)Sam Clegg2021-10-181-0/+6
* Set features of the Store used in wasm-interp (#1723)Sam Clegg2021-10-121-0/+1
* [simd] Remove unused template params (#1700)Ng Zhi An2021-08-062-7/+6
* [simd] Fix load/store lanes on BE systems (#1697)Ng Zhi An2021-08-051-2/+2
* Begin support for typed function references proposal: added the flag and supp...Dmitry Bezhetskov2021-07-252-0/+2
* [EH] Remove `unwind` (#1682)Heejin Ahn2021-06-292-2/+0
* [EH] Replace event with tag (#1678)Heejin Ahn2021-06-225-57/+57
* [Memory64] Support reading/writing limits as 64-bit LEBs (#1664)Wouter van Oortmerssen2021-04-221-1/+1
* Memory64: support 64-bit data init-expr (#1656)Wouter van Oortmerssen2021-04-052-3/+10
* [simd] Implement store lane (#1647)Ng Zhi An2021-03-224-9/+49
* [simd] Implement load lane (#1646)Ng Zhi An2021-03-225-4/+64
* [simd] Implement v128.load{32,64}_zero (#1644)Ng Zhi An2021-03-174-0/+32