| Commit message (Expand) | Author | Age | Files | Lines |
* | update binary version to 0xb | Alon Zakai | 2016-04-20 | 1 | -4/+9 |
* | extensible type forms, update for design#640 (#367) | Alon Zakai | 2016-04-19 | 1 | -2/+20 |
* | update MemorySize => CurrentMemory | Alon Zakai | 2016-04-18 | 1 | -5/+5 |
* | update binary section names per latest design (#363) | Alon Zakai | 2016-04-18 | 1 | -9/+9 |
* | remove the AllocatingModule class, and just make Module have allocations. the... | Alon Zakai | 2016-04-18 | 1 | -2/+2 |
* | index locals, so that get_local and set_local have just an index, and local n... | Alon Zakai | 2016-04-18 | 1 | -39/+33 |
* | rename function locals, to params and vars, which together are all the locals... | Alon Zakai | 2016-04-14 | 1 | -9/+9 |
* | De-recurse traversals (#333) | Alon Zakai | 2016-04-11 | 1 | -1/+1 |
* | refactor wasm traversal code into separate file | Alon Zakai | 2016-04-06 | 1 | -0/+1 |
* | fix assertion | Alon Zakai | 2016-04-05 | 1 | -1/+1 |
* | binary codes update and if/else update, see design#641 | Alon Zakai | 2016-04-05 | 1 | -35/+44 |
* | reorder section size location in binary format, see design#639 | Alon Zakai | 2016-04-05 | 1 | -4/+7 |
* | add apis for accessing module elements | Alon Zakai | 2016-04-04 | 1 | -2/+1 |
* | Clean Visual Studio build warning C4800: 'int64_t': forcing value to bool 'tr... | Jukka Jylänki | 2016-03-28 | 1 | -1/+1 |
* | Merge pull request #251 from mbebenita/opt-wasm-as | Alon Zakai | 2016-03-22 | 1 | -11/+22 |
|\ |
|
| * | Flip condition. | Michael Bebenita | 2016-03-22 | 1 | -8/+2 |
| * | Optimize function => index mapping. | Michael Bebenita | 2016-03-16 | 1 | -9/+26 |
* | | update spec tests and support eqz | Alon Zakai | 2016-03-19 | 1 | -0/+5 |
* | | proper signed LEB | Alon Zakai | 2016-03-18 | 1 | -12/+63 |
* | | fix names of LEBs | Alon Zakai | 2016-03-16 | 1 | -95/+95 |
* | | update memory access in binary format | Alon Zakai | 2016-03-16 | 1 | -10/+4 |
* | | update const to binary spec | Alon Zakai | 2016-03-16 | 1 | -11/+18 |
* | | add a 64-bit LEB | Alon Zakai | 2016-03-16 | 1 | -8/+12 |
* | | update switch encoding | Alon Zakai | 2016-03-16 | 1 | -13/+13 |
* | | use leb128 in breaks | Alon Zakai | 2016-03-16 | 1 | -2/+2 |
* | | write function locals per the spec | Alon Zakai | 2016-03-16 | 1 | -24/+18 |
* | | use function body sizes like in the spec | Alon Zakai | 2016-03-16 | 1 | -6/+5 |
* | | use names section for function names | Alon Zakai | 2016-03-16 | 1 | -8/+27 |
* | | stop assuming we know function names as we decode the binary | Alon Zakai | 2016-03-16 | 1 | -50/+71 |
* | | backpatching LEB128 always fills all 5 bytes | Alon Zakai | 2016-03-16 | 1 | -4/+4 |
* | | refactor an LEB128 placeholder method | Alon Zakai | 2016-03-16 | 1 | -2/+7 |
|/ |
|
* | make function tables entries LEB128 | Alon Zakai | 2016-03-15 | 1 | -5/+5 |
* | update data segments in binary format | Alon Zakai | 2016-03-15 | 1 | -10/+15 |
* | emit start after functions, and as a function index | Alon Zakai | 2016-03-15 | 1 | -3/+3 |
* | add exports section | Alon Zakai | 2016-03-15 | 1 | -17/+34 |
* | add call_import in binary, and split imports from functions | Alon Zakai | 2016-03-15 | 1 | -28/+18 |
* | add function signature section | Alon Zakai | 2016-03-15 | 1 | -3/+31 |
* | write imports as separate section | Alon Zakai | 2016-03-15 | 1 | -84/+118 |
* | num params in signatures is LEB128 | Alon Zakai | 2016-03-15 | 1 | -2/+2 |
* | update binary format to use sections as in the spec | Alon Zakai | 2016-03-14 | 1 | -32/+97 |
* | add binary header | Alon Zakai | 2016-03-14 | 1 | -0/+14 |
* | add two missing finalize() calls in wasm-binary | Alon Zakai | 2016-03-13 | 1 | -0/+2 |
* | use a 32-bit int for break offsets, as it is necessary (e.g. for bigswitch.cpp) | Alon Zakai | 2016-03-13 | 1 | -8/+8 |
* | de-recurse binary block reading | Alon Zakai | 2016-03-12 | 1 | -13/+44 |
* | Implement rotates | Derek Schuff | 2016-03-09 | 1 | -0/+8 |
* | Make initial and max memory sizes be in pages instead of bytes | Derek Schuff | 2016-03-09 | 1 | -17/+6 |
* | br_table, no more cases | Alon Zakai | 2016-03-07 | 1 | -29/+8 |
* | add a finalize() method for blocks | Alon Zakai | 2016-03-07 | 1 | -3/+1 |
* | switch to postorder | Alon Zakai | 2016-02-26 | 1 | -67/+92 |
* | add start to binary format | Alon Zakai | 2016-02-12 | 1 | -1/+16 |