summaryrefslogtreecommitdiff
path: root/test/ctor-eval/unsafe_call.wast
Commit message (Collapse)AuthorAgeFilesLines
* Misc tiny fuzz fixes (#1668)Alon Zakai2018-09-121-2/+0
| | | | | | | | | | | | * show a proper error for an empty asm2wasm input * handle end of input in processExpressions in binary reading * memory segment sizes should be unsigned * validate input in wasm-ctor-eval * update tests
* ctor evaller (#982)Alon Zakai2017-04-281-0/+16
Add wasm-ctor-eval, which evaluates functions at compile time - typically static constructor functions - and applies their effects into memory, saving work at startup. If we encounter something we can't evaluate at compile time in our interpreter, stop there. This is similar to ctor_evaller.py in emscripten (which was for asm.js).