| Commit message (Expand) | Author | Age | Files | Lines |
* | Rename `idx` to `index` in SIMD code for consistency (#1836) | Thomas Lively | 2018-12-18 | 1 | -1/+1 |
* | SIMD (#1820) | Thomas Lively | 2018-12-13 | 1 | -1/+159 |
* | Warn if linking section is present, as we cannot handle it yet (#1798) | Alon Zakai | 2018-12-04 | 1 | -1/+1 |
* | Implement nontrapping float-to-int instructions (#1780) | Thomas Lively | 2018-12-04 | 1 | -0/+12 |
* | Add v128 type (#1777) | Thomas Lively | 2018-11-29 | 1 | -0/+1 |
* | standardize on 'template<' over 'template <' (i.e., remove a space) (#1782) | Alon Zakai | 2018-11-29 | 1 | -1/+1 |
* | Remove default cases (#1757) | Thomas Lively | 2018-11-27 | 1 | -2/+2 |
* | initialize binary writer debug info even without a source map, as debug info ... | Alon Zakai | 2018-11-26 | 1 | -0/+1 |
* | Unify imported and non-imported things (#1678) | Alon Zakai | 2018-09-19 | 1 | -15/+6 |
* | Add debug information locations to the function prolog/epilog (#1674) | Yury Delendik | 2018-09-17 | 1 | -3/+3 |
* | Binary format local parsing fixes (#1664) | Alon Zakai | 2018-09-11 | 1 | -1/+2 |
* | Fix read-write of dylink section (#1648) | Alon Zakai | 2018-08-31 | 1 | -1/+5 |
* | Escape name section ids in binary format reading/writing to be WebAssembly sp... | Yury Delendik | 2018-08-31 | 1 | -0/+1 |
* | Stack IR (#1623) | Alon Zakai | 2018-07-30 | 1 | -99/+39 |
* | Fix source map entries offset when LEB is compressed. (#1628) | Yury Delendik | 2018-07-25 | 1 | -1/+4 |
* | Refactor stack writing code into a new StackWriter class (#1620) | Alon Zakai | 2018-07-16 | 1 | -59/+75 |
* | Minor code cleanups (#1617) | Alon Zakai | 2018-07-10 | 1 | -1/+1 |
* | Better binary error reporting (#1505) | Alon Zakai | 2018-04-13 | 1 | -1/+3 |
* | Fix bad param/var type error handling (#1499) | Alon Zakai | 2018-04-10 | 1 | -0/+1 |
* | Handle literally unreachable brs (#1497) | Alon Zakai | 2018-04-07 | 1 | -2/+16 |
* | when creating blocks in binary format parsing, we know if a block has a break... | Alon Zakai | 2018-04-05 | 1 | -0/+1 |
* | validate we are in a function context when adding a label in binary parsing. ... | Alon Zakai | 2018-03-16 | 1 | -3/+4 |
* | Rename WasmType => Type (#1398) | Alon Zakai | 2018-02-02 | 1 | -4/+4 |
* | Atomic wait/wake fixes (#1383) | Alon Zakai | 2018-01-22 | 1 | -1/+1 |
* | First pass at LLD support for Emscripten (#1346) | Jacob Gravelle | 2018-01-22 | 1 | -1/+9 |
* | Make input a const reference to WasmBinaryBuilder (#1367) | Alex Beregszaszi | 2018-01-18 | 1 | -2/+2 |
* | Function metrics pass (#1353) | Alon Zakai | 2018-01-12 | 1 | -1/+12 |
* | Do not emit 100k data segments, browsers reject it (#1350) | Alon Zakai | 2018-01-09 | 1 | -1/+8 |
* | Fix reading breaks to the function exit (#1304) | Alon Zakai | 2017-11-21 | 1 | -1/+0 |
* | name function imports using name section (#1290) | Alon Zakai | 2017-11-21 | 1 | -2/+2 |
* | Emit binary function index in comment in text format, for convenience (#1232) | Alon Zakai | 2017-10-20 | 1 | -2/+2 |
* | Optimize wasm reading (#1202) | Alon Zakai | 2017-09-28 | 1 | -0/+1 |
* | Avoid new blocks in binary reading/writing (#1165) | Alon Zakai | 2017-09-12 | 1 | -2/+4 |
* | Const hoisting (#1176) | Alon Zakai | 2017-09-12 | 1 | -1/+1 |
* | Add support for sign-extension operators from threading proposal (#1167) | Derek Schuff | 2017-09-06 | 1 | -0/+6 |
* | Add support for atomic wait and wake operators (#1140) | Derek Schuff | 2017-08-24 | 1 | -0/+8 |
* | Ignore unreachable code in wasm binaries (#1122) | Alon Zakai | 2017-08-22 | 1 | -0/+6 |
* | Emit optimal-size LEBs in section/subsection/function body sizes (#1128) | Alon Zakai | 2017-08-15 | 1 | -4/+22 |
* | New fuzzer (#1126) | Alon Zakai | 2017-08-11 | 1 | -0/+7 |
* | fix reading of stacky unreadable code with elements we need to drop | Alon Zakai (kripken) | 2017-08-05 | 1 | -0/+1 |
* | add the option to seek named breaks, not just taken breaks; refactor headers ... | Alon Zakai (kripken) | 2017-07-11 | 1 | -1/+0 |
* | Add IR, parsing, printing, and binary for atomic cmpxchg (#1083) | Derek Schuff | 2017-07-10 | 1 | -0/+12 |
* | Add IR, parsing and binary support for AtomicRMW instructions from wasm threa... | Derek Schuff | 2017-07-06 | 1 | -1/+49 |
* | Add atomic loads and stores (#1077) | Derek Schuff | 2017-06-28 | 1 | -3/+22 |
* | Add shared memories (#1069) | Derek Schuff | 2017-06-27 | 1 | -2/+7 |
* | Exporting/importing debug location information from .wast/.asm.js/.s formats ... | Yury Delendik | 2017-06-01 | 1 | -2/+41 |
* | Parsing fixes (#990) | Alon Zakai | 2017-05-02 | 1 | -4/+11 |
* | Extensible name section (#933) | pipcet | 2017-04-13 | 1 | -1/+8 |
* | Wasm h to cpp (#926) | jgravelle-google | 2017-03-10 | 1 | -1/+0 |
* | read unknown users sections as binary data stored on the Module (#918) | Alon Zakai | 2017-02-21 | 1 | -1/+1 |