Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | 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 | |
| | | | | | | | The AST and everything that uses it treats the values as pages. Javascript continues to use bytes. This matches v8 and sexpr-wasm, and the consensus from live discussion and PR209 in the spec. | |||||
* | 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 | |
| | ||||||
* | Update binaryen and several tests for the new br_if operand order. | Dan Gohman | 2016-02-08 | 1 | -2/+2 | |
| | ||||||
* | Break and Return have unreachable type | Alon Zakai | 2016-02-03 | 1 | -3/+3 | |
| | ||||||
* | save int bits in Literals, only bitcast to float/double on explicit request | Alon Zakai | 2016-02-02 | 1 | -11/+19 | |
| | ||||||
* | add return node | Alon Zakai | 2016-02-01 | 1 | -0/+14 | |
| | ||||||
* | use getReachableWasmType in if_else and select | Alon Zakai | 2016-02-01 | 1 | -1/+1 | |
| | ||||||
* | set type for loop #161 | Alon Zakai | 2016-02-01 | 1 | -0/+1 | |
| | ||||||
* | refactor some binary writing code | Alon Zakai | 2016-01-30 | 1 | -14/+14 | |
| | ||||||
* | fix switch in binary format | Alon Zakai | 2016-01-29 | 1 | -29/+24 | |
| | ||||||
* | refactor binary format break code | Alon Zakai | 2016-01-29 | 1 | -10/+19 | |
| | ||||||
* | don't let ceil in binary memory size computation let us get to UINT_MAX ↵ | Alon Zakai | 2016-01-29 | 1 | -2/+2 | |
| | | | | which can overflow | |||||
* | allow memory size 0 in binary format | Alon Zakai | 2016-01-29 | 1 | -5/+16 | |
| | ||||||
* | fix I8Const usage | Alon Zakai | 2016-01-29 | 1 | -3/+3 | |
| | ||||||
* | if functions are already type-named, do not change their types | Alon Zakai | 2016-01-29 | 1 | -1/+3 | |
| | ||||||
* | support exports by a different name in binary format | Alon Zakai | 2016-01-29 | 1 | -7/+14 | |
| | ||||||
* | fix ConvertSInt64 in binary format | Alon Zakai | 2016-01-29 | 1 | -1/+1 | |
| | ||||||
* | fix more conversion opcodes | Alon Zakai | 2016-01-29 | 1 | -4/+4 | |
| | ||||||
* | fix conversion opcodes in binary format | Alon Zakai | 2016-01-29 | 1 | -4/+4 | |
| | ||||||
* | add import module.base to binary format | Alon Zakai | 2016-01-28 | 1 | -2/+6 | |
| | ||||||
* | join adjacent identical ifs | Alon Zakai | 2016-01-28 | 1 | -2/+0 | |
| | ||||||
* | current binary format has power of 2 memory, so use ceil to ensure that the ↵ | Alon Zakai | 2016-01-28 | 1 | -2/+2 | |
| | | | | conversion only increases memory, and does not make it too small for the segments | |||||
* | fix memory segment reading in binary format | Alon Zakai | 2016-01-28 | 1 | -4/+5 | |
| | ||||||
* | ignore zero-size segments in binary format | Alon Zakai | 2016-01-27 | 1 | -1/+6 | |
| | ||||||
* | parse 0-size blocks | Alon Zakai | 2016-01-27 | 1 | -3/+1 | |
| | ||||||
* | fix select type | Alon Zakai | 2016-01-27 | 1 | -1/+1 | |
| | ||||||
* | fix MemorySize type | Alon Zakai | 2016-01-27 | 1 | -1/+5 | |
| | ||||||
* | fix function results in binary format reading | Alon Zakai | 2016-01-27 | 1 | -0/+1 | |
| | ||||||
* | increase function and block sizes in binary format, to get more real-world ↵ | Alon Zakai | 2016-01-26 | 1 | -6/+6 | |
| | | | | code to build | |||||
* | fix GrowMemory parsing | Alon Zakai | 2016-01-26 | 1 | -0/+1 | |
| | ||||||
* | remove bad comment | Alon Zakai | 2016-01-22 | 1 | -1/+1 | |
| | ||||||
* | more flexibility in section reading in binary format code | Alon Zakai | 2016-01-22 | 1 | -16/+23 | |
| | ||||||
* | add more binary opcodes and a kitchen sink test #136 | Alon Zakai | 2016-01-22 | 1 | -2/+6 | |
| | ||||||
* | add I32ReinterpretF32 in binary format, for now | Alon Zakai | 2016-01-22 | 1 | -2/+3 | |
| | ||||||
* | add missing binary opcodes | Alon Zakai | 2016-01-21 | 1 | -22/+57 | |
| | ||||||
* | mapLocals even if no locals, but there are params #127 | Alon Zakai | 2016-01-20 | 1 | -5/+8 | |
| | ||||||
* | clear global state for each function in binary processing #125 | Alon Zakai | 2016-01-20 | 1 | -0/+4 | |
| | ||||||
* | fix switch default in binary format #123 | Alon Zakai | 2016-01-20 | 1 | -2/+7 | |
| | ||||||
* | fix mapLocals in binary format handling | Alon Zakai | 2016-01-19 | 1 | -4/+4 | |
| | ||||||
* | Merge pull request #103 from mbebenita/static-poly | Alon Zakai | 2016-01-19 | 1 | -1/+1 | |
|\ | | | | | Use LLVM style static polymorphism for AST Visitors | |||||
| * | Use LLVM style static polymorphism for WasmVisitors. | Michael Bebenita | 2016-01-13 | 1 | -1/+1 | |
| | | ||||||
* | | Merge pull request #119 from JSStats/mem-offset-flag | Alon Zakai | 2016-01-19 | 1 | -2/+2 | |
|\ \ | | | | | | | Memory access offset flag is bit 4. | |||||
| * | | Memory access offset flag is bit 4. | Douglas Crosher | 2016-01-18 | 1 | -2/+2 | |
| | | |