summaryrefslogtreecommitdiff
path: root/src/wasm-traversal.h
Commit message (Collapse)AuthorAgeFilesLines
* save the module on Walker objects, so passes have an easy way to access the ↵Alon Zakai2016-04-191-0/+13
| | | | module (#366)
* create a UnifiedExpressionVisitor for passes that want a single visitor ↵Alon Zakai2016-04-181-31/+58
| | | | function, to avoid confusion with having both visit* and visitExpression in a single pass (#357)
* let traversals access the current function (#355)Alon Zakai2016-04-181-7/+22
|
* Function parallelism (#343)Alon Zakai2016-04-151-12/+55
| | | | * allow traversals to mark themselves as function-parallel, in which case we run them using a thread pool. also mark some thread-safety risks (interned strings, arena allocators) with assertions they modify only on the main thread
* allow overriding startWalk(Function*)Alon Zakai2016-04-111-1/+1
|
* remove unneeded virtual destructorAlon Zakai2016-04-111-1/+0
|
* De-recurse traversals (#333)Alon Zakai2016-04-111-328/+306
| | | | | | | | | | | | * refactor core walking to not recurse * add a simplify-locals test * reuse parent's non-branchey scan logic in SimpleExecutionWalker, reduce code duplication * update wasm.js * rename things following comments
* derecurse blocks helper, and use it in SimplifyLocalsAlon Zakai2016-04-071-0/+26
|
* traversal improvementsAlon Zakai2016-04-061-34/+55
|
* move some methods to WasmWalkerBaseAlon Zakai2016-04-061-27/+25
|
* refactor a WasmReplacerWalker classAlon Zakai2016-04-061-54/+51
|
* add FastExecutionWalkerAlon Zakai2016-04-061-1/+101
|
* remove obsolete commentAlon Zakai2016-04-061-1/+0
|
* refactor wasm traversal code into separate fileAlon Zakai2016-04-061-0/+321