summaryrefslogtreecommitdiff
path: root/test/passes/print-call-graph.wast
Commit message (Collapse)AuthorAgeFilesLines
* Require `then` and `else` with `if` (#6201)Thomas Lively2024-01-041-397/+481
| | | | | | | | | | | | We previously supported (and primarily used) a non-standard text format for conditionals in which the condition, if-true expression, and if-false expression were all simply s-expression children of the `if` expression. The standard text format, however, requires the use of `then` and `else` forms to introduce the if-true and if-false arms of the conditional. Update the legacy text parser to require the standard format and update all tests to match. Update the printer to print the standard format as well. The .wast and .wat test inputs were mechanically updated with this script: https://gist.github.com/tlively/85ae7f01f92f772241ec994c840ccbb1
* Remove legacy DYNAMICTOP_PTR support from SafeHeap (#3425)Sam Clegg2020-12-041-4/+0
|
* Massive renaming (#1855)Thomas Lively2019-01-071-354/+354
| | | | | | 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-7/+7
| | | | Function type gets its own element rather than being a part of the call_indirect (see WebAssembly/spec#599)
* Support new result syntax for if/loop/block (#1047)Sam Clegg2017-06-121-24/+24
| | | | | | Support both syntax formats in input since the old spec tests still need to be parsable.
* Adds a pass to print call graphs in .dot (graphviz) format. (#794)Michael Bebenita2016-10-201-0/+1382