summaryrefslogtreecommitdiff
path: root/test/passes/simplify-locals.wast
Commit message (Collapse)AuthorAgeFilesLines
* Properly handle optimizing out a set from inside the value of another set in ↵Alon Zakai2019-04-291-0/+29
| | | | | | | SimplifyLocals (#2064) Details in lengthy comment in the source. Fixes #2063
* Change default feature set to MVP (#1993)Thomas Lively2019-04-161-1657/+0
| | | | | In the absence of the target features section or command line flags. When there are command line flags, it is an error if they do not exactly match the target features section, except if --detect-features has been provided. Also adds a --print-features pass to print the command line flags for all enabled options and uses it to make the feature tests more rigorous.
* Bulk memory side effects (#1998)Thomas Lively2019-04-111-0/+109
|
* Optimize away sets of the same local (#1940)Alon Zakai2019-03-071-0/+31
|
* Massive renaming (#1855)Thomas Lively2019-01-071-381/+381
| | | | | | Automated renaming according to https://github.com/WebAssembly/spec/issues/884#issuecomment-426433329.
* Properly optimize loop values (#1800)Alon Zakai2018-12-051-0/+70
| | | Remove the existing hack, and optimize them just like we do for ifs and blocks. This is now able to handle a few more cases than before.
* Speculate in simplify-locals that it is worth turning an if intoAlon Zakai (kripken)2018-12-041-0/+203
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | an if-else. If an if sets a local, (if (..condition..) (set_local $x (..value..)) ) we can turn it into (set_local $x (if (..condition..) (..value..) (get_local $x) ) ) This increases code size and adds a branch in the if, but allows the set to be optimized into a tee or optimized out entirely. In the worst case, other optimizations can break up an if with a copy in one of its arms later. Includes a determinism fix for EquivalentSets, which this patch triggered.
* Improve local-cse (#1594)Alon Zakai2018-06-081-1/+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
* Fix optimizing equivalent locals bug introduced in #1540 (#1556)Alon Zakai2018-05-171-0/+15
| | | Don't skip through flowing tee values, just drop the current outermost which we find is redundant. the child tees may still be necessary.
* Optimize equivalent locals (#1540)Alon Zakai2018-05-101-0/+98
| | | | | | | | | If locals are known to contain the same value, we can * Pick which local to use for a get_local of any of them. Makes sense to prefer the most common, to increase the chance of one dropping to zero uses. * Remove copies between a local and one that we know contains the same value. This is a consistent win, small though, around 0.1-0.2%.
* Fix some fuzz bugs (#1528)Alon Zakai2018-05-011-0/+32
| | | | | * remove-unused-brs: handle an if declared as returning a value despite having an unreachable condition * simplify-locals: don't work on loops while the main pass is making changes, as set_locals are being tracked and modified.
* Generate loop return values in optimizer (#1527)Alon Zakai2018-05-011-0/+19
|
* More simplify-locals opts (#1526)Alon Zakai2018-05-011-0/+91
| | | | | | * Use an if return value when one side is unreachable. * Undo an if return value if we can use a br_if instead
* fix simplify-locals bug where we create a br_if value, which is dangerous if ↵Alon Zakai2017-10-111-0/+47
| | | | we are moving code out of the br_if's condition - the value executes before (#1213)
* Update text syntax for shared memory limits (#1197)Derek Schuff2017-09-221-1/+1
| | | | Following WebAssembly/threads#58 e.g. (memory $0 23 256 shared) is now (memory $0 (shared 23 256))
* set the type of a set_local properly when it is unreachableAlon Zakai2017-08-251-1/+12
|
* Optimizer support for atomic instructions (#1094)Derek Schuff2017-07-211-0/+58
| | | | | | * Teach EffectAnalyzer not to reorder atomics wrt other memory operations. * Teach EffectAnalyzer not to reorder host operations with memory operations * Teach various passes about the operands of AtomicRMW and AtomicCmpxchg * Factor out some functions in DeadCodeElimination and MergeBlocks
* changing a set to a tee or vice versa needs to take into account the value ↵Alon Zakai (kripken)2017-07-111-0/+11
| | | | may be unreachable
* Support new result syntax for if/loop/block (#1047)Sam Clegg2017-06-121-19/+19
| | | | | | Support both syntax formats in input since the old spec tests still need to be parsable.
* improve local simplication: simplify without if/block structure values ↵Alon Zakai2016-11-061-0/+17
| | | | before coalesce, so that coalesce can remove all copies, then do another pass of full simplification after it
* add variants of simplify-locals with and without teeing and structural optsAlon Zakai2016-11-051-0/+12
|
* when simplify-locals give br_if a value, the br_if also returns it, so it ↵Alon Zakai2016-10-131-0/+30
| | | | must be dropped
* Type check block/loop/if sigs (#717)Alon Zakai2016-09-281-15/+15
| | | | | | * type check using block/loop/if types provided in text and binary formats. * print if and loop sigs which were missing. * remove dsl from OptimizeInstructions as after those changes it needs rethinking.
* fix a simplify-locals bug where we didn't notice and if already had a result ↵Alon Zakai2016-09-231-0/+26
| | | | value
* 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 ↵Alon Zakai2016-09-141-0/+24
| | | | is only possible if the break is unconditional; if it is condition, we must tee the value so that if the break condition is false and we do not jump, then we have the new value in the local on the line after it
* don't simplify locals out of loops if they contain branching, as it may ↵Alon Zakai2016-09-071-0/+20
| | | | invalidate the branch
* 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-143/+403
|
* 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-0/+64
|
* add simplify-locals testcaseAlon Zakai2016-04-111-0/+197
|
* remove set_locals with no remaining gets in SimplifyLocalsAlon Zakai2016-04-111-0/+2
|
* add more simplify-locals testsAlon Zakai2016-04-111-1/+22
|
* De-recurse traversals (#333)Alon Zakai2016-04-111-0/+9
| | | | | | | | | | | | * 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
* add missing checks on nested blocks in SimplifyExpressionsAlon Zakai2016-04-071-0/+13
|
* handle loops in effect analyzerAlon Zakai2016-04-071-0/+8
|
* blocks must mark as branching in effects analyzer, as control flow can join ↵Alon Zakai2016-04-071-0/+10
| | | | there if the end of the block was branched to
* add more simplify-locals testingAlon Zakai2016-04-071-2/+102
|
* Make initial and max memory sizes be in pages instead of bytesDerek Schuff2016-03-091-1/+1
| | | | | | | The AST and everything that uses it treats the values as pages. Javascript continues to use bytes. This matches v8 and sexpr-wasm, and the consensus from live discussion and PR209 in the spec.
* start work on SimplifyLocalsAlon Zakai2016-01-091-0/+31