Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | store f32 properly in wasm-js | Alon Zakai | 2015-11-18 | 1 | -1/+1 |
| | |||||
* | clean up + coercion handling code, and make it work on +HEAPF32 | Alon Zakai | 2015-11-18 | 1 | -15/+13 |
| | |||||
* | fix call types based on coercions, but do not modify other things automatically | Alon Zakai | 2015-11-18 | 1 | -2/+8 |
| | |||||
* | improve interpreter debugging | Alon Zakai | 2015-11-18 | 1 | -4/+8 |
| | |||||
* | mark host types | Alon Zakai | 2015-11-18 | 2 | -0/+15 |
| | |||||
* | set call types in a post-pass in s-parser | Alon Zakai | 2015-11-18 | 1 | -0/+7 |
| | |||||
* | return float in wasm-js load of float | Alon Zakai | 2015-11-17 | 1 | -1/+1 |
| | |||||
* | add asserts | Alon Zakai | 2015-11-17 | 1 | -0/+3 |
| | |||||
* | handle fround call coercion | Alon Zakai | 2015-11-17 | 1 | -1/+4 |
| | |||||
* | fround improvements | Alon Zakai | 2015-11-17 | 1 | -2/+33 |
| | |||||
* | handle + as a float-to-double conversion | Alon Zakai | 2015-11-17 | 1 | -0/+7 |
| | |||||
* | parser update from emscripten | Alon Zakai | 2015-11-17 | 1 | -0/+10 |
| | |||||
* | do asm2wasm f64 to i32 conversions in js, so we do not fault, as asm.js expects | Alon Zakai | 2015-11-17 | 2 | -1/+25 |
| | |||||
* | refine trap texts | Alon Zakai | 2015-11-17 | 1 | -4/+4 |
| | |||||
* | annotate traps | Alon Zakai | 2015-11-17 | 3 | -37/+38 |
| | |||||
* | port detectSign from emscripten asm optimizer, and use it | Alon Zakai | 2015-11-17 | 3 | -3/+49 |
| | |||||
* | return undefined from wasm.js when return type is none | Alon Zakai | 2015-11-17 | 1 | -7/+8 |
| | |||||
* | implement was function table by concatenating all asm tables, and ↵ | Alon Zakai | 2015-11-17 | 1 | -18/+29 |
| | | | | offsetting. this supports all asm function table usages without hacks | ||||
* | ASM_FLOAT | Alon Zakai | 2015-11-16 | 1 | -0/+2 |
| | |||||
* | support fround(0) global constants | Alon Zakai | 2015-11-16 | 1 | -0/+9 |
| | |||||
* | handle imports with a return type | Alon Zakai | 2015-11-16 | 1 | -1/+5 |
| | |||||
* | emit a special call to a special import to handle floating-point remainder, ↵ | Alon Zakai | 2015-11-16 | 2 | -3/+32 |
| | | | | which exists in asm.js but not in wasm | ||||
* | handle import calls with no parent node | Alon Zakai | 2015-11-16 | 1 | -9/+13 |
| | |||||
* | emit switches in native builds, and offset the switch value | Alon Zakai | 2015-11-16 | 1 | -6/+27 |
| | |||||
* | fix switch printing | Alon Zakai | 2015-11-16 | 1 | -3/+4 |
| | |||||
* | use the new BINARYEN option in emscripten | Alon Zakai | 2015-11-16 | 1 | -1/+1 |
| | |||||
* | comments | Alon Zakai | 2015-11-15 | 1 | -0/+15 |
| | |||||
* | docs | Alon Zakai | 2015-11-13 | 1 | -0/+4 |
| | |||||
* | remove unneeded emscripten optimizer.cpp file | Alon Zakai | 2015-11-13 | 1 | -3851/+0 |
| | |||||
* | set seq type properly in asm2wasm | Alon Zakai | 2015-11-13 | 1 | -0/+1 |
| | |||||
* | add descriptions to passes | Alon Zakai | 2015-11-13 | 5 | -22/+25 |
| | |||||
* | add shell tests | Alon Zakai | 2015-11-13 | 1 | -3/+6 |
| | |||||
* | pass support | Alon Zakai | 2015-11-13 | 9 | -44/+398 |
| | |||||
* | Merge branch 'binaryen' | Alon Zakai | 2015-11-12 | 4 | -15/+57 |
|\ | |||||
| * | max memory is 32-bit, for now | Alon Zakai | 2015-11-12 | 1 | -1/+1 |
| | | |||||
| * | add simple example | Alon Zakai | 2015-11-11 | 3 | -7/+18 |
| | | |||||
| * | improve printing | Alon Zakai | 2015-11-11 | 1 | -2/+4 |
| | | |||||
| * | update env var | Alon Zakai | 2015-11-11 | 1 | -1/+1 |
| | | |||||
| * | argument handling in shell | Alon Zakai | 2015-11-11 | 1 | -4/+33 |
| | | |||||
* | | comment | Alon Zakai | 2015-11-11 | 1 | -1/+2 |
|/ | |||||
* | use Name::fromInt | Alon Zakai | 2015-11-11 | 1 | -8/+4 |
| | |||||
* | move validation to a side .h file, with a full WasmWalker | Alon Zakai | 2015-11-11 | 3 | -81/+139 |
| | |||||
* | validate offsets in s-parser, remove hack | Alon Zakai | 2015-11-11 | 1 | -1/+3 |
| | |||||
* | don't allow direct access to the vectors on the Module object | Alon Zakai | 2015-11-11 | 4 | -8/+11 |
| | |||||
* | comment | Alon Zakai | 2015-11-11 | 1 | -1/+2 |
| | |||||
* | don't store caseMap in Switch, it's a pure optimization | Alon Zakai | 2015-11-11 | 4 | -15/+11 |
| | |||||
* | break => br | Alon Zakai | 2015-11-11 | 1 | -1/+1 |
| | |||||
* | nan fixes; test suite fully passes | Alon Zakai | 2015-11-11 | 2 | -5/+5 |
| | |||||
* | more nan fixes | Alon Zakai | 2015-11-11 | 2 | -25/+63 |
| | |||||
* | start to handle new nan rules | Alon Zakai | 2015-11-11 | 1 | -18/+44 |
| |