| Commit message (Expand) | Author | Age | Files | Lines |
* | Massive renaming (#1855) | Thomas Lively | 2019-01-07 | 1 | -337/+337 |
* | Rename tableBase/memoryBase to __table_base/__memory_base (#1731) | Sam Clegg | 2018-11-08 | 1 | -3/+3 |
* | Emit imports before defined things in text format (#1715) | Alon Zakai | 2018-11-01 | 1 | -1/+1 |
* | Unify imported and non-imported things (#1678) | Alon Zakai | 2018-09-19 | 1 | -2/+2 |
* | fix sign detection of a floating-point mod ; fixes kripken/emscripten#7123 (#... | Alon Zakai | 2018-09-15 | 1 | -10/+36 |
* | Optimize out memory and table when possible (#1352) | Alon Zakai | 2018-01-10 | 1 | -4/+4 |
* | Update call_indirect text syntax to match spec update (#1281) | Derek Schuff | 2017-11-13 | 1 | -8/+8 |
* | Emit binary function index in comment in text format, for convenience (#1232) | Alon Zakai | 2017-10-20 | 1 | -79/+79 |
* | optimize helper funcs (like i32-div) if created in asm2wasm, so they are cons... | Alon Zakai | 2017-10-04 | 1 | -0/+13 |
* | precompute-propagate pass (#1179) | Alon Zakai | 2017-09-12 | 1 | -22/+76 |
* | Improve and enable inlining pass (#966) | Alon Zakai | 2017-08-07 | 1 | -0/+5 |
* | fix import type detection of calls in comma operators; when the parent is a c... | Alon Zakai | 2017-07-27 | 1 | -0/+18 |
* | fix f32 frem in asm2wasm #1105 (#1106) | Alon Zakai | 2017-07-20 | 1 | -0/+20 |
* | fix merge-blocks logic in call, call_indirect, select, we need to avoid any d... | Alon Zakai (kripken) | 2017-07-14 | 1 | -0/+19 |
* | Support new result syntax for if/loop/block (#1047) | Sam Clegg | 2017-06-12 | 1 | -23/+23 |
* | asm2wasm: properly infer return type of a call inside a sequence (#1006) | Alon Zakai | 2017-05-09 | 1 | -2/+26 |
* | fix autoDrop, now that we properly set block types, unreachable can easily ha... | Alon Zakai | 2017-05-09 | 1 | -0/+39 |
* | handle unsigned float-to-int properly in asm2wasm | Alon Zakai (kripken) | 2017-04-18 | 1 | -1/+1 |
* | add test for f64-to-int signed/unsigned | Alon Zakai (kripken) | 2017-04-18 | 1 | -0/+24 |
* | use a single space for pretty printing of wasts, so massive wasts are less un... | Alon Zakai | 2017-03-09 | 1 | -1755/+1755 |
* | stop doing dce in -O0, which was just need temporarily while browsers figure ... | Alon Zakai | 2017-03-06 | 1 | -0/+6 |
* | add sqrt test (#912) | Alon Zakai | 2017-02-16 | 1 | -0/+24 |
* | DCE even in -O0 (#884) | Alon Zakai | 2017-01-19 | 1 | -6/+0 |
* | emit globals before table and memory, because they may use a global for their... | Alon Zakai | 2016-12-30 | 1 | -1/+1 |
* | lower min and max in asm2wasm in wasm f*.min/max | Alon Zakai | 2016-12-07 | 1 | -0/+30 |
* | make legalizeJSInterface handle f32s as well, which are not valid in asm.js ffis | Alon Zakai | 2016-12-07 | 1 | -3/+43 |
* | convert ftCall_* and mftCall_* into table calls | Alon Zakai | 2016-12-07 | 1 | -0/+18 |
* | support asm.js numeric exports by creating a global and exporting that | Alon Zakai | 2016-12-07 | 1 | -0/+2 |
* | use tableBase for the table segments | Alon Zakai | 2016-12-07 | 1 | -1/+1 |
* | support assigns of f32 to HEAP64 in asm2wasm (#830) | Alon Zakai | 2016-11-07 | 1 | -0/+11 |
* | handle a label setting inside the if-body of a label value in RelooperJumpThr... | Alon Zakai | 2016-11-06 | 1 | -0/+72 |
* | Fixes fround of an unsigned integer (#821) | Alon Zakai | 2016-11-04 | 1 | -0/+14 |
* | fix large f32 consts, fixes #817 (#820) | Alon Zakai | 2016-11-01 | 1 | -0/+5 |
* | Optimize out bool & 1 (#804) | Alon Zakai | 2016-10-25 | 1 | -6/+14 |
* | run remove-unused-functions by default | Alon Zakai | 2016-10-14 | 1 | -0/+39 |
* | Change print order of top-level module components (#751) | Derek Schuff | 2016-10-07 | 1 | -3/+3 |
* | Require unique names in binaryen IR (#746) | Alon Zakai | 2016-10-06 | 1 | -75/+75 |
* | don't create an unnecessary duplicate block in asm2wasm switches, when there ... | Alon Zakai | 2016-10-03 | 1 | -71/+63 |
* | Print the name of memory along with size (#720) | Derek Schuff | 2016-09-28 | 1 | -1/+1 |
* | Type check block/loop/if sigs (#717) | Alon Zakai | 2016-09-28 | 1 | -2/+2 |
* | optimize if(const) | Alon Zakai | 2016-09-24 | 1 | -6/+6 |
* | precompute void expressions too | Alon Zakai | 2016-09-24 | 1 | -2/+2 |
* | replace two drops in an if-else with one on the if | Alon Zakai | 2016-09-23 | 1 | -0/+19 |
* | autoDrop fix | Alon Zakai | 2016-09-23 | 1 | -18/+38 |
* | memory and table printing fixes | Alon Zakai | 2016-09-20 | 1 | -4/+2 |
* | globals mutability fixes | Alon Zakai | 2016-09-19 | 1 | -7/+12 |
* | block signatures | Alon Zakai | 2016-09-16 | 1 | -20/+20 |
* | call_import changes: no more call_import, shared index space with functions | Alon Zakai | 2016-09-16 | 1 | -39/+39 |
* | drop if-else arms as necessary | Alon Zakai | 2016-09-13 | 1 | -2/+46 |
* | update br type when turning it into a br_if in remove-unused-brs | Alon Zakai | 2016-09-13 | 1 | -0/+28 |