Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | stack fixes | Alon Zakai | 2015-12-11 | 1 | -5/+31 | |
| | ||||||
* | almost enough to parse basics.s | Alon Zakai | 2015-12-10 | 1 | -4/+41 | |
| | ||||||
* | control flow in s2wasm | Alon Zakai | 2015-12-10 | 1 | -10/+49 | |
| | ||||||
* | more binaries in s2wasm | Alon Zakai | 2015-12-10 | 1 | -1/+12 | |
| | ||||||
* | .s progress | Alon Zakai | 2015-12-10 | 1 | -20/+56 | |
| | ||||||
* | parse call | Alon Zakai | 2015-12-10 | 1 | -2/+63 | |
| | ||||||
* | process on s2wasm, and first working testcase | Alon Zakai | 2015-12-10 | 4 | -1/+263 | |
| | ||||||
* | refactor const parsing | Alon Zakai | 2015-12-10 | 2 | -137/+154 | |
| | ||||||
* | update comments | Alon Zakai | 2015-12-07 | 1 | -2/+1 | |
| | ||||||
* | remove old comment | Alon Zakai | 2015-12-07 | 1 | -1/+1 | |
| | ||||||
* | remove more unneeded code | Alon Zakai | 2015-12-07 | 1 | -33/+2 | |
| | ||||||
* | update comments | Alon Zakai | 2015-12-07 | 1 | -2/+0 | |
| | ||||||
* | remove old code | Alon Zakai | 2015-12-07 | 1 | -14/+0 | |
| | ||||||
* | fix numeric names in wasm2asm | Alon Zakai | 2015-12-07 | 1 | -3/+9 | |
| | ||||||
* | import Math.clz32 | Alon Zakai | 2015-12-07 | 1 | -0/+1 | |
| | ||||||
* | fix sign-aware div/mod | Alon Zakai | 2015-12-07 | 1 | -4/+4 | |
| | ||||||
* | fix double mul | Alon Zakai | 2015-12-07 | 1 | -1/+7 | |
| | ||||||
* | fix double eq and ne | Alon Zakai | 2015-12-07 | 1 | -2/+14 | |
| | ||||||
* | fix vector of scoped temps | Alon Zakai | 2015-12-07 | 1 | -11/+15 | |
| | ||||||
* | import Math.abs in wasm2asm output | Alon Zakai | 2015-12-07 | 1 | -0/+1 | |
| | ||||||
* | fix signed int-to-double | Alon Zakai | 2015-12-07 | 1 | -1/+1 | |
| | ||||||
* | assume flattened imports in wasm2asm output | Alon Zakai | 2015-12-07 | 1 | -1/+2 | |
| | ||||||
* | emit Math.fround in wasm2asm | Alon Zakai | 2015-12-07 | 1 | -0/+1 | |
| | ||||||
* | don't quote keys in object printing when not necessary | Alon Zakai | 2015-12-07 | 1 | -3/+14 | |
| | ||||||
* | emit exports in wasm2asm | Alon Zakai | 2015-12-07 | 1 | -1/+10 | |
| | ||||||
* | emit asm function tables in wasm2asm | Alon Zakai | 2015-12-07 | 2 | -0/+45 | |
| | ||||||
* | handle imports in wasm2asm | Alon Zakai | 2015-12-07 | 1 | -0/+16 | |
| | ||||||
* | import Math.imul | Alon Zakai | 2015-12-07 | 1 | -14/+30 | |
| | ||||||
* | use Math.imul in wasm2asm | Alon Zakai | 2015-12-07 | 2 | -1/+2 | |
| | ||||||
* | emit function table calls in wasm2asm | Alon Zakai | 2015-12-07 | 3 | -14/+47 | |
| | ||||||
* | coerce returns in wasm2asm | Alon Zakai | 2015-12-06 | 1 | -2/+2 | |
| | ||||||
* | sign eq and ne in wasm2asm | Alon Zakai | 2015-12-06 | 1 | -2/+2 | |
| | ||||||
* | coerce loads in wasm2asm | Alon Zakai | 2015-12-06 | 1 | -5/+8 | |
| | ||||||
* | emit heap views in wasm2asm | Alon Zakai | 2015-12-06 | 3 | -0/+43 | |
| | ||||||
* | emit 'use asm' in wasm2asm | Alon Zakai | 2015-12-06 | 2 | -0/+2 | |
| | ||||||
* | handle nested blocks with returns in wasm2asm | Alon Zakai | 2015-12-06 | 1 | -6/+1 | |
| | ||||||
* | if is not statable | Alon Zakai | 2015-12-06 | 1 | -1/+1 | |
| | ||||||
* | ensure if branches are statements | Alon Zakai | 2015-12-06 | 1 | -2/+2 | |
| | ||||||
* | fix if_else return value in wasm2asm | Alon Zakai | 2015-12-06 | 1 | -3/+3 | |
| | ||||||
* | fix do-while label | Alon Zakai | 2015-12-05 | 1 | -2/+3 | |
| | ||||||
* | avoid unnecessary return | Alon Zakai | 2015-12-05 | 1 | -1/+5 | |
| | ||||||
* | use flattenAppend in the top level of functions | Alon Zakai | 2015-12-05 | 1 | -13/+16 | |
| | ||||||
* | handle negative zero in wasm2asm | Alon Zakai | 2015-12-05 | 1 | -2/+11 | |
| | ||||||
* | fix wasm2asm switch | Alon Zakai | 2015-12-05 | 1 | -2/+2 | |
| | ||||||
* | flattenAppend | Alon Zakai | 2015-12-05 | 1 | -21/+25 | |
| | ||||||
* | use visitAndAssign in more places | Alon Zakai | 2015-12-05 | 1 | -3/+3 | |
| | ||||||
* | fix binary in wasm2asm | Alon Zakai | 2015-12-05 | 1 | -7/+2 | |
| | ||||||
* | coerce call arguments in wasm2asm | Alon Zakai | 2015-12-05 | 1 | -3/+3 | |
| | ||||||
* | start to fix up invalid names for js in wasm2asm | Alon Zakai | 2015-12-05 | 1 | -1/+12 | |
| | ||||||
* | call coercions in wasm2asm | Alon Zakai | 2015-12-05 | 1 | -5/+6 | |
| |