summaryrefslogtreecommitdiff
path: root/src/passes/Vacuum.cpp
Commit message (Expand)AuthorAgeFilesLines
* [Exceptions] Finish interpreter + optimizer support for try_table. (#6814)Sébastien Doeraene2024-08-201-1/+10
* Fix Vacuuming of code leading up to an infinite loop (#6632)Alon Zakai2024-05-291-4/+5
* Vacuum code leading up to a trap in TrapsNeverHappen mode (#5228)Alon Zakai2023-05-171-1/+79
* Remove TypeUpdater in Vacuum and always ReFinalize (#5707)Alon Zakai2023-05-091-48/+1
* Vacuum unneeded instructions even if children have effects (#5488)Alon Zakai2023-02-141-3/+12
* [Wasm GC] Refinalize in Vacuum (#5412)Alon Zakai2023-01-091-0/+13
* Refactor interaction between Pass and PassRunner (#5093)Thomas Lively2022-09-301-1/+1
* Vacuum: Ignore effects at the entire function scope when possible (#5053)Alon Zakai2022-09-191-1/+1
* Vacuum trivial trys (#5046)Alon Zakai2022-09-161-0/+13
* [EH] Support try-delegate in EffectAnalyzer (#4368)Heejin Ahn2021-12-061-1/+1
* Use TrapsNeverHappen mode in more places in Vacuum (#4117)Alon Zakai2021-09-011-3/+3
* Add a Module parameter to EffectAnalyzer. NFC (#4115)Alon Zakai2021-08-311-7/+5
* TrapsNeverHappen mode (#4059)Alon Zakai2021-08-171-2/+19
* Preserve Function HeapTypes (#3952)Thomas Lively2021-06-301-2/+2
* LUBs (#3731)Thomas Lively2021-03-291-3/+1
* [Wasm GC] Add support for non-nullable types, all except for locals (#3710)Alon Zakai2021-03-231-7/+13
* Remove LUB calculation (#3669)Thomas Lively2021-03-111-1/+3
* Basic EH instrucion support for the new spec (#3487)Heejin Ahn2021-01-151-1/+3
* [GC] Refactor Vacuum pass. NFC. (#3421)Alon Zakai2020-12-041-134/+65
* [effects.h] Make internals internal, forcing the external API to be safe. (#3...Alon Zakai2020-11-181-2/+2
* Minor code cleanups. NFC (#3364)Alon Zakai2020-11-151-14/+0
* Refactor Host expression to MemorySize and MemoryGrow (#3137)Daniel Wirtz2020-09-171-1/+2
* Note removal of catch body in Vacuum (#2765)Heejin Ahn2020-04-141-0/+1
* Code pushing support for br_on_exn (#2660)Heejin Ahn2020-02-191-0/+3
* Optimize Try in Vacuum (#2644)Heejin Ahn2020-02-071-0/+9
* Add EH support for EffectAnalyzer (#2631)Heejin Ahn2020-02-031-15/+20
* [NFC] Enforce use of `Type::` on type names (#2434)Thomas Lively2020-01-071-10/+11
* Make local.tee's type its local's type (#2511)Heejin Ahn2019-12-121-1/+1
* Remove FunctionType (#2510)Thomas Lively2019-12-111-2/+3
* Remove 'none' type as a branch target in ReFinalize (#2492)Alon Zakai2019-12-041-1/+0
* Multivalue type creation and inspection (#2459)Thomas Lively2019-11-221-7/+6
* Reflect instruction renaming in code (#2128)Heejin Ahn2019-05-211-5/+5
* Fix a vacuum bug with loads changing the type (#2124)Alon Zakai2019-05-171-1/+4
* clang-tidy braces changes (#2075)Alon Zakai2019-05-011-3/+6
* Apply format changes from #2048 (#2059)Alon Zakai2019-04-261-54/+88
* Vacuum unused values (#1918)Alon Zakai2019-02-251-9/+36
* Unify imported and non-imported things (#1678)Alon Zakai2018-09-191-1/+0
* Rename WasmType => Type (#1398)Alon Zakai2018-02-021-5/+5
* notation change: AST => IR (#1245)Alon Zakai2017-10-241-3/+3
* Add a superclass typedef to WalkerPass to simplify overrides (#1211)jgravelle-google2017-10-041-1/+1
* asm2wasm atomics (#1171)Alon Zakai2017-09-111-1/+1
* fix vacuum bug on nop'ing an if whose body has brs that cause type changes wh...Alon Zakai2017-07-171-0/+1
* note changes when removing an if body in vacuumAlon Zakai (kripken)2017-07-131-0/+4
* handle an unreachable condition properly in vacuum if simplificationAlon Zakai (kripken)2017-07-131-0/+6
* handle unary and binary nodes that have implicit traps in vacuumAlon Zakai (kripken)2017-07-111-1/+12
* loads may trap, do not remove them in vacuum unless the pass options allow thatAlon Zakai (kripken)2017-07-111-1/+3
* properly handle if arm removal in vacuumAlon Zakai (kripken)2017-07-111-0/+4
* add the option to seek named breaks, not just taken breaks; refactor headers ...Alon Zakai (kripken)2017-07-111-4/+5
* don't remove unreachable nodes in vaccuum, it can alter types, and dce does t...Alon Zakai (kripken)2017-07-111-0/+2
* use TypeUpdater in vacuumAlon Zakai (kripken)2017-05-201-30/+33