summaryrefslogtreecommitdiff
path: root/test/passes/remove-unused-names.wast
Commit message (Collapse)AuthorAgeFilesLines
* Fix RemoveUnusedNames on a loop with no name and a child with a different ↵Alon Zakai2020-04-241-0/+9
| | | | type. fixes #2807 (#2808)
* Return to more structured type rules for block and if (#1148)Alon Zakai2017-09-051-2/+2
| | | | | | | | * if a block has a concrete final element (or a break with a value), then even if it has an unreachable child, keep it with that concrete type. this means we no longe allow the silly case of a block with an unreachable in the middle and a concrete as the final element while the block is unreachable - after this change, the block would have the type of the final element * if an if has a concrete element in one arm, make it have that type as a result, even if the if condition is unreachable, to parallel block * make type rules for brs and switches simpler, ignore whether they are reachable or not. whether they are dead code should not affect how they influence other types in our IR.
* merge blocks in remove-unused-names only when their type is identical, so ↵Alon Zakai (kripken)2017-08-051-0/+16
| | | | branches to them are interchangeable
* 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.
* Type check block/loop/if sigs (#717)Alon Zakai2016-09-281-1/+1
| | | | | | * 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.
* loops no longer have an out label and other upstream loop updatesAlon Zakai2016-09-071-16/+19
|
* add drop and tee expressionsAlon Zakai2016-09-071-8/+13
|
* more RemoveUnusedName opts: merge names when possible, and do block/loop ↵Alon Zakai2016-07-201-0/+30
| | | | merging based on their names
* remove unused labels from loops too, and general clean ups for RemoveUnusedNamesAlon Zakai2016-07-201-0/+33
|
* 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.
* add RemoveUnusedNames passAlon Zakai2016-01-041-0/+9