summaryrefslogtreecommitdiff
path: root/test/ctor-eval/unsafe_store3.wast
Commit message (Collapse)AuthorAgeFilesLines
* Fix incorrect wat in tests (#6207)Thomas Lively2024-01-081-1/+1
| | | | | | | | | The new wat parser is much more strict than the legacy wat parser; the latter accepts all sorts of things that the spec does not allow. To ease an eventual transition to using the new wat parser by default, update the tests to use the standard text format in many places where they previously did not. We do not yet have a way to prevent new errors from being introduced into the test suite, but at least there will now be many fewer errors when it comes time to make the switch.
* 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/+10
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).