| Commit message (Expand) | Author | Age | Files | Lines |
* | Do not optimize public types (#5347) | Thomas Lively | 2022-12-16 | 1 | -1/+4 |
* | Switch from `typedef` to `using` in C++ code. NFC (#5258) | Sam Clegg | 2022-11-15 | 1 | -1/+1 |
* | Function-level pass-debug mode 2 validation (#4897) | Alon Zakai | 2022-08-12 | 1 | -0/+4 |
* | Refactor printing code so that printing Expressions always works (#3450) | Alon Zakai | 2020-12-17 | 1 | -1/+0 |
* | Apply format changes from #2048 (#2059) | Alon Zakai | 2019-04-26 | 1 | -1/+1 |
* | Move features from passOptions to Module (#2001) | Thomas Lively | 2019-04-12 | 1 | -1/+1 |
* | Feature options (#1797) | Thomas Lively | 2018-12-03 | 1 | -1/+1 |
* | Add Features enum to IR (#1250) | Derek Schuff | 2017-10-27 | 1 | -1/+1 |
* | Refactor validator API to use enums (#1209) | Alon Zakai | 2017-10-03 | 1 | -1/+9 |
* | Fast validation (#1204) | Alon Zakai | 2017-10-02 | 1 | -182/+4 |
* | Expressions should not appear twice in the ast (#1191) | Alon Zakai | 2017-09-18 | 1 | -0/+3 |
* | clean up untaken => unreachable, as well as unnecessary named stuff in valida... | Alon Zakai | 2017-09-06 | 1 | -1/+0 |
* | wasm-reduce tool (#1139) | Alon Zakai | 2017-09-01 | 1 | -1/+3 |
* | Add support for atomic wait and wake operators (#1140) | Derek Schuff | 2017-08-24 | 1 | -0/+2 |
* | Merge pull request #1095 from WebAssembly/fuzz-3 | Alon Zakai | 2017-07-18 | 1 | -1/+1 |
|\ |
|
| * | fix validation of memBytes, if the load type is unreachable, we can't and sho... | Alon Zakai (kripken) | 2017-07-13 | 1 | -1/+1 |
* | | Validation for AtomicRMW and cmpxchg (#1092) | Derek Schuff | 2017-07-14 | 1 | -9/+12 |
|/ |
|
* | Merge pull request #1087 from WebAssembly/fuzz-2 | Alon Zakai | 2017-07-12 | 1 | -3/+4 |
|\ |
|
| * | refactor and improve break validation. breaks names are unique, so we don't n... | Alon Zakai (kripken) | 2017-07-11 | 1 | -3/+4 |
* | | Refactor validation failure and printing, validate atomic memory (#1090) | Derek Schuff | 2017-07-12 | 1 | -23/+34 |
|/ |
|
* | Factor wasm validator into a cpp file (#1086) | Derek Schuff | 2017-07-10 | 1 | -611/+35 |
* | Support new result syntax for if/loop/block (#1047) | Sam Clegg | 2017-06-12 | 1 | -1/+1 |
* | validate returned values in all cases, even if the function returns none we s... | Alon Zakai | 2017-06-02 | 1 | -6/+4 |
* | error if select sides are concrete but different | Alon Zakai (kripken) | 2017-06-01 | 1 | -0/+3 |
* | in extra pass-debug validation, don't assume there is always a function, the ... | Alon Zakai (kripken) | 2017-06-01 | 1 | -1/+1 |
* | More fuzz fixes (#1021) | Alon Zakai | 2017-05-22 | 1 | -4/+16 |
* | use TypeUpdater in vacuum | Alon Zakai (kripken) | 2017-05-20 | 1 | -6/+15 |
* | Address review feedback for #1014 (#1016) | Alon Zakai | 2017-05-18 | 1 | -3/+3 |
* | Validate finalization (#1014) | Alon Zakai | 2017-05-18 | 1 | -7/+50 |
* | fix unreachable typing: for all nodes, if they are not reached - e.g., a bina... | Alon Zakai (kripken) | 2017-05-02 | 1 | -12/+2 |
* | disallow empty blocks with a type - if they return a type, they must have con... | Alon Zakai | 2017-05-02 | 1 | -0/+3 |
* | Validation fixes for issues noticed by afl (#988) | Alon Zakai | 2017-05-02 | 1 | -6/+109 |
* | wasm-merge tool (#919) | Alon Zakai | 2017-04-17 | 1 | -1/+3 |
* | finalize interim ifs in relooper, and other if handling issues (#940) | Alon Zakai | 2017-03-13 | 1 | -0/+10 |
* | Wasm h to cpp (#926) | jgravelle-google | 2017-03-10 | 1 | -5/+6 |
* | Default Walker subclasses to using Visitor<SubType> (#921) | jgravelle-google | 2017-02-23 | 1 | -3/+3 |
* | clean up raw pointer import->functionType, make it a Name like everything els... | Alon Zakai | 2017-02-17 | 1 | -4/+5 |
* | Fix emitting of unreachable block/if/loop (#911) | Alon Zakai | 2017-02-16 | 1 | -1/+6 |
* | Handle importing globals in s2wasm (#843) | jgravelle-google | 2016-11-30 | 1 | -0/+1 |
* | Don't create a memory section for an imported memory; fixes #772 (#773) | Benjamin Bouvier | 2016-10-13 | 1 | -0/+3 |
* | Don't create table sections for imported tables (#756) | Derek Schuff | 2016-10-11 | 1 | -0/+3 |
* | Require unique names in binaryen IR (#746) | Alon Zakai | 2016-10-06 | 1 | -0/+13 |
* | validate get_local type (#745) | Alon Zakai | 2016-10-06 | 1 | -0/+3 |
* | Refactor Import::Kind and Export::Kind into an ExternalKind enum class (#725) | Alon Zakai | 2016-10-03 | 1 | -6/+6 |
* | Document and clean up validation options (#730) | Alon Zakai | 2016-10-03 | 1 | -9/+31 |
* | passRunner debug and validation improvements (#726) | Alon Zakai | 2016-10-02 | 1 | -5/+15 |
* | asm2wasm i64 support (#723) | Alon Zakai | 2016-09-30 | 1 | -0/+3 |
* | validate drop (#712) | Alon Zakai | 2016-09-30 | 1 | -6/+1 |
* | Type check block/loop/if sigs (#717) | Alon Zakai | 2016-09-28 | 1 | -0/+23 |
* | table elem parsing fixes | Alon Zakai | 2016-09-20 | 1 | -1/+0 |