summaryrefslogtreecommitdiff
path: root/src/passes/stringify-walker-impl.h
Commit message (Collapse)AuthorAgeFilesLines
* [Outlining] Improve debug loggingAshley Nelson2023-12-071-0/+12
| | | | | | | | | | | | - Change outlining debug logs to use std::cerr - Add controlFlowQueue push log - Fix build error with wasm-ir-builder log's use of ShallowExpression Reviewers: tlively Reviewed By: tlively Pull Request: https://github.com/WebAssembly/binaryen/pull/6140
* [Outlining] Fix outlining control flowAshley Nelson2023-12-061-4/+3
| | | | | | | | | | Changes the controlFlowQueue used in stringify-walker to push values of Expression*, This ensures that we walk the Wasm module in the same order, regardless of whether the control flow expression is outlined. Reviewers: tlively Reviewed By: tlively Pull Request: https://github.com/WebAssembly/binaryen/pull/6139
* [Outlining] Adds separator context (#5977)Ashley Nelson2023-10-041-29/+18
| | | Adds a std::variant to represent the context of why a unique symbol was inserted in the stringified module. This allows us to pass necessary contextual data to subclasses of StringifyWalker in a structured manner.
* Adding license header to new files (#5819)Ashley Nelson2023-07-131-0/+16
|
* [Outlining] StringifyWalker (#5772)Ashley Nelson2023-06-301-0/+129
StringifyWalker is a new Walker with UnifiedExpressionVisitor. This walker performs a shallow visit of control-flow (try, if, block, loop) expressions and their simple expression siblings before then visiting the children of each control-flow expression in postorder. As a result, this walker un-nests nested control flow structures, so the expression visit order does not correspond to a normal postorder traversal of the function.