summaryrefslogtreecommitdiff
path: root/src/wasm-js.cpp
Commit message (Expand)AuthorAgeFilesLines
* Remove interp and fix tests (#1858)Alon Zakai2019-01-081-548/+0
* Consistent spacing around the namespace keyword (#1829)Alon Zakai2018-12-151-0/+2
* Add v128 type (#1777)Thomas Lively2018-11-291-0/+1
* Remove default cases (#1757)Thomas Lively2018-11-271-1/+3
* Support 4GB Memories (#1702)Alon Zakai2018-10-151-2/+2
* Unify imported and non-imported things (#1678)Alon Zakai2018-09-191-63/+43
* Some simple integer math opts (#1504)Alon Zakai2018-04-111-5/+5
* Rename WasmType => Type (#1398)Alon Zakai2018-02-021-9/+9
* Added the ability to run specific optimization passes to binaryen-c/.js (#1252)Daniel Wirtz2017-10-301-1/+1
* fix interpreted code from wasm.js (#1043)Alon Zakai2017-06-121-2/+2
* Update binaryen-c/binaryen.js, fixes #1028, fixes #1029 (#1030)Daniel Wirtz2017-06-071-2/+2
* --no-js-ffi opt to disable JS FFI mangling. (#984)Joel Martin2017-05-011-1/+1
* New binaryen.js (#922)Alon Zakai2017-03-241-2/+5
* Wasm h to cpp (#926)jgravelle-google2017-03-101-2/+2
* asm2wasm debuginfo (#895)Alon Zakai2017-02-071-1/+2
* handle imports in tables in interpreterAlon Zakai2016-12-071-3/+12
* update wasm-js.cpp code for asm2wasm constructor change (#793)Alon Zakai2016-10-201-1/+1
* Add support for i64.store[N] (#789)jgravelle-google2016-10-191-4/+4
* Refactor Import::Kind and Export::Kind into an ExternalKind enum class (#725)Alon Zakai2016-10-031-4/+4
* asm2wasm i64 support (#723)Alon Zakai2016-09-301-1/+1
* import tableAlon Zakai2016-09-071-16/+35
* import memory #684Alon Zakai2016-09-071-5/+24
* use globals in asm2wasmAlon Zakai2016-09-071-20/+22
* call_indirect is now structural, so no need to pass the type name aroundAlon Zakai2016-09-071-3/+2
* add drop and tee expressionsAlon Zakai2016-09-071-2/+2
* offset support in tableAlon Zakai2016-08-151-8/+60
* support expressions in segment offsetsAlon Zakai2016-08-121-1/+1
* update wasm.js, and stop optimizing in asm2wasm in wasm.jsAlon Zakai2016-06-291-6/+3
* store locals in a vector in the interpreter and update wasm.js. also fix addr...Alon Zakai2016-05-181-4/+6
* Fixes wasm-js build after Address and SExpressionWasmBuilder refactoring. (#514)Yury Delendik2016-05-171-14/+11
* Fix the maximum memory size to be valid. (#492)Dan Gohman2016-05-131-2/+2
* Be more careful when loading i64 in wasm-js glue, we had a bug where the bits...Alon Zakai2016-05-081-10/+13
* Fix zero-extension in i64.load32_u.Dan Gohman2016-04-271-4/+4
* update wasm.jsAlon Zakai2016-04-181-2/+2
* remove the AllocatingModule class, and just make Module have allocations. the...Alon Zakai2016-04-181-4/+4
* add debug param for SExpressionWasmBuilderAlon Zakai2016-04-041-1/+1
* add apis for accessing module elementsAlon Zakai2016-04-041-9/+6
* handle unaligned i64 loads in wasm-js.cppAlon Zakai2016-04-041-1/+15
* verify imports are valid in wasm.js, do not wait to abort if/when they are ca...Alon Zakai2016-04-011-0/+12
* fix wasm.js loads of aligned i64sAlon Zakai2016-03-301-0/+4
* fix wasm.js loads of i64 that read <8 bytesAlon Zakai2016-03-301-8/+9
* add function stack printing in interpreterAlon Zakai2016-03-231-0/+12
* update wasm.jsAlon Zakai2016-03-211-1/+1
* finish wasm-binary method and update emscriptenAlon Zakai2016-03-121-2/+2
* refactor wasm.js and prepare for loading and interpreting binariesAlon Zakai2016-03-121-9/+32
* Make initial and max memory sizes be in pages instead of bytesDerek Schuff2016-03-091-3/+13
* remove optimization for interpreter memory generation, make it always return ...Alon Zakai2016-03-041-12/+9
* fix unaligned wasm.js load/storeAlon Zakai2016-02-191-2/+3
* handle aligned and unaligned int64 store in wasm.jsAlon Zakai2016-02-191-14/+20
* make wasm.js tolerate wrong alignments, as per the wasm specAlon Zakai2016-02-191-4/+3