summaryrefslogtreecommitdiff
path: root/src/cfg/Relooper.h
Commit message (Collapse)AuthorAgeFilesLines
* Switch from `typedef` to `using` in C++ code. NFC (#5258)Sam Clegg2022-11-151-4/+4
| | | | This is more modern and (IMHO) easier to read than that old C typedef syntax.
* Add namespace and include guard to insert_ordered.h (#3891)Thomas Lively2021-05-171-3/+3
|
* [NFC] Move InsertOrdered{Set,Map} into a new header (#3888)Thomas Lively2021-05-171-113/+1
| | | | | | Move the InsertOrderedSet and InsertOrderedMap implementations out of Relooper.h and into a new insert_ordered.h so they can be used more widely. Only changes the implementation code to use unordered_maps and `WASM_UNREACHABLE` instead of `abort`.
* Fix Relooper leaking Branches (#3097)Daniel Wirtz2020-09-081-10/+31
| | | Fixes the `Relooper` leaking `Branch`es in `Optimizer::SkipEmptyBlocks`, by refactoring the API so a `std::unique_ptr` is ensured for each `Block`, `Branch` and `Shape` upon adding to the relooper.
* [NFC] Enforce use of `Type::` on type names (#2434)Thomas Lively2020-01-071-1/+1
|
* Reflect instruction renaming in code (#2128)Heejin Ahn2019-05-211-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - Reflected new renamed instruction names in code and tests: - `get_local` -> `local.get` - `set_local` -> `local.set` - `tee_local` -> `local.tee` - `get_global` -> `global.get` - `set_global` -> `global.set` - `current_memory` -> `memory.size` - `grow_memory` -> `memory.grow` - Removed APIs related to old instruction names in Binaryen.js and added APIs with new names if they are missing. - Renamed `typedef SortedVector LocalSet` to `SetsOfLocals` to prevent name clashes. - Resolved several TODO renaming items in wasm-binary.h: - `TableSwitch` -> `BrTable` - `I32ConvertI64` -> `I32WrapI64` - `I64STruncI32` -> `I64SExtendI32` - `I64UTruncI32` -> `I64UExtendI32` - `F32ConvertF64` -> `F32DemoteI64` - `F64ConvertF32` -> `F64PromoteF32` - Renamed `BinaryenGetFeatures` and `BinaryenSetFeatures` to `BinaryenModuleGetFeatures` and `BinaryenModuleSetFeatures` for consistency.
* Apply format changes from #2048 (#2059)Alon Zakai2019-04-261-83/+109
| | | Mass change to apply clang-format to everything. We are applying this in a PR by me so the (git) blame is all mine ;) but @aheejin did all the work to get clang-format set up and all the manual work to tidy up some things to make the output nicer in #2048
* Code style improvements (#1868)Alon Zakai2019-01-151-12/+12
| | | | * Use modern T p = v; notation to initialize class fields * Use modern X() = default; notation for empty class constructors
* Use `= default` rather than {} for empty destructors (#1794)Sam Clegg2018-12-031-1/+1
|
* Relooper CFG optimizations (#1759)Alon Zakai2018-11-211-4/+28
| | | | | | | | | | | | | | | | Previously the relooper would do some optimizations when deciding when to use an if vs a switch, how to group blocks, etc. This PR adds an additional pre-optimization phase with some basic but useful simplify-cfg style passes, * Skip empty blocks when they have just one exit. * Merge exiting branches when they are equivalent. * Canonicalize block contents to make such comparisons more useful. * Turn a trivial one-target switch into a simple branch. This can help in noticeable ways when running the rereloop pass, e.g. on LLVM wasm backend output. Also: * Binaryen C API changes to the relooper, which now gets a Module for its constructor. It needs it for the optimizations, as it may construct new nodes. * Many relooper-fuzzer improvements. * Clean up HashType usage.
* Modernize relooper code (#1738)Alon Zakai2018-11-131-16/+18
| | | Use c++11 auto, iterators, etc.
* Minor code cleanups (#1617)Alon Zakai2018-07-101-0/+4
| | | | | | * code cleanups in wasm-binary: remove an & param, and standardize whitespace * add some docs for how the relooper handles blocks with no outgoing branches [ci skip]
* fix re-reloop fuzz bug, we need to ensure a terminator in all relooper ↵Alon Zakai2017-10-111-0/+2
| | | | blocks (#1214)
* avoid label variable usage in relooper for forward branches, just use a ↵Alon Zakai2016-07-201-20/+30
| | | | stack of blocks for them. after this change, only irreducible control flow should cause label variable usage
* remove some old code in relooperAlon Zakai2016-07-181-24/+2
|
* Relooper switch support (#617)Alon Zakai2016-07-021-13/+19
| | | | | | * support switches in relooper and c api * update relooper fuzzer for switches
* use separate internal opcodes for binary variantsAlon Zakai2016-05-181-1/+1
|
* Fix VS warning in Relooper.h (#467)BSalita2016-05-111-1/+1
|
* Import emscripten's relooper, port it to the binaryen AST, and provide a C ↵Alon Zakai2016-05-051-0/+365
API (#434) also ignore libstdc++ bug in ubsan