summaryrefslogtreecommitdiff
path: root/src/wasm-js.cpp
Commit message (Expand)AuthorAgeFilesLines
* 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
* store f32 properly in wasm-jsAlon Zakai2015-11-181-1/+1
* return float in wasm-js load of floatAlon Zakai2015-11-171-1/+1
* annotate trapsAlon Zakai2015-11-171-4/+4
* return undefined from wasm.js when return type is noneAlon Zakai2015-11-171-7/+8
* don't allow direct access to the vectors on the Module objectAlon Zakai2015-11-111-1/+2
* commentsAlon Zakai2015-11-111-7/+16
* fix export calls in wasm.jsAlon Zakai2015-11-071-3/+4
* call exports, not functions, from the outsideAlon Zakai2015-11-061-3/+3
* host opsAlon Zakai2015-11-061-0/+4
* refactor data structuresAlon Zakai2015-11-051-1/+1
* op type fixesAlon Zakai2015-11-051-1/+1
* refactor memory bounds checksAlon Zakai2015-11-051-4/+2
* use a js exception in wasm-js trapAlon Zakai2015-11-051-3/+4
* trap on i2f overflowAlon Zakai2015-11-041-0/+5
* memoryAlon Zakai2015-11-041-1/+1
* factor out float_Alon Zakai2015-11-031-2/+2
* commentsAlon Zakai2015-11-031-5/+3
* add memorySize to ModuleAlon Zakai2015-11-031-0/+1
* fix load&storeAlon Zakai2015-11-021-13/+13
* move wasm debug printing behind flagAlon Zakai2015-11-021-1/+3
* wasm.js debuggingAlon Zakai2015-11-021-1/+12
* fix import call return type handlingAlon Zakai2015-11-021-2/+9
* save module and base of mapped imported globals, and fix writing of mapped im...Alon Zakai2015-11-011-5/+21
* refactor a lookupImport methodAlon Zakai2015-11-011-12/+5
* handle float and void types in js<->wasm callsAlon Zakai2015-11-011-1/+5
* add tests for calls to js libraries and calls with the wrong # of argumentsAlon Zakai2015-11-011-15/+6
* fix imports from global.MathAlon Zakai2015-11-011-1/+13
* fix JSExternalInterface::callImportAlon Zakai2015-11-011-1/+1
* not not free builder - we stil need its allocatorAlon Zakai2015-11-011-4/+4
* better error on bad # of paramsAlon Zakai2015-10-311-2/+11