summaryrefslogtreecommitdiff
path: root/test/ctor-eval/bad-indirect-call2.wast
Commit message (Collapse)AuthorAgeFilesLines
* Get more tests working with the new text parser (#6284)Thomas Lively2024-02-071-1/+1
| | | | | | | | The new parser enforces the rule that imports must come before declarations (except for type declarations). The old parser does not enforce this rule, so many of our tests did not follow it. Fix them to follow that rule and fix other invalid syntax. Also add missing finalization of Load expressions in wasm-builder.h that was causing a test to fail under the new parser and guard against an error case in wasm-ir-builder.cpp that used to cause a segfault.
* 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.
* Massive renaming (#1855)Thomas Lively2019-01-071-1/+1
| | | | | | Automated renaming according to https://github.com/WebAssembly/spec/issues/884#issuecomment-426433329.
* Update call_indirect text syntax to match spec update (#1281)Derek Schuff2017-11-131-1/+1
| | | | Function type gets its own element rather than being a part of the call_indirect (see WebAssembly/spec#599)
* 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).