Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [wasm2js] Use native JavaScript Math.trunc (#3329) | Max Graey | 2020-11-10 | 1 | -0/+1 |
| | |||||
* | wasm2js: Remove global dict arguments to asmFunc (#3325) | Sam Clegg | 2020-11-05 | 1 | -26/+13 |
| | |||||
* | wasm2js: Skip heap creation in the absence of wasm memory. NFC (#3167) | Sam Clegg | 2020-09-24 | 1 | -11/+16 |
| | | | | | Also, format the asmFunc call to make it more readable in the ES6 modules case. | ||||
* | wasm2js: Support exported tables (#3152) | Sam Clegg | 2020-09-21 | 1 | -1/+0 |
| | |||||
* | wasm2js: Sign-extend support (#2949) | Alon Zakai | 2020-07-10 | 1 | -0/+43 |
The usual "trick" to extend: shift left so the sign bit in the small integer is now the sign bit in a 32-bit integer, then shift right to spread that sign bit out and return the lower bits to their proper place, (x << 24) >> 24. |