summaryrefslogtreecommitdiff
path: root/src/wasm-js.cpp
Commit message (Expand)AuthorAgeFilesLines
* 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
* support 64-bit stores in wasm.jsAlon Zakai2016-02-191-0/+5
* add unaligned memory accesses to wasm.jsAlon Zakai2016-02-191-3/+64
* update wasm.jsAlon Zakai2016-02-081-3/+3
* relax wasm.js assertions on alignment, and update wasm.js buildAlon Zakai2016-02-011-2/+2
* refactor FunctionType to always be accessed from the Module's central store, ...Alon Zakai2016-01-111-1/+1
* asm2wasm: use support's command-lineJF Bastien2016-01-111-1/+1
* refactor memory merging codeAlon Zakai2015-12-231-0/+17
* Fix the license headersJF Bastien2015-12-211-1/+15
* handle memory in load_s_expr2wasmAlon Zakai2015-11-291-0/+5
* fix wasm.js/s-expression-parsing global mappingAlon Zakai2015-11-281-19/+1
* optionally emit mappedGlobals in asm2wasm, and use that to help when parsing ...Alon Zakai2015-11-281-18/+36
* work on s-parsing in wasm.jsAlon Zakai2015-11-281-3/+19
* refactor wasm.js so that it will be able to support multiple wasm loading met...Alon Zakai2015-11-281-7/+24
* create an AllocatingModule which handles allocation for its elementsAlon Zakai2015-11-241-2/+2
* refactor memory growth code to a central locationAlon Zakai2015-11-221-21/+1
* refactor asm2wasm proprocessing into a shared locationAlon Zakai2015-11-221-43/+4
* implement growMemory in wasm.jsAlon Zakai2015-11-191-2/+14
* wasm.js memory growth fixesAlon Zakai2015-11-191-1/+1
* work towards memory growth in asm2wasm codeAlon Zakai2015-11-191-1/+23
* start to parse asm.js memory growth codeAlon Zakai2015-11-191-0/+24
* runtime debugging for wasm.jsAlon Zakai2015-11-181-30/+23
* receive TOTAL_MEMORY from emscripten in wasm.jsAlon Zakai2015-11-181-1/+3
* handle f32 params in wasm-jsAlon Zakai2015-11-181-0/+2