summaryrefslogtreecommitdiff
path: root/src/wasm-binary.h
Commit message (Expand)AuthorAgeFilesLines
...
* add drop and tee expressionsAlon Zakai2016-09-071-15/+30
* offset support in tableAlon Zakai2016-08-151-11/+26
* support function table initial and max sizes, and new printing formatAlon Zakai2016-08-121-0/+1
* support expressions in segment offsetsAlon Zakai2016-08-121-7/+13
* Fix trailing whitespace, single-character strings, checking map element prese...Dominic Chen2016-07-221-4/+4
* binary support for wasm globals (#652)Alon Zakai2016-07-221-13/+70
* update spec tests, and handle some flux in call_indirect in upstreamAlon Zakai2016-07-061-0/+1
* add shared-constants.h for wasm constantsAlon Zakai2016-06-261-11/+11
* Add mode to wasm validator to check for web-environment constraints (#584)Derek Schuff2016-06-141-4/+0
* use WASM_UNUSED in some places to fix compiler warning/error on unused variab...Alon Zakai2016-06-081-0/+5
* make call_indirect type a name, so that it is not a dependency on the module,...Alon Zakai2016-06-031-4/+5
* fix bugs found using afl (#546)Dominic Chen2016-05-311-4/+9
* use separate internal opcodes for binary variantsAlon Zakai2016-05-181-73/+89
* use separate internal opcodes for unary variantsAlon Zakai2016-05-181-37/+48
* spec test updates, and many validation fixesAlon Zakai2016-05-181-1/+1
* don't emit extra unnecessary blocks for loops in binary format (#523)Alon Zakai2016-05-171-2/+1
* fix binary reinterpret opcode bugAlon Zakai2016-05-131-2/+2
* Merge pull request #488 from WebAssembly/error_reportingAlon Zakai2016-05-121-9/+9
|\
| * parse error detailsAlon Zakai2016-05-121-8/+8
| * use exceptions consistently to report input errorsAlon Zakai2016-05-121-9/+9
* | Use a class with implicit overflow checks for Address (#486)Derek Schuff2016-05-121-1/+1
|/
* add error handling for binary errors in new spec testAlon Zakai2016-05-091-7/+7
* allow error handling in binary parsingAlon Zakai2016-05-091-1/+2
* Harmonize the internal opcodes with the binary format (#433)Alon Zakai2016-05-031-30/+40
* Check LEB128 encoding fits in destination integer (#408)JF Bastien2016-04-301-7/+23
* validate in binaryen shell and on wasm binaries, and fix type checkingAlon Zakai2016-04-291-0/+6
* get the reinterpret opcodes right on float/intAlon Zakai2016-04-281-6/+6
* fix size detection on reinterpret operations in binary formatAlon Zakai2016-04-281-2/+2
* avoid dynamic allocas (#410)Alon Zakai2016-04-281-2/+3
* just use a simple vector in data segmentsAlon Zakai2016-04-271-8/+6
* allocate only expressions in arenas - functions, imports, exports, function t...Alon Zakai2016-04-271-15/+14
* Remove UB (#405)JF Bastien2016-04-271-8/+6
* Split construction, scanning, and building phases of S2WasmBuilder (#400)Derek Schuff2016-04-271-1/+1
* add an ArenaVector for internal array allocations in expression nodesAlon Zakai2016-04-261-111/+113
* emit ifs in an optimized way in binary formatAlon Zakai2016-04-261-2/+16
* use arities in callsAlon Zakai2016-04-251-3/+9
* use arities on switchAlon Zakai2016-04-251-4/+4
* use arities on returnsAlon Zakai2016-04-251-4/+6
* use arities on breaksAlon Zakai2016-04-251-4/+4
* allow allocations on side threads (#365)Alon Zakai2016-04-241-3/+1
* fix conversion opcodes (#381)Alon Zakai2016-04-221-44/+44
* br_table offsets are int32s, not lebsAlon Zakai2016-04-221-4/+4
* put segments in right orderAlon Zakai2016-04-211-4/+6
* function toplevels is a listAlon Zakai2016-04-211-6/+6
* ifs in the binary format always have a break scopeAlon Zakai2016-04-211-12/+23
* fix if and else bodies, which can be listsAlon Zakai2016-04-211-13/+11
* fix loop binary parsingAlon Zakai2016-04-211-4/+19
* if condition is popped from before, not pre-order inlineAlon Zakai2016-04-211-3/+3
* update br_table in binary formatAlon Zakai2016-04-211-13/+8
* fix a reinterpret opcodeAlon Zakai2016-04-211-1/+1