| Commit message (Expand) | Author | Age | Files | Lines |
* | Some simple integer math opts (#1504) | Alon Zakai | 2018-04-11 | 1 | -5/+5 |
* | Rename WasmType => Type (#1398) | Alon Zakai | 2018-02-02 | 1 | -9/+9 |
* | Added the ability to run specific optimization passes to binaryen-c/.js (#1252) | Daniel Wirtz | 2017-10-30 | 1 | -1/+1 |
* | fix interpreted code from wasm.js (#1043) | Alon Zakai | 2017-06-12 | 1 | -2/+2 |
* | Update binaryen-c/binaryen.js, fixes #1028, fixes #1029 (#1030) | Daniel Wirtz | 2017-06-07 | 1 | -2/+2 |
* | --no-js-ffi opt to disable JS FFI mangling. (#984) | Joel Martin | 2017-05-01 | 1 | -1/+1 |
* | New binaryen.js (#922) | Alon Zakai | 2017-03-24 | 1 | -2/+5 |
* | Wasm h to cpp (#926) | jgravelle-google | 2017-03-10 | 1 | -2/+2 |
* | asm2wasm debuginfo (#895) | Alon Zakai | 2017-02-07 | 1 | -1/+2 |
* | handle imports in tables in interpreter | Alon Zakai | 2016-12-07 | 1 | -3/+12 |
* | update wasm-js.cpp code for asm2wasm constructor change (#793) | Alon Zakai | 2016-10-20 | 1 | -1/+1 |
* | Add support for i64.store[N] (#789) | jgravelle-google | 2016-10-19 | 1 | -4/+4 |
* | Refactor Import::Kind and Export::Kind into an ExternalKind enum class (#725) | Alon Zakai | 2016-10-03 | 1 | -4/+4 |
* | asm2wasm i64 support (#723) | Alon Zakai | 2016-09-30 | 1 | -1/+1 |
* | import table | Alon Zakai | 2016-09-07 | 1 | -16/+35 |
* | import memory #684 | Alon Zakai | 2016-09-07 | 1 | -5/+24 |
* | use globals in asm2wasm | Alon Zakai | 2016-09-07 | 1 | -20/+22 |
* | call_indirect is now structural, so no need to pass the type name around | Alon Zakai | 2016-09-07 | 1 | -3/+2 |
* | add drop and tee expressions | Alon Zakai | 2016-09-07 | 1 | -2/+2 |
* | offset support in table | Alon Zakai | 2016-08-15 | 1 | -8/+60 |
* | support expressions in segment offsets | Alon Zakai | 2016-08-12 | 1 | -1/+1 |
* | update wasm.js, and stop optimizing in asm2wasm in wasm.js | Alon Zakai | 2016-06-29 | 1 | -6/+3 |
* | store locals in a vector in the interpreter and update wasm.js. also fix addr... | Alon Zakai | 2016-05-18 | 1 | -4/+6 |
* | Fixes wasm-js build after Address and SExpressionWasmBuilder refactoring. (#514) | Yury Delendik | 2016-05-17 | 1 | -14/+11 |
* | Fix the maximum memory size to be valid. (#492) | Dan Gohman | 2016-05-13 | 1 | -2/+2 |
* | Be more careful when loading i64 in wasm-js glue, we had a bug where the bits... | Alon Zakai | 2016-05-08 | 1 | -10/+13 |
* | Fix zero-extension in i64.load32_u. | Dan Gohman | 2016-04-27 | 1 | -4/+4 |
* | update wasm.js | Alon Zakai | 2016-04-18 | 1 | -2/+2 |
* | remove the AllocatingModule class, and just make Module have allocations. the... | Alon Zakai | 2016-04-18 | 1 | -4/+4 |
* | add debug param for SExpressionWasmBuilder | Alon Zakai | 2016-04-04 | 1 | -1/+1 |
* | add apis for accessing module elements | Alon Zakai | 2016-04-04 | 1 | -9/+6 |
* | handle unaligned i64 loads in wasm-js.cpp | Alon Zakai | 2016-04-04 | 1 | -1/+15 |
* | verify imports are valid in wasm.js, do not wait to abort if/when they are ca... | Alon Zakai | 2016-04-01 | 1 | -0/+12 |
* | fix wasm.js loads of aligned i64s | Alon Zakai | 2016-03-30 | 1 | -0/+4 |
* | fix wasm.js loads of i64 that read <8 bytes | Alon Zakai | 2016-03-30 | 1 | -8/+9 |
* | add function stack printing in interpreter | Alon Zakai | 2016-03-23 | 1 | -0/+12 |
* | update wasm.js | Alon Zakai | 2016-03-21 | 1 | -1/+1 |
* | finish wasm-binary method and update emscripten | Alon Zakai | 2016-03-12 | 1 | -2/+2 |
* | refactor wasm.js and prepare for loading and interpreting binaries | Alon Zakai | 2016-03-12 | 1 | -9/+32 |
* | Make initial and max memory sizes be in pages instead of bytes | Derek Schuff | 2016-03-09 | 1 | -3/+13 |
* | remove optimization for interpreter memory generation, make it always return ... | Alon Zakai | 2016-03-04 | 1 | -12/+9 |
* | fix unaligned wasm.js load/store | Alon Zakai | 2016-02-19 | 1 | -2/+3 |
* | handle aligned and unaligned int64 store in wasm.js | Alon Zakai | 2016-02-19 | 1 | -14/+20 |
* | make wasm.js tolerate wrong alignments, as per the wasm spec | Alon Zakai | 2016-02-19 | 1 | -4/+3 |
* | support 64-bit stores in wasm.js | Alon Zakai | 2016-02-19 | 1 | -0/+5 |
* | add unaligned memory accesses to wasm.js | Alon Zakai | 2016-02-19 | 1 | -3/+64 |
* | update wasm.js | Alon Zakai | 2016-02-08 | 1 | -3/+3 |
* | relax wasm.js assertions on alignment, and update wasm.js build | Alon Zakai | 2016-02-01 | 1 | -2/+2 |
* | refactor FunctionType to always be accessed from the Module's central store, ... | Alon Zakai | 2016-01-11 | 1 | -1/+1 |
* | asm2wasm: use support's command-line | JF Bastien | 2016-01-11 | 1 | -1/+1 |