summaryrefslogtreecommitdiff
path: root/src/passes/CoalesceLocals.cpp
Commit message (Expand)AuthorAgeFilesLines
* [NFC] Standardize Super:: over super:: (#6920)Alon Zakai2024-09-101-1/+1
* CoalesceLocals: ReFinalize when we refine a type (#6502)Alon Zakai2024-04-161-12/+12
* CFGWalker: Allow users to ignore branches outside the function [NFC] (#5838)Alon Zakai2023-07-261-0/+4
* Use C++17's [[maybe_unused]]. NFC (#5309)Sam Clegg2022-12-021-2/+1
* [Wasm GC] Fix CoalesceLocals on tees that receive a refined type (#5289)Alon Zakai2022-11-221-3/+22
* Refactor interaction between Pass and PassRunner (#5093)Thomas Lively2022-09-301-2/+6
* [Wasm GC] Support non-nullable locals in the "1a" form (#4959)Alon Zakai2022-08-311-1/+19
* Lift the restriction in liveness-traversal.h that supported max 65535 locals ...juj2022-04-281-25/+23
* Use LiteralUtils::canMakeZero before calling makeZero (#4568)Alon Zakai2022-04-011-4/+5
* CoalesceLocals: Use ValueNumbering (#4355)Alon Zakai2021-11-241-14/+20
* CoalesceLocals: Remove a redundant tee of the same local as a parent set (#4318)Alon Zakai2021-11-091-1/+6
* CoalesceLocals: Rewrite the algorithm to be linear and to ignore copies (#4314)Alon Zakai2021-11-101-27/+161
* Fix Emscripten build by changing `|` to `||` (#4205)Thomas Lively2021-10-041-1/+1
* [Wasm GC] Fix precomputing of incompatible fallthrough values (#3875)Alon Zakai2021-05-101-1/+0
* Warn when running a pass not compatible with DWARF (#3506)Alon Zakai2021-01-261-0/+4
* Run reorder-locals more in wasm2js (#2729)Alon Zakai2020-04-081-0/+5
* Skip liveness analysis if too many locals (#2560)Alon Zakai2020-01-061-0/+3
* Reflect instruction renaming in code (#2128)Heejin Ahn2019-05-211-9/+9
* clang-tidy braces changes (#2075)Alon Zakai2019-05-011-7/+14
* Apply format changes from #2048 (#2059)Alon Zakai2019-04-261-69/+117
* Remove unnecessary semicolons (#1942)Ryoga2019-03-181-1/+1
* Optimize away sets of the same local (#1940)Alon Zakai2019-03-071-0/+4
* CoalesceLocals: run even if we have just 1 var, as we may be able to remove t...Alon Zakai2019-03-061-5/+0
* Move if copy logic from coalesce-locals to remove-unused-brs.Alon Zakai (kripken)2018-12-041-33/+0
* Optimize equivalent locals (#1540)Alon Zakai2018-05-101-6/+2
* Fix MSVC warnings when compiling the binaryen target (#1535)Daniel Wirtz2018-05-091-2/+2
* Rename WasmType => Type (#1398)Alon Zakai2018-02-021-1/+1
* Improve LocalGraph (#1382)Alon Zakai2018-01-241-1/+1
* SpillPointers pass (#1339)Alon Zakai2017-12-301-283/+4
* notation change: AST => IR (#1245)Alon Zakai2017-10-241-1/+1
* Add a superclass typedef to WalkerPass to simplify overrides (#1211)jgravelle-google2017-10-041-1/+1
* when removing an if-copy in coalesce-locals, if it's a tee, we do still need ...Alon Zakai (kripken)2017-07-131-1/+3
* fix handling of an if in a tee without an else, in coalesce-localsAlon Zakai (kripken)2017-07-131-1/+3
* fix coalesce-locals handling of set/tee local of an unreachable; we still nee...Alon Zakai (kripken)2017-07-111-2/+6
* SSA pass (#1049)Alon Zakai2017-06-131-29/+1
* Validate finalization (#1014)Alon Zakai2017-05-181-7/+4
* Preserve debug info through the optimizer (#981)Alon Zakai2017-04-281-0/+1
* Optimize away copies through an if (#816)Alon Zakai2016-10-311-4/+52
* Add priority to copies on backedges (#791)Alon Zakai2016-10-201-1/+31
* handle unreachable tee_local properly in coalesce-locals (#761)Alon Zakai2016-10-121-1/+5
* Implement binary search for coalesce-locals (#744)Loo Rong Jie2016-10-121-27/+14
* track unreachable code in coalesce-locals, we know what is unreachable anyhow...Alon Zakai2016-10-081-1/+10
* add a commentAlon Zakai2016-09-141-1/+1
* allocate newCopies on demand in coalesce-locals, to avoid n^2 allocation when...Alon Zakai2016-09-141-1/+2
* coalesce-locals code cleanupAlon Zakai2016-09-141-3/+3
* fix getCopies return type, so that we take into account the full range of valuesAlon Zakai2016-09-141-1/+1
* optimization commentAlon Zakai2016-09-101-1/+1
* sort locals by number of total copiesAlon Zakai2016-09-101-11/+77
* take into account removed copies even when number of locals is the same, in c...Alon Zakai2016-09-091-5/+46
* add drop and tee expressionsAlon Zakai2016-09-071-1/+11