summaryrefslogtreecommitdiff
path: root/test/wasm2js/dynamicLibrary.2asm.js
Commit message (Collapse)AuthorAgeFilesLines
* wasm2js: optimize away unneeded load coercions (#2107)Alon Zakai2019-05-151-0/+1
|
* wasm2js: optimize loads (#2085)Alon Zakai2019-05-031-1/+0
| | | | When loading a boolean, prefer the signed heap (which is more commonly used, and may be faster). We never use HEAPU32 (HEAP32 is always enough), just remove it.
* wasm2js: support non-constant indexes for memory and table segments (#2055)Alon Zakai2019-04-251-0/+68
Mostly what we need for dynamic linking, at least on the binaryen side.