| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Move pointer positioning outside of vector access operator to avoid MSVC comp... | Mark A. Ropper | 2017-10-20 | 1 | -2/+2 |
* | Atomics support in interpreter + optimizer + fuzz fixes for that (#1227) | Alon Zakai | 2017-10-20 | 1 | -0/+22 |
* | Add Builder::makeGlobal for nicer global creation (#1221) | Alon Zakai | 2017-10-10 | 1 | -6/+8 |
* | Optimize wasm reading (#1202) | Alon Zakai | 2017-09-28 | 1 | -2/+9 |
* | Avoid new blocks in binary reading/writing (#1165) | Alon Zakai | 2017-09-12 | 1 | -21/+35 |
* | Add support for sign-extension operators from threading proposal (#1167) | Derek Schuff | 2017-09-06 | 1 | -0/+11 |
* | clean up untaken => unreachable, as well as unnecessary named stuff in valida... | Alon Zakai | 2017-09-06 | 1 | -6/+5 |
* | Add support for atomic wait and wake operators (#1140) | Derek Schuff | 2017-08-24 | 1 | -0/+55 |
* | Ignore unreachable code in wasm binaries (#1122) | Alon Zakai | 2017-08-22 | 1 | -8/+60 |
* | Emit optimal-size LEBs in section/subsection/function body sizes (#1128) | Alon Zakai | 2017-08-15 | 1 | -8/+20 |
* | emit an unreachable if an unreachable block context does not end in an unreac... | Alon Zakai | 2017-08-05 | 1 | -0/+5 |
* | fix reading of stacky unreadable code with elements we need to drop | Alon Zakai (kripken) | 2017-08-05 | 1 | -16/+16 |
* | fix proper wasm emitting of untaken br_tables | Alon Zakai | 2017-08-01 | 1 | -1/+9 |
* | Merge remote-tracking branch 'origin/master' into fuzz | Alon Zakai (kripken) | 2017-07-31 | 1 | -1/+33 |
|\ |
|
| * | Polymophic stack support (#1117) | Alon Zakai | 2017-07-31 | 1 | -1/+33 |
* | | review comments | Alon Zakai (kripken) | 2017-07-31 | 1 | -1/+1 |
* | | fix binary emitting of untaken branches, and also handle reading of unreachab... | Alon Zakai (kripken) | 2017-07-29 | 1 | -3/+10 |
|/ |
|
* | add the option to seek named breaks, not just taken breaks; refactor headers ... | Alon Zakai (kripken) | 2017-07-11 | 1 | -3/+4 |
* | Add IR, parsing, printing, and binary for atomic cmpxchg (#1083) | Derek Schuff | 2017-07-10 | 1 | -0/+64 |
* | Add IR, parsing and binary support for AtomicRMW instructions from wasm threa... | Derek Schuff | 2017-07-06 | 1 | -0/+90 |
* | show a clear error on nulls in inline strings in binary format (#1068) | Alon Zakai | 2017-07-05 | 1 | -1/+5 |
* | Add atomic loads and stores (#1077) | Derek Schuff | 2017-06-28 | 1 | -71/+162 |
* | Add shared memories (#1069) | Derek Schuff | 2017-06-27 | 1 | -12/+24 |
* | Change char to auto to avoid type-limits warn on some arches (#1066) | Jakub Jirutka | 2017-06-22 | 1 | -1/+1 |
* | handle the wrong number of functions being provided in binary format | Alon Zakai (kripken) | 2017-06-01 | 1 | -0/+8 |
* | Exporting/importing debug location information from .wast/.asm.js/.s formats ... | Yury Delendik | 2017-06-01 | 1 | -0/+206 |
* | afl-fuzz bug fixes (#1018) | Alon Zakai | 2017-05-20 | 1 | -0/+4 |
* | Unreachable typing fixes (#1004) | Alon Zakai | 2017-05-09 | 1 | -2/+9 |
* | optimize duplication checks in binary format reading (#995) | Alon Zakai | 2017-05-04 | 1 | -7/+5 |
* | make function name duplicate testing handle the case of just some functions b... | Alon Zakai | 2017-05-03 | 1 | -5/+8 |
* | Parsing fixes (#990) | Alon Zakai | 2017-05-02 | 1 | -34/+126 |
* | Extensible name section (#933) | pipcet | 2017-04-13 | 1 | -19/+43 |
* | fix emitting of unreachable ifs (#944) | Alon Zakai | 2017-03-14 | 1 | -13/+11 |
* | Wasm h to cpp (#926) | jgravelle-google | 2017-03-10 | 1 | -2/+5 |
* | read unknown users sections as binary data stored on the Module (#918) | Alon Zakai | 2017-02-21 | 1 | -3/+13 |
* | clean up raw pointer import->functionType, make it a Name like everything els... | Alon Zakai | 2017-02-17 | 1 | -4/+4 |
* | Fix emitting of unreachable block/if/loop (#911) | Alon Zakai | 2017-02-16 | 1 | -2/+38 |
* | Merge pull request #865 from WebAssembly/fix-ab | Alon Zakai | 2017-01-10 | 1 | -6/+24 |
|\ |
|
| * | handle a binary that breaks to return | Alon Zakai (kripken) | 2017-01-04 | 1 | -5/+22 |
| * | handle a module which has no globals at all | Alon Zakai (kripken) | 2017-01-04 | 1 | -1/+2 |
* | | Merge pull request #871 from WebAssembly/fix-c-api-unused-mem | Alon Zakai | 2017-01-05 | 1 | -4/+5 |
|\ \
| |/
|/| |
|
| * | ensure exports are added deterministically from binaries | Alon Zakai (kripken) | 2017-01-04 | 1 | -4/+5 |
* | | Handle stacky code (#868) | Alon Zakai | 2017-01-04 | 1 | -21/+47 |
|/ |
|
* | Merge pull request #859 from WebAssembly/linking | Alon Zakai | 2016-12-27 | 1 | -1/+1 |
|\ |
|
| * | fix the order of emitting the start section | Alon Zakai | 2016-12-07 | 1 | -1/+1 |
* | | ignore unknown user sections, fixes #857 (#858) | Alon Zakai | 2016-12-07 | 1 | -7/+12 |
|/ |
|
* | emit entries in the Names section for imports as well, as was recently change... | Alon Zakai | 2016-11-09 | 1 | -3/+35 |
* | add a --symbolmap option to wasm-as, which emits a side file with the name ma... | Alon Zakai | 2016-11-09 | 1 | -0/+13 |
* | Binary 0xd changes (#803) | Derek Schuff | 2016-10-26 | 1 | -18/+27 |
* | fix binary format regression from 9afa80951a3e9e59d5348780370a8b67d829ded1 - ... | Alon Zakai | 2016-10-22 | 1 | -18/+10 |