Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | add memorySize to Module | Alon Zakai | 2015-11-03 | 7 | -5/+8 | |
| | ||||||
* | cleanup and emit imports | Alon Zakai | 2015-11-03 | 1 | -27/+25 | |
| | ||||||
* | refactor printFullLine | Alon Zakai | 2015-11-03 | 1 | -10/+20 | |
| | ||||||
* | rename isWasmTypeFloat | Alon Zakai | 2015-11-03 | 2 | -4/+6 | |
| | ||||||
* | refactor pretty printing code | Alon Zakai | 2015-11-03 | 2 | -66/+71 | |
| | ||||||
* | refactor arena code | Alon Zakai | 2015-11-03 | 3 | -44/+38 | |
| | ||||||
* | simplify emcc_to_wasm.js.sh | Alon Zakai | 2015-11-02 | 2 | -2/+1 | |
| | ||||||
* | add fasta test | Alon Zakai | 2015-11-02 | 3 | -0/+204 | |
| | ||||||
* | add fannkuch test | Alon Zakai | 2015-11-02 | 3 | -0/+191 | |
| | ||||||
* | add optional arguments to check.py | Alon Zakai | 2015-11-02 | 1 | -1/+6 | |
| | ||||||
* | update tests, and add working hello world test | Alon Zakai | 2015-11-02 | 3 | -12/+31 | |
| | ||||||
* | fix while (condition) loops | Alon Zakai | 2015-11-02 | 1 | -2/+3 | |
| | ||||||
* | fix load&store | Alon Zakai | 2015-11-02 | 1 | -13/+13 | |
| | ||||||
* | fix switch | Alon Zakai | 2015-11-02 | 1 | -5/+11 | |
| | ||||||
* | move wasm debug printing behind flag | Alon Zakai | 2015-11-02 | 1 | -1/+3 | |
| | ||||||
* | allow printing none literals | Alon Zakai | 2015-11-02 | 1 | -1/+1 | |
| | ||||||
* | implement switch | Alon Zakai | 2015-11-02 | 6 | -15/+152 | |
| | ||||||
* | abort on switches, for now | Alon Zakai | 2015-11-02 | 3 | -3/+7 | |
| | ||||||
* | add do-once and while-forever tests | Alon Zakai | 2015-11-02 | 3 | -0/+38 | |
| | ||||||
* | wasm.js debugging | Alon Zakai | 2015-11-02 | 1 | -1/+12 | |
| | ||||||
* | fix import call return type handling | Alon Zakai | 2015-11-02 | 1 | -2/+9 | |
| | ||||||
* | more intepreter debugging | Alon Zakai | 2015-11-02 | 1 | -3/+8 | |
| | ||||||
* | debugging support in interpreter | Alon Zakai | 2015-11-02 | 1 | -22/+52 | |
| | ||||||
* | add stack test for an imported mapped global | Alon Zakai | 2015-11-01 | 3 | -0/+8 | |
| | ||||||
* | save module and base of mapped imported globals, and fix writing of mapped ↵ | Alon Zakai | 2015-11-01 | 3 | -11/+31 | |
| | | | | imported globals | |||||
* | avoid some warnings | Alon Zakai | 2015-11-01 | 1 | -3/+12 | |
| | ||||||
* | refactor a lookupImport method | Alon Zakai | 2015-11-01 | 4 | -20/+26 | |
| | ||||||
* | tell emcc to leave <1024 for our use | Alon Zakai | 2015-11-01 | 2 | -2/+2 | |
| | ||||||
* | add mem test | Alon Zakai | 2015-11-01 | 4 | -0/+273 | |
| | ||||||
* | handle float and void types in js<->wasm calls | Alon Zakai | 2015-11-01 | 1 | -1/+5 | |
| | ||||||
* | test conversions | Alon Zakai | 2015-11-01 | 3 | -0/+101 | |
| | ||||||
* | add tests for calls to js libraries and calls with the wrong # of arguments | Alon Zakai | 2015-11-01 | 4 | -17/+24 | |
| | ||||||
* | add calls test | Alon Zakai | 2015-11-01 | 4 | -0/+50 | |
| | ||||||
* | improve unnecessary block removal | Alon Zakai | 2015-11-01 | 2 | -26/+19 | |
| | ||||||
* | fix wasm walker replacement logic | Alon Zakai | 2015-11-01 | 2 | -62/+76 | |
| | ||||||
* | don't set auto-init fields | Alon Zakai | 2015-11-01 | 1 | -5/+0 | |
| | ||||||
* | auto-init optional fields | Alon Zakai | 2015-11-01 | 1 | -2/+2 | |
| | ||||||
* | optimize away breaks at the end of a block to that same block | Alon Zakai | 2015-11-01 | 4 | -295/+174 | |
| | ||||||
* | fix do-while loops | Alon Zakai | 2015-11-01 | 4 | -22/+29 | |
| | ||||||
* | remove condition from break | Alon Zakai | 2015-11-01 | 5 | -39/+66 | |
| | ||||||
* | remove hello_world.c until it passes | Alon Zakai | 2015-11-01 | 1 | -7/+0 | |
| | ||||||
* | add control flow tests | Alon Zakai | 2015-11-01 | 5 | -0/+105 | |
| | ||||||
* | disable part of float_ops.cpp, which requires memory ops which are not ↵ | Alon Zakai | 2015-11-01 | 2 | -24/+1 | |
| | | | | tested yet | |||||
* | avoid assertions in basic ops tests | Alon Zakai | 2015-11-01 | 2 | -0/+2 | |
| | ||||||
* | fix imports from global.Math | Alon Zakai | 2015-11-01 | 2 | -4/+22 | |
| | ||||||
* | fix JSExternalInterface::callImport | Alon Zakai | 2015-11-01 | 1 | -1/+1 | |
| | ||||||
* | enable imports in emcc builds | Alon Zakai | 2015-11-01 | 2 | -2/+3 | |
| | ||||||
* | fix execution of compare on floats | Alon Zakai | 2015-11-01 | 1 | -2/+2 | |
| | ||||||
* | add float_ops testcase | Alon Zakai | 2015-11-01 | 3 | -0/+405 | |
| | ||||||
* | support .cpp files in check | Alon Zakai | 2015-11-01 | 1 | -4/+5 | |
| |