summaryrefslogtreecommitdiff
path: root/src/passes/ReorderLocals.cpp
Commit message (Expand)AuthorAgeFilesLines
* Refactor interaction between Pass and PassRunner (#5093)Thomas Lively2022-09-301-1/+3
* [Wasm GC] Support non-nullable locals in the "1a" form (#4959)Alon Zakai2022-08-311-0/+3
* Avoid a code pattern of vec.resize() followed by std::fill() as suboptimal. I...juj2022-04-051-3/+3
* Preserve Function HeapTypes (#3952)Thomas Lively2021-06-301-1/+1
* Avoid wasted work when there are no locals (#3060)Max Graey2020-08-241-4/+5
* Fix ReorderLocals handling of local names (#2728)Alon Zakai2020-04-081-2/+3
* Work around a compiler issue on MacOS (#2730)Alon Zakai2020-04-081-7/+8
* Optimize ReorderLocals maps to vectors (#2727)Alon Zakai2020-04-071-8/+21
* Remove FunctionType (#2510)Thomas Lively2019-12-111-11/+8
* Reflect instruction renaming in code (#2128)Heejin Ahn2019-05-211-4/+4
* clang-tidy braces changes (#2075)Alon Zakai2019-05-011-3/+6
* Apply format changes from #2048 (#2059)Alon Zakai2019-04-261-23/+27
* misc minor cleanups in the codebase (#1531)Alon Zakai2018-05-041-0/+2
* Make localNames into a map (#1189)Thomas Lively2017-09-231-1/+0
* Default Walker subclasses to using Visitor<SubType> (#921)jgravelle-google2017-02-231-2/+2
* Remove unused captures to fix warnings/errors when compiling with Clang (#896)Eric Holk2017-02-031-1/+1
* Add initialization functions for passes to avoid missing pass registration du...Jukka Jylänki2016-06-211-1/+3
* move function parallelism to pass and pass runner, which allows more efficien...Alon Zakai2016-06-031-1/+3
* canonicalize the order in reorder-locals, by using first-appearance to break ...Alon Zakai2016-05-281-5/+14
* handle missing local names in ReorderLocalsAlon Zakai2016-05-051-2/+5
* create a UnifiedExpressionVisitor for passes that want a single visitor funct...Alon Zakai2016-04-181-2/+2
* index locals, so that get_local and set_local have just an index, and local n...Alon Zakai2016-04-181-11/+76
* Function parallelism (#343)Alon Zakai2016-04-151-0/+1
* rename function locals, to params and vars, which together are all the locals...Alon Zakai2016-04-141-5/+5
* drop completely unused locals in ReorderLocalsAlon Zakai2016-04-111-1/+6
* De-recurse traversals (#333)Alon Zakai2016-04-111-1/+1
* ensure a stable sort in ReorderLocalsAlon Zakai2016-02-191-1/+4
* Remove empty function.Michael2016-02-191-4/+0
* Reorder locals.Michael2016-02-191-0/+55