summaryrefslogtreecommitdiff
path: root/test/passes/local-cse.txt
Commit message (Collapse)AuthorAgeFilesLines
* Verify flat IR where it is expected, and give a nice error (#2009)Alon Zakai2019-04-161-37/+0
| | | Fixes #2007 #2008
* Massive renaming (#1855)Thomas Lively2019-01-071-10/+10
| | | | | | Automated renaming according to https://github.com/WebAssembly/spec/issues/884#issuecomment-426433329.
* LocalCSE: Consider pass options, both size and cost (#1840)Alon Zakai2018-12-211-0/+15
| | | With this we can optimize redundant global accesses fairly well (at least locally; licm also works), see #1831
* LocalCSE fuzz fix: invalidate the set operations too (#1778)Alon Zakai2018-11-281-0/+22
| | | | | We invalidated based on effects of set values, but not of the sets themselves. Without that, a set could be overridden by something irrelevant and we thought we could still reuse the old value. Before this PR, the testcase would have the last set's value be optimized into a get, incorrectly.
* Improve local-cse (#1594)Alon Zakai2018-06-081-184/+0
| | | | | This makes it much more effective, by rewriting it to depend on flatten. In flattened IR, it is very simple to check if an expression is equivalent to one already available for use in a local, and use that one instead, basically we just track values in locals. Helps with #1521
* Emit binary function index in comment in text format, for convenience (#1232)Alon Zakai2017-10-201-6/+6
|
* Support new result syntax for if/loop/block (#1047)Sam Clegg2017-06-121-1/+1
| | | | | | Support both syntax formats in input since the old spec tests still need to be parsable.
* Validation fixes for issues noticed by afl (#988)Alon Zakai2017-05-021-0/+1
| | | | | | | | | | | | * properly validate block endings * blocks with a value must not have a last element that is none * fully validate input types to binary expressions * validate i32.eqz/i64.eqz more carefully * if condition must be i32
* use a single space for pretty printing of wasts, so massive wasts are less ↵Alon Zakai2017-03-091-172/+172
| | | | unruly (#928)
* Local CSE (#930)Alon Zakai2017-03-081-0/+183
Simple local common subexpression elimination. Useful mostly to reduce code size (as VMs do GVN etc.). Enabled by default in -Oz.