summaryrefslogtreecommitdiff
path: root/test/passes/simplify-locals.txt
Commit message (Expand)AuthorAgeFilesLines
* Simplify and consolidate type printing (#5816)Thomas Lively2023-08-241-1/+1
* Avoid adding new unneeded names to blocks in text roundtripping (#4943)Alon Zakai2022-08-221-1/+1
* Remove function index printing (#2742)Thomas Lively2020-04-091-1/+1
* Remove FunctionType (#2510)Thomas Lively2019-12-111-2/+2
* Refactor type and function parsing (#2143)Heejin Ahn2019-05-241-2/+2
* Properly handle optimizing out a set from inside the value of another set in ...Alon Zakai2019-04-291-0/+22
* Change default feature set to MVP (#1993)Thomas Lively2019-04-161-1878/+0
* Bulk memory side effects (#1998)Thomas Lively2019-04-111-0/+156
* Optimize away sets of the same local (#1940)Alon Zakai2019-03-071-0/+29
* Optimize added constants with propagation only if we see we will remove all u...Alon Zakai2019-03-061-57/+14
* Massive renaming (#1855)Thomas Lively2019-01-071-239/+239
* Properly optimize loop values (#1800)Alon Zakai2018-12-051-28/+96
* Speculate in simplify-locals that it is worth turning an if intoAlon Zakai (kripken)2018-12-041-68/+333
* Emit imports before defined things in text format (#1715)Alon Zakai2018-11-011-1/+1
* Unify imported and non-imported things (#1678)Alon Zakai2018-09-191-1/+1
* Fix optimizing equivalent locals bug introduced in #1540 (#1556)Alon Zakai2018-05-171-3/+23
* Optimize equivalent locals (#1540)Alon Zakai2018-05-101-3/+149
* Fix some fuzz bugs (#1528)Alon Zakai2018-05-011-0/+37
* Generate loop return values in optimizer (#1527)Alon Zakai2018-05-011-8/+25
* More simplify-locals opts (#1526)Alon Zakai2018-05-011-0/+107
* Emit binary function index in comment in text format, for convenience (#1232)Alon Zakai2017-10-201-24/+24
* fix simplify-locals bug where we create a br_if value, which is dangerous if ...Alon Zakai2017-10-111-0/+49
* Update text syntax for shared memory limits (#1197)Derek Schuff2017-09-221-1/+1
* Return to more structured type rules for block and if (#1148)Alon Zakai2017-09-051-11/+7
* set the type of a set_local properly when it is unreachableAlon Zakai2017-08-251-0/+16
* Optimizer support for atomic instructions (#1094)Derek Schuff2017-07-211-0/+137
* changing a set to a tee or vice versa needs to take into account the value ma...Alon Zakai (kripken)2017-07-111-0/+9
* Support new result syntax for if/loop/block (#1047)Sam Clegg2017-06-121-34/+34
* use a single space for pretty printing of wasts, so massive wasts are less un...Alon Zakai2017-03-091-804/+804
* improve local simplication: simplify without if/block structure values before...Alon Zakai2016-11-061-10/+42
* add variants of simplify-locals with and without teeing and structural optsAlon Zakai2016-11-051-0/+30
* when simplify-locals give br_if a value, the br_if also returns it, so it mus...Alon Zakai2016-10-131-27/+67
* Change print order of top-level module components (#751)Derek Schuff2016-10-071-1/+1
* Require unique names in binaryen IR (#746)Alon Zakai2016-10-061-12/+12
* Print the name of memory along with size (#720)Derek Schuff2016-09-281-1/+1
* Type check block/loop/if sigs (#717)Alon Zakai2016-09-281-9/+9
* Update binary encoding for block, loop, and if signatures (#711)Derek Schuff2016-09-271-1/+1
* fix a simplify-locals bug where we didn't notice and if already had a result ...Alon Zakai2016-09-231-0/+29
* block signaturesAlon Zakai2016-09-161-15/+15
* call_import changes: no more call_import, shared index space with functionsAlon Zakai2016-09-161-24/+24
* when optimizing a block return value, replacing the sunk set with the value i...Alon Zakai2016-09-141-18/+51
* new import syntax in spec repoAlon Zakai2016-09-071-4/+4
* don't simplify locals out of loops if they contain branching, as it may inval...Alon Zakai2016-09-071-0/+29
* loops no longer have an out label and other upstream loop updatesAlon Zakai2016-09-071-1/+1
* add drop and tee expressionsAlon Zakai2016-09-071-157/+291
* wast function type name desugaring is changing in spec:301 (#654)Alon Zakai2016-07-281-7/+10
* notice only branches out in EffectAnalyzer, internal control flow can be igno...Alon Zakai2016-05-191-94/+94
* clear sinkables on unoptimizable blocks, as they have a control flow mergeAlon Zakai2016-05-051-0/+19
* optimize block and if returns, by merging set_locals that flow out of themAlon Zakai2016-04-241-15/+89
* handle dead stores in SimplifyLocalsAlon Zakai2016-04-181-24/+8