summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* pass buffer to instantiateModuleAlon Zakai2016-03-041-1/+1
|
* WASM => WasmAlon Zakai2016-03-041-8/+2
|
* use lookupImport directlyAlon Zakai2016-03-041-1/+1
|
* move to more unification of import handling in interpreter and native pathsAlon Zakai2016-03-041-38/+28
|
* support memory segments in wasm modules, which we get if the wasm backend ↵Alon Zakai2016-03-041-2/+4
| | | | was used
* fix providedTotalMemory setting, must be before it is usedAlon Zakai2016-03-041-2/+2
|
* remove optimization for interpreter memory generation, make it always return ↵Alon Zakai2016-03-041-12/+9
| | | | a memory like in the native code path
* fix mergeMemoryAlon Zakai2016-03-041-4/+6
|
* update select changes in specAlon Zakai2016-03-022-5/+5
|
* fix assertion in interpreter that was too strong - we can have blocks with ↵Alon Zakai2016-03-021-3/+7
| | | | no return type, but that still end up returning a type due to a branch
* Merge pull request #215 from WebAssembly/postorderAlon Zakai2016-03-011-67/+92
|\ | | | | Postorder
| * switch to postorderAlon Zakai2016-02-261-67/+92
| |
* | Merge pull request #204 from mbebenita/print-compactAlon Zakai2016-02-294-74/+103
|\ \ | |/ |/| Compact printing.
| * Remove MinifiedPrinter from the header file.Michael2016-02-232-9/+9
| |
| * Whitespace removal.Michael2016-02-224-74/+103
| |
* | support function indexes in tablesAlon Zakai2016-02-251-1/+8
| |
* | Merge pull request #212 from WebAssembly/grow-memory-returnsAlon Zakai2016-02-232-2/+3
|\ \ | | | | | | Grow memory returns a value now
| * | grow memory returns a value now, and we can update the spec tests after ↵Alon Zakai2016-02-232-2/+3
| | | | | | | | | | | | doing that
* | | Merge pull request #210 from mbebenita/fix-parsingAlon Zakai2016-02-231-1/+1
|\ \ \ | |/ / |/| / | |/ Bug fix and adds printing / parsing tests.
| * Bug fix and adds printing / parsing tests.Michael2016-02-221-1/+1
| |
* | Fix switch offsets.Michael2016-02-231-11/+16
|/
* document that env.exit support is a hack for torture testsAlon Zakai2016-02-221-0/+1
|
* Merge pull request #209 from WebAssembly/asm-fixesAlon Zakai2016-02-215-11/+12
|\ | | | | Asm fixes
| * support asm.js ceilAlon Zakai2016-02-212-2/+8
| |
| * debugging tweaksAlon Zakai2016-02-213-9/+4
| |
* | Merge pull request #206 from WebAssembly/align-implicitAlon Zakai2016-02-202-4/+4
|\ \ | |/ |/| Don't print the default alignment
| * do not print alignment if it is the implicit default, which is the number of ↵Alon Zakai2016-02-202-4/+4
| | | | | | | | bytes
* | print out total nodes in --metricsAlon Zakai2016-02-201-2/+4
|/
* 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
|
* ensure a stable sort in ReorderLocalsAlon Zakai2016-02-191-1/+4
|
* Remove empty function.Michael2016-02-191-4/+0
|
* Reorder locals.Michael2016-02-194-1/+58
|
* fix the topmost/switch label in LowerCaseAlon Zakai2016-02-181-1/+2
|
* fix copyright dateAlon Zakai2016-02-181-1/+1
|
* LowerCase passAlon Zakai2016-02-181-0/+102
|
* overload wasm printing in std namespaceAlon Zakai2016-02-171-0/+12
|
* remove --print-before and --print-after flags, since we now have --printAlon Zakai2016-02-171-34/+2
|
* fix dateAlon Zakai2016-02-171-1/+1
|
* add wasm-printing.hAlon Zakai2016-02-178-10/+51
|
* move printing to a passAlon Zakai2016-02-1710-530/+530
|
* memory max is optional, don't emit it when not necessaryAlon Zakai2016-02-171-1/+1
|
* send flattened output to v8 and structed to sm. send only functions to bothAlon Zakai2016-02-151-4/+6
|
* add sm code to parallel v8 code in integrateWasmJSAlon Zakai2016-02-151-5/+11
|
* Merge pull request #196 from WebAssembly/spec-startAlon Zakai2016-02-124-50/+94
|\ | | | | Fully support start in wasm modules
| * call start method in interpreterAlon Zakai2016-02-121-0/+4
| |
| * add start to binary formatAlon Zakai2016-02-121-1/+16
| |