summaryrefslogtreecommitdiff
path: root/src/expr-visitor.cc
Commit message (Expand)AuthorAgeFilesLines
* binary/wat: Implement EHv4 (#2470)Soni L.2024-11-201-0/+23
* Move headers to include/wabt/ (#1998)Alex Reinking2022-09-281-3/+3
* Add initial support for code metadata (#1840)Yuri Iozzelli2022-02-251-0/+4
* Clang-format codebase (#1684)Heejin Ahn2021-12-201-1/+0
* Begin support for typed function references proposal: added the flag and supp...Dmitry Bezhetskov2021-07-251-0/+4
* Allow plain `try` with no `catch` or `delegate` (#1676)Asumu Takikawa2021-06-291-2/+2
* [EH] Remove `unwind` (#1682)Heejin Ahn2021-06-291-16/+0
* [simd] Implement store lane (#1647)Ng Zhi An2021-03-221-0/+6
* [simd] Implement load lane (#1646)Ng Zhi An2021-03-221-0/+5
* [simd] Implement v128.load{32,64}_zero (#1644)Ng Zhi An2021-03-171-0/+4
* Update exception handling support to current proposal (#1596)Asumu Takikawa2021-02-101-10/+58
* Add support for atomic.fence from the threads proposal (#1231)Andy Wingo2020-04-201-0/+4
* reference-types: add table.fill instruction (#1252)Sam Clegg2019-11-251-0/+4
* Initial implementation of reftype proposal in the interpreter. (#1206)Sam Clegg2019-11-071-0/+4
* Visit catch even when its body is empty (#1141)Heejin Ahn2019-08-141-3/+2
* Add support for v8x16.swizzle and the load_splats. (#1116)nlewycky2019-07-191-0/+4
* Add support for the reference types proposal (#938)Alex Crichton2019-02-141-0/+24
* Add br_on_exn instruction (#1016)Ben Smith2019-02-131-0/+4
* Remove the `if_except` instruction (#1009)Ben Smith2019-02-101-32/+0
* Rename {memory,table}.drop to {data,elem}.drop (#1000)Alex Crichton2019-01-301-4/+4
* The great renaming (#985)Ben Smith2018-12-191-17/+18
* Add bulk memory opcode definitions (#927)Alex Crichton2018-10-121-0/+28
* Tailcall (#918)Ben Smith2018-10-011-0/+9
* Update spec tests; rename {grow,current}_memory (#849)Ben Smith2018-05-271-9/+8
* Run clang-format over all the files (#814)Ben Smith2018-03-161-1/+2
* SIMD v8x16.shuffle implementation. (#811)lizhengxing2018-03-151-0/+5
* Simd i8x16.extract_lane_s instruction implementation. (#802)lizhengxing2018-03-131-0/+5
* WIP on support for level1 exception spec (#773)Ben Smith2018-03-021-37/+44
* Rewrite ExprVisitor to be non-recursive (#765)Ben Smith2018-02-211-21/+159
* SIMD v128.bitselect instruction implementation. (#759)lizhengxing2018-02-191-0/+4
* Rename {wake,wait} -> atomic.{wake,wait} (#672)Ben Smith2017-11-211-8/+8
* Add `i{32,64}.wait` and `wake` operators (#646)Ben Smith2017-10-051-0/+8
* Add Atomic instructions (#633)Ben Smith2017-09-201-0/+17
* Always include quoted headers like "src/foo.h" (#601)Ben Smith2017-08-301-3/+3
* Move Result to its own file (result.h) (#600)Ben Smith2017-08-291-6/+0
* Clean up various structs in ir.h (#595)Ben Smith2017-08-261-8/+8
* Use intrusive_list for Expr (#544)Ben Smith2017-06-301-9/+9
* Remove WABT_ZERO_MEMORY WABT_FAILED and WABT_SUCCEEDED macros. (#540)KarlSchimpf2017-06-281-1/+1
* Use type hierarchy for ModuleField instead of union (#532)Ben Smith2017-06-251-30/+31
* Refactor Expr as class hierarchy instead of union (#524)Ben Smith2017-06-231-46/+55
* Fix the validator to be able to validate exception handling constructs. (#514)KarlSchimpf2017-06-221-19/+11
* Add syntax for try blocks to the wast parser. (#490)KarlSchimpf2017-06-111-0/+26
* Make ExprVisitor into C++ class (#471)Ben Smith2017-06-021-0/+163